
    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_b4257b42ce7c8a14e9236b0b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.037000;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_b28cb380dfd4609e489ad104.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.712000;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_090693e43480b50e71aaa38e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.928000;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_5b0183c33d7686b0531b47b0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.923000;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_af5f82ce3920d874f5862a0c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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_40ecb2e8fe6b2be13d25896e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_85bf9493d57535be3f79f13b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.715000;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_2bfa208162db65de49a204fe.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.025000;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_8570ff7863751da3bbdc499b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.710000;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_81e0ff47bb89ef5d73248454.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.068000;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_2b866b4fbab1cd5758ea119d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.947000;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_5db1e208658c6e7b1fc66da1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.972000;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_d21d0e27b060004b54f91c15.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.919000;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_a917fbb3138fcc7363f35dc1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938000;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_cd740657a2c8e21d36277e2b.woff2')format("woff");}.fff{font-family:fff;line-height:0.969000;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_7a66b69fad8e8fc7661603e8.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.025000;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_1aed7783244b63b8087640c0.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.084000;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_81e0ff47bb89ef5d73248454.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.068000;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_bb5df7322414066d3e0fae30.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.104004;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_754c612c48a797610ab3e7dc.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_d44d30255bf5f42149af525b.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284180;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_c7e34a73a3bbb0010e1af674.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.330566;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_9629a49887e71e04a256b943.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_c44c904e2a690bb9ed78b5fd.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.330566;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_eca3473134c387243f3801c7.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.112305;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_758f0a1b2b4180f47a33f848.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.941895;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_0b632e884a8fb6494a27190e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-1.320000px;}
.ls18{letter-spacing:-1.122000px;}
.lsd{letter-spacing:-1.056000px;}
.ls1c{letter-spacing:-0.990000px;}
.lsc{letter-spacing:-0.924000px;}
.lsb{letter-spacing:-0.858000px;}
.lsa{letter-spacing:-0.726000px;}
.ls3{letter-spacing:-0.690000px;}
.ls4{letter-spacing:-0.621000px;}
.ls19{letter-spacing:-0.594000px;}
.lse{letter-spacing:-0.462000px;}
.ls15{letter-spacing:-0.330000px;}
.ls1f{letter-spacing:-0.198000px;}
.ls1b{letter-spacing:-0.132000px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.066000px;}
.ls1{letter-spacing:0.108000px;}
.ls30{letter-spacing:0.144000px;}
.ls2e{letter-spacing:0.150000px;}
.ls2c{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.264000px;}
.ls16{letter-spacing:0.330000px;}
.ls2f{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.420000px;}
.ls14{letter-spacing:0.462000px;}
.lsf{letter-spacing:0.594000px;}
.ls31{letter-spacing:0.720000px;}
.ls2a{letter-spacing:0.792000px;}
.ls25{letter-spacing:0.924000px;}
.ls24{letter-spacing:1.056000px;}
.ls1d{letter-spacing:1.122000px;}
.ls29{letter-spacing:1.386000px;}
.ls21{letter-spacing:1.452000px;}
.ls1e{letter-spacing:1.518000px;}
.ls17{letter-spacing:1.584000px;}
.ls8{letter-spacing:1.650000px;}
.ls27{letter-spacing:1.782000px;}
.ls20{letter-spacing:2.046000px;}
.ls7{letter-spacing:2.508000px;}
.ls1a{letter-spacing:2.574000px;}
.ls10{letter-spacing:2.970000px;}
.ls11{letter-spacing:3.036000px;}
.ls23{letter-spacing:3.366000px;}
.ls26{letter-spacing:3.696000px;}
.ls28{letter-spacing:3.960000px;}
.ls2b{letter-spacing:4.422000px;}
.ls9{letter-spacing:4.818000px;}
.ls6{letter-spacing:4.950000px;}
.ls5{letter-spacing:14.982000px;}
.ls2d{letter-spacing:54.864000px;}
.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;}
}
.ws59{word-spacing:-72.000000px;}
.ws3{word-spacing:-31.668000px;}
.ws5b{word-spacing:-18.144000px;}
.ws5a{word-spacing:-18.000000px;}
.ws2e{word-spacing:-16.968000px;}
.ws2{word-spacing:-16.800000px;}
.ws4{word-spacing:-15.663000px;}
.ws34{word-spacing:-15.312000px;}
.ws15{word-spacing:-15.264000px;}
.ws5{word-spacing:-15.042000px;}
.ws1c{word-spacing:-14.982000px;}
.ws22{word-spacing:-14.322000px;}
.ws58{word-spacing:-12.060000px;}
.ws2f{word-spacing:-6.798000px;}
.ws39{word-spacing:-5.478000px;}
.ws23{word-spacing:-5.148000px;}
.ws40{word-spacing:-4.950000px;}
.ws20{word-spacing:-4.686000px;}
.ws45{word-spacing:-4.290000px;}
.ws1f{word-spacing:-4.224000px;}
.ws32{word-spacing:-4.092000px;}
.ws3c{word-spacing:-3.828000px;}
.ws1a{word-spacing:-3.762000px;}
.ws3b{word-spacing:-3.630000px;}
.ws29{word-spacing:-3.564000px;}
.ws44{word-spacing:-3.432000px;}
.ws16{word-spacing:-3.360000px;}
.ws31{word-spacing:-3.168000px;}
.ws4d{word-spacing:-3.036000px;}
.ws50{word-spacing:-2.970000px;}
.wsd{word-spacing:-2.622000px;}
.ws2c{word-spacing:-2.508000px;}
.ws28{word-spacing:-2.376000px;}
.ws30{word-spacing:-1.980000px;}
.ws35{word-spacing:-1.320000px;}
.ws4b{word-spacing:-1.254000px;}
.ws2b{word-spacing:-1.188000px;}
.ws24{word-spacing:-0.924000px;}
.ws2d{word-spacing:-0.594000px;}
.ws4f{word-spacing:-0.528000px;}
.ws12{word-spacing:-0.414000px;}
.ws48{word-spacing:-0.396000px;}
.ws17{word-spacing:-0.264000px;}
.ws0{word-spacing:-0.216000px;}
.ws13{word-spacing:-0.210000px;}
.ws38{word-spacing:-0.198000px;}
.ws46{word-spacing:-0.132000px;}
.ws14{word-spacing:-0.084000px;}
.ws1{word-spacing:0.000000px;}
.ws3e{word-spacing:0.198000px;}
.ws4c{word-spacing:0.396000px;}
.ws25{word-spacing:0.462000px;}
.ws54{word-spacing:0.726000px;}
.ws3f{word-spacing:0.792000px;}
.ws9{word-spacing:1.166400px;}
.ws42{word-spacing:1.254000px;}
.ws47{word-spacing:1.320000px;}
.ws8{word-spacing:1.428000px;}
.ws43{word-spacing:1.584000px;}
.ws6{word-spacing:1.596000px;}
.ws7{word-spacing:1.680000px;}
.ws56{word-spacing:1.980000px;}
.ws27{word-spacing:2.046000px;}
.wsb{word-spacing:2.208000px;}
.wsa{word-spacing:2.277000px;}
.wsc{word-spacing:2.346000px;}
.ws49{word-spacing:3.036000px;}
.ws41{word-spacing:3.234000px;}
.ws11{word-spacing:3.381000px;}
.ws2a{word-spacing:3.894000px;}
.ws4e{word-spacing:3.960000px;}
.ws3a{word-spacing:4.158000px;}
.ws3d{word-spacing:4.554000px;}
.ws36{word-spacing:4.620000px;}
.wsf{word-spacing:4.623000px;}
.ws10{word-spacing:4.761000px;}
.ws53{word-spacing:5.280000px;}
.wse{word-spacing:5.451000px;}
.ws52{word-spacing:5.610000px;}
.ws37{word-spacing:5.808000px;}
.ws1b{word-spacing:6.402000px;}
.ws4a{word-spacing:6.534000px;}
.ws33{word-spacing:7.128000px;}
.ws1e{word-spacing:7.194000px;}
.ws51{word-spacing:7.392000px;}
.ws55{word-spacing:7.854000px;}
.ws57{word-spacing:8.910000px;}
.ws26{word-spacing:9.042000px;}
.ws21{word-spacing:9.702000px;}
.ws1d{word-spacing:9.834000px;}
.ws18{word-spacing:14.982000px;}
.ws19{word-spacing:40.722000px;}
._19{margin-left:-29.898000px;}
._12{margin-left:-28.338000px;}
._18{margin-left:-26.364000px;}
._13{margin-left:-24.618000px;}
._b{margin-left:-22.938000px;}
._17{margin-left:-20.118000px;}
._f{margin-left:-18.996000px;}
._14{margin-left:-17.556000px;}
._11{margin-left:-15.624000px;}
._d{margin-left:-14.574000px;}
._5{margin-left:-11.658000px;}
._16{margin-left:-9.504000px;}
._8{margin-left:-7.482000px;}
._9{margin-left:-6.156000px;}
._a{margin-left:-4.410000px;}
._7{margin-left:-3.306000px;}
._2{margin-left:-1.914000px;}
._0{width:1.044000px;}
._3{width:2.262000px;}
._4{width:3.828000px;}
._1{width:4.872000px;}
._6{width:6.090000px;}
._10{width:7.968000px;}
._c{width:9.570000px;}
._e{width:11.304000px;}
._15{width:12.780000px;}
._1a{width:13.872000px;}
._1b{width:15.480000px;}
._1c{width:16.488000px;}
._21{width:19.440000px;}
._1e{width:20.664000px;}
._1f{width:22.104000px;}
._23{width:23.394000px;}
._1d{width:24.486000px;}
._20{width:25.986000px;}
._24{width:27.438000px;}
._22{width:28.728000px;}
._26{width:30.228000px;}
._25{width:31.794000px;}
._2a{width:33.138000px;}
._32{width:35.046000px;}
._27{width:39.816000px;}
._28{width:41.256000px;}
._2f{width:46.656000px;}
._30{width:47.922000px;}
._2e{width:49.218000px;}
._29{width:145.512000px;}
._31{width:224.424000px;}
._2b{width:267.168000px;}
._2c{width:268.188000px;}
._2d{width:460.728000px;}
.fc4{color:rgb(15,74,135);}
.fc3{color:rgb(0,115,179);}
.fc1{color:rgb(88,113,96);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:38.880000px;}
.fs6{font-size:42.000000px;}
.fsa{font-size:48.240000px;}
.fsc{font-size:54.000000px;}
.fs4{font-size:58.320000px;}
.fsb{font-size:59.760000px;}
.fs7{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fsd{font-size:66.240000px;}
.fs5{font-size:69.000000px;}
.fs8{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.fs3{font-size:120.000000px;}
.fs0{font-size:174.000000px;}
.y0{bottom:0.000000px;}
.y155{bottom:4.387500px;}
.y154{bottom:37.603601px;}
.y46{bottom:95.644500px;}
.y6a{bottom:98.199000px;}
.yfe{bottom:98.383200px;}
.yce{bottom:103.843500px;}
.y1a{bottom:111.586350px;}
.y83{bottom:112.471350px;}
.y25{bottom:119.498100px;}
.y45{bottom:119.701500px;}
.y69{bottom:122.256000px;}
.yfd{bottom:122.440200px;}
.ycd{bottom:127.900500px;}
.y1ab{bottom:131.220000px;}
.y19{bottom:132.526500px;}
.y82{bottom:136.528350px;}
.y1aa{bottom:138.060000px;}
.y24{bottom:138.090300px;}
.y44{bottom:139.501500px;}
.y1b1{bottom:141.660000px;}
.y68{bottom:142.056000px;}
.yfc{bottom:142.240200px;}
.y129{bottom:146.977200px;}
.y1fd{bottom:149.040000px;}
.y1a9{bottom:149.400000px;}
.ycc{bottom:151.952400px;}
.y194{bottom:153.720000px;}
.y174{bottom:156.240000px;}
.ye1{bottom:157.599000px;}
.y153{bottom:159.300000px;}
.y43{bottom:159.301500px;}
.y81{bottom:160.580400px;}
.ya0{bottom:163.243500px;}
.y1b8{bottom:164.910000px;}
.y67{bottom:166.107900px;}
.yfb{bottom:166.292250px;}
.y1f8{bottom:166.710000px;}
.y1fc{bottom:169.770000px;}
.y128{bottom:171.034200px;}
.y1b0{bottom:172.650000px;}
.y1a8{bottom:176.970000px;}
.ye0{bottom:177.399000px;}
.y1d3{bottom:179.130000px;}
.y42{bottom:183.353550px;}
.y193{bottom:184.710000px;}
.y9f{bottom:187.300500px;}
.y173{bottom:187.410000px;}
.y10f{bottom:188.571000px;}
.y152{bottom:190.290000px;}
.y1f7{bottom:190.470000px;}
.y127{bottom:190.834200px;}
.y1b7{bottom:198.030000px;}
.ydf{bottom:201.456000px;}
.y1d2{bottom:202.890000px;}
.y1af{bottom:203.610000px;}
.ycb{bottom:204.837150px;}
.y9e{bottom:207.100500px;}
.y1a7{bottom:208.110000px;}
.y1fb{bottom:208.290000px;}
.y10e{bottom:208.371000px;}
.y80{bottom:213.465150px;}
.y1f6{bottom:214.230000px;}
.y126{bottom:214.886250px;}
.y192{bottom:215.850000px;}
.y172{bottom:218.370000px;}
.y66{bottom:218.992650px;}
.y151{bottom:221.430000px;}
.y1ae{bottom:223.050000px;}
.yde{bottom:225.507900px;}
.y1d1{bottom:226.650000px;}
.yca{bottom:228.894150px;}
.y1b6{bottom:230.970000px;}
.y9d{bottom:231.152400px;}
.y41{bottom:231.986250px;}
.y10d{bottom:232.428000px;}
.yfa{bottom:234.063750px;}
.y7f{bottom:237.522150px;}
.y1f5{bottom:237.990000px;}
.yb2{bottom:238.792650px;}
.y1a6{bottom:239.070000px;}
.y65{bottom:243.049650px;}
.y1fa{bottom:245.730000px;}
.y191{bottom:246.810000px;}
.yc9{bottom:248.694150px;}
.y171{bottom:249.510000px;}
.y1d0{bottom:250.410000px;}
.y150{bottom:252.390000px;}
.y1ad{bottom:254.730000px;}
.y40{bottom:256.043250px;}
.y10c{bottom:256.479900px;}
.y7e{bottom:261.574050px;}
.y1f4{bottom:261.930000px;}
.y64{bottom:262.849650px;}
.y1b5{bottom:263.910000px;}
.y125{bottom:267.771000px;}
.y1ac{bottom:269.850000px;}
.y1a5{bottom:270.210000px;}
.yc8{bottom:272.746050px;}
.y1cf{bottom:274.350000px;}
.y3f{bottom:275.843250px;}
.y190{bottom:277.950000px;}
.ydd{bottom:278.392650px;}
.y170{bottom:280.470000px;}
.y14f{bottom:283.530000px;}
.y1f9{bottom:284.430000px;}
.y1f3{bottom:285.690000px;}
.y63{bottom:286.901700px;}
.y124{bottom:291.828000px;}
.y1b4{bottom:297.030000px;}
.y1ce{bottom:298.110000px;}
.y9c{bottom:298.924050px;}
.y3e{bottom:299.895150px;}
.y1a4{bottom:301.170000px;}
.ydc{bottom:302.449650px;}
.yf9{bottom:303.904500px;}
.y18f{bottom:308.910000px;}
.y1f2{bottom:309.450000px;}
.y16f{bottom:311.610000px;}
.y14e{bottom:314.490000px;}
.y123{bottom:315.880050px;}
.y1cd{bottom:321.510000px;}
.y10b{bottom:324.251550px;}
.ydb{bottom:326.501550px;}
.yf8{bottom:327.961500px;}
.y7d{bottom:329.345700px;}
.y1b3{bottom:329.970000px;}
.y1a3{bottom:332.310000px;}
.y1f1{bottom:333.210000px;}
.yb1{bottom:339.786300px;}
.y18e{bottom:340.050000px;}
.y23{bottom:340.376250px;}
.yc7{bottom:340.517700px;}
.y16e{bottom:342.570000px;}
.y14d{bottom:345.450000px;}
.yf7{bottom:347.761500px;}
.y3d{bottom:348.528000px;}
.y1cc{bottom:352.650000px;}
.y62{bottom:354.673350px;}
.y1f0{bottom:357.150000px;}
.yb0{bottom:359.586300px;}
.y1b2{bottom:363.090000px;}
.y1a2{bottom:363.270000px;}
.y9b{bottom:368.764650px;}
.y18d{bottom:371.010000px;}
.yf6{bottom:371.813400px;}
.y3c{bottom:372.585000px;}
.y16d{bottom:373.710000px;}
.y14c{bottom:376.590000px;}
.yda{bottom:379.386300px;}
.y1ef{bottom:380.910000px;}
.yaf{bottom:383.643300px;}
.y1cb{bottom:383.970000px;}
.y3b{bottom:392.385000px;}
.y9a{bottom:392.821650px;}
.y10a{bottom:394.092300px;}
.y1a1{bottom:394.410000px;}
.y7c{bottom:399.186300px;}
.y18c{bottom:402.150000px;}
.yae{bottom:403.443300px;}
.y16c{bottom:404.670000px;}
.y14b{bottom:407.595000px;}
.y11c{bottom:407.695350px;}
.y22{bottom:409.497000px;}
.yc6{bottom:410.358450px;}
.y3a{bottom:412.185000px;}
.y122{bottom:412.621650px;}
.y109{bottom:413.892300px;}
.y1ca{bottom:415.155000px;}
.y99{bottom:416.873700px;}
.yf5{bottom:420.446250px;}
.y7b{bottom:423.243300px;}
.y61{bottom:424.513950px;}
.y1a0{bottom:425.415000px;}
.yad{bottom:427.495350px;}
.y1ee{bottom:428.475000px;}
.yc5{bottom:430.158450px;}
.y21{bottom:430.197000px;}
.y18b{bottom:433.155000px;}
.y16b{bottom:435.855000px;}
.y39{bottom:436.236900px;}
.y121{bottom:436.673700px;}
.y108{bottom:437.949300px;}
.y14a{bottom:438.735000px;}
.y7a{bottom:443.043300px;}
.yf4{bottom:444.503250px;}
.y1c9{bottom:446.115000px;}
.yd9{bottom:447.295350px;}
.y60{bottom:448.570950px;}
.y20{bottom:450.897000px;}
.y1ed{bottom:452.415000px;}
.yc4{bottom:454.215450px;}
.y19f{bottom:456.555000px;}
.y107{bottom:457.749300px;}
.y11b{bottom:460.580100px;}
.y18a{bottom:464.295000px;}
.yf3{bottom:464.303250px;}
.y16a{bottom:466.815000px;}
.y79{bottom:467.095350px;}
.y5f{bottom:468.370950px;}
.y149{bottom:469.695000px;}
.y98{bottom:469.758450px;}
.y1f{bottom:471.597000px;}
.yc3{bottom:474.015450px;}
.y1ec{bottom:476.175000px;}
.y1c8{bottom:477.255000px;}
.yac{bottom:480.380100px;}
.y106{bottom:481.801200px;}
.yf2{bottom:484.103250px;}
.y11a{bottom:484.637100px;}
.y19e{bottom:487.515000px;}
.y38{bottom:489.121650px;}
.y97{bottom:489.558450px;}
.y1e{bottom:492.297000px;}
.y5e{bottom:492.422850px;}
.y189{bottom:495.255000px;}
.y169{bottom:497.955000px;}
.yc2{bottom:498.067350px;}
.y1eb{bottom:499.935000px;}
.yab{bottom:500.180100px;}
.y148{bottom:500.835000px;}
.y119{bottom:504.437100px;}
.yf1{bottom:508.155150px;}
.y1c7{bottom:508.215000px;}
.y1d{bottom:512.997000px;}
.y37{bottom:513.178650px;}
.y96{bottom:513.615450px;}
.y19d{bottom:518.655000px;}
.y78{bottom:519.980100px;}
.y1ea{bottom:523.695000px;}
.yaa{bottom:524.237100px;}
.y188{bottom:526.395000px;}
.y118{bottom:528.489000px;}
.y168{bottom:528.915000px;}
.y147{bottom:531.795000px;}
.y36{bottom:532.978650px;}
.y105{bottom:534.685950px;}
.y95{bottom:537.667350px;}
.y1c{bottom:537.940500px;}
.y1c6{bottom:539.355000px;}
.y77{bottom:544.037100px;}
.y5d{bottom:545.307600px;}
.y1e9{bottom:547.635000px;}
.y19c{bottom:549.615000px;}
.yc1{bottom:550.952100px;}
.yf0{bottom:556.787850px;}
.y35{bottom:557.030700px;}
.y187{bottom:557.355000px;}
.y1b{bottom:558.640500px;}
.y104{bottom:558.742950px;}
.y167{bottom:560.055000px;}
.y146{bottom:562.935000px;}
.y76{bottom:563.837100px;}
.ya9{bottom:568.089000px;}
.y5c{bottom:569.364600px;}
.y1c5{bottom:570.315000px;}
.yc0{bottom:570.752100px;}
.y1e8{bottom:571.395000px;}
.y103{bottom:578.542950px;}
.y19b{bottom:580.755000px;}
.yef{bottom:580.844850px;}
.y117{bottom:581.373750px;}
.yd8{bottom:583.637100px;}
.y75{bottom:587.889000px;}
.y186{bottom:588.495000px;}
.y5b{bottom:589.164600px;}
.y166{bottom:591.015000px;}
.y145{bottom:593.895000px;}
.ybf{bottom:594.809100px;}
.y1e7{bottom:595.155000px;}
.y116{bottom:601.173750px;}
.y1c4{bottom:601.275000px;}
.y102{bottom:602.594850px;}
.yee{bottom:604.896900px;}
.y94{bottom:605.439000px;}
.y34{bottom:605.663400px;}
.yd7{bottom:607.689000px;}
.y19a{bottom:611.715000px;}
.y5a{bottom:613.216650px;}
.ybe{bottom:614.609100px;}
.y1e6{bottom:618.915000px;}
.y185{bottom:619.455000px;}
.ya8{bottom:620.973750px;}
.y165{bottom:621.975000px;}
.y144{bottom:625.035000px;}
.y115{bottom:625.230750px;}
.y33{bottom:629.720400px;}
.y1c3{bottom:632.415000px;}
.ybd{bottom:638.661000px;}
.y74{bottom:640.773750px;}
.y18{bottom:642.390000px;}
.y199{bottom:642.675000px;}
.ya7{bottom:645.030750px;}
.y32{bottom:649.520400px;}
.y184{bottom:650.625000px;}
.y164{bottom:653.145000px;}
.yed{bottom:653.529750px;}
.y101{bottom:655.479600px;}
.y143{bottom:656.025000px;}
.yd6{bottom:660.573750px;}
.y198{bottom:663.225000px;}
.y1c2{bottom:663.405000px;}
.y73{bottom:664.830750px;}
.y59{bottom:666.101250px;}
.y1e5{bottom:666.645000px;}
.y17{bottom:671.832000px;}
.y31{bottom:673.572300px;}
.y93{bottom:675.279600px;}
.yec{bottom:677.586750px;}
.y183{bottom:681.585000px;}
.y163{bottom:684.105000px;}
.yd5{bottom:684.630750px;}
.y58{bottom:685.901250px;}
.y142{bottom:687.165000px;}
.y72{bottom:688.882800px;}
.y1e4{bottom:690.405000px;}
.ybc{bottom:691.545750px;}
.y197{bottom:694.185000px;}
.y1c1{bottom:694.545000px;}
.y16{bottom:697.031850px;}
.yeb{bottom:697.386750px;}
.y92{bottom:699.336600px;}
.y130{bottom:704.430750px;}
.yd4{bottom:708.682650px;}
.y57{bottom:709.958250px;}
.ybb{bottom:711.345750px;}
.y182{bottom:712.725000px;}
.y1e3{bottom:714.165000px;}
.y162{bottom:715.245000px;}
.y196{bottom:715.425000px;}
.yea{bottom:717.186750px;}
.y141{bottom:718.125000px;}
.y91{bottom:719.136600px;}
.y100{bottom:723.388650px;}
.y1c0{bottom:725.505000px;}
.y12f{bottom:728.482800px;}
.y56{bottom:729.758250px;}
.yba{bottom:735.402750px;}
.y30{bottom:737.092050px;}
.y15{bottom:737.342700px;}
.y1e2{bottom:737.925000px;}
.ye9{bottom:741.238650px;}
.ya6{bottom:741.767400px;}
.y90{bottom:743.188650px;}
.y181{bottom:743.685000px;}
.y161{bottom:746.205000px;}
.y140{bottom:749.265000px;}
.y55{bottom:749.558250px;}
.yb9{bottom:755.202750px;}
.y1bf{bottom:756.645000px;}
.y71{bottom:756.654300px;}
.ya5{bottom:761.567400px;}
.y1e1{bottom:761.865000px;}
.y180{bottom:764.205000px;}
.y114{bottom:765.824400px;}
.y14{bottom:766.784700px;}
.y13f{bottom:769.785000px;}
.y54{bottom:773.610300px;}
.yff{bottom:776.273250px;}
.yd3{bottom:776.454300px;}
.y160{bottom:777.345000px;}
.yb8{bottom:779.254800px;}
.y12e{bottom:781.367550px;}
.ya4{bottom:785.624400px;}
.y1e0{bottom:785.625000px;}
.y1be{bottom:787.605000px;}
.y6{bottom:792.418200px;}
.y17f{bottom:795.165000px;}
.y8f{bottom:796.073250px;}
.y13{bottom:796.226700px;}
.y120{bottom:800.330250px;}
.y13e{bottom:800.565000px;}
.ye8{bottom:804.758400px;}
.ya3{bottom:805.424400px;}
.y12d{bottom:805.424550px;}
.y2f{bottom:806.932650px;}
.y15f{bottom:808.305000px;}
.y1df{bottom:809.385000px;}
.y113{bottom:809.676450px;}
.y17e{bottom:816.405000px;}
.y1bd{bottom:818.745000px;}
.y8e{bottom:820.130250px;}
.y13d{bottom:824.325000px;}
.y12c{bottom:825.224550px;}
.y12{bottom:825.668700px;}
.y53{bottom:826.495050px;}
.y5{bottom:828.409200px;}
.ya2{bottom:829.476450px;}
.y2e{bottom:830.989650px;}
.y1de{bottom:833.145000px;}
.y15e{bottom:839.445000px;}
.y8d{bottom:844.182300px;}
.y13c{bottom:845.205000px;}
.yd2{bottom:846.295050px;}
.yb7{bottom:847.026450px;}
.y17d{bottom:847.185000px;}
.y12b{bottom:849.276450px;}
.y1bc{bottom:849.705000px;}
.y52{bottom:850.552050px;}
.y2d{bottom:850.789650px;}
.y11{bottom:855.110700px;}
.y1dd{bottom:857.085000px;}
.y4{bottom:865.048200px;}
.yd1{bottom:866.095050px;}
.y51{bottom:870.352050px;}
.y15d{bottom:870.405000px;}
.ye7{bottom:874.599000px;}
.y2c{bottom:874.841700px;}
.y112{bottom:877.448100px;}
.y17c{bottom:878.325000px;}
.y10{bottom:880.310700px;}
.y1bb{bottom:880.845000px;}
.y13b{bottom:883.005000px;}
.y70{bottom:890.152050px;}
.y50{bottom:894.403950px;}
.y8c{bottom:897.067050px;}
.ya1{bottom:897.248100px;}
.ye6{bottom:898.656000px;}
.y15c{bottom:901.590000px;}
.y1dc{bottom:904.650000px;}
.yf{bottom:909.752700px;}
.y17b{bottom:910.590000px;}
.y1ba{bottom:911.850000px;}
.y6f{bottom:914.203950px;}
.y13a{bottom:915.270000px;}
.yb6{bottom:916.867050px;}
.y12a{bottom:917.048100px;}
.ye5{bottom:918.456000px;}
.y8b{bottom:921.124050px;}
.y2b{bottom:923.474400px;}
.y1db{bottom:928.410000px;}
.y15b{bottom:932.550000px;}
.y139{bottom:935.970000px;}
.y8a{bottom:940.924050px;}
.y17a{bottom:941.730000px;}
.ye4{bottom:942.507900px;}
.y1b9{bottom:942.990000px;}
.y11f{bottom:945.176100px;}
.y4f{bottom:947.288700px;}
.y2a{bottom:947.531400px;}
.ye{bottom:947.699700px;}
.y1da{bottom:952.350000px;}
.y138{bottom:957.210000px;}
.yb5{bottom:960.724050px;}
.y15a{bottom:963.690000px;}
.y89{bottom:964.976100px;}
.y6e{bottom:967.088700px;}
.y29{bottom:967.331400px;}
.y4e{bottom:971.345700px;}
.yd{bottom:972.899700px;}
.y179{bottom:973.950000px;}
.y1d9{bottom:976.110000px;}
.y137{bottom:976.470000px;}
.yb4{bottom:984.775950px;}
.yd0{bottom:986.888700px;}
.ye3{bottom:991.140750px;}
.y4d{bottom:991.145700px;}
.y28{bottom:991.383300px;}
.y136{bottom:994.290000px;}
.y159{bottom:994.650000px;}
.y111{bottom:995.397600px;}
.y11e{bottom:998.060700px;}
.yc{bottom:998.099700px;}
.y1d8{bottom:999.870000px;}
.y195{bottom:1002.930000px;}
.y178{bottom:1005.090000px;}
.y6d{bottom:1010.945700px;}
.y3{bottom:1010.958600px;}
.y4c{bottom:1015.197750px;}
.y135{bottom:1015.530000px;}
.y88{bottom:1017.860700px;}
.y11d{bottom:1022.117700px;}
.yb{bottom:1023.299700px;}
.y1d7{bottom:1023.630000px;}
.y158{bottom:1025.790000px;}
.y6c{bottom:1034.997750px;}
.y134{bottom:1035.870000px;}
.y177{bottom:1036.050000px;}
.yb3{bottom:1037.660700px;}
.y87{bottom:1041.917700px;}
.y27{bottom:1046.399550px;}
.y1d6{bottom:1047.570000px;}
.y110{bottom:1048.282350px;}
.ya{bottom:1052.741700px;}
.y133{bottom:1056.570000px;}
.y157{bottom:1056.750000px;}
.ye2{bottom:1059.049650px;}
.y86{bottom:1061.717700px;}
.y176{bottom:1067.190000px;}
.y2{bottom:1067.943600px;}
.y4b{bottom:1068.082350px;}
.y1d5{bottom:1071.330000px;}
.y85{bottom:1085.769750px;}
.y9{bottom:1086.992700px;}
.y175{bottom:1087.710000px;}
.y6b{bottom:1087.882350px;}
.y132{bottom:1087.890000px;}
.y4a{bottom:1092.139350px;}
.y1d4{bottom:1095.090000px;}
.ycf{bottom:1107.682350px;}
.y49{bottom:1111.939350px;}
.y131{bottom:1118.490000px;}
.y156{bottom:1118.850000px;}
.y8{bottom:1120.697700px;}
.y1{bottom:1124.928600px;}
.y48{bottom:1131.739350px;}
.y7{bottom:1150.706700px;}
.y26{bottom:1152.386550px;}
.y84{bottom:1153.541400px;}
.y47{bottom:1155.791400px;}
.h17{height:17.968500px;}
.ha{height:34.062000px;}
.h1e{height:38.158594px;}
.h8{height:41.115600px;}
.hb{height:42.600000px;}
.h1f{height:42.845977px;}
.h14{height:47.344922px;}
.h1d{height:50.585625px;}
.h10{height:53.526000px;}
.h18{height:54.316406px;}
.hf{height:55.506000px;}
.h9{height:55.959000px;}
.h16{height:58.621992px;}
.h15{height:58.651172px;}
.h5{height:59.220000px;}
.he{height:59.544000px;}
.h6{height:60.060000px;}
.h12{height:63.949219px;}
.h1b{height:64.546875px;}
.h20{height:65.010937px;}
.h1a{height:70.628906px;}
.h13{height:70.664062px;}
.hd{height:71.400000px;}
.h19{height:72.421875px;}
.h3{height:75.600000px;}
.h4{height:75.708000px;}
.hc{height:78.162000px;}
.h7{height:99.240000px;}
.h2{height:151.032000px;}
.h0{height:1262.835000px;}
.h1c{height:1262.878500px;}
.h11{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:22.518000px;}
.w0{width:892.914000px;}
.w4{width:892.978500px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:66.681750px;}
.x18{left:85.039350px;}
.x38{left:94.680000px;}
.x1a{left:97.052100px;}
.x31{left:102.996000px;}
.x39{left:110.196000px;}
.x19{left:111.330900px;}
.x2{left:117.011250px;}
.x34{left:138.996000px;}
.x1{left:151.941750px;}
.x6{left:168.192450px;}
.x25{left:170.142600px;}
.x36{left:173.908500px;}
.x37{left:186.150000px;}
.x20{left:189.871800px;}
.x5{left:201.294450px;}
.x2d{left:218.126700px;}
.x7{left:228.992850px;}
.x33{left:231.330000px;}
.x1d{left:235.830300px;}
.x2a{left:238.517100px;}
.x24{left:239.799150px;}
.x26{left:244.775400px;}
.x28{left:253.070250px;}
.x2c{left:255.748200px;}
.x23{left:268.095900px;}
.x3b{left:280.290000px;}
.x27{left:285.578400px;}
.x2e{left:292.245150px;}
.x1c{left:294.702450px;}
.x1e{left:298.797450px;}
.x11{left:301.337850px;}
.x29{left:304.981500px;}
.x21{left:306.535650px;}
.x8{left:308.477850px;}
.x10{left:310.304850px;}
.x22{left:319.912650px;}
.x1b{left:321.394350px;}
.xe{left:326.033850px;}
.x15{left:330.269550px;}
.x14{left:337.493550px;}
.x32{left:344.235000px;}
.x2b{left:345.699900px;}
.xb{left:347.558850px;}
.x9{left:354.173850px;}
.xd{left:357.386850px;}
.x3a{left:366.735000px;}
.x12{left:367.907850px;}
.xf{left:376.853850px;}
.xc{left:386.219850px;}
.x2f{left:387.615000px;}
.x1f{left:399.627450px;}
.x4{left:401.040450px;}
.xa{left:414.275850px;}
.x35{left:435.227234px;}
.x13{left:438.761850px;}
.x30{left:446.475000px;}
.x17{left:546.875400px;}
.x16{left:565.235250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-1.173333pt;}
.ls18{letter-spacing:-0.997333pt;}
.lsd{letter-spacing:-0.938667pt;}
.ls1c{letter-spacing:-0.880000pt;}
.lsc{letter-spacing:-0.821333pt;}
.lsb{letter-spacing:-0.762667pt;}
.lsa{letter-spacing:-0.645333pt;}
.ls3{letter-spacing:-0.613333pt;}
.ls4{letter-spacing:-0.552000pt;}
.ls19{letter-spacing:-0.528000pt;}
.lse{letter-spacing:-0.410667pt;}
.ls15{letter-spacing:-0.293333pt;}
.ls1f{letter-spacing:-0.176000pt;}
.ls1b{letter-spacing:-0.117333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.058667pt;}
.ls1{letter-spacing:0.096000pt;}
.ls30{letter-spacing:0.128000pt;}
.ls2e{letter-spacing:0.133333pt;}
.ls2c{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.234667pt;}
.ls16{letter-spacing:0.293333pt;}
.ls2f{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.373333pt;}
.ls14{letter-spacing:0.410667pt;}
.lsf{letter-spacing:0.528000pt;}
.ls31{letter-spacing:0.640000pt;}
.ls2a{letter-spacing:0.704000pt;}
.ls25{letter-spacing:0.821333pt;}
.ls24{letter-spacing:0.938667pt;}
.ls1d{letter-spacing:0.997333pt;}
.ls29{letter-spacing:1.232000pt;}
.ls21{letter-spacing:1.290667pt;}
.ls1e{letter-spacing:1.349333pt;}
.ls17{letter-spacing:1.408000pt;}
.ls8{letter-spacing:1.466667pt;}
.ls27{letter-spacing:1.584000pt;}
.ls20{letter-spacing:1.818667pt;}
.ls7{letter-spacing:2.229333pt;}
.ls1a{letter-spacing:2.288000pt;}
.ls10{letter-spacing:2.640000pt;}
.ls11{letter-spacing:2.698667pt;}
.ls23{letter-spacing:2.992000pt;}
.ls26{letter-spacing:3.285333pt;}
.ls28{letter-spacing:3.520000pt;}
.ls2b{letter-spacing:3.930667pt;}
.ls9{letter-spacing:4.282667pt;}
.ls6{letter-spacing:4.400000pt;}
.ls5{letter-spacing:13.317333pt;}
.ls2d{letter-spacing:48.768000pt;}
.ws59{word-spacing:-64.000000pt;}
.ws3{word-spacing:-28.149333pt;}
.ws5b{word-spacing:-16.128000pt;}
.ws5a{word-spacing:-16.000000pt;}
.ws2e{word-spacing:-15.082667pt;}
.ws2{word-spacing:-14.933333pt;}
.ws4{word-spacing:-13.922667pt;}
.ws34{word-spacing:-13.610667pt;}
.ws15{word-spacing:-13.568000pt;}
.ws5{word-spacing:-13.370667pt;}
.ws1c{word-spacing:-13.317333pt;}
.ws22{word-spacing:-12.730667pt;}
.ws58{word-spacing:-10.720000pt;}
.ws2f{word-spacing:-6.042667pt;}
.ws39{word-spacing:-4.869333pt;}
.ws23{word-spacing:-4.576000pt;}
.ws40{word-spacing:-4.400000pt;}
.ws20{word-spacing:-4.165333pt;}
.ws45{word-spacing:-3.813333pt;}
.ws1f{word-spacing:-3.754667pt;}
.ws32{word-spacing:-3.637333pt;}
.ws3c{word-spacing:-3.402667pt;}
.ws1a{word-spacing:-3.344000pt;}
.ws3b{word-spacing:-3.226667pt;}
.ws29{word-spacing:-3.168000pt;}
.ws44{word-spacing:-3.050667pt;}
.ws16{word-spacing:-2.986667pt;}
.ws31{word-spacing:-2.816000pt;}
.ws4d{word-spacing:-2.698667pt;}
.ws50{word-spacing:-2.640000pt;}
.wsd{word-spacing:-2.330667pt;}
.ws2c{word-spacing:-2.229333pt;}
.ws28{word-spacing:-2.112000pt;}
.ws30{word-spacing:-1.760000pt;}
.ws35{word-spacing:-1.173333pt;}
.ws4b{word-spacing:-1.114667pt;}
.ws2b{word-spacing:-1.056000pt;}
.ws24{word-spacing:-0.821333pt;}
.ws2d{word-spacing:-0.528000pt;}
.ws4f{word-spacing:-0.469333pt;}
.ws12{word-spacing:-0.368000pt;}
.ws48{word-spacing:-0.352000pt;}
.ws17{word-spacing:-0.234667pt;}
.ws0{word-spacing:-0.192000pt;}
.ws13{word-spacing:-0.186667pt;}
.ws38{word-spacing:-0.176000pt;}
.ws46{word-spacing:-0.117333pt;}
.ws14{word-spacing:-0.074667pt;}
.ws1{word-spacing:0.000000pt;}
.ws3e{word-spacing:0.176000pt;}
.ws4c{word-spacing:0.352000pt;}
.ws25{word-spacing:0.410667pt;}
.ws54{word-spacing:0.645333pt;}
.ws3f{word-spacing:0.704000pt;}
.ws9{word-spacing:1.036800pt;}
.ws42{word-spacing:1.114667pt;}
.ws47{word-spacing:1.173333pt;}
.ws8{word-spacing:1.269333pt;}
.ws43{word-spacing:1.408000pt;}
.ws6{word-spacing:1.418667pt;}
.ws7{word-spacing:1.493333pt;}
.ws56{word-spacing:1.760000pt;}
.ws27{word-spacing:1.818667pt;}
.wsb{word-spacing:1.962667pt;}
.wsa{word-spacing:2.024000pt;}
.wsc{word-spacing:2.085333pt;}
.ws49{word-spacing:2.698667pt;}
.ws41{word-spacing:2.874667pt;}
.ws11{word-spacing:3.005333pt;}
.ws2a{word-spacing:3.461333pt;}
.ws4e{word-spacing:3.520000pt;}
.ws3a{word-spacing:3.696000pt;}
.ws3d{word-spacing:4.048000pt;}
.ws36{word-spacing:4.106667pt;}
.wsf{word-spacing:4.109333pt;}
.ws10{word-spacing:4.232000pt;}
.ws53{word-spacing:4.693333pt;}
.wse{word-spacing:4.845333pt;}
.ws52{word-spacing:4.986667pt;}
.ws37{word-spacing:5.162667pt;}
.ws1b{word-spacing:5.690667pt;}
.ws4a{word-spacing:5.808000pt;}
.ws33{word-spacing:6.336000pt;}
.ws1e{word-spacing:6.394667pt;}
.ws51{word-spacing:6.570667pt;}
.ws55{word-spacing:6.981333pt;}
.ws57{word-spacing:7.920000pt;}
.ws26{word-spacing:8.037333pt;}
.ws21{word-spacing:8.624000pt;}
.ws1d{word-spacing:8.741333pt;}
.ws18{word-spacing:13.317333pt;}
.ws19{word-spacing:36.197333pt;}
._19{margin-left:-26.576000pt;}
._12{margin-left:-25.189333pt;}
._18{margin-left:-23.434667pt;}
._13{margin-left:-21.882667pt;}
._b{margin-left:-20.389333pt;}
._17{margin-left:-17.882667pt;}
._f{margin-left:-16.885333pt;}
._14{margin-left:-15.605333pt;}
._11{margin-left:-13.888000pt;}
._d{margin-left:-12.954667pt;}
._5{margin-left:-10.362667pt;}
._16{margin-left:-8.448000pt;}
._8{margin-left:-6.650667pt;}
._9{margin-left:-5.472000pt;}
._a{margin-left:-3.920000pt;}
._7{margin-left:-2.938667pt;}
._2{margin-left:-1.701333pt;}
._0{width:0.928000pt;}
._3{width:2.010667pt;}
._4{width:3.402667pt;}
._1{width:4.330667pt;}
._6{width:5.413333pt;}
._10{width:7.082667pt;}
._c{width:8.506667pt;}
._e{width:10.048000pt;}
._15{width:11.360000pt;}
._1a{width:12.330667pt;}
._1b{width:13.760000pt;}
._1c{width:14.656000pt;}
._21{width:17.280000pt;}
._1e{width:18.368000pt;}
._1f{width:19.648000pt;}
._23{width:20.794667pt;}
._1d{width:21.765333pt;}
._20{width:23.098667pt;}
._24{width:24.389333pt;}
._22{width:25.536000pt;}
._26{width:26.869333pt;}
._25{width:28.261333pt;}
._2a{width:29.456000pt;}
._32{width:31.152000pt;}
._27{width:35.392000pt;}
._28{width:36.672000pt;}
._2f{width:41.472000pt;}
._30{width:42.597333pt;}
._2e{width:43.749333pt;}
._29{width:129.344000pt;}
._31{width:199.488000pt;}
._2b{width:237.482667pt;}
._2c{width:238.389333pt;}
._2d{width:409.536000pt;}
.fse{font-size:34.560000pt;}
.fs6{font-size:37.333333pt;}
.fsa{font-size:42.880000pt;}
.fsc{font-size:48.000000pt;}
.fs4{font-size:51.840000pt;}
.fsb{font-size:53.120000pt;}
.fs7{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fsd{font-size:58.880000pt;}
.fs5{font-size:61.333333pt;}
.fs8{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.fs3{font-size:106.666667pt;}
.fs0{font-size:154.666667pt;}
.y0{bottom:0.000000pt;}
.y155{bottom:3.900000pt;}
.y154{bottom:33.425423pt;}
.y46{bottom:85.017333pt;}
.y6a{bottom:87.288000pt;}
.yfe{bottom:87.451733pt;}
.yce{bottom:92.305333pt;}
.y1a{bottom:99.187867pt;}
.y83{bottom:99.974533pt;}
.y25{bottom:106.220533pt;}
.y45{bottom:106.401333pt;}
.y69{bottom:108.672000pt;}
.yfd{bottom:108.835733pt;}
.ycd{bottom:113.689333pt;}
.y1ab{bottom:116.640000pt;}
.y19{bottom:117.801333pt;}
.y82{bottom:121.358533pt;}
.y1aa{bottom:122.720000pt;}
.y24{bottom:122.746933pt;}
.y44{bottom:124.001333pt;}
.y1b1{bottom:125.920000pt;}
.y68{bottom:126.272000pt;}
.yfc{bottom:126.435733pt;}
.y129{bottom:130.646400pt;}
.y1fd{bottom:132.480000pt;}
.y1a9{bottom:132.800000pt;}
.ycc{bottom:135.068800pt;}
.y194{bottom:136.640000pt;}
.y174{bottom:138.880000pt;}
.ye1{bottom:140.088000pt;}
.y153{bottom:141.600000pt;}
.y43{bottom:141.601333pt;}
.y81{bottom:142.738133pt;}
.ya0{bottom:145.105333pt;}
.y1b8{bottom:146.586667pt;}
.y67{bottom:147.651467pt;}
.yfb{bottom:147.815333pt;}
.y1f8{bottom:148.186667pt;}
.y1fc{bottom:150.906667pt;}
.y128{bottom:152.030400pt;}
.y1b0{bottom:153.466667pt;}
.y1a8{bottom:157.306667pt;}
.ye0{bottom:157.688000pt;}
.y1d3{bottom:159.226667pt;}
.y42{bottom:162.980933pt;}
.y193{bottom:164.186667pt;}
.y9f{bottom:166.489333pt;}
.y173{bottom:166.586667pt;}
.y10f{bottom:167.618667pt;}
.y152{bottom:169.146667pt;}
.y1f7{bottom:169.306667pt;}
.y127{bottom:169.630400pt;}
.y1b7{bottom:176.026667pt;}
.ydf{bottom:179.072000pt;}
.y1d2{bottom:180.346667pt;}
.y1af{bottom:180.986667pt;}
.ycb{bottom:182.077467pt;}
.y9e{bottom:184.089333pt;}
.y1a7{bottom:184.986667pt;}
.y1fb{bottom:185.146667pt;}
.y10e{bottom:185.218667pt;}
.y80{bottom:189.746800pt;}
.y1f6{bottom:190.426667pt;}
.y126{bottom:191.010000pt;}
.y192{bottom:191.866667pt;}
.y172{bottom:194.106667pt;}
.y66{bottom:194.660133pt;}
.y151{bottom:196.826667pt;}
.y1ae{bottom:198.266667pt;}
.yde{bottom:200.451467pt;}
.y1d1{bottom:201.466667pt;}
.yca{bottom:203.461467pt;}
.y1b6{bottom:205.306667pt;}
.y9d{bottom:205.468800pt;}
.y41{bottom:206.210000pt;}
.y10d{bottom:206.602667pt;}
.yfa{bottom:208.056667pt;}
.y7f{bottom:211.130800pt;}
.y1f5{bottom:211.546667pt;}
.yb2{bottom:212.260133pt;}
.y1a6{bottom:212.506667pt;}
.y65{bottom:216.044133pt;}
.y1fa{bottom:218.426667pt;}
.y191{bottom:219.386667pt;}
.yc9{bottom:221.061467pt;}
.y171{bottom:221.786667pt;}
.y1d0{bottom:222.586667pt;}
.y150{bottom:224.346667pt;}
.y1ad{bottom:226.426667pt;}
.y40{bottom:227.594000pt;}
.y10c{bottom:227.982133pt;}
.y7e{bottom:232.510267pt;}
.y1f4{bottom:232.826667pt;}
.y64{bottom:233.644133pt;}
.y1b5{bottom:234.586667pt;}
.y125{bottom:238.018667pt;}
.y1ac{bottom:239.866667pt;}
.y1a5{bottom:240.186667pt;}
.yc8{bottom:242.440933pt;}
.y1cf{bottom:243.866667pt;}
.y3f{bottom:245.194000pt;}
.y190{bottom:247.066667pt;}
.ydd{bottom:247.460133pt;}
.y170{bottom:249.306667pt;}
.y14f{bottom:252.026667pt;}
.y1f9{bottom:252.826667pt;}
.y1f3{bottom:253.946667pt;}
.y63{bottom:255.023733pt;}
.y124{bottom:259.402667pt;}
.y1b4{bottom:264.026667pt;}
.y1ce{bottom:264.986667pt;}
.y9c{bottom:265.710267pt;}
.y3e{bottom:266.573467pt;}
.y1a4{bottom:267.706667pt;}
.ydc{bottom:268.844133pt;}
.yf9{bottom:270.137333pt;}
.y18f{bottom:274.586667pt;}
.y1f2{bottom:275.066667pt;}
.y16f{bottom:276.986667pt;}
.y14e{bottom:279.546667pt;}
.y123{bottom:280.782267pt;}
.y1cd{bottom:285.786667pt;}
.y10b{bottom:288.223600pt;}
.ydb{bottom:290.223600pt;}
.yf8{bottom:291.521333pt;}
.y7d{bottom:292.751733pt;}
.y1b3{bottom:293.306667pt;}
.y1a3{bottom:295.386667pt;}
.y1f1{bottom:296.186667pt;}
.yb1{bottom:302.032267pt;}
.y18e{bottom:302.266667pt;}
.y23{bottom:302.556667pt;}
.yc7{bottom:302.682400pt;}
.y16e{bottom:304.506667pt;}
.y14d{bottom:307.066667pt;}
.yf7{bottom:309.121333pt;}
.y3d{bottom:309.802667pt;}
.y1cc{bottom:313.466667pt;}
.y62{bottom:315.265200pt;}
.y1f0{bottom:317.466667pt;}
.yb0{bottom:319.632267pt;}
.y1b2{bottom:322.746667pt;}
.y1a2{bottom:322.906667pt;}
.y9b{bottom:327.790800pt;}
.y18d{bottom:329.786667pt;}
.yf6{bottom:330.500800pt;}
.y3c{bottom:331.186667pt;}
.y16d{bottom:332.186667pt;}
.y14c{bottom:334.746667pt;}
.yda{bottom:337.232267pt;}
.y1ef{bottom:338.586667pt;}
.yaf{bottom:341.016267pt;}
.y1cb{bottom:341.306667pt;}
.y3b{bottom:348.786667pt;}
.y9a{bottom:349.174800pt;}
.y10a{bottom:350.304267pt;}
.y1a1{bottom:350.586667pt;}
.y7c{bottom:354.832267pt;}
.y18c{bottom:357.466667pt;}
.yae{bottom:358.616267pt;}
.y16c{bottom:359.706667pt;}
.y14b{bottom:362.306667pt;}
.y11c{bottom:362.395867pt;}
.y22{bottom:363.997333pt;}
.yc6{bottom:364.763067pt;}
.y3a{bottom:366.386667pt;}
.y122{bottom:366.774800pt;}
.y109{bottom:367.904267pt;}
.y1ca{bottom:369.026667pt;}
.y99{bottom:370.554400pt;}
.yf5{bottom:373.730000pt;}
.y7b{bottom:376.216267pt;}
.y61{bottom:377.345733pt;}
.y1a0{bottom:378.146667pt;}
.yad{bottom:379.995867pt;}
.y1ee{bottom:380.866667pt;}
.yc5{bottom:382.363067pt;}
.y21{bottom:382.397333pt;}
.y18b{bottom:385.026667pt;}
.y16b{bottom:387.426667pt;}
.y39{bottom:387.766133pt;}
.y121{bottom:388.154400pt;}
.y108{bottom:389.288267pt;}
.y14a{bottom:389.986667pt;}
.y7a{bottom:393.816267pt;}
.yf4{bottom:395.114000pt;}
.y1c9{bottom:396.546667pt;}
.yd9{bottom:397.595867pt;}
.y60{bottom:398.729733pt;}
.y20{bottom:400.797333pt;}
.y1ed{bottom:402.146667pt;}
.yc4{bottom:403.747067pt;}
.y19f{bottom:405.826667pt;}
.y107{bottom:406.888267pt;}
.y11b{bottom:409.404533pt;}
.y18a{bottom:412.706667pt;}
.yf3{bottom:412.714000pt;}
.y16a{bottom:414.946667pt;}
.y79{bottom:415.195867pt;}
.y5f{bottom:416.329733pt;}
.y149{bottom:417.506667pt;}
.y98{bottom:417.563067pt;}
.y1f{bottom:419.197333pt;}
.yc3{bottom:421.347067pt;}
.y1ec{bottom:423.266667pt;}
.y1c8{bottom:424.226667pt;}
.yac{bottom:427.004533pt;}
.y106{bottom:428.267733pt;}
.yf2{bottom:430.314000pt;}
.y11a{bottom:430.788533pt;}
.y19e{bottom:433.346667pt;}
.y38{bottom:434.774800pt;}
.y97{bottom:435.163067pt;}
.y1e{bottom:437.597333pt;}
.y5e{bottom:437.709200pt;}
.y189{bottom:440.226667pt;}
.y169{bottom:442.626667pt;}
.yc2{bottom:442.726533pt;}
.y1eb{bottom:444.386667pt;}
.yab{bottom:444.604533pt;}
.y148{bottom:445.186667pt;}
.y119{bottom:448.388533pt;}
.yf1{bottom:451.693467pt;}
.y1c7{bottom:451.746667pt;}
.y1d{bottom:455.997333pt;}
.y37{bottom:456.158800pt;}
.y96{bottom:456.547067pt;}
.y19d{bottom:461.026667pt;}
.y78{bottom:462.204533pt;}
.y1ea{bottom:465.506667pt;}
.yaa{bottom:465.988533pt;}
.y188{bottom:467.906667pt;}
.y118{bottom:469.768000pt;}
.y168{bottom:470.146667pt;}
.y147{bottom:472.706667pt;}
.y36{bottom:473.758800pt;}
.y105{bottom:475.276400pt;}
.y95{bottom:477.926533pt;}
.y1c{bottom:478.169333pt;}
.y1c6{bottom:479.426667pt;}
.y77{bottom:483.588533pt;}
.y5d{bottom:484.717867pt;}
.y1e9{bottom:486.786667pt;}
.y19c{bottom:488.546667pt;}
.yc1{bottom:489.735200pt;}
.yf0{bottom:494.922533pt;}
.y35{bottom:495.138400pt;}
.y187{bottom:495.426667pt;}
.y1b{bottom:496.569333pt;}
.y104{bottom:496.660400pt;}
.y167{bottom:497.826667pt;}
.y146{bottom:500.386667pt;}
.y76{bottom:501.188533pt;}
.ya9{bottom:504.968000pt;}
.y5c{bottom:506.101867pt;}
.y1c5{bottom:506.946667pt;}
.yc0{bottom:507.335200pt;}
.y1e8{bottom:507.906667pt;}
.y103{bottom:514.260400pt;}
.y19b{bottom:516.226667pt;}
.yef{bottom:516.306533pt;}
.y117{bottom:516.776667pt;}
.yd8{bottom:518.788533pt;}
.y75{bottom:522.568000pt;}
.y186{bottom:523.106667pt;}
.y5b{bottom:523.701867pt;}
.y166{bottom:525.346667pt;}
.y145{bottom:527.906667pt;}
.ybf{bottom:528.719200pt;}
.y1e7{bottom:529.026667pt;}
.y116{bottom:534.376667pt;}
.y1c4{bottom:534.466667pt;}
.y102{bottom:535.639867pt;}
.yee{bottom:537.686133pt;}
.y94{bottom:538.168000pt;}
.y34{bottom:538.367467pt;}
.yd7{bottom:540.168000pt;}
.y19a{bottom:543.746667pt;}
.y5a{bottom:545.081467pt;}
.ybe{bottom:546.319200pt;}
.y1e6{bottom:550.146667pt;}
.y185{bottom:550.626667pt;}
.ya8{bottom:551.976667pt;}
.y165{bottom:552.866667pt;}
.y144{bottom:555.586667pt;}
.y115{bottom:555.760667pt;}
.y33{bottom:559.751467pt;}
.y1c3{bottom:562.146667pt;}
.ybd{bottom:567.698667pt;}
.y74{bottom:569.576667pt;}
.y18{bottom:571.013333pt;}
.y199{bottom:571.266667pt;}
.ya7{bottom:573.360667pt;}
.y32{bottom:577.351467pt;}
.y184{bottom:578.333333pt;}
.y164{bottom:580.573333pt;}
.yed{bottom:580.915333pt;}
.y101{bottom:582.648533pt;}
.y143{bottom:583.133333pt;}
.yd6{bottom:587.176667pt;}
.y198{bottom:589.533333pt;}
.y1c2{bottom:589.693333pt;}
.y73{bottom:590.960667pt;}
.y59{bottom:592.090000pt;}
.y1e5{bottom:592.573333pt;}
.y17{bottom:597.184000pt;}
.y31{bottom:598.730933pt;}
.y93{bottom:600.248533pt;}
.yec{bottom:602.299333pt;}
.y183{bottom:605.853333pt;}
.y163{bottom:608.093333pt;}
.yd5{bottom:608.560667pt;}
.y58{bottom:609.690000pt;}
.y142{bottom:610.813333pt;}
.y72{bottom:612.340267pt;}
.y1e4{bottom:613.693333pt;}
.ybc{bottom:614.707333pt;}
.y197{bottom:617.053333pt;}
.y1c1{bottom:617.373333pt;}
.y16{bottom:619.583867pt;}
.yeb{bottom:619.899333pt;}
.y92{bottom:621.632533pt;}
.y130{bottom:626.160667pt;}
.yd4{bottom:629.940133pt;}
.y57{bottom:631.074000pt;}
.ybb{bottom:632.307333pt;}
.y182{bottom:633.533333pt;}
.y1e3{bottom:634.813333pt;}
.y162{bottom:635.773333pt;}
.y196{bottom:635.933333pt;}
.yea{bottom:637.499333pt;}
.y141{bottom:638.333333pt;}
.y91{bottom:639.232533pt;}
.y100{bottom:643.012133pt;}
.y1c0{bottom:644.893333pt;}
.y12f{bottom:647.540267pt;}
.y56{bottom:648.674000pt;}
.yba{bottom:653.691333pt;}
.y30{bottom:655.192933pt;}
.y15{bottom:655.415733pt;}
.y1e2{bottom:655.933333pt;}
.ye9{bottom:658.878800pt;}
.ya6{bottom:659.348800pt;}
.y90{bottom:660.612133pt;}
.y181{bottom:661.053333pt;}
.y161{bottom:663.293333pt;}
.y140{bottom:666.013333pt;}
.y55{bottom:666.274000pt;}
.yb9{bottom:671.291333pt;}
.y1bf{bottom:672.573333pt;}
.y71{bottom:672.581600pt;}
.ya5{bottom:676.948800pt;}
.y1e1{bottom:677.213333pt;}
.y180{bottom:679.293333pt;}
.y114{bottom:680.732800pt;}
.y14{bottom:681.586400pt;}
.y13f{bottom:684.253333pt;}
.y54{bottom:687.653600pt;}
.yff{bottom:690.020667pt;}
.yd3{bottom:690.181600pt;}
.y160{bottom:690.973333pt;}
.yb8{bottom:692.670933pt;}
.y12e{bottom:694.548933pt;}
.ya4{bottom:698.332800pt;}
.y1e0{bottom:698.333333pt;}
.y1be{bottom:700.093333pt;}
.y6{bottom:704.371733pt;}
.y17f{bottom:706.813333pt;}
.y8f{bottom:707.620667pt;}
.y13{bottom:707.757067pt;}
.y120{bottom:711.404667pt;}
.y13e{bottom:711.613333pt;}
.ye8{bottom:715.340800pt;}
.ya3{bottom:715.932800pt;}
.y12d{bottom:715.932933pt;}
.y2f{bottom:717.273467pt;}
.y15f{bottom:718.493333pt;}
.y1df{bottom:719.453333pt;}
.y113{bottom:719.712400pt;}
.y17e{bottom:725.693333pt;}
.y1bd{bottom:727.773333pt;}
.y8e{bottom:729.004667pt;}
.y13d{bottom:732.733333pt;}
.y12c{bottom:733.532933pt;}
.y12{bottom:733.927733pt;}
.y53{bottom:734.662267pt;}
.y5{bottom:736.363733pt;}
.ya2{bottom:737.312400pt;}
.y2e{bottom:738.657467pt;}
.y1de{bottom:740.573333pt;}
.y15e{bottom:746.173333pt;}
.y8d{bottom:750.384267pt;}
.y13c{bottom:751.293333pt;}
.yd2{bottom:752.262267pt;}
.yb7{bottom:752.912400pt;}
.y17d{bottom:753.053333pt;}
.y12b{bottom:754.912400pt;}
.y1bc{bottom:755.293333pt;}
.y52{bottom:756.046267pt;}
.y2d{bottom:756.257467pt;}
.y11{bottom:760.098400pt;}
.y1dd{bottom:761.853333pt;}
.y4{bottom:768.931733pt;}
.yd1{bottom:769.862267pt;}
.y51{bottom:773.646267pt;}
.y15d{bottom:773.693333pt;}
.ye7{bottom:777.421333pt;}
.y2c{bottom:777.637067pt;}
.y112{bottom:779.953867pt;}
.y17c{bottom:780.733333pt;}
.y10{bottom:782.498400pt;}
.y1bb{bottom:782.973333pt;}
.y13b{bottom:784.893333pt;}
.y70{bottom:791.246267pt;}
.y50{bottom:795.025733pt;}
.y8c{bottom:797.392933pt;}
.ya1{bottom:797.553867pt;}
.ye6{bottom:798.805333pt;}
.y15c{bottom:801.413333pt;}
.y1dc{bottom:804.133333pt;}
.yf{bottom:808.669067pt;}
.y17b{bottom:809.413333pt;}
.y1ba{bottom:810.533333pt;}
.y6f{bottom:812.625733pt;}
.y13a{bottom:813.573333pt;}
.yb6{bottom:814.992933pt;}
.y12a{bottom:815.153867pt;}
.ye5{bottom:816.405333pt;}
.y8b{bottom:818.776933pt;}
.y2b{bottom:820.866133pt;}
.y1db{bottom:825.253333pt;}
.y15b{bottom:828.933333pt;}
.y139{bottom:831.973333pt;}
.y8a{bottom:836.376933pt;}
.y17a{bottom:837.093333pt;}
.ye4{bottom:837.784800pt;}
.y1b9{bottom:838.213333pt;}
.y11f{bottom:840.156533pt;}
.y4f{bottom:842.034400pt;}
.y2a{bottom:842.250133pt;}
.ye{bottom:842.399733pt;}
.y1da{bottom:846.533333pt;}
.y138{bottom:850.853333pt;}
.yb5{bottom:853.976933pt;}
.y15a{bottom:856.613333pt;}
.y89{bottom:857.756533pt;}
.y6e{bottom:859.634400pt;}
.y29{bottom:859.850133pt;}
.y4e{bottom:863.418400pt;}
.yd{bottom:864.799733pt;}
.y179{bottom:865.733333pt;}
.y1d9{bottom:867.653333pt;}
.y137{bottom:867.973333pt;}
.yb4{bottom:875.356400pt;}
.yd0{bottom:877.234400pt;}
.ye3{bottom:881.014000pt;}
.y4d{bottom:881.018400pt;}
.y28{bottom:881.229600pt;}
.y136{bottom:883.813333pt;}
.y159{bottom:884.133333pt;}
.y111{bottom:884.797867pt;}
.y11e{bottom:887.165067pt;}
.yc{bottom:887.199733pt;}
.y1d8{bottom:888.773333pt;}
.y195{bottom:891.493333pt;}
.y178{bottom:893.413333pt;}
.y6d{bottom:898.618400pt;}
.y3{bottom:898.629867pt;}
.y4c{bottom:902.398000pt;}
.y135{bottom:902.693333pt;}
.y88{bottom:904.765067pt;}
.y11d{bottom:908.549067pt;}
.yb{bottom:909.599733pt;}
.y1d7{bottom:909.893333pt;}
.y158{bottom:911.813333pt;}
.y6c{bottom:919.998000pt;}
.y134{bottom:920.773333pt;}
.y177{bottom:920.933333pt;}
.yb3{bottom:922.365067pt;}
.y87{bottom:926.149067pt;}
.y27{bottom:930.132933pt;}
.y1d6{bottom:931.173333pt;}
.y110{bottom:931.806533pt;}
.ya{bottom:935.770400pt;}
.y133{bottom:939.173333pt;}
.y157{bottom:939.333333pt;}
.ye2{bottom:941.377467pt;}
.y86{bottom:943.749067pt;}
.y176{bottom:948.613333pt;}
.y2{bottom:949.283200pt;}
.y4b{bottom:949.406533pt;}
.y1d5{bottom:952.293333pt;}
.y85{bottom:965.128667pt;}
.y9{bottom:966.215733pt;}
.y175{bottom:966.853333pt;}
.y6b{bottom:967.006533pt;}
.y132{bottom:967.013333pt;}
.y4a{bottom:970.790533pt;}
.y1d4{bottom:973.413333pt;}
.ycf{bottom:984.606533pt;}
.y49{bottom:988.390533pt;}
.y131{bottom:994.213333pt;}
.y156{bottom:994.533333pt;}
.y8{bottom:996.175733pt;}
.y1{bottom:999.936533pt;}
.y48{bottom:1005.990533pt;}
.y7{bottom:1022.850400pt;}
.y26{bottom:1024.343600pt;}
.y84{bottom:1025.370133pt;}
.y47{bottom:1027.370133pt;}
.h17{height:15.972000pt;}
.ha{height:30.277333pt;}
.h1e{height:33.918750pt;}
.h8{height:36.547200pt;}
.hb{height:37.866667pt;}
.h1f{height:38.085312pt;}
.h14{height:42.084375pt;}
.h1d{height:44.965000pt;}
.h10{height:47.578667pt;}
.h18{height:48.281250pt;}
.hf{height:49.338667pt;}
.h9{height:49.741333pt;}
.h16{height:52.108438pt;}
.h15{height:52.134375pt;}
.h5{height:52.640000pt;}
.he{height:52.928000pt;}
.h6{height:53.386667pt;}
.h12{height:56.843750pt;}
.h1b{height:57.375000pt;}
.h20{height:57.787500pt;}
.h1a{height:62.781250pt;}
.h13{height:62.812500pt;}
.hd{height:63.466667pt;}
.h19{height:64.375000pt;}
.h3{height:67.200000pt;}
.h4{height:67.296000pt;}
.hc{height:69.477333pt;}
.h7{height:88.213333pt;}
.h2{height:134.250667pt;}
.h0{height:1122.520000pt;}
.h1c{height:1122.558667pt;}
.h11{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:20.016000pt;}
.w0{width:793.701333pt;}
.w4{width:793.758667pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:59.272667pt;}
.x18{left:75.590533pt;}
.x38{left:84.160000pt;}
.x1a{left:86.268533pt;}
.x31{left:91.552000pt;}
.x39{left:97.952000pt;}
.x19{left:98.960800pt;}
.x2{left:104.010000pt;}
.x34{left:123.552000pt;}
.x1{left:135.059333pt;}
.x6{left:149.504400pt;}
.x25{left:151.237867pt;}
.x36{left:154.585333pt;}
.x37{left:165.466667pt;}
.x20{left:168.774933pt;}
.x5{left:178.928400pt;}
.x2d{left:193.890400pt;}
.x7{left:203.549200pt;}
.x33{left:205.626667pt;}
.x1d{left:209.626933pt;}
.x2a{left:212.015200pt;}
.x24{left:213.154800pt;}
.x26{left:217.578133pt;}
.x28{left:224.951333pt;}
.x2c{left:227.331733pt;}
.x23{left:238.307467pt;}
.x3b{left:249.146667pt;}
.x27{left:253.847467pt;}
.x2e{left:259.773467pt;}
.x1c{left:261.957733pt;}
.x1e{left:265.597733pt;}
.x11{left:267.855867pt;}
.x29{left:271.094667pt;}
.x21{left:272.476133pt;}
.x8{left:274.202533pt;}
.x10{left:275.826533pt;}
.x22{left:284.366800pt;}
.x1b{left:285.683867pt;}
.xe{left:289.807867pt;}
.x15{left:293.572933pt;}
.x14{left:299.994267pt;}
.x32{left:305.986667pt;}
.x2b{left:307.288800pt;}
.xb{left:308.941200pt;}
.x9{left:314.821200pt;}
.xd{left:317.677200pt;}
.x3a{left:325.986667pt;}
.x12{left:327.029200pt;}
.xf{left:334.981200pt;}
.xc{left:343.306533pt;}
.x2f{left:344.546667pt;}
.x1f{left:355.224400pt;}
.x4{left:356.480400pt;}
.xa{left:368.245200pt;}
.x35{left:386.868652pt;}
.x13{left:390.010533pt;}
.x30{left:396.866667pt;}
.x17{left:486.111467pt;}
.x16{left:502.431333pt;}
}




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