
    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_5b14ec9b0b983f8ec4858483.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d4cf46936890b8cda992624f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9fac0c09eb192ae1b4bc0365.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_097ddddcfe41eb80cee63cde.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_146508c4825e19f3bd367402.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_713ff88dab961543edcd262a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.940918;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_93e124be8aafad4a05e8e92b.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5ae9dcfe1724cfe70460a2b1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.675781;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_f3963a04135ffcbcae5563ca.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_be3378a6d1704bac0f6d685f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_79c260bd03f9d253a530b414.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_61463bb8db4a1b95c73aa7c8.woff')format("woff");}.ffc{font-family:ffc;line-height:0.730469;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_8b6712544b5830c730b1adcf.woff')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_bf18eb2602f2cf0fddc20821.woff')format("woff");}.ffe{font-family:ffe;line-height:0.730957;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_660701bd0b61252b44645ffd.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_db4f5ea479237cc3e97b2419.woff')format("woff");}.ff10{font-family:ff10;line-height:0.740234;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_697fddbd418d3e4e7879fcee.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_0ec4b3f68f2d07df288c42c0.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_ca55c7259ebc2a0bafeb9319.woff')format("woff");}.ff13{font-family:ff13;line-height:0.872559;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_cfec33d317d79e67ab420b58.woff')format("woff");}.ff14{font-family:ff14;line-height:0.995117;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_751d9a735367204b53f7b1af.woff')format("woff");}.ff15{font-family:ff15;line-height:1.004883;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_2bdde5ee4c8371115ee4a2f0.woff')format("woff");}.ff16{font-family:ff16;line-height:0.752441;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_7883be9ba75ec9caad1ddafa.woff')format("woff");}.ff17{font-family:ff17;line-height:0.666504;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_f140181f8635f49138b13e56.woff')format("woff");}.ff18{font-family:ff18;line-height:0.711426;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);}
.v2{vertical-align:-18.720000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.720000px;}
.v3{vertical-align:21.600000px;}
.ls61{letter-spacing:-1.064448px;}
.ls62{letter-spacing:-0.997920px;}
.ls5e{letter-spacing:-0.937440px;}
.ls5a{letter-spacing:-0.919296px;}
.ls5d{letter-spacing:-0.901152px;}
.ls59{letter-spacing:-0.858816px;}
.ls5c{letter-spacing:-0.840672px;}
.ls60{letter-spacing:-0.762048px;}
.ls30{letter-spacing:-0.761760px;}
.ls5b{letter-spacing:-0.743904px;}
.ls2d{letter-spacing:-0.722016px;}
.ls5f{letter-spacing:-0.695520px;}
.lsc{letter-spacing:-0.601920px;}
.ls2c{letter-spacing:-0.590400px;}
.ls36{letter-spacing:-0.574560px;}
.ls31{letter-spacing:-0.569088px;}
.ls34{letter-spacing:-0.514368px;}
.lse{letter-spacing:-0.508896px;}
.lsb{letter-spacing:-0.481536px;}
.ls2b{letter-spacing:-0.459648px;}
.lsa{letter-spacing:-0.448704px;}
.ls35{letter-spacing:-0.443232px;}
.ls21{letter-spacing:-0.399168px;}
.ls18{letter-spacing:-0.393984px;}
.ls22{letter-spacing:-0.381024px;}
.ls37{letter-spacing:-0.350208px;}
.ls11{letter-spacing:-0.338688px;}
.ls8{letter-spacing:-0.328032px;}
.ls20{letter-spacing:-0.320544px;}
.ls17{letter-spacing:-0.302400px;}
.ls39{letter-spacing:-0.284256px;}
.ls33{letter-spacing:-0.262656px;}
.ls12{letter-spacing:-0.260064px;}
.ls13{letter-spacing:-0.241920px;}
.ls29{letter-spacing:-0.240768px;}
.ls19{letter-spacing:-0.207936px;}
.ls32{letter-spacing:-0.185472px;}
.ls28{letter-spacing:-0.158976px;}
.ls15{letter-spacing:-0.157248px;}
.ls16{letter-spacing:-0.153216px;}
.ls38{letter-spacing:-0.152352px;}
.ls10{letter-spacing:-0.145152px;}
.ls27{letter-spacing:-0.125856px;}
.ls14{letter-spacing:-0.096768px;}
.ls3a{letter-spacing:-0.079488px;}
.ls7{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.007200px;}
.ls5{letter-spacing:0.014400px;}
.ls3b{letter-spacing:0.015984px;}
.ls42{letter-spacing:0.036000px;}
.ls43{letter-spacing:0.058320px;}
.ls1a{letter-spacing:0.125280px;}
.ls6{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.159840px;}
.ls2{letter-spacing:0.160272px;}
.ls1f{letter-spacing:0.161568px;}
.ls24{letter-spacing:0.213120px;}
.ls1c{letter-spacing:0.270864px;}
.ls4{letter-spacing:0.273600px;}
.ls0{letter-spacing:0.275616px;}
.lsd{letter-spacing:0.318384px;}
.lsf{letter-spacing:0.356400px;}
.ls9{letter-spacing:0.359136px;}
.ls23{letter-spacing:0.373680px;}
.ls1d{letter-spacing:0.663840px;}
.ls3e{letter-spacing:0.895680px;}
.ls1{letter-spacing:0.960912px;}
.ls25{letter-spacing:1.091232px;}
.ls2e{letter-spacing:1.215360px;}
.ls26{letter-spacing:1.782720px;}
.ls3f{letter-spacing:2.278080px;}
.ls4c{letter-spacing:2.439360px;}
.ls2f{letter-spacing:2.852640px;}
.ls3d{letter-spacing:6.259248px;}
.ls1e{letter-spacing:6.356160px;}
.ls40{letter-spacing:8.393760px;}
.ls47{letter-spacing:9.424800px;}
.ls50{letter-spacing:10.612800px;}
.ls4f{letter-spacing:11.024352px;}
.ls4d{letter-spacing:11.024496px;}
.ls52{letter-spacing:11.024640px;}
.ls51{letter-spacing:11.026080px;}
.ls53{letter-spacing:11.027520px;}
.ls4e{letter-spacing:11.436048px;}
.ls56{letter-spacing:18.743040px;}
.ls54{letter-spacing:18.744192px;}
.ls57{letter-spacing:18.744480px;}
.ls55{letter-spacing:18.745776px;}
.ls58{letter-spacing:23.856336px;}
.ls4b{letter-spacing:58.400640px;}
.ls3c{letter-spacing:63.588816px;}
.ls49{letter-spacing:68.362560px;}
.ls45{letter-spacing:68.386320px;}
.ls41{letter-spacing:69.420384px;}
.ls48{letter-spacing:79.167456px;}
.ls46{letter-spacing:129.147984px;}
.ls4a{letter-spacing:129.149280px;}
.ls44{letter-spacing:155.622240px;}
.ls1b{letter-spacing:850.847184px;}
.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:-26.493408px;}
.ws10{word-spacing:-20.030400px;}
.ws1f{word-spacing:-18.414720px;}
.ws14{word-spacing:-18.288864px;}
.ws18{word-spacing:-18.255744px;}
.ws17{word-spacing:-17.692704px;}
.ws19{word-spacing:-17.652960px;}
.ws4{word-spacing:-16.813440px;}
.ws21{word-spacing:-16.716672px;}
.ws6{word-spacing:-16.668288px;}
.ws11{word-spacing:-16.656192px;}
.ws5{word-spacing:-16.571520px;}
.ws8{word-spacing:-16.553376px;}
.ws9{word-spacing:-16.511040px;}
.wsf{word-spacing:-16.492896px;}
.ws12{word-spacing:-16.474752px;}
.ws23{word-spacing:-16.432416px;}
.ws1a{word-spacing:-16.414272px;}
.ws24{word-spacing:-16.117920px;}
.ws22{word-spacing:-15.954624px;}
.ws2{word-spacing:-15.212160px;}
.ws7{word-spacing:-15.058944px;}
.ws13{word-spacing:-14.971392px;}
.wsa{word-spacing:-14.818176px;}
.ws1c{word-spacing:-14.763456px;}
.ws16{word-spacing:-14.730624px;}
.wsb{word-spacing:-14.703264px;}
.ws1b{word-spacing:-14.643072px;}
.ws3{word-spacing:-14.610240px;}
.ws1{word-spacing:-13.486176px;}
.wse{word-spacing:-13.481424px;}
.ws1e{word-spacing:-13.329792px;}
.wsd{word-spacing:-13.210560px;}
.ws20{word-spacing:-0.097200px;}
.ws1d{word-spacing:-0.054720px;}
.ws15{word-spacing:-0.043200px;}
.wsc{word-spacing:0.000000px;}
._f{margin-left:-4.069440px;}
._b{margin-left:-2.989440px;}
._1{margin-left:-1.002240px;}
._0{width:1.061280px;}
._3{width:2.721600px;}
._5{width:3.931200px;}
._4{width:5.114880px;}
._8{width:6.229440px;}
._7{width:7.560000px;}
._11{width:8.890560px;}
._6{width:10.100160px;}
._a{width:11.182752px;}
._10{width:12.404448px;}
._12{width:13.537872px;}
._e{width:14.808672px;}
._9{width:18.385920px;}
._13{width:19.523520px;}
._c{width:20.839680px;}
._d{width:21.876480px;}
._1f{width:24.739920px;}
._1e{width:26.501328px;}
._16{width:31.752000px;}
._17{width:33.042240px;}
._14{width:34.292160px;}
._15{width:35.351136px;}
._19{width:36.529920px;}
._18{width:40.642560px;}
._1a{width:41.756400px;}
._1c{width:43.874928px;}
._1b{width:45.299520px;}
._27{width:59.078304px;}
._25{width:60.232320px;}
._1d{width:69.672960px;}
._26{width:76.567680px;}
._2{width:85.573008px;}
._24{width:112.862016px;}
._21{width:124.864128px;}
._20{width:126.040320px;}
._23{width:276.877440px;}
._22{width:1203.612480px;}
.fc5{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(21,73,121);}
.fc1{color:rgb(128,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:18.720000px;}
.fs4{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs3{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs8{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y16{bottom:3.060000px;}
.y110{bottom:3.180000px;}
.ye{bottom:3.240000px;}
.y121{bottom:3.300000px;}
.y1b{bottom:3.360000px;}
.yb3{bottom:3.420000px;}
.yaf{bottom:3.540000px;}
.yba{bottom:3.600000px;}
.y39{bottom:3.660000px;}
.y12{bottom:3.720000px;}
.y16d{bottom:3.780000px;}
.y9d{bottom:3.840000px;}
.y117{bottom:3.900000px;}
.y16f{bottom:4.080000px;}
.y10e{bottom:4.140000px;}
.y114{bottom:4.200000px;}
.y11f{bottom:4.260000px;}
.y125{bottom:4.320000px;}
.ya0{bottom:4.380000px;}
.y9b{bottom:4.680000px;}
.yb6{bottom:4.800000px;}
.y11b{bottom:4.920000px;}
.y16b{bottom:4.980000px;}
.y109{bottom:5.280000px;}
.yb5{bottom:5.940000px;}
.yb1{bottom:6.060000px;}
.y10a{bottom:6.720000px;}
.ya2{bottom:6.900000px;}
.yb8{bottom:6.960000px;}
.y98{bottom:7.320000px;}
.yad{bottom:10.140000px;}
.y15{bottom:16.740000px;}
.yd{bottom:16.920000px;}
.y1a{bottom:17.040000px;}
.y11{bottom:17.760000px;}
.y10f{bottom:18.660000px;}
.y120{bottom:18.780000px;}
.y38{bottom:19.140000px;}
.y116{bottom:19.380000px;}
.y126{bottom:19.620000px;}
.y19{bottom:30.720000px;}
.y14{bottom:30.780000px;}
.yc{bottom:31.320000px;}
.y10{bottom:31.800000px;}
.y10c{bottom:34.140000px;}
.y37{bottom:34.620000px;}
.y128{bottom:35.160000px;}
.y123{bottom:35.820000px;}
.y18{bottom:44.760000px;}
.y33{bottom:45.420000px;}
.y36{bottom:50.100000px;}
.y112{bottom:50.700000px;}
.y3c{bottom:51.840000px;}
.y32{bottom:62.340000px;}
.y35{bottom:65.580000px;}
.y6d{bottom:74.520000px;}
.y31{bottom:79.620000px;}
.y34{bottom:81.060000px;}
.y119{bottom:81.420000px;}
.y2{bottom:88.200000px;}
.y3a{bottom:114.120000px;}
.y1d1{bottom:123.480000px;}
.yd5{bottom:126.720000px;}
.y1be{bottom:127.440000px;}
.y1f8{bottom:129.960000px;}
.y30{bottom:133.500000px;}
.y18d{bottom:133.560000px;}
.y96{bottom:133.920000px;}
.y100{bottom:136.440000px;}
.y6c{bottom:140.400000px;}
.y1d0{bottom:140.760000px;}
.yd4{bottom:144.000000px;}
.y1bd{bottom:144.720000px;}
.y1f7{bottom:147.240000px;}
.y137{bottom:148.680000px;}
.y18c{bottom:150.840000px;}
.y95{bottom:151.200000px;}
.yff{bottom:153.720000px;}
.y6b{bottom:157.680000px;}
.y1f6{bottom:164.520000px;}
.y136{bottom:165.960000px;}
.yd3{bottom:167.760000px;}
.y18b{bottom:168.120000px;}
.y14f{bottom:168.480000px;}
.y1cf{bottom:170.640000px;}
.y1bc{bottom:171.000000px;}
.y195{bottom:173.160000px;}
.y6a{bottom:174.960000px;}
.y94{bottom:177.480000px;}
.yfe{bottom:180.000000px;}
.y1f5{bottom:181.800000px;}
.y135{bottom:183.240000px;}
.y18a{bottom:185.400000px;}
.y1bb{bottom:188.280000px;}
.y69{bottom:192.240000px;}
.yfd{bottom:197.280000px;}
.y14e{bottom:198.360000px;}
.y1f4{bottom:199.080000px;}
.y189{bottom:202.680000px;}
.y1ba{bottom:205.560000px;}
.yd2{bottom:207.360000px;}
.y68{bottom:209.520000px;}
.yfc{bottom:214.560000px;}
.y1f3{bottom:216.360000px;}
.y93{bottom:217.080000px;}
.y1b9{bottom:222.480000px;}
.y67{bottom:226.800000px;}
.y17b{bottom:228.600000px;}
.y188{bottom:228.960000px;}
.yfb{bottom:231.840000px;}
.yd1{bottom:233.640000px;}
.y92{bottom:234.360000px;}
.y14d{bottom:239.400000px;}
.y1b8{bottom:239.760000px;}
.y2f{bottom:243.720000px;}
.y66{bottom:244.080000px;}
.y17a{bottom:245.880000px;}
.y187{bottom:246.240000px;}
.yd0{bottom:250.920000px;}
.y91{bottom:251.640000px;}
.y14c{bottom:256.680000px;}
.yfa{bottom:258.120000px;}
.y1ce{bottom:260.640000px;}
.y65{bottom:261.360000px;}
.y179{bottom:263.160000px;}
.y1f2{bottom:267.840000px;}
.y90{bottom:268.920000px;}
.y1b7{bottom:270.000000px;}
.y134{bottom:270.360000px;}
.y2e{bottom:272.880000px;}
.yf9{bottom:275.400000px;}
.ycf{bottom:276.840000px;}
.y64{bottom:278.640000px;}
.y186{bottom:280.440000px;}
.y14b{bottom:282.960000px;}
.y1f1{bottom:285.120000px;}
.y8f{bottom:286.200000px;}
.y133{bottom:287.640000px;}
.y178{bottom:289.440000px;}
.yf8{bottom:292.680000px;}
.yce{bottom:294.120000px;}
.y185{bottom:298.800000px;}
.y14a{bottom:300.240000px;}
.y1f0{bottom:302.400000px;}
.y1cd{bottom:302.760000px;}
.y8e{bottom:303.480000px;}
.y63{bottom:304.920000px;}
.y1b6{bottom:311.040000px;}
.y132{bottom:313.560000px;}
.y184{bottom:316.080000px;}
.y149{bottom:317.520000px;}
.yf7{bottom:318.600000px;}
.y1ef{bottom:319.680000px;}
.y8d{bottom:320.760000px;}
.y62{bottom:322.200000px;}
.y1cc{bottom:322.560000px;}
.ycd{bottom:324.360000px;}
.y1b5{bottom:328.320000px;}
.y177{bottom:329.040000px;}
.y131{bottom:330.840000px;}
.y183{bottom:333.360000px;}
.y148{bottom:334.800000px;}
.yf6{bottom:335.880000px;}
.y1ee{bottom:336.960000px;}
.y2d{bottom:338.040000px;}
.y61{bottom:339.120000px;}
.y1cb{bottom:342.720000px;}
.y1b4{bottom:345.600000px;}
.y176{bottom:346.320000px;}
.y130{bottom:348.120000px;}
.y182{bottom:351.720000px;}
.y147{bottom:352.080000px;}
.yf5{bottom:353.160000px;}
.y1ed{bottom:354.240000px;}
.y60{bottom:356.400000px;}
.y1b3{bottom:362.520000px;}
.y8c{bottom:363.960000px;}
.y2c{bottom:364.320000px;}
.ycc{bottom:365.400000px;}
.y181{bottom:369.000000px;}
.y146{bottom:369.360000px;}
.yf4{bottom:370.440000px;}
.y1ec{bottom:371.520000px;}
.y175{bottom:372.600000px;}
.y12f{bottom:374.760000px;}
.ya1{bottom:376.500000px;}
.y1b2{bottom:379.800000px;}
.y2b{bottom:381.600000px;}
.y5f{bottom:382.680000px;}
.y174{bottom:385.500000px;}
.y145{bottom:386.640000px;}
.yf3{bottom:387.720000px;}
.y1eb{bottom:388.800000px;}
.ycb{bottom:391.680000px;}
.y9f{bottom:394.500000px;}
.y180{bottom:396.000000px;}
.y1b1{bottom:397.080000px;}
.y2a{bottom:398.880000px;}
.y5e{bottom:399.960000px;}
.y173{bottom:402.000000px;}
.y144{bottom:403.920000px;}
.yf2{bottom:405.000000px;}
.y1ea{bottom:406.080000px;}
.y9e{bottom:411.000000px;}
.y1ca{bottom:411.120000px;}
.y17f{bottom:413.280000px;}
.y12e{bottom:414.360000px;}
.y29{bottom:416.160000px;}
.y172{bottom:417.000000px;}
.y5d{bottom:417.240000px;}
.yca{bottom:417.960000px;}
.yf1{bottom:422.280000px;}
.y1b0{bottom:423.360000px;}
.y9c{bottom:426.000000px;}
.y17e{bottom:430.560000px;}
.y1c9{bottom:430.920000px;}
.y12d{bottom:431.640000px;}
.y28{bottom:433.080000px;}
.y171{bottom:433.500000px;}
.y5c{bottom:434.520000px;}
.yf0{bottom:439.560000px;}
.y143{bottom:440.640000px;}
.y9a{bottom:441.000000px;}
.yc9{bottom:444.240000px;}
.y12c{bottom:448.920000px;}
.y170{bottom:450.000000px;}
.y27{bottom:450.360000px;}
.y1c8{bottom:450.720000px;}
.y5b{bottom:451.800000px;}
.y99{bottom:457.500000px;}
.y1af{bottom:457.920000px;}
.yc8{bottom:461.520000px;}
.y16e{bottom:465.000000px;}
.y17d{bottom:465.480000px;}
.yef{bottom:465.840000px;}
.y12b{bottom:466.200000px;}
.y26{bottom:467.640000px;}
.y142{bottom:468.360000px;}
.y5a{bottom:469.080000px;}
.y1c7{bottom:470.880000px;}
.y97{bottom:474.000000px;}
.y1e9{bottom:474.840000px;}
.y127{bottom:480.000000px;}
.y16c{bottom:481.500000px;}
.yee{bottom:483.120000px;}
.y1ae{bottom:484.200000px;}
.y25{bottom:484.920000px;}
.yc7{bottom:487.440000px;}
.y17c{bottom:489.600000px;}
.y1e8{bottom:492.120000px;}
.y59{bottom:495.360000px;}
.y12a{bottom:496.500000px;}
.y1c6{bottom:497.160000px;}
.y8b{bottom:499.680000px;}
.y1ad{bottom:501.480000px;}
.y24{bottom:502.200000px;}
.yc6{bottom:504.720000px;}
.yed{bottom:509.400000px;}
.y129{bottom:511.500000px;}
.y58{bottom:512.640000px;}
.y16a{bottom:513.000000px;}
.y8a{bottom:516.960000px;}
.y1ac{bottom:518.760000px;}
.y23{bottom:519.480000px;}
.yc5{bottom:522.000000px;}
.y155{bottom:523.440000px;}
.y122{bottom:526.500000px;}
.y1e7{bottom:526.680000px;}
.y57{bottom:529.920000px;}
.y154{bottom:532.440000px;}
.y169{bottom:533.520000px;}
.y1ab{bottom:536.040000px;}
.y22{bottom:536.760000px;}
.yc4{bottom:539.280000px;}
.y89{bottom:543.240000px;}
.y1e6{bottom:543.960000px;}
.y56{bottom:546.840000px;}
.yec{bottom:549.000000px;}
.y168{bottom:550.800000px;}
.y21{bottom:554.040000px;}
.yc3{bottom:556.560000px;}
.y124{bottom:558.000000px;}
.y88{bottom:560.520000px;}
.y1e5{bottom:561.240000px;}
.y1aa{bottom:562.320000px;}
.y55{bottom:564.120000px;}
.yeb{bottom:566.280000px;}
.y167{bottom:568.080000px;}
.y20{bottom:571.320000px;}
.yc2{bottom:573.840000px;}
.y118{bottom:574.500000px;}
.y87{bottom:577.800000px;}
.y1e4{bottom:578.520000px;}
.y1a9{bottom:579.600000px;}
.y1c5{bottom:580.680000px;}
.yea{bottom:583.560000px;}
.y1f{bottom:588.600000px;}
.yc1{bottom:591.120000px;}
.y153{bottom:591.480000px;}
.y54{bottom:594.000000px;}
.y166{bottom:594.360000px;}
.y86{bottom:595.080000px;}
.y1e3{bottom:595.800000px;}
.y1a8{bottom:596.520000px;}
.y157{bottom:601.560000px;}
.y11e{bottom:604.500000px;}
.y1e{bottom:605.880000px;}
.y152{bottom:607.680000px;}
.yc0{bottom:608.400000px;}
.ye9{bottom:609.840000px;}
.y165{bottom:611.640000px;}
.y85{bottom:612.000000px;}
.y1e2{bottom:613.080000px;}
.y11d{bottom:621.000000px;}
.y1a7{bottom:622.800000px;}
.y1c4{bottom:623.160000px;}
.y151{bottom:624.240000px;}
.y156{bottom:624.600000px;}
.ybf{bottom:625.680000px;}
.ye8{bottom:627.120000px;}
.y84{bottom:629.280000px;}
.y1e1{bottom:630.360000px;}
.y1d{bottom:632.520000px;}
.y53{bottom:635.400000px;}
.y11c{bottom:636.000000px;}
.y164{bottom:637.560000px;}
.y1a6{bottom:640.080000px;}
.y1c3{bottom:642.600000px;}
.ybe{bottom:642.960000px;}
.ye7{bottom:644.400000px;}
.y83{bottom:646.560000px;}
.y1e0{bottom:647.640000px;}
.y11a{bottom:651.000000px;}
.y163{bottom:654.840000px;}
.y1a5{bottom:657.360000px;}
.y1c{bottom:659.160000px;}
.ybd{bottom:660.240000px;}
.ye6{bottom:661.680000px;}
.y17{bottom:663.000000px;}
.y82{bottom:663.840000px;}
.y52{bottom:664.560000px;}
.y111{bottom:667.500000px;}
.y1a4{bottom:674.640000px;}
.ye5{bottom:678.960000px;}
.y81{bottom:681.120000px;}
.y1df{bottom:681.840000px;}
.y1c2{bottom:684.360000px;}
.ybc{bottom:686.520000px;}
.y51{bottom:690.840000px;}
.y158{bottom:694.440000px;}
.y150{bottom:695.520000px;}
.ye4{bottom:696.240000px;}
.y162{bottom:698.400000px;}
.y115{bottom:699.000000px;}
.y1de{bottom:699.120000px;}
.y1a3{bottom:700.920000px;}
.y80{bottom:707.400000px;}
.y50{bottom:708.120000px;}
.y113{bottom:714.000000px;}
.y161{bottom:715.680000px;}
.y1dd{bottom:716.400000px;}
.y1a2{bottom:718.200000px;}
.ye3{bottom:722.160000px;}
.y1c1{bottom:723.960000px;}
.y13{bottom:724.500000px;}
.y7f{bottom:724.680000px;}
.ybb{bottom:725.760000px;}
.y10b{bottom:730.500000px;}
.y160{bottom:732.960000px;}
.y1dc{bottom:733.680000px;}
.y4f{bottom:734.760000px;}
.y1a1{bottom:736.560000px;}
.yb9{bottom:738.000000px;}
.ye2{bottom:739.440000px;}
.y1c0{bottom:741.240000px;}
.y7e{bottom:741.960000px;}
.y194{bottom:749.520000px;}
.y15f{bottom:750.240000px;}
.y1db{bottom:750.960000px;}
.yb7{bottom:753.000000px;}
.y1a0{bottom:753.840000px;}
.ye1{bottom:756.720000px;}
.y141{bottom:758.520000px;}
.y7d{bottom:759.240000px;}
.y10d{bottom:760.500000px;}
.y193{bottom:766.800000px;}
.y15e{bottom:767.520000px;}
.y1da{bottom:768.240000px;}
.yf{bottom:771.000000px;}
.y19f{bottom:771.840000px;}
.y4e{bottom:772.920000px;}
.ye0{bottom:774.000000px;}
.y140{bottom:775.800000px;}
.y7c{bottom:776.520000px;}
.y108{bottom:777.000000px;}
.y192{bottom:784.080000px;}
.y1d9{bottom:785.520000px;}
.yb4{bottom:787.500000px;}
.y19e{bottom:789.120000px;}
.y4d{bottom:790.200000px;}
.ydf{bottom:791.280000px;}
.y13f{bottom:793.080000px;}
.y7b{bottom:793.800000px;}
.y107{bottom:800.640000px;}
.y191{bottom:801.360000px;}
.y1d8{bottom:802.800000px;}
.yb2{bottom:805.500000px;}
.y4c{bottom:807.480000px;}
.yde{bottom:808.560000px;}
.y13e{bottom:810.360000px;}
.y7a{bottom:810.720000px;}
.y15d{bottom:811.080000px;}
.y19d{bottom:816.480000px;}
.y106{bottom:817.920000px;}
.y190{bottom:818.640000px;}
.yb{bottom:819.000000px;}
.y1d7{bottom:820.080000px;}
.yb0{bottom:820.500000px;}
.y4b{bottom:824.760000px;}
.ydd{bottom:825.840000px;}
.y13d{bottom:827.640000px;}
.y79{bottom:828.000000px;}
.y15c{bottom:828.360000px;}
.y19c{bottom:833.760000px;}
.y18f{bottom:835.560000px;}
.y1bf{bottom:836.280000px;}
.y1d6{bottom:837.360000px;}
.yae{bottom:838.500000px;}
.y4a{bottom:842.040000px;}
.y105{bottom:843.840000px;}
.y78{bottom:845.280000px;}
.y15b{bottom:845.640000px;}
.ydc{bottom:852.120000px;}
.yac{bottom:853.500000px;}
.y13c{bottom:853.560000px;}
.y1d5{bottom:854.640000px;}
.y18e{bottom:858.960000px;}
.y49{bottom:859.320000px;}
.y19b{bottom:860.040000px;}
.y104{bottom:861.120000px;}
.y77{bottom:862.560000px;}
.y13b{bottom:870.840000px;}
.y1d4{bottom:871.560000px;}
.y48{bottom:876.600000px;}
.y19a{bottom:877.320000px;}
.y103{bottom:878.400000px;}
.ya{bottom:879.120000px;}
.y76{bottom:879.840000px;}
.y13a{bottom:888.120000px;}
.y1d3{bottom:888.840000px;}
.ydb{bottom:891.720000px;}
.y47{bottom:893.880000px;}
.y199{bottom:895.320000px;}
.yab{bottom:897.120000px;}
.y102{bottom:902.160000px;}
.y139{bottom:905.400000px;}
.y1d2{bottom:906.120000px;}
.y9{bottom:906.480000px;}
.yda{bottom:909.000000px;}
.y75{bottom:909.360000px;}
.y46{bottom:911.160000px;}
.y198{bottom:912.600000px;}
.y15a{bottom:914.400000px;}
.y138{bottom:922.680000px;}
.yaa{bottom:923.400000px;}
.yd9{bottom:926.280000px;}
.y45{bottom:928.080000px;}
.y8{bottom:930.960000px;}
.y159{bottom:931.680000px;}
.y197{bottom:939.960000px;}
.ya9{bottom:940.680000px;}
.y101{bottom:942.480000px;}
.yd8{bottom:943.560000px;}
.y44{bottom:945.360000px;}
.y74{bottom:948.960000px;}
.y196{bottom:957.240000px;}
.ya8{bottom:957.960000px;}
.yd7{bottom:960.840000px;}
.y43{bottom:962.640000px;}
.y7{bottom:964.080000px;}
.y73{bottom:966.240000px;}
.ya7{bottom:975.240000px;}
.y42{bottom:979.920000px;}
.y72{bottom:983.520000px;}
.yd6{bottom:987.480000px;}
.ya6{bottom:992.520000px;}
.y41{bottom:997.200000px;}
.y6{bottom:997.920000px;}
.y71{bottom:1000.800000px;}
.ya5{bottom:1009.800000px;}
.y40{bottom:1014.480000px;}
.y70{bottom:1018.080000px;}
.y5{bottom:1025.280000px;}
.ya4{bottom:1027.080000px;}
.y3f{bottom:1031.760000px;}
.y6f{bottom:1035.360000px;}
.ya3{bottom:1044.360000px;}
.y3e{bottom:1049.040000px;}
.y4{bottom:1061.280000px;}
.y3d{bottom:1075.680000px;}
.y6e{bottom:1078.560000px;}
.y3{bottom:1093.320000px;}
.y1{bottom:1154.880000px;}
.y3b{bottom:1171.800000px;}
.hd{height:12.476953px;}
.h17{height:16.500000px;}
.h18{height:18.000000px;}
.h19{height:19.500000px;}
.h15{height:21.000000px;}
.h1a{height:24.000000px;}
.hf{height:25.875000px;}
.h1c{height:31.500000px;}
.h1e{height:33.000000px;}
.h13{height:34.595859px;}
.h9{height:34.642266px;}
.h21{height:39.597188px;}
.ha{height:39.837656px;}
.h12{height:39.891094px;}
.h8{height:43.048125px;}
.h11{height:43.470000px;}
.hb{height:43.500000px;}
.h3{height:44.031094px;}
.h2{height:44.090156px;}
.h16{height:44.595000px;}
.h7{height:45.000000px;}
.h1b{height:48.000000px;}
.h20{height:48.192188px;}
.h14{height:48.224531px;}
.h22{height:48.804609px;}
.h1f{height:49.500000px;}
.he{height:52.417969px;}
.h4{height:55.666406px;}
.hc{height:58.500000px;}
.h6{height:61.008750px;}
.h1d{height:64.500000px;}
.h5{height:70.240078px;}
.h10{height:94.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:82.500000px;}
.wd{width:87.000000px;}
.wb{width:108.000000px;}
.w6{width:180.000000px;}
.w7{width:234.000000px;}
.w11{width:235.500000px;}
.we{width:256.500000px;}
.w10{width:261.000000px;}
.wc{width:277.500000px;}
.w8{width:313.500000px;}
.w9{width:346.500000px;}
.w4{width:351.000000px;}
.wa{width:369.000000px;}
.w3{width:375.000000px;}
.w12{width:384.000000px;}
.w2{width:502.500000px;}
.w5{width:724.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x29{left:1.095000px;}
.xa{left:2.280036px;}
.x15{left:6.239868px;}
.x27{left:7.859964px;}
.xc{left:9.239856px;}
.x2b{left:10.694760px;}
.x2d{left:15.675000px;}
.x19{left:27.149808px;}
.x26{left:38.895240px;}
.x18{left:42.840000px;}
.x3{left:84.959856px;}
.x5{left:93.615228px;}
.x7{left:98.613288px;}
.x14{left:106.259760px;}
.x1{left:111.959856px;}
.x34{left:116.834832px;}
.x31{left:133.200000px;}
.x1a{left:137.104992px;}
.x13{left:153.978720px;}
.x30{left:159.240240px;}
.x32{left:160.259760px;}
.x12{left:189.989880px;}
.x9{left:195.000000px;}
.x1d{left:197.863200px;}
.x11{left:203.489880px;}
.x10{left:205.717920px;}
.xf{left:207.992040px;}
.x1c{left:217.955700px;}
.x20{left:227.529750px;}
.x1f{left:230.319750px;}
.x1b{left:239.451000px;}
.x1e{left:243.958200px;}
.x16{left:262.500000px;}
.xb{left:300.959856px;}
.x8{left:337.257576px;}
.xe{left:342.300120px;}
.x6{left:397.025280px;}
.x2e{left:424.500000px;}
.x25{left:429.000000px;}
.x4{left:446.384880px;}
.xd{left:457.500000px;}
.x28{left:466.500000px;}
.x23{left:481.475850px;}
.x21{left:482.598450px;}
.x17{left:495.000000px;}
.x22{left:502.655850px;}
.x24{left:536.623050px;}
.x2c{left:547.500000px;}
.x2a{left:552.000000px;}
.x33{left:693.884880px;}
.x2{left:807.810120px;}
.x2f{left:830.579760px;}
@media print{
.v2{vertical-align:-16.640000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.640000pt;}
.v3{vertical-align:19.200000pt;}
.ls61{letter-spacing:-0.946176pt;}
.ls62{letter-spacing:-0.887040pt;}
.ls5e{letter-spacing:-0.833280pt;}
.ls5a{letter-spacing:-0.817152pt;}
.ls5d{letter-spacing:-0.801024pt;}
.ls59{letter-spacing:-0.763392pt;}
.ls5c{letter-spacing:-0.747264pt;}
.ls60{letter-spacing:-0.677376pt;}
.ls30{letter-spacing:-0.677120pt;}
.ls5b{letter-spacing:-0.661248pt;}
.ls2d{letter-spacing:-0.641792pt;}
.ls5f{letter-spacing:-0.618240pt;}
.lsc{letter-spacing:-0.535040pt;}
.ls2c{letter-spacing:-0.524800pt;}
.ls36{letter-spacing:-0.510720pt;}
.ls31{letter-spacing:-0.505856pt;}
.ls34{letter-spacing:-0.457216pt;}
.lse{letter-spacing:-0.452352pt;}
.lsb{letter-spacing:-0.428032pt;}
.ls2b{letter-spacing:-0.408576pt;}
.lsa{letter-spacing:-0.398848pt;}
.ls35{letter-spacing:-0.393984pt;}
.ls21{letter-spacing:-0.354816pt;}
.ls18{letter-spacing:-0.350208pt;}
.ls22{letter-spacing:-0.338688pt;}
.ls37{letter-spacing:-0.311296pt;}
.ls11{letter-spacing:-0.301056pt;}
.ls8{letter-spacing:-0.291584pt;}
.ls20{letter-spacing:-0.284928pt;}
.ls17{letter-spacing:-0.268800pt;}
.ls39{letter-spacing:-0.252672pt;}
.ls33{letter-spacing:-0.233472pt;}
.ls12{letter-spacing:-0.231168pt;}
.ls13{letter-spacing:-0.215040pt;}
.ls29{letter-spacing:-0.214016pt;}
.ls19{letter-spacing:-0.184832pt;}
.ls32{letter-spacing:-0.164864pt;}
.ls28{letter-spacing:-0.141312pt;}
.ls15{letter-spacing:-0.139776pt;}
.ls16{letter-spacing:-0.136192pt;}
.ls38{letter-spacing:-0.135424pt;}
.ls10{letter-spacing:-0.129024pt;}
.ls27{letter-spacing:-0.111872pt;}
.ls14{letter-spacing:-0.086016pt;}
.ls3a{letter-spacing:-0.070656pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.006400pt;}
.ls5{letter-spacing:0.012800pt;}
.ls3b{letter-spacing:0.014208pt;}
.ls42{letter-spacing:0.032000pt;}
.ls43{letter-spacing:0.051840pt;}
.ls1a{letter-spacing:0.111360pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.142080pt;}
.ls2{letter-spacing:0.142464pt;}
.ls1f{letter-spacing:0.143616pt;}
.ls24{letter-spacing:0.189440pt;}
.ls1c{letter-spacing:0.240768pt;}
.ls4{letter-spacing:0.243200pt;}
.ls0{letter-spacing:0.244992pt;}
.lsd{letter-spacing:0.283008pt;}
.lsf{letter-spacing:0.316800pt;}
.ls9{letter-spacing:0.319232pt;}
.ls23{letter-spacing:0.332160pt;}
.ls1d{letter-spacing:0.590080pt;}
.ls3e{letter-spacing:0.796160pt;}
.ls1{letter-spacing:0.854144pt;}
.ls25{letter-spacing:0.969984pt;}
.ls2e{letter-spacing:1.080320pt;}
.ls26{letter-spacing:1.584640pt;}
.ls3f{letter-spacing:2.024960pt;}
.ls4c{letter-spacing:2.168320pt;}
.ls2f{letter-spacing:2.535680pt;}
.ls3d{letter-spacing:5.563776pt;}
.ls1e{letter-spacing:5.649920pt;}
.ls40{letter-spacing:7.461120pt;}
.ls47{letter-spacing:8.377600pt;}
.ls50{letter-spacing:9.433600pt;}
.ls4f{letter-spacing:9.799424pt;}
.ls4d{letter-spacing:9.799552pt;}
.ls52{letter-spacing:9.799680pt;}
.ls51{letter-spacing:9.800960pt;}
.ls53{letter-spacing:9.802240pt;}
.ls4e{letter-spacing:10.165376pt;}
.ls56{letter-spacing:16.660480pt;}
.ls54{letter-spacing:16.661504pt;}
.ls57{letter-spacing:16.661760pt;}
.ls55{letter-spacing:16.662912pt;}
.ls58{letter-spacing:21.205632pt;}
.ls4b{letter-spacing:51.911680pt;}
.ls3c{letter-spacing:56.523392pt;}
.ls49{letter-spacing:60.766720pt;}
.ls45{letter-spacing:60.787840pt;}
.ls41{letter-spacing:61.707008pt;}
.ls48{letter-spacing:70.371072pt;}
.ls46{letter-spacing:114.798208pt;}
.ls4a{letter-spacing:114.799360pt;}
.ls44{letter-spacing:138.330880pt;}
.ls1b{letter-spacing:756.308608pt;}
.ws0{word-spacing:-23.549696pt;}
.ws10{word-spacing:-17.804800pt;}
.ws1f{word-spacing:-16.368640pt;}
.ws14{word-spacing:-16.256768pt;}
.ws18{word-spacing:-16.227328pt;}
.ws17{word-spacing:-15.726848pt;}
.ws19{word-spacing:-15.691520pt;}
.ws4{word-spacing:-14.945280pt;}
.ws21{word-spacing:-14.859264pt;}
.ws6{word-spacing:-14.816256pt;}
.ws11{word-spacing:-14.805504pt;}
.ws5{word-spacing:-14.730240pt;}
.ws8{word-spacing:-14.714112pt;}
.ws9{word-spacing:-14.676480pt;}
.wsf{word-spacing:-14.660352pt;}
.ws12{word-spacing:-14.644224pt;}
.ws23{word-spacing:-14.606592pt;}
.ws1a{word-spacing:-14.590464pt;}
.ws24{word-spacing:-14.327040pt;}
.ws22{word-spacing:-14.181888pt;}
.ws2{word-spacing:-13.521920pt;}
.ws7{word-spacing:-13.385728pt;}
.ws13{word-spacing:-13.307904pt;}
.wsa{word-spacing:-13.171712pt;}
.ws1c{word-spacing:-13.123072pt;}
.ws16{word-spacing:-13.093888pt;}
.wsb{word-spacing:-13.069568pt;}
.ws1b{word-spacing:-13.016064pt;}
.ws3{word-spacing:-12.986880pt;}
.ws1{word-spacing:-11.987712pt;}
.wse{word-spacing:-11.983488pt;}
.ws1e{word-spacing:-11.848704pt;}
.wsd{word-spacing:-11.742720pt;}
.ws20{word-spacing:-0.086400pt;}
.ws1d{word-spacing:-0.048640pt;}
.ws15{word-spacing:-0.038400pt;}
.wsc{word-spacing:0.000000pt;}
._f{margin-left:-3.617280pt;}
._b{margin-left:-2.657280pt;}
._1{margin-left:-0.890880pt;}
._0{width:0.943360pt;}
._3{width:2.419200pt;}
._5{width:3.494400pt;}
._4{width:4.546560pt;}
._8{width:5.537280pt;}
._7{width:6.720000pt;}
._11{width:7.902720pt;}
._6{width:8.977920pt;}
._a{width:9.940224pt;}
._10{width:11.026176pt;}
._12{width:12.033664pt;}
._e{width:13.163264pt;}
._9{width:16.343040pt;}
._13{width:17.354240pt;}
._c{width:18.524160pt;}
._d{width:19.445760pt;}
._1f{width:21.991040pt;}
._1e{width:23.556736pt;}
._16{width:28.224000pt;}
._17{width:29.370880pt;}
._14{width:30.481920pt;}
._15{width:31.423232pt;}
._19{width:32.471040pt;}
._18{width:36.126720pt;}
._1a{width:37.116800pt;}
._1c{width:38.999936pt;}
._1b{width:40.266240pt;}
._27{width:52.514048pt;}
._25{width:53.539840pt;}
._1d{width:61.931520pt;}
._26{width:68.060160pt;}
._2{width:76.064896pt;}
._24{width:100.321792pt;}
._21{width:110.990336pt;}
._20{width:112.035840pt;}
._23{width:246.113280pt;}
._22{width:1069.877760pt;}
.fs6{font-size:16.640000pt;}
.fs4{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs3{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs8{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.720000pt;}
.y110{bottom:2.826667pt;}
.ye{bottom:2.880000pt;}
.y121{bottom:2.933333pt;}
.y1b{bottom:2.986667pt;}
.yb3{bottom:3.040000pt;}
.yaf{bottom:3.146667pt;}
.yba{bottom:3.200000pt;}
.y39{bottom:3.253333pt;}
.y12{bottom:3.306667pt;}
.y16d{bottom:3.360000pt;}
.y9d{bottom:3.413333pt;}
.y117{bottom:3.466667pt;}
.y16f{bottom:3.626667pt;}
.y10e{bottom:3.680000pt;}
.y114{bottom:3.733333pt;}
.y11f{bottom:3.786667pt;}
.y125{bottom:3.840000pt;}
.ya0{bottom:3.893333pt;}
.y9b{bottom:4.160000pt;}
.yb6{bottom:4.266667pt;}
.y11b{bottom:4.373333pt;}
.y16b{bottom:4.426667pt;}
.y109{bottom:4.693333pt;}
.yb5{bottom:5.280000pt;}
.yb1{bottom:5.386667pt;}
.y10a{bottom:5.973333pt;}
.ya2{bottom:6.133333pt;}
.yb8{bottom:6.186667pt;}
.y98{bottom:6.506667pt;}
.yad{bottom:9.013333pt;}
.y15{bottom:14.880000pt;}
.yd{bottom:15.040000pt;}
.y1a{bottom:15.146667pt;}
.y11{bottom:15.786667pt;}
.y10f{bottom:16.586667pt;}
.y120{bottom:16.693333pt;}
.y38{bottom:17.013333pt;}
.y116{bottom:17.226667pt;}
.y126{bottom:17.440000pt;}
.y19{bottom:27.306667pt;}
.y14{bottom:27.360000pt;}
.yc{bottom:27.840000pt;}
.y10{bottom:28.266667pt;}
.y10c{bottom:30.346667pt;}
.y37{bottom:30.773333pt;}
.y128{bottom:31.253333pt;}
.y123{bottom:31.840000pt;}
.y18{bottom:39.786667pt;}
.y33{bottom:40.373333pt;}
.y36{bottom:44.533333pt;}
.y112{bottom:45.066667pt;}
.y3c{bottom:46.080000pt;}
.y32{bottom:55.413333pt;}
.y35{bottom:58.293333pt;}
.y6d{bottom:66.240000pt;}
.y31{bottom:70.773333pt;}
.y34{bottom:72.053333pt;}
.y119{bottom:72.373333pt;}
.y2{bottom:78.400000pt;}
.y3a{bottom:101.440000pt;}
.y1d1{bottom:109.760000pt;}
.yd5{bottom:112.640000pt;}
.y1be{bottom:113.280000pt;}
.y1f8{bottom:115.520000pt;}
.y30{bottom:118.666667pt;}
.y18d{bottom:118.720000pt;}
.y96{bottom:119.040000pt;}
.y100{bottom:121.280000pt;}
.y6c{bottom:124.800000pt;}
.y1d0{bottom:125.120000pt;}
.yd4{bottom:128.000000pt;}
.y1bd{bottom:128.640000pt;}
.y1f7{bottom:130.880000pt;}
.y137{bottom:132.160000pt;}
.y18c{bottom:134.080000pt;}
.y95{bottom:134.400000pt;}
.yff{bottom:136.640000pt;}
.y6b{bottom:140.160000pt;}
.y1f6{bottom:146.240000pt;}
.y136{bottom:147.520000pt;}
.yd3{bottom:149.120000pt;}
.y18b{bottom:149.440000pt;}
.y14f{bottom:149.760000pt;}
.y1cf{bottom:151.680000pt;}
.y1bc{bottom:152.000000pt;}
.y195{bottom:153.920000pt;}
.y6a{bottom:155.520000pt;}
.y94{bottom:157.760000pt;}
.yfe{bottom:160.000000pt;}
.y1f5{bottom:161.600000pt;}
.y135{bottom:162.880000pt;}
.y18a{bottom:164.800000pt;}
.y1bb{bottom:167.360000pt;}
.y69{bottom:170.880000pt;}
.yfd{bottom:175.360000pt;}
.y14e{bottom:176.320000pt;}
.y1f4{bottom:176.960000pt;}
.y189{bottom:180.160000pt;}
.y1ba{bottom:182.720000pt;}
.yd2{bottom:184.320000pt;}
.y68{bottom:186.240000pt;}
.yfc{bottom:190.720000pt;}
.y1f3{bottom:192.320000pt;}
.y93{bottom:192.960000pt;}
.y1b9{bottom:197.760000pt;}
.y67{bottom:201.600000pt;}
.y17b{bottom:203.200000pt;}
.y188{bottom:203.520000pt;}
.yfb{bottom:206.080000pt;}
.yd1{bottom:207.680000pt;}
.y92{bottom:208.320000pt;}
.y14d{bottom:212.800000pt;}
.y1b8{bottom:213.120000pt;}
.y2f{bottom:216.640000pt;}
.y66{bottom:216.960000pt;}
.y17a{bottom:218.560000pt;}
.y187{bottom:218.880000pt;}
.yd0{bottom:223.040000pt;}
.y91{bottom:223.680000pt;}
.y14c{bottom:228.160000pt;}
.yfa{bottom:229.440000pt;}
.y1ce{bottom:231.680000pt;}
.y65{bottom:232.320000pt;}
.y179{bottom:233.920000pt;}
.y1f2{bottom:238.080000pt;}
.y90{bottom:239.040000pt;}
.y1b7{bottom:240.000000pt;}
.y134{bottom:240.320000pt;}
.y2e{bottom:242.560000pt;}
.yf9{bottom:244.800000pt;}
.ycf{bottom:246.080000pt;}
.y64{bottom:247.680000pt;}
.y186{bottom:249.280000pt;}
.y14b{bottom:251.520000pt;}
.y1f1{bottom:253.440000pt;}
.y8f{bottom:254.400000pt;}
.y133{bottom:255.680000pt;}
.y178{bottom:257.280000pt;}
.yf8{bottom:260.160000pt;}
.yce{bottom:261.440000pt;}
.y185{bottom:265.600000pt;}
.y14a{bottom:266.880000pt;}
.y1f0{bottom:268.800000pt;}
.y1cd{bottom:269.120000pt;}
.y8e{bottom:269.760000pt;}
.y63{bottom:271.040000pt;}
.y1b6{bottom:276.480000pt;}
.y132{bottom:278.720000pt;}
.y184{bottom:280.960000pt;}
.y149{bottom:282.240000pt;}
.yf7{bottom:283.200000pt;}
.y1ef{bottom:284.160000pt;}
.y8d{bottom:285.120000pt;}
.y62{bottom:286.400000pt;}
.y1cc{bottom:286.720000pt;}
.ycd{bottom:288.320000pt;}
.y1b5{bottom:291.840000pt;}
.y177{bottom:292.480000pt;}
.y131{bottom:294.080000pt;}
.y183{bottom:296.320000pt;}
.y148{bottom:297.600000pt;}
.yf6{bottom:298.560000pt;}
.y1ee{bottom:299.520000pt;}
.y2d{bottom:300.480000pt;}
.y61{bottom:301.440000pt;}
.y1cb{bottom:304.640000pt;}
.y1b4{bottom:307.200000pt;}
.y176{bottom:307.840000pt;}
.y130{bottom:309.440000pt;}
.y182{bottom:312.640000pt;}
.y147{bottom:312.960000pt;}
.yf5{bottom:313.920000pt;}
.y1ed{bottom:314.880000pt;}
.y60{bottom:316.800000pt;}
.y1b3{bottom:322.240000pt;}
.y8c{bottom:323.520000pt;}
.y2c{bottom:323.840000pt;}
.ycc{bottom:324.800000pt;}
.y181{bottom:328.000000pt;}
.y146{bottom:328.320000pt;}
.yf4{bottom:329.280000pt;}
.y1ec{bottom:330.240000pt;}
.y175{bottom:331.200000pt;}
.y12f{bottom:333.120000pt;}
.ya1{bottom:334.666667pt;}
.y1b2{bottom:337.600000pt;}
.y2b{bottom:339.200000pt;}
.y5f{bottom:340.160000pt;}
.y174{bottom:342.666667pt;}
.y145{bottom:343.680000pt;}
.yf3{bottom:344.640000pt;}
.y1eb{bottom:345.600000pt;}
.ycb{bottom:348.160000pt;}
.y9f{bottom:350.666667pt;}
.y180{bottom:352.000000pt;}
.y1b1{bottom:352.960000pt;}
.y2a{bottom:354.560000pt;}
.y5e{bottom:355.520000pt;}
.y173{bottom:357.333333pt;}
.y144{bottom:359.040000pt;}
.yf2{bottom:360.000000pt;}
.y1ea{bottom:360.960000pt;}
.y9e{bottom:365.333333pt;}
.y1ca{bottom:365.440000pt;}
.y17f{bottom:367.360000pt;}
.y12e{bottom:368.320000pt;}
.y29{bottom:369.920000pt;}
.y172{bottom:370.666667pt;}
.y5d{bottom:370.880000pt;}
.yca{bottom:371.520000pt;}
.yf1{bottom:375.360000pt;}
.y1b0{bottom:376.320000pt;}
.y9c{bottom:378.666667pt;}
.y17e{bottom:382.720000pt;}
.y1c9{bottom:383.040000pt;}
.y12d{bottom:383.680000pt;}
.y28{bottom:384.960000pt;}
.y171{bottom:385.333333pt;}
.y5c{bottom:386.240000pt;}
.yf0{bottom:390.720000pt;}
.y143{bottom:391.680000pt;}
.y9a{bottom:392.000000pt;}
.yc9{bottom:394.880000pt;}
.y12c{bottom:399.040000pt;}
.y170{bottom:400.000000pt;}
.y27{bottom:400.320000pt;}
.y1c8{bottom:400.640000pt;}
.y5b{bottom:401.600000pt;}
.y99{bottom:406.666667pt;}
.y1af{bottom:407.040000pt;}
.yc8{bottom:410.240000pt;}
.y16e{bottom:413.333333pt;}
.y17d{bottom:413.760000pt;}
.yef{bottom:414.080000pt;}
.y12b{bottom:414.400000pt;}
.y26{bottom:415.680000pt;}
.y142{bottom:416.320000pt;}
.y5a{bottom:416.960000pt;}
.y1c7{bottom:418.560000pt;}
.y97{bottom:421.333333pt;}
.y1e9{bottom:422.080000pt;}
.y127{bottom:426.666667pt;}
.y16c{bottom:428.000000pt;}
.yee{bottom:429.440000pt;}
.y1ae{bottom:430.400000pt;}
.y25{bottom:431.040000pt;}
.yc7{bottom:433.280000pt;}
.y17c{bottom:435.200000pt;}
.y1e8{bottom:437.440000pt;}
.y59{bottom:440.320000pt;}
.y12a{bottom:441.333333pt;}
.y1c6{bottom:441.920000pt;}
.y8b{bottom:444.160000pt;}
.y1ad{bottom:445.760000pt;}
.y24{bottom:446.400000pt;}
.yc6{bottom:448.640000pt;}
.yed{bottom:452.800000pt;}
.y129{bottom:454.666667pt;}
.y58{bottom:455.680000pt;}
.y16a{bottom:456.000000pt;}
.y8a{bottom:459.520000pt;}
.y1ac{bottom:461.120000pt;}
.y23{bottom:461.760000pt;}
.yc5{bottom:464.000000pt;}
.y155{bottom:465.280000pt;}
.y122{bottom:468.000000pt;}
.y1e7{bottom:468.160000pt;}
.y57{bottom:471.040000pt;}
.y154{bottom:473.280000pt;}
.y169{bottom:474.240000pt;}
.y1ab{bottom:476.480000pt;}
.y22{bottom:477.120000pt;}
.yc4{bottom:479.360000pt;}
.y89{bottom:482.880000pt;}
.y1e6{bottom:483.520000pt;}
.y56{bottom:486.080000pt;}
.yec{bottom:488.000000pt;}
.y168{bottom:489.600000pt;}
.y21{bottom:492.480000pt;}
.yc3{bottom:494.720000pt;}
.y124{bottom:496.000000pt;}
.y88{bottom:498.240000pt;}
.y1e5{bottom:498.880000pt;}
.y1aa{bottom:499.840000pt;}
.y55{bottom:501.440000pt;}
.yeb{bottom:503.360000pt;}
.y167{bottom:504.960000pt;}
.y20{bottom:507.840000pt;}
.yc2{bottom:510.080000pt;}
.y118{bottom:510.666667pt;}
.y87{bottom:513.600000pt;}
.y1e4{bottom:514.240000pt;}
.y1a9{bottom:515.200000pt;}
.y1c5{bottom:516.160000pt;}
.yea{bottom:518.720000pt;}
.y1f{bottom:523.200000pt;}
.yc1{bottom:525.440000pt;}
.y153{bottom:525.760000pt;}
.y54{bottom:528.000000pt;}
.y166{bottom:528.320000pt;}
.y86{bottom:528.960000pt;}
.y1e3{bottom:529.600000pt;}
.y1a8{bottom:530.240000pt;}
.y157{bottom:534.720000pt;}
.y11e{bottom:537.333333pt;}
.y1e{bottom:538.560000pt;}
.y152{bottom:540.160000pt;}
.yc0{bottom:540.800000pt;}
.ye9{bottom:542.080000pt;}
.y165{bottom:543.680000pt;}
.y85{bottom:544.000000pt;}
.y1e2{bottom:544.960000pt;}
.y11d{bottom:552.000000pt;}
.y1a7{bottom:553.600000pt;}
.y1c4{bottom:553.920000pt;}
.y151{bottom:554.880000pt;}
.y156{bottom:555.200000pt;}
.ybf{bottom:556.160000pt;}
.ye8{bottom:557.440000pt;}
.y84{bottom:559.360000pt;}
.y1e1{bottom:560.320000pt;}
.y1d{bottom:562.240000pt;}
.y53{bottom:564.800000pt;}
.y11c{bottom:565.333333pt;}
.y164{bottom:566.720000pt;}
.y1a6{bottom:568.960000pt;}
.y1c3{bottom:571.200000pt;}
.ybe{bottom:571.520000pt;}
.ye7{bottom:572.800000pt;}
.y83{bottom:574.720000pt;}
.y1e0{bottom:575.680000pt;}
.y11a{bottom:578.666667pt;}
.y163{bottom:582.080000pt;}
.y1a5{bottom:584.320000pt;}
.y1c{bottom:585.920000pt;}
.ybd{bottom:586.880000pt;}
.ye6{bottom:588.160000pt;}
.y17{bottom:589.333333pt;}
.y82{bottom:590.080000pt;}
.y52{bottom:590.720000pt;}
.y111{bottom:593.333333pt;}
.y1a4{bottom:599.680000pt;}
.ye5{bottom:603.520000pt;}
.y81{bottom:605.440000pt;}
.y1df{bottom:606.080000pt;}
.y1c2{bottom:608.320000pt;}
.ybc{bottom:610.240000pt;}
.y51{bottom:614.080000pt;}
.y158{bottom:617.280000pt;}
.y150{bottom:618.240000pt;}
.ye4{bottom:618.880000pt;}
.y162{bottom:620.800000pt;}
.y115{bottom:621.333333pt;}
.y1de{bottom:621.440000pt;}
.y1a3{bottom:623.040000pt;}
.y80{bottom:628.800000pt;}
.y50{bottom:629.440000pt;}
.y113{bottom:634.666667pt;}
.y161{bottom:636.160000pt;}
.y1dd{bottom:636.800000pt;}
.y1a2{bottom:638.400000pt;}
.ye3{bottom:641.920000pt;}
.y1c1{bottom:643.520000pt;}
.y13{bottom:644.000000pt;}
.y7f{bottom:644.160000pt;}
.ybb{bottom:645.120000pt;}
.y10b{bottom:649.333333pt;}
.y160{bottom:651.520000pt;}
.y1dc{bottom:652.160000pt;}
.y4f{bottom:653.120000pt;}
.y1a1{bottom:654.720000pt;}
.yb9{bottom:656.000000pt;}
.ye2{bottom:657.280000pt;}
.y1c0{bottom:658.880000pt;}
.y7e{bottom:659.520000pt;}
.y194{bottom:666.240000pt;}
.y15f{bottom:666.880000pt;}
.y1db{bottom:667.520000pt;}
.yb7{bottom:669.333333pt;}
.y1a0{bottom:670.080000pt;}
.ye1{bottom:672.640000pt;}
.y141{bottom:674.240000pt;}
.y7d{bottom:674.880000pt;}
.y10d{bottom:676.000000pt;}
.y193{bottom:681.600000pt;}
.y15e{bottom:682.240000pt;}
.y1da{bottom:682.880000pt;}
.yf{bottom:685.333333pt;}
.y19f{bottom:686.080000pt;}
.y4e{bottom:687.040000pt;}
.ye0{bottom:688.000000pt;}
.y140{bottom:689.600000pt;}
.y7c{bottom:690.240000pt;}
.y108{bottom:690.666667pt;}
.y192{bottom:696.960000pt;}
.y1d9{bottom:698.240000pt;}
.yb4{bottom:700.000000pt;}
.y19e{bottom:701.440000pt;}
.y4d{bottom:702.400000pt;}
.ydf{bottom:703.360000pt;}
.y13f{bottom:704.960000pt;}
.y7b{bottom:705.600000pt;}
.y107{bottom:711.680000pt;}
.y191{bottom:712.320000pt;}
.y1d8{bottom:713.600000pt;}
.yb2{bottom:716.000000pt;}
.y4c{bottom:717.760000pt;}
.yde{bottom:718.720000pt;}
.y13e{bottom:720.320000pt;}
.y7a{bottom:720.640000pt;}
.y15d{bottom:720.960000pt;}
.y19d{bottom:725.760000pt;}
.y106{bottom:727.040000pt;}
.y190{bottom:727.680000pt;}
.yb{bottom:728.000000pt;}
.y1d7{bottom:728.960000pt;}
.yb0{bottom:729.333333pt;}
.y4b{bottom:733.120000pt;}
.ydd{bottom:734.080000pt;}
.y13d{bottom:735.680000pt;}
.y79{bottom:736.000000pt;}
.y15c{bottom:736.320000pt;}
.y19c{bottom:741.120000pt;}
.y18f{bottom:742.720000pt;}
.y1bf{bottom:743.360000pt;}
.y1d6{bottom:744.320000pt;}
.yae{bottom:745.333333pt;}
.y4a{bottom:748.480000pt;}
.y105{bottom:750.080000pt;}
.y78{bottom:751.360000pt;}
.y15b{bottom:751.680000pt;}
.ydc{bottom:757.440000pt;}
.yac{bottom:758.666667pt;}
.y13c{bottom:758.720000pt;}
.y1d5{bottom:759.680000pt;}
.y18e{bottom:763.520000pt;}
.y49{bottom:763.840000pt;}
.y19b{bottom:764.480000pt;}
.y104{bottom:765.440000pt;}
.y77{bottom:766.720000pt;}
.y13b{bottom:774.080000pt;}
.y1d4{bottom:774.720000pt;}
.y48{bottom:779.200000pt;}
.y19a{bottom:779.840000pt;}
.y103{bottom:780.800000pt;}
.ya{bottom:781.440000pt;}
.y76{bottom:782.080000pt;}
.y13a{bottom:789.440000pt;}
.y1d3{bottom:790.080000pt;}
.ydb{bottom:792.640000pt;}
.y47{bottom:794.560000pt;}
.y199{bottom:795.840000pt;}
.yab{bottom:797.440000pt;}
.y102{bottom:801.920000pt;}
.y139{bottom:804.800000pt;}
.y1d2{bottom:805.440000pt;}
.y9{bottom:805.760000pt;}
.yda{bottom:808.000000pt;}
.y75{bottom:808.320000pt;}
.y46{bottom:809.920000pt;}
.y198{bottom:811.200000pt;}
.y15a{bottom:812.800000pt;}
.y138{bottom:820.160000pt;}
.yaa{bottom:820.800000pt;}
.yd9{bottom:823.360000pt;}
.y45{bottom:824.960000pt;}
.y8{bottom:827.520000pt;}
.y159{bottom:828.160000pt;}
.y197{bottom:835.520000pt;}
.ya9{bottom:836.160000pt;}
.y101{bottom:837.760000pt;}
.yd8{bottom:838.720000pt;}
.y44{bottom:840.320000pt;}
.y74{bottom:843.520000pt;}
.y196{bottom:850.880000pt;}
.ya8{bottom:851.520000pt;}
.yd7{bottom:854.080000pt;}
.y43{bottom:855.680000pt;}
.y7{bottom:856.960000pt;}
.y73{bottom:858.880000pt;}
.ya7{bottom:866.880000pt;}
.y42{bottom:871.040000pt;}
.y72{bottom:874.240000pt;}
.yd6{bottom:877.760000pt;}
.ya6{bottom:882.240000pt;}
.y41{bottom:886.400000pt;}
.y6{bottom:887.040000pt;}
.y71{bottom:889.600000pt;}
.ya5{bottom:897.600000pt;}
.y40{bottom:901.760000pt;}
.y70{bottom:904.960000pt;}
.y5{bottom:911.360000pt;}
.ya4{bottom:912.960000pt;}
.y3f{bottom:917.120000pt;}
.y6f{bottom:920.320000pt;}
.ya3{bottom:928.320000pt;}
.y3e{bottom:932.480000pt;}
.y4{bottom:943.360000pt;}
.y3d{bottom:956.160000pt;}
.y6e{bottom:958.720000pt;}
.y3{bottom:971.840000pt;}
.y1{bottom:1026.560000pt;}
.y3b{bottom:1041.600000pt;}
.hd{height:11.090625pt;}
.h17{height:14.666667pt;}
.h18{height:16.000000pt;}
.h19{height:17.333333pt;}
.h15{height:18.666667pt;}
.h1a{height:21.333333pt;}
.hf{height:23.000000pt;}
.h1c{height:28.000000pt;}
.h1e{height:29.333333pt;}
.h13{height:30.751875pt;}
.h9{height:30.793125pt;}
.h21{height:35.197500pt;}
.ha{height:35.411250pt;}
.h12{height:35.458750pt;}
.h8{height:38.265000pt;}
.h11{height:38.640000pt;}
.hb{height:38.666667pt;}
.h3{height:39.138750pt;}
.h2{height:39.191250pt;}
.h16{height:39.640000pt;}
.h7{height:40.000000pt;}
.h1b{height:42.666667pt;}
.h20{height:42.837500pt;}
.h14{height:42.866250pt;}
.h22{height:43.381875pt;}
.h1f{height:44.000000pt;}
.he{height:46.593750pt;}
.h4{height:49.481250pt;}
.hc{height:52.000000pt;}
.h6{height:54.230000pt;}
.h1d{height:57.333333pt;}
.h5{height:62.435625pt;}
.h10{height:84.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:73.333333pt;}
.wd{width:77.333333pt;}
.wb{width:96.000000pt;}
.w6{width:160.000000pt;}
.w7{width:208.000000pt;}
.w11{width:209.333333pt;}
.we{width:228.000000pt;}
.w10{width:232.000000pt;}
.wc{width:246.666667pt;}
.w8{width:278.666667pt;}
.w9{width:308.000000pt;}
.w4{width:312.000000pt;}
.wa{width:328.000000pt;}
.w3{width:333.333333pt;}
.w12{width:341.333333pt;}
.w2{width:446.666667pt;}
.w5{width:644.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x29{left:0.973333pt;}
.xa{left:2.026699pt;}
.x15{left:5.546549pt;}
.x27{left:6.986635pt;}
.xc{left:8.213205pt;}
.x2b{left:9.506453pt;}
.x2d{left:13.933333pt;}
.x19{left:24.133163pt;}
.x26{left:34.573547pt;}
.x18{left:38.080000pt;}
.x3{left:75.519872pt;}
.x5{left:83.213536pt;}
.x7{left:87.656256pt;}
.x14{left:94.453120pt;}
.x1{left:99.519872pt;}
.x34{left:103.853184pt;}
.x31{left:118.400000pt;}
.x1a{left:121.871104pt;}
.x13{left:136.869973pt;}
.x30{left:141.546880pt;}
.x32{left:142.453120pt;}
.x12{left:168.879893pt;}
.x9{left:173.333333pt;}
.x1d{left:175.878400pt;}
.x11{left:180.879893pt;}
.x10{left:182.860373pt;}
.xf{left:184.881813pt;}
.x1c{left:193.738400pt;}
.x20{left:202.248667pt;}
.x1f{left:204.728667pt;}
.x1b{left:212.845333pt;}
.x1e{left:216.851733pt;}
.x16{left:233.333333pt;}
.xb{left:267.519872pt;}
.x8{left:299.784512pt;}
.xe{left:304.266773pt;}
.x6{left:352.911360pt;}
.x2e{left:377.333333pt;}
.x25{left:381.333333pt;}
.x4{left:396.786560pt;}
.xd{left:406.666667pt;}
.x28{left:414.666667pt;}
.x23{left:427.978533pt;}
.x21{left:428.976400pt;}
.x17{left:440.000000pt;}
.x22{left:446.805200pt;}
.x24{left:476.998267pt;}
.x2c{left:486.666667pt;}
.x2a{left:490.666667pt;}
.x33{left:616.786560pt;}
.x2{left:718.053440pt;}
.x2f{left:738.293120pt;}
}




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