
    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_2aac7a6f928d713b1617a366.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_943277c3521c5536ea22c3d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4f30e741bdac79bf609da8e4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d39da3a52a40c0472616c807.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922000;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_8d3d7c12aa32560e4b503d33.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.732000;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_5885f636f01e568e7b40a2dc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d39da3a52a40c0472616c807.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.922000;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_1d712fabd9b56898edb3f660.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942871;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_76af36340e5cc90ba11ceee3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.943359;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_e069b86f10057c311e580ea6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_20859a1d32947bee64eff0ec.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.860000;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:ffc;src:url('chunks/assets/font_d39da3a52a40c0472616c807.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.922000;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:ffd;src:url('chunks/assets/font_5885f636f01e568e7b40a2dc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7ce6f8079957f36dbe738f4b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.927734;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:fff;src:url('chunks/assets/font_099b3dfcf5a620ee91bd90ca.woff2')format("woff");}.fff{font-family:fff;line-height:1.084473;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:ff10;src:url('chunks/assets/font_e069b86f10057c311e580ea6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_20859a1d32947bee64eff0ec.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.860000;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:ff12;src:url('chunks/assets/font_d39da3a52a40c0472616c807.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.922000;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:ff13;src:url('chunks/assets/font_5885f636f01e568e7b40a2dc.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_20859a1d32947bee64eff0ec.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.860000;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:ff15;src:url('chunks/assets/font_4f30e741bdac79bf609da8e4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_d39da3a52a40c0472616c807.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.922000;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:ff17;src:url('chunks/assets/font_5885f636f01e568e7b40a2dc.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_20859a1d32947bee64eff0ec.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.860000;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:ff19;src:url('chunks/assets/font_4f30e741bdac79bf609da8e4.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_d39da3a52a40c0472616c807.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.922000;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:ff1b;src:url('chunks/assets/font_834e67eea11544d280953b04.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.690918;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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:-44.092800px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:43.335000px;}
.ls6{letter-spacing:-1.320000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:1.200000px;}
.ls3{letter-spacing:13.200000px;}
.ls5{letter-spacing:14.400000px;}
.ls1{letter-spacing:21.060000px;}
.ls2{letter-spacing:2384.608200px;}
.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:-51.741527px;}
.ws34{word-spacing:-30.240000px;}
.ws1{word-spacing:-30.024000px;}
.wsb{word-spacing:-21.060000px;}
.wsb4{word-spacing:-20.016000px;}
.ws6c{word-spacing:-16.680000px;}
.ws5{word-spacing:-15.012000px;}
.ws1e{word-spacing:-14.520000px;}
.ws14{word-spacing:-13.068000px;}
.ws13{word-spacing:-12.276000px;}
.ws6{word-spacing:-12.168000px;}
.ws1a{word-spacing:-11.154000px;}
.ws12{word-spacing:-11.088000px;}
.ws1c{word-spacing:-10.098000px;}
.ws16{word-spacing:-9.768000px;}
.ws11{word-spacing:-9.438000px;}
.ws23{word-spacing:-9.372000px;}
.wsf{word-spacing:-9.108000px;}
.ws10{word-spacing:-8.976000px;}
.ws80{word-spacing:-8.100000px;}
.ws27{word-spacing:-7.722000px;}
.wsd{word-spacing:-7.656000px;}
.ws15{word-spacing:-7.194000px;}
.ws24{word-spacing:-6.732000px;}
.ws19{word-spacing:-6.666000px;}
.ws26{word-spacing:-6.600000px;}
.ws1b{word-spacing:-6.270000px;}
.ws1f{word-spacing:-5.874000px;}
.ws4c{word-spacing:-5.700000px;}
.ws20{word-spacing:-5.412000px;}
.ws75{word-spacing:-5.400000px;}
.ws22{word-spacing:-5.346000px;}
.ws5a{word-spacing:-5.340000px;}
.ws1d{word-spacing:-4.884000px;}
.ws8d{word-spacing:-4.680000px;}
.ws5f{word-spacing:-4.140000px;}
.ws21{word-spacing:-4.092000px;}
.ws7d{word-spacing:-4.080000px;}
.wsb5{word-spacing:-3.960000px;}
.ws39{word-spacing:-3.720000px;}
.wsa6{word-spacing:-3.540000px;}
.ws17{word-spacing:-3.432000px;}
.ws25{word-spacing:-3.168000px;}
.ws46{word-spacing:-2.880000px;}
.wsb3{word-spacing:-2.754000px;}
.wsae{word-spacing:-2.640000px;}
.ws59{word-spacing:-2.460000px;}
.ws8f{word-spacing:-2.400000px;}
.ws89{word-spacing:-2.100000px;}
.ws7{word-spacing:-1.998000px;}
.wsac{word-spacing:-1.980000px;}
.ws6e{word-spacing:-1.920000px;}
.wsa5{word-spacing:-1.860000px;}
.wsa8{word-spacing:-1.800000px;}
.ws32{word-spacing:-1.782000px;}
.wse{word-spacing:-1.776000px;}
.ws69{word-spacing:-1.680000px;}
.ws18{word-spacing:-1.650000px;}
.ws4{word-spacing:-1.638000px;}
.ws2e{word-spacing:-1.620000px;}
.ws62{word-spacing:-1.560000px;}
.ws48{word-spacing:-1.380000px;}
.wsc{word-spacing:-1.200000px;}
.ws2b{word-spacing:-1.188000px;}
.ws50{word-spacing:-1.080000px;}
.ws3{word-spacing:-1.034880px;}
.ws9{word-spacing:-0.972000px;}
.ws60{word-spacing:-0.900000px;}
.ws5d{word-spacing:-0.840000px;}
.ws79{word-spacing:-0.720000px;}
.ws94{word-spacing:-0.540000px;}
.ws9f{word-spacing:-0.480000px;}
.ws4f{word-spacing:-0.420000px;}
.ws88{word-spacing:-0.240000px;}
.ws3a{word-spacing:-0.180000px;}
.ws2{word-spacing:0.000000px;}
.wsb1{word-spacing:0.216000px;}
.ws77{word-spacing:0.240000px;}
.ws55{word-spacing:0.300000px;}
.ws70{word-spacing:0.360000px;}
.ws52{word-spacing:0.420000px;}
.ws35{word-spacing:0.480000px;}
.ws44{word-spacing:0.540000px;}
.ws99{word-spacing:0.660000px;}
.ws6a{word-spacing:0.720000px;}
.ws8a{word-spacing:0.780000px;}
.ws6d{word-spacing:1.020000px;}
.ws38{word-spacing:1.260000px;}
.ws86{word-spacing:1.320000px;}
.wsaf{word-spacing:1.380000px;}
.ws97{word-spacing:1.440000px;}
.ws7a{word-spacing:1.500000px;}
.ws92{word-spacing:1.620000px;}
.ws9d{word-spacing:1.800000px;}
.ws9e{word-spacing:1.920000px;}
.ws36{word-spacing:2.100000px;}
.ws41{word-spacing:2.280000px;}
.ws51{word-spacing:2.400000px;}
.ws37{word-spacing:2.520000px;}
.ws8c{word-spacing:2.640000px;}
.ws63{word-spacing:2.700000px;}
.ws49{word-spacing:2.760000px;}
.ws7f{word-spacing:2.820000px;}
.ws29{word-spacing:2.862000px;}
.ws78{word-spacing:2.880000px;}
.ws81{word-spacing:3.000000px;}
.ws7e{word-spacing:3.060000px;}
.ws3e{word-spacing:3.180000px;}
.ws6f{word-spacing:3.240000px;}
.ws3d{word-spacing:3.360000px;}
.ws57{word-spacing:3.600000px;}
.ws73{word-spacing:3.660000px;}
.ws95{word-spacing:3.900000px;}
.wsb2{word-spacing:3.942000px;}
.ws8e{word-spacing:4.140000px;}
.ws83{word-spacing:4.200000px;}
.ws42{word-spacing:4.260000px;}
.ws3f{word-spacing:4.320000px;}
.ws31{word-spacing:4.374000px;}
.ws5e{word-spacing:4.380000px;}
.ws4e{word-spacing:4.440000px;}
.ws85{word-spacing:4.560000px;}
.ws68{word-spacing:4.800000px;}
.ws8b{word-spacing:4.860000px;}
.ws3b{word-spacing:4.920000px;}
.ws76{word-spacing:4.980000px;}
.ws64{word-spacing:5.040000px;}
.ws58{word-spacing:5.220000px;}
.ws43{word-spacing:5.280000px;}
.ws2c{word-spacing:5.346000px;}
.ws56{word-spacing:5.640000px;}
.wsab{word-spacing:6.360000px;}
.ws3c{word-spacing:6.480000px;}
.ws4d{word-spacing:6.660000px;}
.ws71{word-spacing:6.720000px;}
.ws67{word-spacing:6.780000px;}
.ws66{word-spacing:6.900000px;}
.ws98{word-spacing:6.960000px;}
.ws2a{word-spacing:6.966000px;}
.ws96{word-spacing:7.020000px;}
.ws53{word-spacing:7.200000px;}
.ws45{word-spacing:7.380000px;}
.ws84{word-spacing:7.440000px;}
.ws74{word-spacing:7.500000px;}
.wsb6{word-spacing:7.656000px;}
.ws54{word-spacing:7.740000px;}
.wsaa{word-spacing:7.980000px;}
.ws5b{word-spacing:8.040000px;}
.wsa1{word-spacing:8.220000px;}
.wsb0{word-spacing:8.400000px;}
.ws61{word-spacing:8.520000px;}
.wsa3{word-spacing:8.580000px;}
.wsad{word-spacing:8.700000px;}
.ws40{word-spacing:8.820000px;}
.ws4b{word-spacing:8.940000px;}
.wsa4{word-spacing:9.120000px;}
.ws7c{word-spacing:9.180000px;}
.ws65{word-spacing:9.240000px;}
.ws9c{word-spacing:9.420000px;}
.ws93{word-spacing:9.480000px;}
.wsa9{word-spacing:10.080000px;}
.ws72{word-spacing:10.500000px;}
.ws5c{word-spacing:10.560000px;}
.ws82{word-spacing:11.100000px;}
.wsa2{word-spacing:12.240000px;}
.ws87{word-spacing:12.300000px;}
.ws9b{word-spacing:12.540000px;}
.ws6b{word-spacing:12.660000px;}
.ws91{word-spacing:12.840000px;}
.ws47{word-spacing:12.960000px;}
.ws90{word-spacing:13.140000px;}
.ws2f{word-spacing:13.230000px;}
.ws30{word-spacing:13.932000px;}
.ws4a{word-spacing:14.160000px;}
.ws9a{word-spacing:14.460000px;}
.wsa0{word-spacing:15.120000px;}
.ws2d{word-spacing:15.552000px;}
.wsa7{word-spacing:18.060000px;}
.ws7b{word-spacing:21.660000px;}
.ws8{word-spacing:23.382000px;}
.ws28{word-spacing:111.146400px;}
.wsa{word-spacing:139.945800px;}
.ws33{word-spacing:2355.748200px;}
._9{margin-left:-2909.152800px;}
._e{margin-left:-15.274200px;}
._2{margin-left:-11.544000px;}
._0{margin-left:-7.523400px;}
._1{margin-left:-5.717400px;}
._7{margin-left:-4.006800px;}
._3{margin-left:-2.698800px;}
._8{margin-left:-1.031400px;}
._6{width:1.976400px;}
._b{width:3.042000px;}
._11{width:4.081800px;}
._5{width:5.584800px;}
._d{width:6.647400px;}
._4{width:8.502000px;}
._12{width:10.149600px;}
._a{width:11.589000px;}
._13{width:13.018800px;}
._17{width:14.166000px;}
._14{width:15.306000px;}
._f{width:17.052000px;}
._15{width:18.756000px;}
._10{width:23.220000px;}
._16{width:24.438000px;}
._18{width:59.007000px;}
._c{width:202.052400px;}
.fc7{color:rgb(47,92,179);}
.fc6{color:transparent;}
.fc5{color:rgb(210,32,39);}
.fc3{color:rgb(42,62,146);}
.fc2{color:rgb(203,197,228);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(15,52,88);}
.fsd{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fsa{font-size:60.000000px;}
.fsb{font-size:66.000000px;}
.fsf{font-size:72.000000px;}
.fs5{font-size:73.920000px;}
.fs7{font-size:78.000000px;}
.fs4{font-size:84.120000px;}
.fs6{font-size:108.000000px;}
.fs10{font-size:126.000000px;}
.fs3{font-size:138.000000px;}
.fse{font-size:144.000000px;}
.fs8{font-size:156.000000px;}
.fs1{font-size:166.179000px;}
.fs0{font-size:186.120600px;}
.fsc{font-size:216.000000px;}
.fs2{font-size:232.650600px;}
.y0{bottom:0.000000px;}
.yc{bottom:62.251350px;}
.y4c{bottom:73.085100px;}
.yb{bottom:73.274550px;}
.y44{bottom:116.929200px;}
.y1a8{bottom:123.215100px;}
.y172{bottom:128.119050px;}
.y43{bottom:133.129200px;}
.ye5{bottom:133.546950px;}
.yc6{bottom:137.802450px;}
.y1a7{bottom:139.415100px;}
.y139{bottom:140.089350px;}
.y171{bottom:146.119050px;}
.y42{bottom:149.329200px;}
.ye4{bottom:151.546950px;}
.y7e{bottom:151.953450px;}
.y1a6{bottom:155.614950px;}
.yc5{bottom:155.802450px;}
.y138{bottom:158.089350px;}
.y170{bottom:164.119050px;}
.y41{bottom:165.529200px;}
.y117{bottom:165.561150px;}
.y27{bottom:166.281900px;}
.y7d{bottom:166.353450px;}
.ya{bottom:167.067600px;}
.ye3{bottom:169.546950px;}
.y1a5{bottom:171.815100px;}
.yc4{bottom:173.802450px;}
.y137{bottom:176.089350px;}
.y40{bottom:181.729200px;}
.y16f{bottom:182.119050px;}
.y26{bottom:182.481900px;}
.y116{bottom:184.611300px;}
.y7c{bottom:186.153450px;}
.ye2{bottom:187.546950px;}
.y136{bottom:194.089350px;}
.y3f{bottom:197.929200px;}
.y25{bottom:198.681900px;}
.y16e{bottom:200.119050px;}
.yc3{bottom:200.306400px;}
.y115{bottom:203.661150px;}
.ye1{bottom:205.546950px;}
.y1a4{bottom:206.015100px;}
.y7b{bottom:210.205500px;}
.y135{bottom:212.089350px;}
.y3e{bottom:214.129200px;}
.y16d{bottom:218.119050px;}
.yc2{bottom:218.306400px;}
.y114{bottom:222.711150px;}
.ye0{bottom:223.546950px;}
.y1a3{bottom:224.015100px;}
.y7a{bottom:224.605350px;}
.y134{bottom:230.089350px;}
.y3d{bottom:230.329200px;}
.y16c{bottom:236.119050px;}
.yc1{bottom:236.306400px;}
.ydf{bottom:241.546950px;}
.y113{bottom:241.761150px;}
.y1a2{bottom:242.015100px;}
.y79{bottom:244.405500px;}
.y3c{bottom:246.529200px;}
.y133{bottom:248.089350px;}
.y16b{bottom:254.119050px;}
.yc0{bottom:254.306400px;}
.y24{bottom:257.884800px;}
.y9{bottom:258.102900px;}
.yde{bottom:259.546950px;}
.y1a1{bottom:260.015100px;}
.y112{bottom:260.811150px;}
.y3b{bottom:262.729200px;}
.y132{bottom:266.089350px;}
.y78{bottom:268.457400px;}
.y16a{bottom:272.119050px;}
.ybf{bottom:272.306400px;}
.y23{bottom:274.084800px;}
.ydd{bottom:277.546950px;}
.y1a0{bottom:278.015100px;}
.y3a{bottom:278.929200px;}
.y111{bottom:279.861300px;}
.y8{bottom:281.502900px;}
.y77{bottom:282.857400px;}
.y131{bottom:284.089350px;}
.y169{bottom:290.119050px;}
.ybe{bottom:290.306400px;}
.ydc{bottom:295.546950px;}
.y19f{bottom:296.015100px;}
.y110{bottom:298.911150px;}
.y130{bottom:302.089350px;}
.y7{bottom:304.902900px;}
.y76{bottom:306.909450px;}
.y168{bottom:308.119050px;}
.ybd{bottom:308.306400px;}
.ydb{bottom:313.546950px;}
.y19e{bottom:314.015100px;}
.y10f{bottom:317.961150px;}
.y12f{bottom:320.089350px;}
.y75{bottom:321.309300px;}
.y167{bottom:326.119050px;}
.ybc{bottom:326.306400px;}
.yda{bottom:331.546950px;}
.y19d{bottom:332.015100px;}
.y10e{bottom:337.011150px;}
.y12e{bottom:338.089350px;}
.y6{bottom:339.102900px;}
.y74{bottom:341.109300px;}
.y22{bottom:341.942400px;}
.y166{bottom:344.119050px;}
.yd9{bottom:349.546950px;}
.y19c{bottom:350.015100px;}
.y48{bottom:352.975050px;}
.y10d{bottom:356.061150px;}
.y12d{bottom:356.089350px;}
.ybb{bottom:356.258250px;}
.y21{bottom:358.142400px;}
.y165{bottom:362.119050px;}
.y73{bottom:365.161350px;}
.yd8{bottom:367.546950px;}
.y19b{bottom:368.015100px;}
.y12c{bottom:374.089350px;}
.yba{bottom:374.258250px;}
.y10c{bottom:375.111300px;}
.y72{bottom:379.561350px;}
.y164{bottom:380.119050px;}
.y47{bottom:385.375050px;}
.y19a{bottom:386.015100px;}
.y12b{bottom:392.089350px;}
.yd7{bottom:394.050900px;}
.y10b{bottom:394.161150px;}
.y163{bottom:398.119050px;}
.y71{bottom:399.361350px;}
.yb9{bottom:400.762200px;}
.y199{bottom:404.015100px;}
.y12a{bottom:410.089350px;}
.y10a{bottom:413.211300px;}
.y162{bottom:416.119050px;}
.y46{bottom:417.775050px;}
.yb8{bottom:418.762200px;}
.y198{bottom:422.015100px;}
.y70{bottom:423.413250px;}
.y20{bottom:425.389650px;}
.y129{bottom:428.089350px;}
.y109{bottom:432.261150px;}
.yd6{bottom:433.650900px;}
.y161{bottom:434.119050px;}
.yb7{bottom:436.762200px;}
.y6f{bottom:437.813250px;}
.y197{bottom:440.015100px;}
.y1f{bottom:441.589650px;}
.y128{bottom:446.089350px;}
.y45{bottom:450.175050px;}
.y108{bottom:451.311150px;}
.y160{bottom:452.119050px;}
.yb6{bottom:454.762200px;}
.y6e{bottom:457.613250px;}
.y196{bottom:458.015100px;}
.y127{bottom:464.089350px;}
.y1b4{bottom:467.093100px;}
.y15f{bottom:470.119050px;}
.y107{bottom:470.361150px;}
.yb5{bottom:472.762200px;}
.y195{bottom:476.015100px;}
.y5{bottom:479.762700px;}
.y6d{bottom:481.665300px;}
.y126{bottom:482.089350px;}
.y1b3{bottom:485.093100px;}
.y15e{bottom:488.119050px;}
.y106{bottom:489.411150px;}
.yb4{bottom:490.762200px;}
.y194{bottom:494.015100px;}
.y6c{bottom:496.065300px;}
.y125{bottom:500.089350px;}
.y16{bottom:500.736900px;}
.y15d{bottom:506.119050px;}
.y105{bottom:508.461300px;}
.yb3{bottom:508.762200px;}
.y4{bottom:509.618700px;}
.y193{bottom:512.015100px;}
.y6b{bottom:515.865300px;}
.y15{bottom:516.936900px;}
.y124{bottom:518.089350px;}
.y4a{bottom:520.600350px;}
.y15c{bottom:524.119050px;}
.yb2{bottom:526.762200px;}
.y104{bottom:527.511150px;}
.y192{bottom:530.015100px;}
.y1c4{bottom:531.116250px;}
.y14{bottom:533.136900px;}
.y3{bottom:533.618700px;}
.y123{bottom:536.089350px;}
.y6a{bottom:539.917200px;}
.y15b{bottom:542.119050px;}
.y103{bottom:546.561150px;}
.y191{bottom:548.015100px;}
.y39{bottom:548.520900px;}
.y1c3{bottom:550.916400px;}
.y122{bottom:554.089350px;}
.y69{bottom:554.317200px;}
.yb1{bottom:555.987900px;}
.y15a{bottom:560.119050px;}
.y38{bottom:564.721050px;}
.y102{bottom:565.611150px;}
.y190{bottom:566.015100px;}
.y1c2{bottom:570.716250px;}
.y121{bottom:572.089350px;}
.yb0{bottom:573.987900px;}
.y68{bottom:574.117200px;}
.y159{bottom:578.119050px;}
.y37{bottom:580.920900px;}
.y18f{bottom:584.015100px;}
.y1b{bottom:584.184150px;}
.y101{bottom:584.661150px;}
.y120{bottom:590.089350px;}
.y1c1{bottom:590.516400px;}
.y158{bottom:596.119050px;}
.y36{bottom:597.120900px;}
.y67{bottom:598.169250px;}
.y1a{bottom:600.384150px;}
.yaf{bottom:600.491850px;}
.y18e{bottom:602.015100px;}
.y100{bottom:603.711300px;}
.y11f{bottom:608.089350px;}
.y66{bottom:612.569250px;}
.y35{bottom:613.320900px;}
.y157{bottom:614.119050px;}
.y9b{bottom:615.833400px;}
.y19{bottom:616.584150px;}
.yae{bottom:618.491850px;}
.y18d{bottom:620.015100px;}
.yff{bottom:622.761150px;}
.y11e{bottom:626.089350px;}
.y34{bottom:629.520900px;}
.y9a{bottom:630.233400px;}
.y156{bottom:632.119050px;}
.y65{bottom:632.369250px;}
.yad{bottom:636.491850px;}
.y1be{bottom:637.631700px;}
.y18c{bottom:638.015100px;}
.yfe{bottom:641.811150px;}
.y11d{bottom:644.089350px;}
.y33{bottom:645.721050px;}
.y99{bottom:650.033400px;}
.y155{bottom:650.119050px;}
.yac{bottom:654.491850px;}
.y18b{bottom:656.015100px;}
.y64{bottom:656.421150px;}
.y1bd{bottom:657.431700px;}
.yfd{bottom:660.861150px;}
.y32{bottom:661.920900px;}
.y11c{bottom:662.089350px;}
.y11{bottom:667.631400px;}
.y154{bottom:668.119050px;}
.y63{bottom:670.821150px;}
.yab{bottom:672.491850px;}
.y18a{bottom:674.015100px;}
.y98{bottom:674.085450px;}
.y1bc{bottom:677.231700px;}
.yfc{bottom:679.911150px;}
.y11b{bottom:680.089350px;}
.y10{bottom:683.831400px;}
.y153{bottom:686.119050px;}
.y97{bottom:688.485450px;}
.yaa{bottom:690.491850px;}
.y62{bottom:690.621150px;}
.y189{bottom:692.015100px;}
.y2{bottom:694.402200px;}
.y11a{bottom:698.089350px;}
.yfb{bottom:698.961300px;}
.yf{bottom:700.031400px;}
.y152{bottom:704.119050px;}
.y96{bottom:708.285450px;}
.ya9{bottom:708.491850px;}
.y188{bottom:710.015100px;}
.y61{bottom:714.673200px;}
.y119{bottom:716.089350px;}
.y151{bottom:722.119050px;}
.y1c0{bottom:725.087700px;}
.yfa{bottom:726.515100px;}
.y187{bottom:728.015100px;}
.y60{bottom:729.073200px;}
.y95{bottom:732.337350px;}
.y150{bottom:740.119050px;}
.y1bf{bottom:744.887700px;}
.y186{bottom:746.015100px;}
.y94{bottom:746.737350px;}
.y5f{bottom:748.873200px;}
.y1e{bottom:751.078650px;}
.y118{bottom:752.089350px;}
.y31{bottom:752.166900px;}
.y14f{bottom:758.119050px;}
.y1{bottom:760.180350px;}
.y185{bottom:764.015100px;}
.yf9{bottom:764.615100px;}
.y1d{bottom:767.278650px;}
.y30{bottom:768.366900px;}
.y93{bottom:770.789400px;}
.ya8{bottom:771.637350px;}
.y5e{bottom:772.925100px;}
.y14e{bottom:776.119050px;}
.y184{bottom:782.015100px;}
.y1c{bottom:783.478800px;}
.yf8{bottom:783.665100px;}
.y2f{bottom:784.566900px;}
.y92{bottom:785.189250px;}
.y5d{bottom:787.325100px;}
.ya7{bottom:791.437350px;}
.y14d{bottom:794.119050px;}
.y183{bottom:800.015100px;}
.yf7{bottom:802.715100px;}
.y91{bottom:804.989250px;}
.y1bb{bottom:805.079550px;}
.y5c{bottom:807.125100px;}
.ya6{bottom:811.237350px;}
.y14c{bottom:812.119050px;}
.y2e{bottom:816.966900px;}
.y182{bottom:818.015100px;}
.yf6{bottom:821.765100px;}
.y1ba{bottom:824.879550px;}
.y90{bottom:829.041300px;}
.y14b{bottom:830.119050px;}
.ya5{bottom:831.037350px;}
.y5b{bottom:831.177000px;}
.y2d{bottom:833.166900px;}
.y181{bottom:836.015100px;}
.y13{bottom:842.626050px;}
.y8f{bottom:843.441300px;}
.y1b9{bottom:844.679550px;}
.y5a{bottom:845.577150px;}
.y14a{bottom:848.119050px;}
.yf5{bottom:849.319050px;}
.y2c{bottom:849.366900px;}
.y180{bottom:854.015100px;}
.y12{bottom:858.826050px;}
.y8e{bottom:863.241300px;}
.y1b8{bottom:864.479550px;}
.y59{bottom:865.377150px;}
.y149{bottom:866.119050px;}
.ya4{bottom:870.637350px;}
.y17f{bottom:872.015100px;}
.y2b{bottom:881.766900px;}
.y148{bottom:884.119050px;}
.y8d{bottom:887.293200px;}
.yf4{bottom:887.419050px;}
.y58{bottom:889.429050px;}
.y17e{bottom:890.015100px;}
.ya3{bottom:890.437350px;}
.yd5{bottom:890.534400px;}
.y1b5{bottom:893.690400px;}
.y2a{bottom:897.966900px;}
.y8c{bottom:901.693200px;}
.y147{bottom:902.119050px;}
.y57{bottom:903.829050px;}
.yf3{bottom:906.469050px;}
.y17d{bottom:908.015100px;}
.yd4{bottom:908.534400px;}
.ya2{bottom:910.237350px;}
.y146{bottom:920.119050px;}
.y56{bottom:923.629050px;}
.yf2{bottom:925.519050px;}
.y8b{bottom:925.745250px;}
.y17c{bottom:926.015100px;}
.y18{bottom:926.073150px;}
.yd3{bottom:926.534400px;}
.ya1{bottom:930.037350px;}
.y145{bottom:938.119050px;}
.y8a{bottom:940.145250px;}
.y17{bottom:942.273150px;}
.y17b{bottom:944.015100px;}
.yd2{bottom:944.534400px;}
.yf1{bottom:944.568900px;}
.y55{bottom:947.681100px;}
.ya0{bottom:949.837350px;}
.y144{bottom:956.119050px;}
.y17a{bottom:962.015100px;}
.y54{bottom:962.081100px;}
.yd1{bottom:962.534400px;}
.y1b7{bottom:962.658900px;}
.yf0{bottom:963.619050px;}
.y89{bottom:964.197300px;}
.y143{bottom:974.119050px;}
.y1b2{bottom:977.010900px;}
.y88{bottom:978.597150px;}
.y179{bottom:980.015100px;}
.yd0{bottom:980.534400px;}
.y53{bottom:981.881100px;}
.yef{bottom:982.669050px;}
.y142{bottom:992.119050px;}
.y1b6{bottom:992.762850px;}
.y1b1{bottom:993.210900px;}
.y178{bottom:998.015100px;}
.y87{bottom:998.397150px;}
.ycf{bottom:998.534400px;}
.yee{bottom:1001.719050px;}
.y52{bottom:1005.933150px;}
.y9f{bottom:1007.437350px;}
.y1b0{bottom:1009.410900px;}
.ye{bottom:1009.520250px;}
.y141{bottom:1010.119050px;}
.y177{bottom:1016.015100px;}
.yce{bottom:1016.534400px;}
.y51{bottom:1020.333000px;}
.yed{bottom:1020.768900px;}
.y86{bottom:1022.449200px;}
.y1af{bottom:1025.610900px;}
.yd{bottom:1025.720250px;}
.y140{bottom:1028.119050px;}
.y176{bottom:1034.015100px;}
.ycd{bottom:1034.534400px;}
.y85{bottom:1036.849200px;}
.yec{bottom:1039.818900px;}
.y50{bottom:1040.133150px;}
.y1ae{bottom:1041.810900px;}
.y13f{bottom:1046.119050px;}
.y9e{bottom:1050.637500px;}
.y175{bottom:1052.015100px;}
.ycc{bottom:1052.534400px;}
.y1ad{bottom:1058.010900px;}
.yeb{bottom:1058.869050px;}
.y84{bottom:1060.901250px;}
.y13e{bottom:1064.119050px;}
.y4f{bottom:1064.185050px;}
.y49{bottom:1069.320300px;}
.y174{bottom:1070.015100px;}
.ycb{bottom:1070.534400px;}
.y1ac{bottom:1074.210900px;}
.y83{bottom:1075.301100px;}
.yea{bottom:1077.919050px;}
.y4e{bottom:1078.585050px;}
.y13d{bottom:1082.119050px;}
.yca{bottom:1088.534400px;}
.y1ab{bottom:1090.410900px;}
.y9d{bottom:1093.837500px;}
.y173{bottom:1096.518900px;}
.ye9{bottom:1096.969050px;}
.y82{bottom:1099.353150px;}
.y13c{bottom:1100.119050px;}
.yc9{bottom:1106.534400px;}
.y1aa{bottom:1106.610900px;}
.y81{bottom:1113.753150px;}
.ye8{bottom:1116.018900px;}
.y13b{bottom:1118.119050px;}
.y1a9{bottom:1122.810900px;}
.yc8{bottom:1124.534400px;}
.y4d{bottom:1125.725850px;}
.ye7{bottom:1135.068900px;}
.y13a{bottom:1136.119050px;}
.y9c{bottom:1137.037500px;}
.y80{bottom:1137.805050px;}
.y29{bottom:1139.010900px;}
.yc7{bottom:1151.038350px;}
.y7f{bottom:1152.205050px;}
.ye6{bottom:1154.119050px;}
.y28{bottom:1155.210900px;}
.y4b{bottom:1190.258550px;}
.h13{height:34.945312px;}
.h15{height:35.156250px;}
.hb{height:39.313477px;}
.hc{height:39.366211px;}
.h9{height:39.474000px;}
.hd{height:39.550781px;}
.he{height:39.577148px;}
.h1b{height:42.568359px;}
.h17{height:43.740234px;}
.h10{height:43.800000px;}
.h18{height:43.974609px;}
.h12{height:46.825195px;}
.hf{height:48.049805px;}
.h1f{height:48.114258px;}
.h19{height:48.339844px;}
.h20{height:48.372070px;}
.h1a{height:51.082031px;}
.h1c{height:51.972656px;}
.h1e{height:52.488281px;}
.h5{height:53.887969px;}
.h7{height:56.862305px;}
.h14{height:57.169922px;}
.h4{height:61.241660px;}
.h6{height:78.626953px;}
.ha{height:82.701211px;}
.h1d{height:85.148438px;}
.h3{height:100.602539px;}
.h16{height:102.164062px;}
.h8{height:113.724609px;}
.h11{height:157.464844px;}
.h2{height:169.375998px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:66.167400px;}
.x18{left:68.031450px;}
.x16{left:70.370100px;}
.x2d{left:72.047250px;}
.x27{left:74.031450px;}
.x30{left:77.844000px;}
.x2e{left:79.833900px;}
.x1c{left:93.487200px;}
.x10{left:97.795200px;}
.x11{left:101.014950px;}
.xc{left:105.451200px;}
.x19{left:110.551200px;}
.x1b{left:119.063400px;}
.x1d{left:126.709950px;}
.x31{left:132.588750px;}
.x1a{left:140.314950px;}
.xb{left:148.393650px;}
.x1e{left:153.639600px;}
.x2f{left:176.300100px;}
.x2c{left:178.582650px;}
.x2{left:230.261700px;}
.x32{left:232.974600px;}
.x29{left:234.253050px;}
.x14{left:250.729650px;}
.x17{left:284.456700px;}
.x2b{left:356.685450px;}
.x2a{left:397.385400px;}
.x25{left:491.917350px;}
.xd{left:508.435050px;}
.x26{left:529.219650px;}
.x12{left:538.265850px;}
.x21{left:540.286500px;}
.xf{left:546.147600px;}
.x24{left:548.464050px;}
.x22{left:559.446750px;}
.xe{left:561.915150px;}
.x1f{left:569.540250px;}
.x20{left:574.424700px;}
.x23{left:603.165000px;}
.x15{left:610.464750px;}
.x1{left:644.665350px;}
.x28{left:692.898300px;}
.x8{left:700.021800px;}
.x5{left:702.425100px;}
.x3{left:705.924000px;}
.x7{left:727.285200px;}
.x6{left:734.093100px;}
.x9{left:738.663450px;}
.x4{left:743.316900px;}
.x13{left:848.529600px;}
@media print{
.v2{vertical-align:-39.193600pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:38.520000pt;}
.ls6{letter-spacing:-1.173333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:1.066667pt;}
.ls3{letter-spacing:11.733333pt;}
.ls5{letter-spacing:12.800000pt;}
.ls1{letter-spacing:18.720000pt;}
.ls2{letter-spacing:2119.651733pt;}
.ws0{word-spacing:-45.992468pt;}
.ws34{word-spacing:-26.880000pt;}
.ws1{word-spacing:-26.688000pt;}
.wsb{word-spacing:-18.720000pt;}
.wsb4{word-spacing:-17.792000pt;}
.ws6c{word-spacing:-14.826667pt;}
.ws5{word-spacing:-13.344000pt;}
.ws1e{word-spacing:-12.906667pt;}
.ws14{word-spacing:-11.616000pt;}
.ws13{word-spacing:-10.912000pt;}
.ws6{word-spacing:-10.816000pt;}
.ws1a{word-spacing:-9.914667pt;}
.ws12{word-spacing:-9.856000pt;}
.ws1c{word-spacing:-8.976000pt;}
.ws16{word-spacing:-8.682667pt;}
.ws11{word-spacing:-8.389333pt;}
.ws23{word-spacing:-8.330667pt;}
.wsf{word-spacing:-8.096000pt;}
.ws10{word-spacing:-7.978667pt;}
.ws80{word-spacing:-7.200000pt;}
.ws27{word-spacing:-6.864000pt;}
.wsd{word-spacing:-6.805333pt;}
.ws15{word-spacing:-6.394667pt;}
.ws24{word-spacing:-5.984000pt;}
.ws19{word-spacing:-5.925333pt;}
.ws26{word-spacing:-5.866667pt;}
.ws1b{word-spacing:-5.573333pt;}
.ws1f{word-spacing:-5.221333pt;}
.ws4c{word-spacing:-5.066667pt;}
.ws20{word-spacing:-4.810667pt;}
.ws75{word-spacing:-4.800000pt;}
.ws22{word-spacing:-4.752000pt;}
.ws5a{word-spacing:-4.746667pt;}
.ws1d{word-spacing:-4.341333pt;}
.ws8d{word-spacing:-4.160000pt;}
.ws5f{word-spacing:-3.680000pt;}
.ws21{word-spacing:-3.637333pt;}
.ws7d{word-spacing:-3.626667pt;}
.wsb5{word-spacing:-3.520000pt;}
.ws39{word-spacing:-3.306667pt;}
.wsa6{word-spacing:-3.146667pt;}
.ws17{word-spacing:-3.050667pt;}
.ws25{word-spacing:-2.816000pt;}
.ws46{word-spacing:-2.560000pt;}
.wsb3{word-spacing:-2.448000pt;}
.wsae{word-spacing:-2.346667pt;}
.ws59{word-spacing:-2.186667pt;}
.ws8f{word-spacing:-2.133333pt;}
.ws89{word-spacing:-1.866667pt;}
.ws7{word-spacing:-1.776000pt;}
.wsac{word-spacing:-1.760000pt;}
.ws6e{word-spacing:-1.706667pt;}
.wsa5{word-spacing:-1.653333pt;}
.wsa8{word-spacing:-1.600000pt;}
.ws32{word-spacing:-1.584000pt;}
.wse{word-spacing:-1.578667pt;}
.ws69{word-spacing:-1.493333pt;}
.ws18{word-spacing:-1.466667pt;}
.ws4{word-spacing:-1.456000pt;}
.ws2e{word-spacing:-1.440000pt;}
.ws62{word-spacing:-1.386667pt;}
.ws48{word-spacing:-1.226667pt;}
.wsc{word-spacing:-1.066667pt;}
.ws2b{word-spacing:-1.056000pt;}
.ws50{word-spacing:-0.960000pt;}
.ws3{word-spacing:-0.919893pt;}
.ws9{word-spacing:-0.864000pt;}
.ws60{word-spacing:-0.800000pt;}
.ws5d{word-spacing:-0.746667pt;}
.ws79{word-spacing:-0.640000pt;}
.ws94{word-spacing:-0.480000pt;}
.ws9f{word-spacing:-0.426667pt;}
.ws4f{word-spacing:-0.373333pt;}
.ws88{word-spacing:-0.213333pt;}
.ws3a{word-spacing:-0.160000pt;}
.ws2{word-spacing:0.000000pt;}
.wsb1{word-spacing:0.192000pt;}
.ws77{word-spacing:0.213333pt;}
.ws55{word-spacing:0.266667pt;}
.ws70{word-spacing:0.320000pt;}
.ws52{word-spacing:0.373333pt;}
.ws35{word-spacing:0.426667pt;}
.ws44{word-spacing:0.480000pt;}
.ws99{word-spacing:0.586667pt;}
.ws6a{word-spacing:0.640000pt;}
.ws8a{word-spacing:0.693333pt;}
.ws6d{word-spacing:0.906667pt;}
.ws38{word-spacing:1.120000pt;}
.ws86{word-spacing:1.173333pt;}
.wsaf{word-spacing:1.226667pt;}
.ws97{word-spacing:1.280000pt;}
.ws7a{word-spacing:1.333333pt;}
.ws92{word-spacing:1.440000pt;}
.ws9d{word-spacing:1.600000pt;}
.ws9e{word-spacing:1.706667pt;}
.ws36{word-spacing:1.866667pt;}
.ws41{word-spacing:2.026667pt;}
.ws51{word-spacing:2.133333pt;}
.ws37{word-spacing:2.240000pt;}
.ws8c{word-spacing:2.346667pt;}
.ws63{word-spacing:2.400000pt;}
.ws49{word-spacing:2.453333pt;}
.ws7f{word-spacing:2.506667pt;}
.ws29{word-spacing:2.544000pt;}
.ws78{word-spacing:2.560000pt;}
.ws81{word-spacing:2.666667pt;}
.ws7e{word-spacing:2.720000pt;}
.ws3e{word-spacing:2.826667pt;}
.ws6f{word-spacing:2.880000pt;}
.ws3d{word-spacing:2.986667pt;}
.ws57{word-spacing:3.200000pt;}
.ws73{word-spacing:3.253333pt;}
.ws95{word-spacing:3.466667pt;}
.wsb2{word-spacing:3.504000pt;}
.ws8e{word-spacing:3.680000pt;}
.ws83{word-spacing:3.733333pt;}
.ws42{word-spacing:3.786667pt;}
.ws3f{word-spacing:3.840000pt;}
.ws31{word-spacing:3.888000pt;}
.ws5e{word-spacing:3.893333pt;}
.ws4e{word-spacing:3.946667pt;}
.ws85{word-spacing:4.053333pt;}
.ws68{word-spacing:4.266667pt;}
.ws8b{word-spacing:4.320000pt;}
.ws3b{word-spacing:4.373333pt;}
.ws76{word-spacing:4.426667pt;}
.ws64{word-spacing:4.480000pt;}
.ws58{word-spacing:4.640000pt;}
.ws43{word-spacing:4.693333pt;}
.ws2c{word-spacing:4.752000pt;}
.ws56{word-spacing:5.013333pt;}
.wsab{word-spacing:5.653333pt;}
.ws3c{word-spacing:5.760000pt;}
.ws4d{word-spacing:5.920000pt;}
.ws71{word-spacing:5.973333pt;}
.ws67{word-spacing:6.026667pt;}
.ws66{word-spacing:6.133333pt;}
.ws98{word-spacing:6.186667pt;}
.ws2a{word-spacing:6.192000pt;}
.ws96{word-spacing:6.240000pt;}
.ws53{word-spacing:6.400000pt;}
.ws45{word-spacing:6.560000pt;}
.ws84{word-spacing:6.613333pt;}
.ws74{word-spacing:6.666667pt;}
.wsb6{word-spacing:6.805333pt;}
.ws54{word-spacing:6.880000pt;}
.wsaa{word-spacing:7.093333pt;}
.ws5b{word-spacing:7.146667pt;}
.wsa1{word-spacing:7.306667pt;}
.wsb0{word-spacing:7.466667pt;}
.ws61{word-spacing:7.573333pt;}
.wsa3{word-spacing:7.626667pt;}
.wsad{word-spacing:7.733333pt;}
.ws40{word-spacing:7.840000pt;}
.ws4b{word-spacing:7.946667pt;}
.wsa4{word-spacing:8.106667pt;}
.ws7c{word-spacing:8.160000pt;}
.ws65{word-spacing:8.213333pt;}
.ws9c{word-spacing:8.373333pt;}
.ws93{word-spacing:8.426667pt;}
.wsa9{word-spacing:8.960000pt;}
.ws72{word-spacing:9.333333pt;}
.ws5c{word-spacing:9.386667pt;}
.ws82{word-spacing:9.866667pt;}
.wsa2{word-spacing:10.880000pt;}
.ws87{word-spacing:10.933333pt;}
.ws9b{word-spacing:11.146667pt;}
.ws6b{word-spacing:11.253333pt;}
.ws91{word-spacing:11.413333pt;}
.ws47{word-spacing:11.520000pt;}
.ws90{word-spacing:11.680000pt;}
.ws2f{word-spacing:11.760000pt;}
.ws30{word-spacing:12.384000pt;}
.ws4a{word-spacing:12.586667pt;}
.ws9a{word-spacing:12.853333pt;}
.wsa0{word-spacing:13.440000pt;}
.ws2d{word-spacing:13.824000pt;}
.wsa7{word-spacing:16.053333pt;}
.ws7b{word-spacing:19.253333pt;}
.ws8{word-spacing:20.784000pt;}
.ws28{word-spacing:98.796800pt;}
.wsa{word-spacing:124.396267pt;}
.ws33{word-spacing:2093.998400pt;}
._9{margin-left:-2585.913600pt;}
._e{margin-left:-13.577067pt;}
._2{margin-left:-10.261333pt;}
._0{margin-left:-6.687467pt;}
._1{margin-left:-5.082133pt;}
._7{margin-left:-3.561600pt;}
._3{margin-left:-2.398933pt;}
._8{margin-left:-0.916800pt;}
._6{width:1.756800pt;}
._b{width:2.704000pt;}
._11{width:3.628267pt;}
._5{width:4.964267pt;}
._d{width:5.908800pt;}
._4{width:7.557333pt;}
._12{width:9.021867pt;}
._a{width:10.301333pt;}
._13{width:11.572267pt;}
._17{width:12.592000pt;}
._14{width:13.605333pt;}
._f{width:15.157333pt;}
._15{width:16.672000pt;}
._10{width:20.640000pt;}
._16{width:21.722667pt;}
._18{width:52.450667pt;}
._c{width:179.602133pt;}
.fsd{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fsa{font-size:53.333333pt;}
.fsb{font-size:58.666667pt;}
.fsf{font-size:64.000000pt;}
.fs5{font-size:65.706667pt;}
.fs7{font-size:69.333333pt;}
.fs4{font-size:74.773333pt;}
.fs6{font-size:96.000000pt;}
.fs10{font-size:112.000000pt;}
.fs3{font-size:122.666667pt;}
.fse{font-size:128.000000pt;}
.fs8{font-size:138.666667pt;}
.fs1{font-size:147.714667pt;}
.fs0{font-size:165.440533pt;}
.fsc{font-size:192.000000pt;}
.fs2{font-size:206.800533pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:55.334533pt;}
.y4c{bottom:64.964533pt;}
.yb{bottom:65.132933pt;}
.y44{bottom:103.937067pt;}
.y1a8{bottom:109.524533pt;}
.y172{bottom:113.883600pt;}
.y43{bottom:118.337067pt;}
.ye5{bottom:118.708400pt;}
.yc6{bottom:122.491067pt;}
.y1a7{bottom:123.924533pt;}
.y139{bottom:124.523867pt;}
.y171{bottom:129.883600pt;}
.y42{bottom:132.737067pt;}
.ye4{bottom:134.708400pt;}
.y7e{bottom:135.069733pt;}
.y1a6{bottom:138.324400pt;}
.yc5{bottom:138.491067pt;}
.y138{bottom:140.523867pt;}
.y170{bottom:145.883600pt;}
.y41{bottom:147.137067pt;}
.y117{bottom:147.165467pt;}
.y27{bottom:147.806133pt;}
.y7d{bottom:147.869733pt;}
.ya{bottom:148.504533pt;}
.ye3{bottom:150.708400pt;}
.y1a5{bottom:152.724533pt;}
.yc4{bottom:154.491067pt;}
.y137{bottom:156.523867pt;}
.y40{bottom:161.537067pt;}
.y16f{bottom:161.883600pt;}
.y26{bottom:162.206133pt;}
.y116{bottom:164.098933pt;}
.y7c{bottom:165.469733pt;}
.ye2{bottom:166.708400pt;}
.y136{bottom:172.523867pt;}
.y3f{bottom:175.937067pt;}
.y25{bottom:176.606133pt;}
.y16e{bottom:177.883600pt;}
.yc3{bottom:178.050133pt;}
.y115{bottom:181.032133pt;}
.ye1{bottom:182.708400pt;}
.y1a4{bottom:183.124533pt;}
.y7b{bottom:186.849333pt;}
.y135{bottom:188.523867pt;}
.y3e{bottom:190.337067pt;}
.y16d{bottom:193.883600pt;}
.yc2{bottom:194.050133pt;}
.y114{bottom:197.965467pt;}
.ye0{bottom:198.708400pt;}
.y1a3{bottom:199.124533pt;}
.y7a{bottom:199.649200pt;}
.y134{bottom:204.523867pt;}
.y3d{bottom:204.737067pt;}
.y16c{bottom:209.883600pt;}
.yc1{bottom:210.050133pt;}
.ydf{bottom:214.708400pt;}
.y113{bottom:214.898800pt;}
.y1a2{bottom:215.124533pt;}
.y79{bottom:217.249333pt;}
.y3c{bottom:219.137067pt;}
.y133{bottom:220.523867pt;}
.y16b{bottom:225.883600pt;}
.yc0{bottom:226.050133pt;}
.y24{bottom:229.230933pt;}
.y9{bottom:229.424800pt;}
.yde{bottom:230.708400pt;}
.y1a1{bottom:231.124533pt;}
.y112{bottom:231.832133pt;}
.y3b{bottom:233.537067pt;}
.y132{bottom:236.523867pt;}
.y78{bottom:238.628800pt;}
.y16a{bottom:241.883600pt;}
.ybf{bottom:242.050133pt;}
.y23{bottom:243.630933pt;}
.ydd{bottom:246.708400pt;}
.y1a0{bottom:247.124533pt;}
.y3a{bottom:247.937067pt;}
.y111{bottom:248.765600pt;}
.y8{bottom:250.224800pt;}
.y77{bottom:251.428800pt;}
.y131{bottom:252.523867pt;}
.y169{bottom:257.883600pt;}
.ybe{bottom:258.050133pt;}
.ydc{bottom:262.708400pt;}
.y19f{bottom:263.124533pt;}
.y110{bottom:265.698800pt;}
.y130{bottom:268.523867pt;}
.y7{bottom:271.024800pt;}
.y76{bottom:272.808400pt;}
.y168{bottom:273.883600pt;}
.ybd{bottom:274.050133pt;}
.ydb{bottom:278.708400pt;}
.y19e{bottom:279.124533pt;}
.y10f{bottom:282.632133pt;}
.y12f{bottom:284.523867pt;}
.y75{bottom:285.608267pt;}
.y167{bottom:289.883600pt;}
.ybc{bottom:290.050133pt;}
.yda{bottom:294.708400pt;}
.y19d{bottom:295.124533pt;}
.y10e{bottom:299.565467pt;}
.y12e{bottom:300.523867pt;}
.y6{bottom:301.424800pt;}
.y74{bottom:303.208267pt;}
.y22{bottom:303.948800pt;}
.y166{bottom:305.883600pt;}
.yd9{bottom:310.708400pt;}
.y19c{bottom:311.124533pt;}
.y48{bottom:313.755600pt;}
.y10d{bottom:316.498800pt;}
.y12d{bottom:316.523867pt;}
.ybb{bottom:316.674000pt;}
.y21{bottom:318.348800pt;}
.y165{bottom:321.883600pt;}
.y73{bottom:324.587867pt;}
.yd8{bottom:326.708400pt;}
.y19b{bottom:327.124533pt;}
.y12c{bottom:332.523867pt;}
.yba{bottom:332.674000pt;}
.y10c{bottom:333.432267pt;}
.y72{bottom:337.387867pt;}
.y164{bottom:337.883600pt;}
.y47{bottom:342.555600pt;}
.y19a{bottom:343.124533pt;}
.y12b{bottom:348.523867pt;}
.yd7{bottom:350.267467pt;}
.y10b{bottom:350.365467pt;}
.y163{bottom:353.883600pt;}
.y71{bottom:354.987867pt;}
.yb9{bottom:356.233067pt;}
.y199{bottom:359.124533pt;}
.y12a{bottom:364.523867pt;}
.y10a{bottom:367.298933pt;}
.y162{bottom:369.883600pt;}
.y46{bottom:371.355600pt;}
.yb8{bottom:372.233067pt;}
.y198{bottom:375.124533pt;}
.y70{bottom:376.367333pt;}
.y20{bottom:378.124133pt;}
.y129{bottom:380.523867pt;}
.y109{bottom:384.232133pt;}
.yd6{bottom:385.467467pt;}
.y161{bottom:385.883600pt;}
.yb7{bottom:388.233067pt;}
.y6f{bottom:389.167333pt;}
.y197{bottom:391.124533pt;}
.y1f{bottom:392.524133pt;}
.y128{bottom:396.523867pt;}
.y45{bottom:400.155600pt;}
.y108{bottom:401.165467pt;}
.y160{bottom:401.883600pt;}
.yb6{bottom:404.233067pt;}
.y6e{bottom:406.767333pt;}
.y196{bottom:407.124533pt;}
.y127{bottom:412.523867pt;}
.y1b4{bottom:415.193867pt;}
.y15f{bottom:417.883600pt;}
.y107{bottom:418.098800pt;}
.yb5{bottom:420.233067pt;}
.y195{bottom:423.124533pt;}
.y5{bottom:426.455733pt;}
.y6d{bottom:428.146933pt;}
.y126{bottom:428.523867pt;}
.y1b3{bottom:431.193867pt;}
.y15e{bottom:433.883600pt;}
.y106{bottom:435.032133pt;}
.yb4{bottom:436.233067pt;}
.y194{bottom:439.124533pt;}
.y6c{bottom:440.946933pt;}
.y125{bottom:444.523867pt;}
.y16{bottom:445.099467pt;}
.y15d{bottom:449.883600pt;}
.y105{bottom:451.965600pt;}
.yb3{bottom:452.233067pt;}
.y4{bottom:452.994400pt;}
.y193{bottom:455.124533pt;}
.y6b{bottom:458.546933pt;}
.y15{bottom:459.499467pt;}
.y124{bottom:460.523867pt;}
.y4a{bottom:462.755867pt;}
.y15c{bottom:465.883600pt;}
.yb2{bottom:468.233067pt;}
.y104{bottom:468.898800pt;}
.y192{bottom:471.124533pt;}
.y1c4{bottom:472.103333pt;}
.y14{bottom:473.899467pt;}
.y3{bottom:474.327733pt;}
.y123{bottom:476.523867pt;}
.y6a{bottom:479.926400pt;}
.y15b{bottom:481.883600pt;}
.y103{bottom:485.832133pt;}
.y191{bottom:487.124533pt;}
.y39{bottom:487.574133pt;}
.y1c3{bottom:489.703467pt;}
.y122{bottom:492.523867pt;}
.y69{bottom:492.726400pt;}
.yb1{bottom:494.211467pt;}
.y15a{bottom:497.883600pt;}
.y38{bottom:501.974267pt;}
.y102{bottom:502.765467pt;}
.y190{bottom:503.124533pt;}
.y1c2{bottom:507.303333pt;}
.y121{bottom:508.523867pt;}
.yb0{bottom:510.211467pt;}
.y68{bottom:510.326400pt;}
.y159{bottom:513.883600pt;}
.y37{bottom:516.374133pt;}
.y18f{bottom:519.124533pt;}
.y1b{bottom:519.274800pt;}
.y101{bottom:519.698800pt;}
.y120{bottom:524.523867pt;}
.y1c1{bottom:524.903467pt;}
.y158{bottom:529.883600pt;}
.y36{bottom:530.774133pt;}
.y67{bottom:531.706000pt;}
.y1a{bottom:533.674800pt;}
.yaf{bottom:533.770533pt;}
.y18e{bottom:535.124533pt;}
.y100{bottom:536.632267pt;}
.y11f{bottom:540.523867pt;}
.y66{bottom:544.506000pt;}
.y35{bottom:545.174133pt;}
.y157{bottom:545.883600pt;}
.y9b{bottom:547.407467pt;}
.y19{bottom:548.074800pt;}
.yae{bottom:549.770533pt;}
.y18d{bottom:551.124533pt;}
.yff{bottom:553.565467pt;}
.y11e{bottom:556.523867pt;}
.y34{bottom:559.574133pt;}
.y9a{bottom:560.207467pt;}
.y156{bottom:561.883600pt;}
.y65{bottom:562.106000pt;}
.yad{bottom:565.770533pt;}
.y1be{bottom:566.783733pt;}
.y18c{bottom:567.124533pt;}
.yfe{bottom:570.498800pt;}
.y11d{bottom:572.523867pt;}
.y33{bottom:573.974267pt;}
.y99{bottom:577.807467pt;}
.y155{bottom:577.883600pt;}
.yac{bottom:581.770533pt;}
.y18b{bottom:583.124533pt;}
.y64{bottom:583.485467pt;}
.y1bd{bottom:584.383733pt;}
.yfd{bottom:587.432133pt;}
.y32{bottom:588.374133pt;}
.y11c{bottom:588.523867pt;}
.y11{bottom:593.450133pt;}
.y154{bottom:593.883600pt;}
.y63{bottom:596.285467pt;}
.yab{bottom:597.770533pt;}
.y18a{bottom:599.124533pt;}
.y98{bottom:599.187067pt;}
.y1bc{bottom:601.983733pt;}
.yfc{bottom:604.365467pt;}
.y11b{bottom:604.523867pt;}
.y10{bottom:607.850133pt;}
.y153{bottom:609.883600pt;}
.y97{bottom:611.987067pt;}
.yaa{bottom:613.770533pt;}
.y62{bottom:613.885467pt;}
.y189{bottom:615.124533pt;}
.y2{bottom:617.246400pt;}
.y11a{bottom:620.523867pt;}
.yfb{bottom:621.298933pt;}
.yf{bottom:622.250133pt;}
.y152{bottom:625.883600pt;}
.y96{bottom:629.587067pt;}
.ya9{bottom:629.770533pt;}
.y188{bottom:631.124533pt;}
.y61{bottom:635.265067pt;}
.y119{bottom:636.523867pt;}
.y151{bottom:641.883600pt;}
.y1c0{bottom:644.522400pt;}
.yfa{bottom:645.791200pt;}
.y187{bottom:647.124533pt;}
.y60{bottom:648.065067pt;}
.y95{bottom:650.966533pt;}
.y150{bottom:657.883600pt;}
.y1bf{bottom:662.122400pt;}
.y186{bottom:663.124533pt;}
.y94{bottom:663.766533pt;}
.y5f{bottom:665.665067pt;}
.y1e{bottom:667.625467pt;}
.y118{bottom:668.523867pt;}
.y31{bottom:668.592800pt;}
.y14f{bottom:673.883600pt;}
.y1{bottom:675.715867pt;}
.y185{bottom:679.124533pt;}
.yf9{bottom:679.657867pt;}
.y1d{bottom:682.025467pt;}
.y30{bottom:682.992800pt;}
.y93{bottom:685.146133pt;}
.ya8{bottom:685.899867pt;}
.y5e{bottom:687.044533pt;}
.y14e{bottom:689.883600pt;}
.y184{bottom:695.124533pt;}
.y1c{bottom:696.425600pt;}
.yf8{bottom:696.591200pt;}
.y2f{bottom:697.392800pt;}
.y92{bottom:697.946000pt;}
.y5d{bottom:699.844533pt;}
.ya7{bottom:703.499867pt;}
.y14d{bottom:705.883600pt;}
.y183{bottom:711.124533pt;}
.yf7{bottom:713.524533pt;}
.y91{bottom:715.546000pt;}
.y1bb{bottom:715.626267pt;}
.y5c{bottom:717.444533pt;}
.ya6{bottom:721.099867pt;}
.y14c{bottom:721.883600pt;}
.y2e{bottom:726.192800pt;}
.y182{bottom:727.124533pt;}
.yf6{bottom:730.457867pt;}
.y1ba{bottom:733.226267pt;}
.y90{bottom:736.925600pt;}
.y14b{bottom:737.883600pt;}
.ya5{bottom:738.699867pt;}
.y5b{bottom:738.824000pt;}
.y2d{bottom:740.592800pt;}
.y181{bottom:743.124533pt;}
.y13{bottom:749.000933pt;}
.y8f{bottom:749.725600pt;}
.y1b9{bottom:750.826267pt;}
.y5a{bottom:751.624133pt;}
.y14a{bottom:753.883600pt;}
.yf5{bottom:754.950267pt;}
.y2c{bottom:754.992800pt;}
.y180{bottom:759.124533pt;}
.y12{bottom:763.400933pt;}
.y8e{bottom:767.325600pt;}
.y1b8{bottom:768.426267pt;}
.y59{bottom:769.224133pt;}
.y149{bottom:769.883600pt;}
.ya4{bottom:773.899867pt;}
.y17f{bottom:775.124533pt;}
.y2b{bottom:783.792800pt;}
.y148{bottom:785.883600pt;}
.y8d{bottom:788.705067pt;}
.yf4{bottom:788.816933pt;}
.y58{bottom:790.603600pt;}
.y17e{bottom:791.124533pt;}
.ya3{bottom:791.499867pt;}
.yd5{bottom:791.586133pt;}
.y1b5{bottom:794.391467pt;}
.y2a{bottom:798.192800pt;}
.y8c{bottom:801.505067pt;}
.y147{bottom:801.883600pt;}
.y57{bottom:803.403600pt;}
.yf3{bottom:805.750267pt;}
.y17d{bottom:807.124533pt;}
.yd4{bottom:807.586133pt;}
.ya2{bottom:809.099867pt;}
.y146{bottom:817.883600pt;}
.y56{bottom:821.003600pt;}
.yf2{bottom:822.683600pt;}
.y8b{bottom:822.884667pt;}
.y17c{bottom:823.124533pt;}
.y18{bottom:823.176133pt;}
.yd3{bottom:823.586133pt;}
.ya1{bottom:826.699867pt;}
.y145{bottom:833.883600pt;}
.y8a{bottom:835.684667pt;}
.y17{bottom:837.576133pt;}
.y17b{bottom:839.124533pt;}
.yd2{bottom:839.586133pt;}
.yf1{bottom:839.616800pt;}
.y55{bottom:842.383200pt;}
.ya0{bottom:844.299867pt;}
.y144{bottom:849.883600pt;}
.y17a{bottom:855.124533pt;}
.y54{bottom:855.183200pt;}
.yd1{bottom:855.586133pt;}
.y1b7{bottom:855.696800pt;}
.yf0{bottom:856.550267pt;}
.y89{bottom:857.064267pt;}
.y143{bottom:865.883600pt;}
.y1b2{bottom:868.454133pt;}
.y88{bottom:869.864133pt;}
.y179{bottom:871.124533pt;}
.yd0{bottom:871.586133pt;}
.y53{bottom:872.783200pt;}
.yef{bottom:873.483600pt;}
.y142{bottom:881.883600pt;}
.y1b6{bottom:882.455867pt;}
.y1b1{bottom:882.854133pt;}
.y178{bottom:887.124533pt;}
.y87{bottom:887.464133pt;}
.ycf{bottom:887.586133pt;}
.yee{bottom:890.416933pt;}
.y52{bottom:894.162800pt;}
.y9f{bottom:895.499867pt;}
.y1b0{bottom:897.254133pt;}
.ye{bottom:897.351333pt;}
.y141{bottom:897.883600pt;}
.y177{bottom:903.124533pt;}
.yce{bottom:903.586133pt;}
.y51{bottom:906.962667pt;}
.yed{bottom:907.350133pt;}
.y86{bottom:908.843733pt;}
.y1af{bottom:911.654133pt;}
.yd{bottom:911.751333pt;}
.y140{bottom:913.883600pt;}
.y176{bottom:919.124533pt;}
.ycd{bottom:919.586133pt;}
.y85{bottom:921.643733pt;}
.yec{bottom:924.283467pt;}
.y50{bottom:924.562800pt;}
.y1ae{bottom:926.054133pt;}
.y13f{bottom:929.883600pt;}
.y9e{bottom:933.900000pt;}
.y175{bottom:935.124533pt;}
.ycc{bottom:935.586133pt;}
.y1ad{bottom:940.454133pt;}
.yeb{bottom:941.216933pt;}
.y84{bottom:943.023333pt;}
.y13e{bottom:945.883600pt;}
.y4f{bottom:945.942267pt;}
.y49{bottom:950.506933pt;}
.y174{bottom:951.124533pt;}
.ycb{bottom:951.586133pt;}
.y1ac{bottom:954.854133pt;}
.y83{bottom:955.823200pt;}
.yea{bottom:958.150267pt;}
.y4e{bottom:958.742267pt;}
.y13d{bottom:961.883600pt;}
.yca{bottom:967.586133pt;}
.y1ab{bottom:969.254133pt;}
.y9d{bottom:972.300000pt;}
.y173{bottom:974.683467pt;}
.ye9{bottom:975.083600pt;}
.y82{bottom:977.202800pt;}
.y13c{bottom:977.883600pt;}
.yc9{bottom:983.586133pt;}
.y1aa{bottom:983.654133pt;}
.y81{bottom:990.002800pt;}
.ye8{bottom:992.016800pt;}
.y13b{bottom:993.883600pt;}
.y1a9{bottom:998.054133pt;}
.yc8{bottom:999.586133pt;}
.y4d{bottom:1000.645200pt;}
.ye7{bottom:1008.950133pt;}
.y13a{bottom:1009.883600pt;}
.y9c{bottom:1010.700000pt;}
.y80{bottom:1011.382267pt;}
.y29{bottom:1012.454133pt;}
.yc7{bottom:1023.145200pt;}
.y7f{bottom:1024.182267pt;}
.ye6{bottom:1025.883600pt;}
.y28{bottom:1026.854133pt;}
.y4b{bottom:1058.007600pt;}
.h13{height:31.062500pt;}
.h15{height:31.250000pt;}
.hb{height:34.945312pt;}
.hc{height:34.992188pt;}
.h9{height:35.088000pt;}
.hd{height:35.156250pt;}
.he{height:35.179688pt;}
.h1b{height:37.838542pt;}
.h17{height:38.880208pt;}
.h10{height:38.933333pt;}
.h18{height:39.088542pt;}
.h12{height:41.622396pt;}
.hf{height:42.710938pt;}
.h1f{height:42.768229pt;}
.h19{height:42.968750pt;}
.h20{height:42.997396pt;}
.h1a{height:45.406250pt;}
.h1c{height:46.197917pt;}
.h1e{height:46.656250pt;}
.h5{height:47.900417pt;}
.h7{height:50.544271pt;}
.h14{height:50.817708pt;}
.h4{height:54.437031pt;}
.h6{height:69.890625pt;}
.ha{height:73.512188pt;}
.h1d{height:75.687500pt;}
.h3{height:89.424479pt;}
.h16{height:90.812500pt;}
.h8{height:101.088542pt;}
.h11{height:139.968750pt;}
.h2{height:150.556443pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:58.815467pt;}
.x18{left:60.472400pt;}
.x16{left:62.551200pt;}
.x2d{left:64.042000pt;}
.x27{left:65.805733pt;}
.x30{left:69.194667pt;}
.x2e{left:70.963467pt;}
.x1c{left:83.099733pt;}
.x10{left:86.929067pt;}
.x11{left:89.791067pt;}
.xc{left:93.734400pt;}
.x19{left:98.267733pt;}
.x1b{left:105.834133pt;}
.x1d{left:112.631067pt;}
.x31{left:117.856667pt;}
.x1a{left:124.724400pt;}
.xb{left:131.905467pt;}
.x1e{left:136.568533pt;}
.x2f{left:156.711200pt;}
.x2c{left:158.740133pt;}
.x2{left:204.677067pt;}
.x32{left:207.088533pt;}
.x29{left:208.224933pt;}
.x14{left:222.870800pt;}
.x17{left:252.850400pt;}
.x2b{left:317.053733pt;}
.x2a{left:353.231467pt;}
.x25{left:437.259867pt;}
.xd{left:451.942267pt;}
.x26{left:470.417467pt;}
.x12{left:478.458533pt;}
.x21{left:480.254667pt;}
.xf{left:485.464533pt;}
.x24{left:487.523600pt;}
.x22{left:497.286000pt;}
.xe{left:499.480133pt;}
.x1f{left:506.258000pt;}
.x20{left:510.599733pt;}
.x23{left:536.146667pt;}
.x15{left:542.635333pt;}
.x1{left:573.035867pt;}
.x28{left:615.909600pt;}
.x8{left:622.241600pt;}
.x5{left:624.377867pt;}
.x3{left:627.488000pt;}
.x7{left:646.475733pt;}
.x6{left:652.527200pt;}
.x9{left:656.589733pt;}
.x4{left:660.726133pt;}
.x13{left:754.248533pt;}
}




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