
    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_057da399f035fc91989fdf9d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.056641;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_0d784cb3ef0a3851bd5501f3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_edfe90f348c118d126fcf89e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_6cf36755159bbef18dfb86df.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_ed34a200e151aa28923682c6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.372070;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_c5beb456d23984055fedb881.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.793457;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_02fbe293a5455c35352d06eb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.943848;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_0a5443e8d44923bda397a347.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951172;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_dff24813fcdeb19816a0d465.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_07e8fb943cd6cc301707d79a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962402;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_aa0d72be7cf5541c2b577977.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973145;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_d4753b074a39e663c527d8c5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973633;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_23ec1cd63aa8dcba2197e9e2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.761230;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_51126a92b3b24fc14b4a76a5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.760254;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_cb0b06f87ee1649e507876f7.woff2')format("woff");}.fff{font-family:fff;line-height:0.972656;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_3c1310dafaee18a23c09b6ab.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.976074;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_74bffd7152b12824b138166c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.973633;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_3336ad5d7537e52eb3929f63.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_741a32f54454fc86395798bf.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.952148;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_550f31fb442da543ba8dc6d3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.758789;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_8c43d151231eabb01cfe9152.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.922363;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_a6b8d38231977257a9b25b6f.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.401855;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_e84ebd98c86efddcc6ffd312.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.881836;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_feaecbe35dd1dc04fdd4823b.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.770996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v1{vertical-align:18.000000px;}
.ls1e{letter-spacing:-1.530000px;}
.ls24{letter-spacing:-1.422000px;}
.ls39{letter-spacing:-1.350000px;}
.ls37{letter-spacing:-1.206000px;}
.ls38{letter-spacing:-1.116000px;}
.ls13{letter-spacing:-0.810000px;}
.ls7{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.324000px;}
.ls25{letter-spacing:-0.306000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls28{letter-spacing:-0.270000px;}
.ls1b{letter-spacing:-0.180000px;}
.ls16{letter-spacing:-0.144000px;}
.ls29{letter-spacing:-0.108000px;}
.ls11{letter-spacing:-0.097800px;}
.ls17{letter-spacing:-0.090000px;}
.ls33{letter-spacing:-0.036000px;}
.ls6{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.018000px;}
.ls5{letter-spacing:0.031680px;}
.lsb{letter-spacing:0.036000px;}
.ls1d{letter-spacing:0.054000px;}
.ls35{letter-spacing:0.090000px;}
.ls32{letter-spacing:0.126000px;}
.lsc{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.216000px;}
.ls36{letter-spacing:0.234000px;}
.ls14{letter-spacing:0.252000px;}
.ls10{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.324000px;}
.ls34{letter-spacing:0.342000px;}
.ls8{letter-spacing:0.385800px;}
.ls1f{letter-spacing:0.396000px;}
.ls3{letter-spacing:0.468000px;}
.ls9{letter-spacing:0.532800px;}
.ls12{letter-spacing:0.540000px;}
.ls22{letter-spacing:0.576000px;}
.ls20{letter-spacing:0.612000px;}
.ls2d{letter-spacing:0.630000px;}
.ls26{letter-spacing:0.648000px;}
.ls2{letter-spacing:0.670320px;}
.ls1{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.936000px;}
.ls15{letter-spacing:0.972000px;}
.ls2f{letter-spacing:1.188000px;}
.ls2e{letter-spacing:1.350000px;}
.ls2c{letter-spacing:1.368000px;}
.ls30{letter-spacing:1.692000px;}
.ls4{letter-spacing:2.106000px;}
.lsa{letter-spacing:5.706000px;}
.lse{letter-spacing:7.146000px;}
.lsf{letter-spacing:7.866000px;}
.ls1a{letter-spacing:9.324000px;}
.ls31{letter-spacing:14.364000px;}
.ls18{letter-spacing:17.964000px;}
.ls2b{letter-spacing:18.684000px;}
.lsd{letter-spacing:39.546000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(0,128,0),0 0.015em rgb(0,128,0),0.015em 0 rgb(0,128,0),0 -0.015em  rgb(0,128,0);}
.sc3{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,128,128),0 0.015em rgb(0,128,128),0.015em 0 rgb(0,128,128),0 -0.015em  rgb(0,128,128);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(0,128,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,128,128);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-20.437920px;}
.ws2{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.966720px;}
.ws3{word-spacing:-15.840000px;}
.ws8{word-spacing:-14.958600px;}
.ws1f{word-spacing:-14.706000px;}
.wsd{word-spacing:-13.986000px;}
.ws22{word-spacing:-13.950000px;}
.ws21{word-spacing:-13.896000px;}
.ws5{word-spacing:-13.716000px;}
.wsc{word-spacing:-13.266000px;}
.ws11{word-spacing:-13.158000px;}
.ws0{word-spacing:-13.147200px;}
.ws20{word-spacing:-13.140000px;}
.ws10{word-spacing:-13.068000px;}
.wsa{word-spacing:-13.049400px;}
.ws1e{word-spacing:-13.032000px;}
.wse{word-spacing:-13.014000px;}
.ws12{word-spacing:-12.834000px;}
.ws19{word-spacing:-12.744000px;}
.wsf{word-spacing:-12.726000px;}
.ws15{word-spacing:-12.708000px;}
.ws1c{word-spacing:-12.690000px;}
.ws24{word-spacing:-12.600000px;}
.ws23{word-spacing:-12.510000px;}
.ws25{word-spacing:-12.366000px;}
.ws14{word-spacing:-11.592000px;}
.ws13{word-spacing:-11.484000px;}
.ws7{word-spacing:-9.720000px;}
.ws1{word-spacing:-9.576000px;}
.ws16{word-spacing:-9.324000px;}
.ws1b{word-spacing:-8.892000px;}
.ws6{word-spacing:-8.676000px;}
.ws1a{word-spacing:-8.568000px;}
.ws1d{word-spacing:-8.532000px;}
.ws17{word-spacing:-8.496000px;}
.ws18{word-spacing:-8.352000px;}
.ws9{word-spacing:0.000000px;}
._2{margin-left:-2.182800px;}
._1{margin-left:-1.167120px;}
._0{width:1.169040px;}
._4{width:2.657520px;}
._8{width:4.122960px;}
._a{width:5.996880px;}
._5{width:7.022880px;}
._6{width:8.046000px;}
._9{width:9.452880px;}
._11{width:10.470240px;}
._7{width:11.994000px;}
._19{width:14.040000px;}
._12{width:15.282000px;}
._1c{width:16.308000px;}
._c{width:17.334000px;}
._d{width:18.468000px;}
._1b{width:19.505280px;}
._18{width:20.668800px;}
._b{width:22.302000px;}
._3{width:23.976480px;}
._1e{width:25.199520px;}
._e{width:26.568000px;}
._f{width:27.810000px;}
._22{width:29.160000px;}
._1f{width:30.240000px;}
._10{width:31.320000px;}
._1d{width:32.400000px;}
._15{width:33.968880px;}
._1a{width:35.047680px;}
._29{width:36.084240px;}
._28{width:37.157760px;}
._13{width:39.366000px;}
._17{width:40.915920px;}
._14{width:42.284880px;}
._16{width:43.799760px;}
._20{width:44.982000px;}
._21{width:46.008000px;}
._2b{width:47.682000px;}
._2a{width:49.032000px;}
._23{width:50.922000px;}
._24{width:52.002000px;}
._27{width:53.373840px;}
._2c{width:56.848320px;}
._26{width:58.495680px;}
._25{width:59.605680px;}
._2d{width:74.358000px;}
._2e{width:75.438000px;}
.fc8{color:transparent;}
.fc7{color:rgb(79,129,189);}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(31,73,125);}
.fc2{color:rgb(0,128,0);}
.fca{color:rgb(127,127,127);}
.fc9{color:rgb(38,38,38);}
.fc4{color:rgb(0,176,80);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,128,128);}
.fsd{font-size:2.880000px;}
.fs4{font-size:12.240000px;}
.fs7{font-size:18.000000px;}
.fs9{font-size:23.760000px;}
.fs6{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs10{font-size:41.760000px;}
.fs11{font-size:45.360000px;}
.fsb{font-size:48.240000px;}
.fsc{font-size:51.120000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fse{font-size:74.880000px;}
.fsf{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:88.795869px;}
.y51{bottom:-12.990000px;}
.y41{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y15{bottom:1.080000px;}
.y19{bottom:1.440000px;}
.y35{bottom:1.605000px;}
.y11{bottom:1.800000px;}
.y25{bottom:2.160000px;}
.y58{bottom:2.340000px;}
.y9d{bottom:3.045000px;}
.y1b{bottom:3.060000px;}
.yc3{bottom:3.090000px;}
.y3d{bottom:3.225000px;}
.y20{bottom:3.240000px;}
.y22{bottom:3.420000px;}
.y3a{bottom:3.585000px;}
.y1d{bottom:4.140000px;}
.y1f{bottom:4.500000px;}
.y39{bottom:4.845000px;}
.y37{bottom:7.905000px;}
.y50{bottom:8.070000px;}
.y33{bottom:10.965000px;}
.y55{bottom:11.700000px;}
.y3{bottom:12.600000px;}
.y56{bottom:13.680000px;}
.y13{bottom:13.860000px;}
.ya{bottom:14.400000px;}
.y2{bottom:14.580000px;}
.y17{bottom:15.660000px;}
.y57{bottom:16.560000px;}
.yf{bottom:17.640000px;}
.y4f{bottom:32.550000px;}
.y32{bottom:33.870000px;}
.yae{bottom:36.900000px;}
.y9{bottom:45.540000px;}
.y59{bottom:47.520000px;}
.ye{bottom:53.325000px;}
.y4e{bottom:55.950000px;}
.y31{bottom:56.910000px;}
.y4{bottom:58.320000px;}
.y54{bottom:63.720000px;}
.y1{bottom:74.520000px;}
.y8{bottom:76.680000px;}
.y4d{bottom:78.990000px;}
.y30{bottom:79.950000px;}
.yd{bottom:88.965000px;}
.y4c{bottom:102.570000px;}
.y2f{bottom:102.990000px;}
.y6{bottom:107.640000px;}
.y7{bottom:107.820000px;}
.y168{bottom:116.100000px;}
.y10e{bottom:116.640000px;}
.y13c{bottom:119.340000px;}
.y1c4{bottom:124.200000px;}
.y4a{bottom:125.460000px;}
.y2e{bottom:126.030000px;}
.ye8{bottom:129.600000px;}
.y85{bottom:130.320000px;}
.yab{bottom:130.680000px;}
.yac{bottom:131.220000px;}
.yd2{bottom:132.120000px;}
.y167{bottom:139.320000px;}
.y10d{bottom:139.680000px;}
.y13b{bottom:141.660000px;}
.y194{bottom:146.700000px;}
.y1c3{bottom:147.420000px;}
.y49{bottom:148.500000px;}
.y2d{bottom:149.070000px;}
.ye7{bottom:152.640000px;}
.y84{bottom:153.180000px;}
.yaa{bottom:154.260000px;}
.yd1{bottom:155.160000px;}
.y10c{bottom:162.540000px;}
.y166{bottom:162.720000px;}
.y13a{bottom:163.800000px;}
.y1c2{bottom:169.020000px;}
.y193{bottom:169.380000px;}
.y48{bottom:171.540000px;}
.y2c{bottom:171.930000px;}
.ye6{bottom:175.680000px;}
.y83{bottom:176.220000px;}
.ya9{bottom:177.300000px;}
.yd0{bottom:178.200000px;}
.y10b{bottom:185.580000px;}
.y165{bottom:185.940000px;}
.y139{bottom:186.120000px;}
.y1c1{bottom:190.440000px;}
.y192{bottom:192.060000px;}
.y47{bottom:194.580000px;}
.y2b{bottom:194.970000px;}
.ye5{bottom:198.720000px;}
.y82{bottom:199.260000px;}
.ya8{bottom:200.160000px;}
.ycf{bottom:201.060000px;}
.y138{bottom:208.290000px;}
.y10a{bottom:208.650000px;}
.y164{bottom:209.370000px;}
.y1c0{bottom:211.890000px;}
.y191{bottom:214.770000px;}
.y46{bottom:217.650000px;}
.y2a{bottom:218.010000px;}
.ye4{bottom:221.790000px;}
.y81{bottom:222.330000px;}
.ya7{bottom:223.230000px;}
.yce{bottom:224.130000px;}
.y137{bottom:230.610000px;}
.y109{bottom:231.690000px;}
.y163{bottom:232.770000px;}
.y1bf{bottom:233.310000px;}
.y190{bottom:237.450000px;}
.ya6{bottom:237.645000px;}
.y45{bottom:240.510000px;}
.y29{bottom:241.050000px;}
.ye3{bottom:244.830000px;}
.y80{bottom:245.370000px;}
.ycd{bottom:247.170000px;}
.y136{bottom:252.750000px;}
.ya5{bottom:252.945000px;}
.y108{bottom:254.730000px;}
.y1be{bottom:254.910000px;}
.y162{bottom:255.990000px;}
.y18f{bottom:258.870000px;}
.y44{bottom:263.550000px;}
.y28{bottom:264.120000px;}
.ye2{bottom:267.690000px;}
.ya4{bottom:268.245000px;}
.y7f{bottom:268.410000px;}
.ycc{bottom:270.210000px;}
.y135{bottom:275.070000px;}
.y1bd{bottom:276.330000px;}
.y107{bottom:277.770000px;}
.y161{bottom:279.390000px;}
.y18e{bottom:280.290000px;}
.ya3{bottom:283.545000px;}
.y43{bottom:286.590000px;}
.y27{bottom:287.160000px;}
.ye1{bottom:290.730000px;}
.y7e{bottom:291.270000px;}
.ycb{bottom:293.250000px;}
.y1bc{bottom:295.950000px;}
.y134{bottom:297.390000px;}
.ya2{bottom:299.025000px;}
.y106{bottom:300.630000px;}
.y160{bottom:302.610000px;}
.y18d{bottom:302.970000px;}
.y42{bottom:309.630000px;}
.ye0{bottom:313.770000px;}
.y7d{bottom:314.310000px;}
.ya1{bottom:314.325000px;}
.y1bb{bottom:314.490000px;}
.yca{bottom:316.110000px;}
.y133{bottom:319.530000px;}
.y40{bottom:321.705000px;}
.y105{bottom:323.670000px;}
.y18c{bottom:325.650000px;}
.y15f{bottom:326.010000px;}
.ya0{bottom:329.625000px;}
.yc9{bottom:330.525000px;}
.y3f{bottom:335.205000px;}
.y1ba{bottom:335.910000px;}
.ydf{bottom:336.810000px;}
.y7c{bottom:337.350000px;}
.y132{bottom:341.850000px;}
.y9f{bottom:344.925000px;}
.yc8{bottom:345.825000px;}
.y104{bottom:346.710000px;}
.y18b{bottom:348.330000px;}
.y3e{bottom:348.705000px;}
.y15e{bottom:349.410000px;}
.y1b9{bottom:357.510000px;}
.yde{bottom:359.850000px;}
.y7b{bottom:360.390000px;}
.y9e{bottom:361.125000px;}
.y3c{bottom:362.205000px;}
.y131{bottom:363.990000px;}
.y103{bottom:369.750000px;}
.y18a{bottom:371.010000px;}
.y15d{bottom:372.630000px;}
.y3b{bottom:375.705000px;}
.yc7{bottom:376.605000px;}
.y9c{bottom:377.145000px;}
.y1b8{bottom:378.930000px;}
.ydd{bottom:382.890000px;}
.y7a{bottom:383.430000px;}
.y130{bottom:386.310000px;}
.y38{bottom:390.105000px;}
.yc6{bottom:391.905000px;}
.y102{bottom:392.790000px;}
.y189{bottom:393.690000px;}
.y15c{bottom:396.030000px;}
.y1b7{bottom:398.550000px;}
.y36{bottom:405.225000px;}
.y9b{bottom:405.750000px;}
.y79{bottom:406.470000px;}
.yc5{bottom:407.205000px;}
.y12f{bottom:408.450000px;}
.y101{bottom:415.830000px;}
.y188{bottom:416.370000px;}
.y1b6{bottom:417.090000px;}
.y15b{bottom:419.250000px;}
.yc4{bottom:422.505000px;}
.y34{bottom:422.685000px;}
.y9a{bottom:428.610000px;}
.ydc{bottom:428.790000px;}
.y78{bottom:429.330000px;}
.y26{bottom:429.345000px;}
.y12e{bottom:430.770000px;}
.yc2{bottom:437.985000px;}
.y1b5{bottom:438.510000px;}
.y100{bottom:438.690000px;}
.y187{bottom:439.050000px;}
.y15a{bottom:442.695000px;}
.ydb{bottom:443.235000px;}
.y77{bottom:452.415000px;}
.y12d{bottom:452.955000px;}
.yc1{bottom:453.315000px;}
.y99{bottom:455.475000px;}
.yda{bottom:458.535000px;}
.y1b4{bottom:460.155000px;}
.yff{bottom:461.775000px;}
.y186{bottom:461.955000px;}
.y159{bottom:466.095000px;}
.yc0{bottom:468.615000px;}
.yd9{bottom:473.835000px;}
.y98{bottom:474.735000px;}
.y12c{bottom:475.275000px;}
.y76{bottom:475.455000px;}
.y1b3{bottom:481.575000px;}
.ybf{bottom:483.915000px;}
.y185{bottom:484.635000px;}
.yfe{bottom:484.815000px;}
.yd8{bottom:489.135000px;}
.y158{bottom:489.315000px;}
.y12b{bottom:497.595000px;}
.y97{bottom:497.775000px;}
.y75{bottom:498.495000px;}
.ybe{bottom:499.215000px;}
.y1b2{bottom:502.995000px;}
.yd7{bottom:504.615000px;}
.y184{bottom:507.315000px;}
.yfd{bottom:507.855000px;}
.y157{bottom:512.715000px;}
.ybd{bottom:515.415000px;}
.y12a{bottom:519.735000px;}
.yd6{bottom:519.915000px;}
.y96{bottom:520.815000px;}
.y74{bottom:521.535000px;}
.y1b1{bottom:524.595000px;}
.y183{bottom:529.995000px;}
.yfc{bottom:530.895000px;}
.yd5{bottom:535.215000px;}
.y156{bottom:535.935000px;}
.y129{bottom:542.055000px;}
.y95{bottom:543.675000px;}
.ybc{bottom:543.855000px;}
.y1b0{bottom:544.215000px;}
.y73{bottom:544.575000px;}
.yd3{bottom:551.235000px;}
.y182{bottom:552.675000px;}
.yfb{bottom:553.935000px;}
.y155{bottom:559.335000px;}
.y1af{bottom:562.755000px;}
.y128{bottom:564.195000px;}
.y94{bottom:566.715000px;}
.ybb{bottom:566.895000px;}
.y72{bottom:567.435000px;}
.y181{bottom:575.355000px;}
.yfa{bottom:576.795000px;}
.y154{bottom:582.735000px;}
.y1ae{bottom:584.175000px;}
.yd4{bottom:584.895000px;}
.y127{bottom:586.515000px;}
.y93{bottom:589.755000px;}
.yba{bottom:589.935000px;}
.y71{bottom:590.475000px;}
.y180{bottom:598.035000px;}
.yf9{bottom:599.835000px;}
.y1ad{bottom:605.595000px;}
.y153{bottom:605.955000px;}
.y126{bottom:608.655000px;}
.y92{bottom:612.795000px;}
.yb9{bottom:612.975000px;}
.y70{bottom:613.515000px;}
.y17f{bottom:620.715000px;}
.yf8{bottom:622.875000px;}
.y1ac{bottom:627.195000px;}
.y152{bottom:629.355000px;}
.y125{bottom:630.975000px;}
.y91{bottom:635.835000px;}
.yb8{bottom:636.015000px;}
.y6f{bottom:636.555000px;}
.y17e{bottom:643.395000px;}
.yf7{bottom:645.915000px;}
.y1ab{bottom:648.615000px;}
.y151{bottom:652.575000px;}
.y124{bottom:653.295000px;}
.y90{bottom:658.875000px;}
.y6e{bottom:659.595000px;}
.y17d{bottom:666.075000px;}
.yf6{bottom:668.955000px;}
.y1aa{bottom:670.035000px;}
.y123{bottom:675.435000px;}
.y150{bottom:676.005000px;}
.y8f{bottom:681.765000px;}
.yb7{bottom:681.945000px;}
.y6d{bottom:682.485000px;}
.y17c{bottom:688.785000px;}
.y1a9{bottom:691.665000px;}
.yf5{bottom:691.845000px;}
.yb6{bottom:696.345000px;}
.y122{bottom:697.785000px;}
.y14f{bottom:699.405000px;}
.y8e{bottom:704.805000px;}
.y6c{bottom:705.525000px;}
.y17b{bottom:711.465000px;}
.yb5{bottom:711.645000px;}
.y1a8{bottom:713.085000px;}
.yf4{bottom:714.885000px;}
.y121{bottom:719.925000px;}
.y14e{bottom:722.625000px;}
.yb4{bottom:726.945000px;}
.y8d{bottom:727.845000px;}
.y24{bottom:728.565000px;}
.yf3{bottom:729.285000px;}
.y17a{bottom:734.145000px;}
.y1a7{bottom:734.505000px;}
.y23{bottom:738.645000px;}
.yb3{bottom:742.245000px;}
.yf2{bottom:744.585000px;}
.y14d{bottom:746.025000px;}
.y8c{bottom:750.885000px;}
.y6b{bottom:751.605000px;}
.y21{bottom:754.125000px;}
.y1a6{bottom:756.105000px;}
.y179{bottom:756.825000px;}
.yb2{bottom:757.725000px;}
.yf1{bottom:759.885000px;}
.y120{bottom:764.385000px;}
.y14c{bottom:769.245000px;}
.y1e{bottom:771.045000px;}
.yb1{bottom:773.025000px;}
.y8b{bottom:773.925000px;}
.y6a{bottom:774.645000px;}
.yf0{bottom:775.185000px;}
.y1a5{bottom:777.525000px;}
.y178{bottom:779.505000px;}
.y11f{bottom:786.705000px;}
.yb0{bottom:788.325000px;}
.y1c{bottom:789.405000px;}
.yef{bottom:790.665000px;}
.y14b{bottom:792.645000px;}
.y8a{bottom:796.965000px;}
.y69{bottom:797.685000px;}
.y1a4{bottom:798.945000px;}
.y177{bottom:802.185000px;}
.yad{bottom:804.345000px;}
.y1a{bottom:804.705000px;}
.yee{bottom:805.965000px;}
.y11e{bottom:809.025000px;}
.y14a{bottom:816.045000px;}
.y89{bottom:819.825000px;}
.y18{bottom:820.005000px;}
.y1a3{bottom:820.365000px;}
.y68{bottom:820.545000px;}
.yed{bottom:821.265000px;}
.y176{bottom:824.865000px;}
.y16{bottom:825.045000px;}
.y11d{bottom:831.165000px;}
.yec{bottom:837.285000px;}
.yaf{bottom:838.185000px;}
.y149{bottom:839.265000px;}
.y1a2{bottom:841.965000px;}
.y88{bottom:842.865000px;}
.y67{bottom:843.585000px;}
.y175{bottom:847.545000px;}
.y11c{bottom:853.485000px;}
.y14{bottom:854.745000px;}
.y12{bottom:860.325000px;}
.y148{bottom:862.665000px;}
.y1a1{bottom:863.385000px;}
.y87{bottom:865.905000px;}
.y66{bottom:866.625000px;}
.y174{bottom:870.225000px;}
.y11b{bottom:875.625000px;}
.y1a0{bottom:884.805000px;}
.y147{bottom:885.885000px;}
.y10{bottom:888.225000px;}
.yeb{bottom:888.945000px;}
.y86{bottom:889.125000px;}
.y65{bottom:889.665000px;}
.yc{bottom:892.185000px;}
.y173{bottom:892.905000px;}
.y11a{bottom:897.945000px;}
.y19f{bottom:906.405000px;}
.y146{bottom:909.285000px;}
.yea{bottom:912.030000px;}
.y64{bottom:912.750000px;}
.y172{bottom:915.810000px;}
.y119{bottom:920.130000px;}
.y19e{bottom:927.870000px;}
.y145{bottom:932.730000px;}
.ye9{bottom:935.250000px;}
.y63{bottom:935.790000px;}
.y171{bottom:938.490000px;}
.y118{bottom:942.450000px;}
.y19d{bottom:949.290000px;}
.y144{bottom:955.950000px;}
.y62{bottom:958.650000px;}
.y170{bottom:961.170000px;}
.y117{bottom:964.590000px;}
.y19c{bottom:970.890000px;}
.y143{bottom:979.350000px;}
.y61{bottom:981.690000px;}
.y16f{bottom:983.850000px;}
.y116{bottom:986.910000px;}
.y19b{bottom:992.310000px;}
.y142{bottom:1002.570000px;}
.y60{bottom:1004.730000px;}
.y16e{bottom:1006.530000px;}
.y115{bottom:1009.230000px;}
.yb{bottom:1013.550000px;}
.y19a{bottom:1013.730000px;}
.y141{bottom:1025.970000px;}
.y5f{bottom:1027.770000px;}
.y16d{bottom:1029.210000px;}
.y5{bottom:1030.290000px;}
.y114{bottom:1031.370000px;}
.y199{bottom:1035.150000px;}
.y4b{bottom:1037.160000px;}
.y140{bottom:1049.370000px;}
.y5e{bottom:1050.810000px;}
.y16c{bottom:1051.890000px;}
.y113{bottom:1053.690000px;}
.y198{bottom:1056.750000px;}
.y13f{bottom:1072.590000px;}
.y5d{bottom:1073.850000px;}
.y16b{bottom:1074.570000px;}
.y112{bottom:1075.830000px;}
.y197{bottom:1078.170000px;}
.y13e{bottom:1095.990000px;}
.y5c{bottom:1096.710000px;}
.y16a{bottom:1097.250000px;}
.y111{bottom:1098.150000px;}
.y196{bottom:1099.590000px;}
.y13d{bottom:1119.210000px;}
.y5b{bottom:1119.750000px;}
.y169{bottom:1119.930000px;}
.y110{bottom:1120.290000px;}
.y195{bottom:1121.190000px;}
.y10f{bottom:1142.610000px;}
.y5a{bottom:1142.790000px;}
.y53{bottom:1161.000000px;}
.y52{bottom:1185.840000px;}
.h2e{height:1.999688px;}
.hb{height:3.960000px;}
.h12{height:5.040000px;}
.hf{height:5.580000px;}
.h23{height:6.645000px;}
.hc{height:8.289492px;}
.h1e{height:10.080000px;}
.h13{height:12.533203px;}
.h2c{height:13.485000px;}
.h10{height:13.675781px;}
.h2a{height:14.385000px;}
.h27{height:15.105000px;}
.h3d{height:15.285000px;}
.h14{height:15.300000px;}
.h40{height:15.321000px;}
.h3e{height:15.465000px;}
.h1c{height:15.480000px;}
.h24{height:16.543828px;}
.h1a{height:16.920000px;}
.h25{height:17.445000px;}
.h34{height:17.640000px;}
.h17{height:18.360000px;}
.h1f{height:27.228516px;}
.h3c{height:27.246094px;}
.h36{height:27.898500px;}
.hd{height:27.900000px;}
.h2{height:28.798500px;}
.h26{height:29.145586px;}
.h11{height:29.700000px;}
.h45{height:31.585078px;}
.h28{height:33.494766px;}
.h2b{height:34.620820px;}
.h39{height:34.684453px;}
.h44{height:36.486211px;}
.h29{height:37.494141px;}
.h16{height:40.500000px;}
.h3a{height:40.816406px;}
.h1d{height:40.842773px;}
.h21{height:40.869141px;}
.h22{height:42.366094px;}
.h41{height:42.486094px;}
.h43{height:42.546094px;}
.h15{height:44.820000px;}
.he{height:44.860781px;}
.h1b{height:45.199336px;}
.h3b{height:45.509766px;}
.h19{height:45.695391px;}
.h42{height:49.125000px;}
.h3f{height:49.140000px;}
.h18{height:50.068125px;}
.h31{height:54.000000px;}
.h7{height:54.457031px;}
.h33{height:56.084062px;}
.h32{height:56.160000px;}
.h9{height:57.051211px;}
.h3{height:58.651172px;}
.ha{height:60.136655px;}
.h37{height:60.679688px;}
.h30{height:63.180000px;}
.h35{height:65.837812px;}
.h5{height:70.664062px;}
.h4{height:71.824219px;}
.h38{height:72.562500px;}
.h2d{height:83.505000px;}
.h8{height:106.942500px;}
.h2f{height:119.880000px;}
.h6{height:124.590000px;}
.h20{height:299.220000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:52.189500px;}
.w1f{width:74.145000px;}
.w29{width:76.896000px;}
.w1d{width:80.985000px;}
.w1c{width:81.036000px;}
.w1e{width:87.861000px;}
.w2a{width:89.085000px;}
.w28{width:89.100000px;}
.w27{width:89.121000px;}
.w2c{width:91.245000px;}
.w1b{width:98.640000px;}
.w2b{width:99.921000px;}
.w4{width:101.329500px;}
.w14{width:117.201000px;}
.w23{width:139.489500px;}
.w13{width:152.809500px;}
.w9{width:154.429500px;}
.w17{width:171.379500px;}
.w20{width:198.919500px;}
.w16{width:202.515000px;}
.w15{width:202.530000px;}
.w21{width:213.330000px;}
.w1a{width:243.015000px;}
.w25{width:255.120000px;}
.w19{width:260.670000px;}
.w22{width:262.815000px;}
.w3{width:265.155000px;}
.w11{width:280.320000px;}
.w26{width:280.455000px;}
.w8{width:325.455000px;}
.wc{width:325.815000px;}
.wf{width:333.555000px;}
.we{width:338.284500px;}
.w12{width:339.315000px;}
.wb{width:349.264500px;}
.w7{width:349.624500px;}
.w2{width:414.424500px;}
.w18{width:503.715000px;}
.wa{width:520.650000px;}
.w24{width:535.590000px;}
.wd{width:573.660000px;}
.w5{width:575.730000px;}
.w6{width:675.090000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:3.769500px;}
.x18{left:6.465000px;}
.x4d{left:15.690000px;}
.x16{left:17.809500px;}
.x38{left:19.800000px;}
.x4e{left:21.090000px;}
.x36{left:22.140000px;}
.x35{left:23.220000px;}
.x37{left:25.020000px;}
.x34{left:27.540000px;}
.x32{left:29.160000px;}
.x4a{left:30.450000px;}
.x1a{left:32.565000px;}
.x30{left:36.705000px;}
.xe{left:38.370000px;}
.x3c{left:40.140000px;}
.x1e{left:41.610000px;}
.x27{left:46.110000px;}
.x26{left:48.240000px;}
.x25{left:49.350000px;}
.x22{left:50.790000px;}
.x29{left:52.050000px;}
.x2f{left:70.365000px;}
.x24{left:72.390000px;}
.x28{left:75.990000px;}
.x52{left:77.385000px;}
.x2d{left:79.920000px;}
.x20{left:81.390000px;}
.x53{left:82.980000px;}
.x3f{left:84.060000px;}
.x23{left:86.430000px;}
.x2a{left:88.590000px;}
.x44{left:90.540000px;}
.x40{left:92.700000px;}
.x3d{left:93.780000px;}
.x1{left:106.786500px;}
.x5{left:108.036000px;}
.x43{left:109.470000px;}
.x3e{left:111.090000px;}
.xb{left:112.125000px;}
.x41{left:115.770000px;}
.x3a{left:116.820000px;}
.x39{left:117.900000px;}
.x50{left:120.810000px;}
.x15{left:122.025000px;}
.x4f{left:124.410000px;}
.x51{left:126.570000px;}
.x42{left:131.430000px;}
.x1b{left:143.445000px;}
.x17{left:164.385000px;}
.x2c{left:187.770000px;}
.x4{left:194.790000px;}
.x46{left:203.820000px;}
.x6{left:209.385000px;}
.xf{left:221.115000px;}
.x45{left:247.545000px;}
.x1d{left:260.865000px;}
.xc{left:263.385000px;}
.x10{left:273.705000px;}
.x2b{left:279.435000px;}
.x1c{left:290.548500px;}
.x11{left:303.405000px;}
.x3b{left:306.975000px;}
.x48{left:336.675000px;}
.x12{left:341.025000px;}
.x7{left:355.738500px;}
.x1f{left:378.075000px;}
.x49{left:425.775000px;}
.x19{left:444.720000px;}
.x14{left:450.480000px;}
.xa{left:458.580000px;}
.xd{left:462.705000px;}
.x47{left:502.680000px;}
.x3{left:521.220000px;}
.x8{left:527.683500px;}
.x2e{left:540.120000px;}
.x13{left:573.990000px;}
.x21{left:580.620000px;}
.x4b{left:591.780000px;}
.x31{left:627.990000px;}
.x9{left:675.103500px;}
.x4c{left:691.890000px;}
.x33{left:702.150000px;}
@media print{
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v1{vertical-align:16.000000pt;}
.ls1e{letter-spacing:-1.360000pt;}
.ls24{letter-spacing:-1.264000pt;}
.ls39{letter-spacing:-1.200000pt;}
.ls37{letter-spacing:-1.072000pt;}
.ls38{letter-spacing:-0.992000pt;}
.ls13{letter-spacing:-0.720000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.288000pt;}
.ls25{letter-spacing:-0.272000pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls28{letter-spacing:-0.240000pt;}
.ls1b{letter-spacing:-0.160000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls29{letter-spacing:-0.096000pt;}
.ls11{letter-spacing:-0.086933pt;}
.ls17{letter-spacing:-0.080000pt;}
.ls33{letter-spacing:-0.032000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.016000pt;}
.ls5{letter-spacing:0.028160pt;}
.lsb{letter-spacing:0.032000pt;}
.ls1d{letter-spacing:0.048000pt;}
.ls35{letter-spacing:0.080000pt;}
.ls32{letter-spacing:0.112000pt;}
.lsc{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.192000pt;}
.ls36{letter-spacing:0.208000pt;}
.ls14{letter-spacing:0.224000pt;}
.ls10{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.288000pt;}
.ls34{letter-spacing:0.304000pt;}
.ls8{letter-spacing:0.342933pt;}
.ls1f{letter-spacing:0.352000pt;}
.ls3{letter-spacing:0.416000pt;}
.ls9{letter-spacing:0.473600pt;}
.ls12{letter-spacing:0.480000pt;}
.ls22{letter-spacing:0.512000pt;}
.ls20{letter-spacing:0.544000pt;}
.ls2d{letter-spacing:0.560000pt;}
.ls26{letter-spacing:0.576000pt;}
.ls2{letter-spacing:0.595840pt;}
.ls1{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.832000pt;}
.ls15{letter-spacing:0.864000pt;}
.ls2f{letter-spacing:1.056000pt;}
.ls2e{letter-spacing:1.200000pt;}
.ls2c{letter-spacing:1.216000pt;}
.ls30{letter-spacing:1.504000pt;}
.ls4{letter-spacing:1.872000pt;}
.lsa{letter-spacing:5.072000pt;}
.lse{letter-spacing:6.352000pt;}
.lsf{letter-spacing:6.992000pt;}
.ls1a{letter-spacing:8.288000pt;}
.ls31{letter-spacing:12.768000pt;}
.ls18{letter-spacing:15.968000pt;}
.ls2b{letter-spacing:16.608000pt;}
.lsd{letter-spacing:35.152000pt;}
.ws4{word-spacing:-18.167040pt;}
.ws2{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.192640pt;}
.ws3{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.296533pt;}
.ws1f{word-spacing:-13.072000pt;}
.wsd{word-spacing:-12.432000pt;}
.ws22{word-spacing:-12.400000pt;}
.ws21{word-spacing:-12.352000pt;}
.ws5{word-spacing:-12.192000pt;}
.wsc{word-spacing:-11.792000pt;}
.ws11{word-spacing:-11.696000pt;}
.ws0{word-spacing:-11.686400pt;}
.ws20{word-spacing:-11.680000pt;}
.ws10{word-spacing:-11.616000pt;}
.wsa{word-spacing:-11.599467pt;}
.ws1e{word-spacing:-11.584000pt;}
.wse{word-spacing:-11.568000pt;}
.ws12{word-spacing:-11.408000pt;}
.ws19{word-spacing:-11.328000pt;}
.wsf{word-spacing:-11.312000pt;}
.ws15{word-spacing:-11.296000pt;}
.ws1c{word-spacing:-11.280000pt;}
.ws24{word-spacing:-11.200000pt;}
.ws23{word-spacing:-11.120000pt;}
.ws25{word-spacing:-10.992000pt;}
.ws14{word-spacing:-10.304000pt;}
.ws13{word-spacing:-10.208000pt;}
.ws7{word-spacing:-8.640000pt;}
.ws1{word-spacing:-8.512000pt;}
.ws16{word-spacing:-8.288000pt;}
.ws1b{word-spacing:-7.904000pt;}
.ws6{word-spacing:-7.712000pt;}
.ws1a{word-spacing:-7.616000pt;}
.ws1d{word-spacing:-7.584000pt;}
.ws17{word-spacing:-7.552000pt;}
.ws18{word-spacing:-7.424000pt;}
.ws9{word-spacing:0.000000pt;}
._2{margin-left:-1.940267pt;}
._1{margin-left:-1.037440pt;}
._0{width:1.039147pt;}
._4{width:2.362240pt;}
._8{width:3.664853pt;}
._a{width:5.330560pt;}
._5{width:6.242560pt;}
._6{width:7.152000pt;}
._9{width:8.402560pt;}
._11{width:9.306880pt;}
._7{width:10.661333pt;}
._19{width:12.480000pt;}
._12{width:13.584000pt;}
._1c{width:14.496000pt;}
._c{width:15.408000pt;}
._d{width:16.416000pt;}
._1b{width:17.338027pt;}
._18{width:18.372267pt;}
._b{width:19.824000pt;}
._3{width:21.312427pt;}
._1e{width:22.399573pt;}
._e{width:23.616000pt;}
._f{width:24.720000pt;}
._22{width:25.920000pt;}
._1f{width:26.880000pt;}
._10{width:27.840000pt;}
._1d{width:28.800000pt;}
._15{width:30.194560pt;}
._1a{width:31.153493pt;}
._29{width:32.074880pt;}
._28{width:33.029120pt;}
._13{width:34.992000pt;}
._17{width:36.369707pt;}
._14{width:37.586560pt;}
._16{width:38.933120pt;}
._20{width:39.984000pt;}
._21{width:40.896000pt;}
._2b{width:42.384000pt;}
._2a{width:43.584000pt;}
._23{width:45.264000pt;}
._24{width:46.224000pt;}
._27{width:47.443413pt;}
._2c{width:50.531840pt;}
._26{width:51.996160pt;}
._25{width:52.982827pt;}
._2d{width:66.096000pt;}
._2e{width:67.056000pt;}
.fsd{font-size:2.560000pt;}
.fs4{font-size:10.880000pt;}
.fs7{font-size:16.000000pt;}
.fs9{font-size:21.120000pt;}
.fs6{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs10{font-size:37.120000pt;}
.fs11{font-size:40.320000pt;}
.fsb{font-size:42.880000pt;}
.fsc{font-size:45.440000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fse{font-size:66.560000pt;}
.fsf{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:78.929661pt;}
.y51{bottom:-11.546667pt;}
.y41{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:0.960000pt;}
.y19{bottom:1.280000pt;}
.y35{bottom:1.426667pt;}
.y11{bottom:1.600000pt;}
.y25{bottom:1.920000pt;}
.y58{bottom:2.080000pt;}
.y9d{bottom:2.706667pt;}
.y1b{bottom:2.720000pt;}
.yc3{bottom:2.746667pt;}
.y3d{bottom:2.866667pt;}
.y20{bottom:2.880000pt;}
.y22{bottom:3.040000pt;}
.y3a{bottom:3.186667pt;}
.y1d{bottom:3.680000pt;}
.y1f{bottom:4.000000pt;}
.y39{bottom:4.306667pt;}
.y37{bottom:7.026667pt;}
.y50{bottom:7.173333pt;}
.y33{bottom:9.746667pt;}
.y55{bottom:10.400000pt;}
.y3{bottom:11.200000pt;}
.y56{bottom:12.160000pt;}
.y13{bottom:12.320000pt;}
.ya{bottom:12.800000pt;}
.y2{bottom:12.960000pt;}
.y17{bottom:13.920000pt;}
.y57{bottom:14.720000pt;}
.yf{bottom:15.680000pt;}
.y4f{bottom:28.933333pt;}
.y32{bottom:30.106667pt;}
.yae{bottom:32.800000pt;}
.y9{bottom:40.480000pt;}
.y59{bottom:42.240000pt;}
.ye{bottom:47.400000pt;}
.y4e{bottom:49.733333pt;}
.y31{bottom:50.586667pt;}
.y4{bottom:51.840000pt;}
.y54{bottom:56.640000pt;}
.y1{bottom:66.240000pt;}
.y8{bottom:68.160000pt;}
.y4d{bottom:70.213333pt;}
.y30{bottom:71.066667pt;}
.yd{bottom:79.080000pt;}
.y4c{bottom:91.173333pt;}
.y2f{bottom:91.546667pt;}
.y6{bottom:95.680000pt;}
.y7{bottom:95.840000pt;}
.y168{bottom:103.200000pt;}
.y10e{bottom:103.680000pt;}
.y13c{bottom:106.080000pt;}
.y1c4{bottom:110.400000pt;}
.y4a{bottom:111.520000pt;}
.y2e{bottom:112.026667pt;}
.ye8{bottom:115.200000pt;}
.y85{bottom:115.840000pt;}
.yab{bottom:116.160000pt;}
.yac{bottom:116.640000pt;}
.yd2{bottom:117.440000pt;}
.y167{bottom:123.840000pt;}
.y10d{bottom:124.160000pt;}
.y13b{bottom:125.920000pt;}
.y194{bottom:130.400000pt;}
.y1c3{bottom:131.040000pt;}
.y49{bottom:132.000000pt;}
.y2d{bottom:132.506667pt;}
.ye7{bottom:135.680000pt;}
.y84{bottom:136.160000pt;}
.yaa{bottom:137.120000pt;}
.yd1{bottom:137.920000pt;}
.y10c{bottom:144.480000pt;}
.y166{bottom:144.640000pt;}
.y13a{bottom:145.600000pt;}
.y1c2{bottom:150.240000pt;}
.y193{bottom:150.560000pt;}
.y48{bottom:152.480000pt;}
.y2c{bottom:152.826667pt;}
.ye6{bottom:156.160000pt;}
.y83{bottom:156.640000pt;}
.ya9{bottom:157.600000pt;}
.yd0{bottom:158.400000pt;}
.y10b{bottom:164.960000pt;}
.y165{bottom:165.280000pt;}
.y139{bottom:165.440000pt;}
.y1c1{bottom:169.280000pt;}
.y192{bottom:170.720000pt;}
.y47{bottom:172.960000pt;}
.y2b{bottom:173.306667pt;}
.ye5{bottom:176.640000pt;}
.y82{bottom:177.120000pt;}
.ya8{bottom:177.920000pt;}
.ycf{bottom:178.720000pt;}
.y138{bottom:185.146667pt;}
.y10a{bottom:185.466667pt;}
.y164{bottom:186.106667pt;}
.y1c0{bottom:188.346667pt;}
.y191{bottom:190.906667pt;}
.y46{bottom:193.466667pt;}
.y2a{bottom:193.786667pt;}
.ye4{bottom:197.146667pt;}
.y81{bottom:197.626667pt;}
.ya7{bottom:198.426667pt;}
.yce{bottom:199.226667pt;}
.y137{bottom:204.986667pt;}
.y109{bottom:205.946667pt;}
.y163{bottom:206.906667pt;}
.y1bf{bottom:207.386667pt;}
.y190{bottom:211.066667pt;}
.ya6{bottom:211.240000pt;}
.y45{bottom:213.786667pt;}
.y29{bottom:214.266667pt;}
.ye3{bottom:217.626667pt;}
.y80{bottom:218.106667pt;}
.ycd{bottom:219.706667pt;}
.y136{bottom:224.666667pt;}
.ya5{bottom:224.840000pt;}
.y108{bottom:226.426667pt;}
.y1be{bottom:226.586667pt;}
.y162{bottom:227.546667pt;}
.y18f{bottom:230.106667pt;}
.y44{bottom:234.266667pt;}
.y28{bottom:234.773333pt;}
.ye2{bottom:237.946667pt;}
.ya4{bottom:238.440000pt;}
.y7f{bottom:238.586667pt;}
.ycc{bottom:240.186667pt;}
.y135{bottom:244.506667pt;}
.y1bd{bottom:245.626667pt;}
.y107{bottom:246.906667pt;}
.y161{bottom:248.346667pt;}
.y18e{bottom:249.146667pt;}
.ya3{bottom:252.040000pt;}
.y43{bottom:254.746667pt;}
.y27{bottom:255.253333pt;}
.ye1{bottom:258.426667pt;}
.y7e{bottom:258.906667pt;}
.ycb{bottom:260.666667pt;}
.y1bc{bottom:263.066667pt;}
.y134{bottom:264.346667pt;}
.ya2{bottom:265.800000pt;}
.y106{bottom:267.226667pt;}
.y160{bottom:268.986667pt;}
.y18d{bottom:269.306667pt;}
.y42{bottom:275.226667pt;}
.ye0{bottom:278.906667pt;}
.y7d{bottom:279.386667pt;}
.ya1{bottom:279.400000pt;}
.y1bb{bottom:279.546667pt;}
.yca{bottom:280.986667pt;}
.y133{bottom:284.026667pt;}
.y40{bottom:285.960000pt;}
.y105{bottom:287.706667pt;}
.y18c{bottom:289.466667pt;}
.y15f{bottom:289.786667pt;}
.ya0{bottom:293.000000pt;}
.yc9{bottom:293.800000pt;}
.y3f{bottom:297.960000pt;}
.y1ba{bottom:298.586667pt;}
.ydf{bottom:299.386667pt;}
.y7c{bottom:299.866667pt;}
.y132{bottom:303.866667pt;}
.y9f{bottom:306.600000pt;}
.yc8{bottom:307.400000pt;}
.y104{bottom:308.186667pt;}
.y18b{bottom:309.626667pt;}
.y3e{bottom:309.960000pt;}
.y15e{bottom:310.586667pt;}
.y1b9{bottom:317.786667pt;}
.yde{bottom:319.866667pt;}
.y7b{bottom:320.346667pt;}
.y9e{bottom:321.000000pt;}
.y3c{bottom:321.960000pt;}
.y131{bottom:323.546667pt;}
.y103{bottom:328.666667pt;}
.y18a{bottom:329.786667pt;}
.y15d{bottom:331.226667pt;}
.y3b{bottom:333.960000pt;}
.yc7{bottom:334.760000pt;}
.y9c{bottom:335.240000pt;}
.y1b8{bottom:336.826667pt;}
.ydd{bottom:340.346667pt;}
.y7a{bottom:340.826667pt;}
.y130{bottom:343.386667pt;}
.y38{bottom:346.760000pt;}
.yc6{bottom:348.360000pt;}
.y102{bottom:349.146667pt;}
.y189{bottom:349.946667pt;}
.y15c{bottom:352.026667pt;}
.y1b7{bottom:354.266667pt;}
.y36{bottom:360.200000pt;}
.y9b{bottom:360.666667pt;}
.y79{bottom:361.306667pt;}
.yc5{bottom:361.960000pt;}
.y12f{bottom:363.066667pt;}
.y101{bottom:369.626667pt;}
.y188{bottom:370.106667pt;}
.y1b6{bottom:370.746667pt;}
.y15b{bottom:372.666667pt;}
.yc4{bottom:375.560000pt;}
.y34{bottom:375.720000pt;}
.y9a{bottom:380.986667pt;}
.ydc{bottom:381.146667pt;}
.y78{bottom:381.626667pt;}
.y26{bottom:381.640000pt;}
.y12e{bottom:382.906667pt;}
.yc2{bottom:389.320000pt;}
.y1b5{bottom:389.786667pt;}
.y100{bottom:389.946667pt;}
.y187{bottom:390.266667pt;}
.y15a{bottom:393.506667pt;}
.ydb{bottom:393.986667pt;}
.y77{bottom:402.146667pt;}
.y12d{bottom:402.626667pt;}
.yc1{bottom:402.946667pt;}
.y99{bottom:404.866667pt;}
.yda{bottom:407.586667pt;}
.y1b4{bottom:409.026667pt;}
.yff{bottom:410.466667pt;}
.y186{bottom:410.626667pt;}
.y159{bottom:414.306667pt;}
.yc0{bottom:416.546667pt;}
.yd9{bottom:421.186667pt;}
.y98{bottom:421.986667pt;}
.y12c{bottom:422.466667pt;}
.y76{bottom:422.626667pt;}
.y1b3{bottom:428.066667pt;}
.ybf{bottom:430.146667pt;}
.y185{bottom:430.786667pt;}
.yfe{bottom:430.946667pt;}
.yd8{bottom:434.786667pt;}
.y158{bottom:434.946667pt;}
.y12b{bottom:442.306667pt;}
.y97{bottom:442.466667pt;}
.y75{bottom:443.106667pt;}
.ybe{bottom:443.746667pt;}
.y1b2{bottom:447.106667pt;}
.yd7{bottom:448.546667pt;}
.y184{bottom:450.946667pt;}
.yfd{bottom:451.426667pt;}
.y157{bottom:455.746667pt;}
.ybd{bottom:458.146667pt;}
.y12a{bottom:461.986667pt;}
.yd6{bottom:462.146667pt;}
.y96{bottom:462.946667pt;}
.y74{bottom:463.586667pt;}
.y1b1{bottom:466.306667pt;}
.y183{bottom:471.106667pt;}
.yfc{bottom:471.906667pt;}
.yd5{bottom:475.746667pt;}
.y156{bottom:476.386667pt;}
.y129{bottom:481.826667pt;}
.y95{bottom:483.266667pt;}
.ybc{bottom:483.426667pt;}
.y1b0{bottom:483.746667pt;}
.y73{bottom:484.066667pt;}
.yd3{bottom:489.986667pt;}
.y182{bottom:491.266667pt;}
.yfb{bottom:492.386667pt;}
.y155{bottom:497.186667pt;}
.y1af{bottom:500.226667pt;}
.y128{bottom:501.506667pt;}
.y94{bottom:503.746667pt;}
.ybb{bottom:503.906667pt;}
.y72{bottom:504.386667pt;}
.y181{bottom:511.426667pt;}
.yfa{bottom:512.706667pt;}
.y154{bottom:517.986667pt;}
.y1ae{bottom:519.266667pt;}
.yd4{bottom:519.906667pt;}
.y127{bottom:521.346667pt;}
.y93{bottom:524.226667pt;}
.yba{bottom:524.386667pt;}
.y71{bottom:524.866667pt;}
.y180{bottom:531.586667pt;}
.yf9{bottom:533.186667pt;}
.y1ad{bottom:538.306667pt;}
.y153{bottom:538.626667pt;}
.y126{bottom:541.026667pt;}
.y92{bottom:544.706667pt;}
.yb9{bottom:544.866667pt;}
.y70{bottom:545.346667pt;}
.y17f{bottom:551.746667pt;}
.yf8{bottom:553.666667pt;}
.y1ac{bottom:557.506667pt;}
.y152{bottom:559.426667pt;}
.y125{bottom:560.866667pt;}
.y91{bottom:565.186667pt;}
.yb8{bottom:565.346667pt;}
.y6f{bottom:565.826667pt;}
.y17e{bottom:571.906667pt;}
.yf7{bottom:574.146667pt;}
.y1ab{bottom:576.546667pt;}
.y151{bottom:580.066667pt;}
.y124{bottom:580.706667pt;}
.y90{bottom:585.666667pt;}
.y6e{bottom:586.306667pt;}
.y17d{bottom:592.066667pt;}
.yf6{bottom:594.626667pt;}
.y1aa{bottom:595.586667pt;}
.y123{bottom:600.386667pt;}
.y150{bottom:600.893333pt;}
.y8f{bottom:606.013333pt;}
.yb7{bottom:606.173333pt;}
.y6d{bottom:606.653333pt;}
.y17c{bottom:612.253333pt;}
.y1a9{bottom:614.813333pt;}
.yf5{bottom:614.973333pt;}
.yb6{bottom:618.973333pt;}
.y122{bottom:620.253333pt;}
.y14f{bottom:621.693333pt;}
.y8e{bottom:626.493333pt;}
.y6c{bottom:627.133333pt;}
.y17b{bottom:632.413333pt;}
.yb5{bottom:632.573333pt;}
.y1a8{bottom:633.853333pt;}
.yf4{bottom:635.453333pt;}
.y121{bottom:639.933333pt;}
.y14e{bottom:642.333333pt;}
.yb4{bottom:646.173333pt;}
.y8d{bottom:646.973333pt;}
.y24{bottom:647.613333pt;}
.yf3{bottom:648.253333pt;}
.y17a{bottom:652.573333pt;}
.y1a7{bottom:652.893333pt;}
.y23{bottom:656.573333pt;}
.yb3{bottom:659.773333pt;}
.yf2{bottom:661.853333pt;}
.y14d{bottom:663.133333pt;}
.y8c{bottom:667.453333pt;}
.y6b{bottom:668.093333pt;}
.y21{bottom:670.333333pt;}
.y1a6{bottom:672.093333pt;}
.y179{bottom:672.733333pt;}
.yb2{bottom:673.533333pt;}
.yf1{bottom:675.453333pt;}
.y120{bottom:679.453333pt;}
.y14c{bottom:683.773333pt;}
.y1e{bottom:685.373333pt;}
.yb1{bottom:687.133333pt;}
.y8b{bottom:687.933333pt;}
.y6a{bottom:688.573333pt;}
.yf0{bottom:689.053333pt;}
.y1a5{bottom:691.133333pt;}
.y178{bottom:692.893333pt;}
.y11f{bottom:699.293333pt;}
.yb0{bottom:700.733333pt;}
.y1c{bottom:701.693333pt;}
.yef{bottom:702.813333pt;}
.y14b{bottom:704.573333pt;}
.y8a{bottom:708.413333pt;}
.y69{bottom:709.053333pt;}
.y1a4{bottom:710.173333pt;}
.y177{bottom:713.053333pt;}
.yad{bottom:714.973333pt;}
.y1a{bottom:715.293333pt;}
.yee{bottom:716.413333pt;}
.y11e{bottom:719.133333pt;}
.y14a{bottom:725.373333pt;}
.y89{bottom:728.733333pt;}
.y18{bottom:728.893333pt;}
.y1a3{bottom:729.213333pt;}
.y68{bottom:729.373333pt;}
.yed{bottom:730.013333pt;}
.y176{bottom:733.213333pt;}
.y16{bottom:733.373333pt;}
.y11d{bottom:738.813333pt;}
.yec{bottom:744.253333pt;}
.yaf{bottom:745.053333pt;}
.y149{bottom:746.013333pt;}
.y1a2{bottom:748.413333pt;}
.y88{bottom:749.213333pt;}
.y67{bottom:749.853333pt;}
.y175{bottom:753.373333pt;}
.y11c{bottom:758.653333pt;}
.y14{bottom:759.773333pt;}
.y12{bottom:764.733333pt;}
.y148{bottom:766.813333pt;}
.y1a1{bottom:767.453333pt;}
.y87{bottom:769.693333pt;}
.y66{bottom:770.333333pt;}
.y174{bottom:773.533333pt;}
.y11b{bottom:778.333333pt;}
.y1a0{bottom:786.493333pt;}
.y147{bottom:787.453333pt;}
.y10{bottom:789.533333pt;}
.yeb{bottom:790.173333pt;}
.y86{bottom:790.333333pt;}
.y65{bottom:790.813333pt;}
.yc{bottom:793.053333pt;}
.y173{bottom:793.693333pt;}
.y11a{bottom:798.173333pt;}
.y19f{bottom:805.693333pt;}
.y146{bottom:808.253333pt;}
.yea{bottom:810.693333pt;}
.y64{bottom:811.333333pt;}
.y172{bottom:814.053333pt;}
.y119{bottom:817.893333pt;}
.y19e{bottom:824.773333pt;}
.y145{bottom:829.093333pt;}
.ye9{bottom:831.333333pt;}
.y63{bottom:831.813333pt;}
.y171{bottom:834.213333pt;}
.y118{bottom:837.733333pt;}
.y19d{bottom:843.813333pt;}
.y144{bottom:849.733333pt;}
.y62{bottom:852.133333pt;}
.y170{bottom:854.373333pt;}
.y117{bottom:857.413333pt;}
.y19c{bottom:863.013333pt;}
.y143{bottom:870.533333pt;}
.y61{bottom:872.613333pt;}
.y16f{bottom:874.533333pt;}
.y116{bottom:877.253333pt;}
.y19b{bottom:882.053333pt;}
.y142{bottom:891.173333pt;}
.y60{bottom:893.093333pt;}
.y16e{bottom:894.693333pt;}
.y115{bottom:897.093333pt;}
.yb{bottom:900.933333pt;}
.y19a{bottom:901.093333pt;}
.y141{bottom:911.973333pt;}
.y5f{bottom:913.573333pt;}
.y16d{bottom:914.853333pt;}
.y5{bottom:915.813333pt;}
.y114{bottom:916.773333pt;}
.y199{bottom:920.133333pt;}
.y4b{bottom:921.920000pt;}
.y140{bottom:932.773333pt;}
.y5e{bottom:934.053333pt;}
.y16c{bottom:935.013333pt;}
.y113{bottom:936.613333pt;}
.y198{bottom:939.333333pt;}
.y13f{bottom:953.413333pt;}
.y5d{bottom:954.533333pt;}
.y16b{bottom:955.173333pt;}
.y112{bottom:956.293333pt;}
.y197{bottom:958.373333pt;}
.y13e{bottom:974.213333pt;}
.y5c{bottom:974.853333pt;}
.y16a{bottom:975.333333pt;}
.y111{bottom:976.133333pt;}
.y196{bottom:977.413333pt;}
.y13d{bottom:994.853333pt;}
.y5b{bottom:995.333333pt;}
.y169{bottom:995.493333pt;}
.y110{bottom:995.813333pt;}
.y195{bottom:996.613333pt;}
.y10f{bottom:1015.653333pt;}
.y5a{bottom:1015.813333pt;}
.y53{bottom:1032.000000pt;}
.y52{bottom:1054.080000pt;}
.h2e{height:1.777500pt;}
.hb{height:3.520000pt;}
.h12{height:4.480000pt;}
.hf{height:4.960000pt;}
.h23{height:5.906667pt;}
.hc{height:7.368437pt;}
.h1e{height:8.960000pt;}
.h13{height:11.140625pt;}
.h2c{height:11.986667pt;}
.h10{height:12.156250pt;}
.h2a{height:12.786667pt;}
.h27{height:13.426667pt;}
.h3d{height:13.586667pt;}
.h14{height:13.600000pt;}
.h40{height:13.618667pt;}
.h3e{height:13.746667pt;}
.h1c{height:13.760000pt;}
.h24{height:14.705625pt;}
.h1a{height:15.040000pt;}
.h25{height:15.506667pt;}
.h34{height:15.680000pt;}
.h17{height:16.320000pt;}
.h1f{height:24.203125pt;}
.h3c{height:24.218750pt;}
.h36{height:24.798667pt;}
.hd{height:24.800000pt;}
.h2{height:25.598667pt;}
.h26{height:25.907188pt;}
.h11{height:26.400000pt;}
.h45{height:28.075625pt;}
.h28{height:29.773125pt;}
.h2b{height:30.774062pt;}
.h39{height:30.830625pt;}
.h44{height:32.432187pt;}
.h29{height:33.328125pt;}
.h16{height:36.000000pt;}
.h3a{height:36.281250pt;}
.h1d{height:36.304688pt;}
.h21{height:36.328125pt;}
.h22{height:37.658750pt;}
.h41{height:37.765417pt;}
.h43{height:37.818750pt;}
.h15{height:39.840000pt;}
.he{height:39.876250pt;}
.h1b{height:40.177188pt;}
.h3b{height:40.453125pt;}
.h19{height:40.618125pt;}
.h42{height:43.666667pt;}
.h3f{height:43.680000pt;}
.h18{height:44.505000pt;}
.h31{height:48.000000pt;}
.h7{height:48.406250pt;}
.h33{height:49.852500pt;}
.h32{height:49.920000pt;}
.h9{height:50.712187pt;}
.h3{height:52.134375pt;}
.ha{height:53.454805pt;}
.h37{height:53.937500pt;}
.h30{height:56.160000pt;}
.h35{height:58.522500pt;}
.h5{height:62.812500pt;}
.h4{height:63.843750pt;}
.h38{height:64.500000pt;}
.h2d{height:74.226667pt;}
.h8{height:95.060000pt;}
.h2f{height:106.560000pt;}
.h6{height:110.746667pt;}
.h20{height:265.973333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:46.390667pt;}
.w1f{width:65.906667pt;}
.w29{width:68.352000pt;}
.w1d{width:71.986667pt;}
.w1c{width:72.032000pt;}
.w1e{width:78.098667pt;}
.w2a{width:79.186667pt;}
.w28{width:79.200000pt;}
.w27{width:79.218667pt;}
.w2c{width:81.106667pt;}
.w1b{width:87.680000pt;}
.w2b{width:88.818667pt;}
.w4{width:90.070667pt;}
.w14{width:104.178667pt;}
.w23{width:123.990667pt;}
.w13{width:135.830667pt;}
.w9{width:137.270667pt;}
.w17{width:152.337333pt;}
.w20{width:176.817333pt;}
.w16{width:180.013333pt;}
.w15{width:180.026667pt;}
.w21{width:189.626667pt;}
.w1a{width:216.013333pt;}
.w25{width:226.773333pt;}
.w19{width:231.706667pt;}
.w22{width:233.613333pt;}
.w3{width:235.693333pt;}
.w11{width:249.173333pt;}
.w26{width:249.293333pt;}
.w8{width:289.293333pt;}
.wc{width:289.613333pt;}
.wf{width:296.493333pt;}
.we{width:300.697333pt;}
.w12{width:301.613333pt;}
.wb{width:310.457333pt;}
.w7{width:310.777333pt;}
.w2{width:368.377333pt;}
.w18{width:447.746667pt;}
.wa{width:462.800000pt;}
.w24{width:476.080000pt;}
.wd{width:509.920000pt;}
.w5{width:511.760000pt;}
.w6{width:600.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:3.350667pt;}
.x18{left:5.746667pt;}
.x4d{left:13.946667pt;}
.x16{left:15.830667pt;}
.x38{left:17.600000pt;}
.x4e{left:18.746667pt;}
.x36{left:19.680000pt;}
.x35{left:20.640000pt;}
.x37{left:22.240000pt;}
.x34{left:24.480000pt;}
.x32{left:25.920000pt;}
.x4a{left:27.066667pt;}
.x1a{left:28.946667pt;}
.x30{left:32.626667pt;}
.xe{left:34.106667pt;}
.x3c{left:35.680000pt;}
.x1e{left:36.986667pt;}
.x27{left:40.986667pt;}
.x26{left:42.880000pt;}
.x25{left:43.866667pt;}
.x22{left:45.146667pt;}
.x29{left:46.266667pt;}
.x2f{left:62.546667pt;}
.x24{left:64.346667pt;}
.x28{left:67.546667pt;}
.x52{left:68.786667pt;}
.x2d{left:71.040000pt;}
.x20{left:72.346667pt;}
.x53{left:73.760000pt;}
.x3f{left:74.720000pt;}
.x23{left:76.826667pt;}
.x2a{left:78.746667pt;}
.x44{left:80.480000pt;}
.x40{left:82.400000pt;}
.x3d{left:83.360000pt;}
.x1{left:94.921333pt;}
.x5{left:96.032000pt;}
.x43{left:97.306667pt;}
.x3e{left:98.746667pt;}
.xb{left:99.666667pt;}
.x41{left:102.906667pt;}
.x3a{left:103.840000pt;}
.x39{left:104.800000pt;}
.x50{left:107.386667pt;}
.x15{left:108.466667pt;}
.x4f{left:110.586667pt;}
.x51{left:112.506667pt;}
.x42{left:116.826667pt;}
.x1b{left:127.506667pt;}
.x17{left:146.120000pt;}
.x2c{left:166.906667pt;}
.x4{left:173.146667pt;}
.x46{left:181.173333pt;}
.x6{left:186.120000pt;}
.xf{left:196.546667pt;}
.x45{left:220.040000pt;}
.x1d{left:231.880000pt;}
.xc{left:234.120000pt;}
.x10{left:243.293333pt;}
.x2b{left:248.386667pt;}
.x1c{left:258.265333pt;}
.x11{left:269.693333pt;}
.x3b{left:272.866667pt;}
.x48{left:299.266667pt;}
.x12{left:303.133333pt;}
.x7{left:316.212000pt;}
.x1f{left:336.066667pt;}
.x49{left:378.466667pt;}
.x19{left:395.306667pt;}
.x14{left:400.426667pt;}
.xa{left:407.626667pt;}
.xd{left:411.293333pt;}
.x47{left:446.826667pt;}
.x3{left:463.306667pt;}
.x8{left:469.052000pt;}
.x2e{left:480.106667pt;}
.x13{left:510.213333pt;}
.x21{left:516.106667pt;}
.x4b{left:526.026667pt;}
.x31{left:558.213333pt;}
.x9{left:600.092000pt;}
.x4c{left:615.013333pt;}
.x33{left:624.133333pt;}
}




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