
    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_4cbd1d93be29b024949c1ce6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.199000;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_2f761d4c5ffd51b34339cf07.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.954000;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_268e9a7bd9090e263f3e7e13.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.018000;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_dcf841d43ac12d210a68c3c6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.725000;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_eba507c209f6a566bf46506a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.030000;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_1b227460d17093c021277b45.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.954000;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_ebd1b80b993a37037fa0274c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.024902;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_ed0577566795f83f8f7e63c5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.774902;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_87f75b1a584a1ff4828d1a41.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.765137;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_e10026fa379685f0e4554c9e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.774902;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_6c128a4b6c12521b1583615c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_701df24c4f0a0a8450d079e1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.765137;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_365e7cbd2a5f7b0d3c9fb9f1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.158691;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_27755d53088927c48cd12588.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.024902;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_084f39be38eba1b4f7179bb4.woff2')format("woff");}.fff{font-family:fff;line-height:0.774902;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_2a9f25fa4eaf77b513cbf2ca.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.765137;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_2ea66783c1c50bdfd4d822e6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.906738;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_5d5eaa84636b1381d64b858c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.919922;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_7eb3e515a9bb36a897a1b57d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.919922;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_613c049709d574d61ccce08c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.911133;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_8685d219e1cb814b6cc7ad8e.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_832593c87eb2d098855bc99f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.676270;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_a5d2f4c9346d76208743e3a7.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.906738;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_79c4766aa20f3dd784d3d0e1.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_d8ae91f9a5d230ade9795f90.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_3608e2884d05b4e68142b9f4.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.906738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_6c93d476ba127f1f95198d58.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_3be2050c6ebdadbd99a90818.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.676270;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:ff1d;src:url('chunks/assets/font_eeedba68a079856ef63b584f.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.257422;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:ff1e;src:url('chunks/assets/font_b35abad944b9c661d8e6fb2e.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.786133;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:ff1f;src:url('chunks/assets/font_aa94ec62f62b1ace39a19600.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.349000;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:ff20;src:url('chunks/assets/font_f798cb3a3f5897824be11d06.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.700000;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:ff21;src:url('chunks/assets/font_e207dc559a38b88b25a922e4.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.980200;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:ff22;src:url('chunks/assets/font_b278dd0d57f5c292b90beed4.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.967773;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:-28.512000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:28.512000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:13.938000px;}
.ls2{letter-spacing:44.052000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc2{text-shadow:-0.015em 0 rgb(94,94,94),0 0.015em rgb(94,94,94),0.015em 0 rgb(94,94,94),0 -0.015em  rgb(94,94,94);}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(94,94,94);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1{word-spacing:-39.264000px;}
.ws4{word-spacing:-30.456000px;}
.ws0{word-spacing:-20.016000px;}
.ws1f{word-spacing:-17.178000px;}
.ws2{word-spacing:-16.896000px;}
.ws16{word-spacing:-14.328000px;}
.ws3{word-spacing:-13.500000px;}
.ws1e{word-spacing:-13.134000px;}
.ws5{word-spacing:-9.750000px;}
.ws17{word-spacing:-9.552000px;}
.wsc{word-spacing:-2.580000px;}
.ws9{word-spacing:-1.986000px;}
.wsb{word-spacing:-1.146000px;}
.ws13{word-spacing:-0.702000px;}
.ws8{word-spacing:-0.582000px;}
.wsa{word-spacing:-0.546000px;}
.ws11{word-spacing:-0.486000px;}
.wsd{word-spacing:-0.276000px;}
.ws7{word-spacing:-0.228000px;}
.ws6{word-spacing:0.000000px;}
.ws18{word-spacing:0.036000px;}
.ws1a{word-spacing:0.054000px;}
.ws1c{word-spacing:0.078000px;}
.ws19{word-spacing:0.084000px;}
.ws1b{word-spacing:0.108000px;}
.ws1d{word-spacing:0.144000px;}
.ws15{word-spacing:0.426000px;}
.wsf{word-spacing:0.594000px;}
.wse{word-spacing:0.828000px;}
.ws10{word-spacing:0.834000px;}
.ws12{word-spacing:1.194000px;}
.ws14{word-spacing:2.142000px;}
._f{margin-left:-7.410000px;}
._c{margin-left:-5.454000px;}
._5{margin-left:-4.440000px;}
._0{margin-left:-2.580000px;}
._3{margin-left:-1.098000px;}
._2{width:1.374000px;}
._1{width:2.670000px;}
._9{width:4.115928px;}
._4{width:5.160000px;}
._7{width:6.588000px;}
._6{width:8.195976px;}
._8{width:9.498024px;}
._b{width:10.523808px;}
._a{width:12.281976px;}
._d{width:13.289976px;}
._11{width:15.408000px;}
._e{width:18.180000px;}
._10{width:24.402024px;}
.fc5{color:rgb(0,0,128);}
.fc4{color:rgb(204,255,204);}
.fc6{color:rgb(194,196,199);}
.fc3{color:rgb(127,128,128);}
.fc1{color:rgb(130,130,129);}
.fc7{color:rgb(140,27,52);}
.fc2{color:rgb(94,94,94);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs7{font-size:39.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:3.276000px;}
.y126{bottom:3.766350px;}
.yb8{bottom:3.766500px;}
.y7c{bottom:3.766650px;}
.y59{bottom:3.766800px;}
.yf2{bottom:3.766950px;}
.y10c{bottom:3.767100px;}
.y1c7{bottom:4.320300px;}
.y2e{bottom:18.682500px;}
.y1c9{bottom:19.726500px;}
.y1c8{bottom:34.126500px;}
.y5a{bottom:40.800110px;}
.y2d{bottom:44.091000px;}
.y1c6{bottom:56.504810px;}
.y2c{bottom:63.438000px;}
.y2b{bottom:90.678000px;}
.ydd{bottom:116.227500px;}
.yb6{bottom:119.005500px;}
.y7a{bottom:120.430500px;}
.y9f{bottom:121.270500px;}
.y6d{bottom:121.777500px;}
.yea{bottom:124.048500px;}
.y113{bottom:124.162500px;}
.y128{bottom:126.826500px;}
.y10a{bottom:132.271500px;}
.ydc{bottom:137.827500px;}
.yb5{bottom:140.605500px;}
.y79{bottom:142.030500px;}
.y9e{bottom:142.870500px;}
.y174{bottom:143.721000px;}
.ye9{bottom:145.648500px;}
.y25{bottom:145.702500px;}
.y112{bottom:145.762500px;}
.y6c{bottom:146.155500px;}
.yf0{bottom:148.426500px;}
.y1a2{bottom:148.440000px;}
.y109{bottom:153.871500px;}
.ydb{bottom:159.427500px;}
.yb4{bottom:162.205500px;}
.y173{bottom:163.521000px;}
.y78{bottom:163.630500px;}
.y9d{bottom:164.470500px;}
.ye8{bottom:167.248500px;}
.y24{bottom:167.302500px;}
.y6b{bottom:167.755500px;}
.y1a1{bottom:168.240000px;}
.yef{bottom:170.026500px;}
.y108{bottom:175.471500px;}
.y111{bottom:178.429500px;}
.yda{bottom:181.027500px;}
.y172{bottom:183.321000px;}
.yb3{bottom:183.805500px;}
.y77{bottom:185.230500px;}
.y9c{bottom:186.070500px;}
.ye7{bottom:188.848500px;}
.y23{bottom:188.902500px;}
.y6a{bottom:189.355500px;}
.yee{bottom:191.626500px;}
.y1a0{bottom:192.291000px;}
.y110{bottom:194.629500px;}
.y107{bottom:197.071500px;}
.yd9{bottom:202.627500px;}
.yb2{bottom:205.405500px;}
.y76{bottom:206.830500px;}
.y171{bottom:207.372000px;}
.y9b{bottom:207.670500px;}
.ye6{bottom:210.448500px;}
.y22{bottom:210.502500px;}
.y10f{bottom:210.829500px;}
.y69{bottom:210.955500px;}
.y19f{bottom:212.091000px;}
.yed{bottom:213.226500px;}
.y106{bottom:218.671500px;}
.yd8{bottom:224.227500px;}
.y1c5{bottom:226.570500px;}
.yb1{bottom:227.005500px;}
.y75{bottom:228.430500px;}
.y9a{bottom:229.270500px;}
.y170{bottom:231.423000px;}
.ye5{bottom:232.048500px;}
.y21{bottom:232.102500px;}
.y68{bottom:232.555500px;}
.yec{bottom:234.826500px;}
.y19e{bottom:236.142000px;}
.y105{bottom:240.271500px;}
.y1c4{bottom:244.570500px;}
.yd7{bottom:245.827500px;}
.yb0{bottom:248.605500px;}
.y74{bottom:250.030500px;}
.y99{bottom:250.870500px;}
.y57{bottom:253.648500px;}
.y20{bottom:253.702500px;}
.y67{bottom:254.155500px;}
.y16f{bottom:255.474000px;}
.y19d{bottom:255.942000px;}
.yeb{bottom:256.426500px;}
.y104{bottom:261.871500px;}
.y1c3{bottom:262.570500px;}
.yd6{bottom:267.427500px;}
.yaf{bottom:270.205500px;}
.y73{bottom:271.630500px;}
.y98{bottom:272.470500px;}
.ye4{bottom:275.248500px;}
.y1f{bottom:275.302500px;}
.y66{bottom:275.755500px;}
.y56{bottom:278.026500px;}
.y16e{bottom:279.525000px;}
.y19c{bottom:279.993000px;}
.y1c2{bottom:280.570500px;}
.y103{bottom:283.471500px;}
.yd5{bottom:289.027500px;}
.yae{bottom:291.805500px;}
.y97{bottom:294.070500px;}
.ye3{bottom:296.848500px;}
.y1e{bottom:296.902500px;}
.y65{bottom:297.355500px;}
.y1c1{bottom:298.570500px;}
.y55{bottom:299.626500px;}
.y19b{bottom:299.793000px;}
.y16d{bottom:303.576000px;}
.y102{bottom:305.071500px;}
.yd4{bottom:310.627500px;}
.yad{bottom:313.405500px;}
.y96{bottom:315.670500px;}
.y1c0{bottom:316.570500px;}
.y72{bottom:317.391000px;}
.ye2{bottom:318.448500px;}
.y54{bottom:321.226500px;}
.y1d{bottom:321.280500px;}
.y64{bottom:321.733500px;}
.y16c{bottom:323.376000px;}
.y19a{bottom:323.844000px;}
.y101{bottom:326.671500px;}
.y14a{bottom:332.227500px;}
.y1bf{bottom:334.570500px;}
.yac{bottom:335.005500px;}
.y95{bottom:337.270500px;}
.ye1{bottom:340.048500px;}
.y53{bottom:342.826500px;}
.y1c{bottom:342.880500px;}
.y63{bottom:343.333500px;}
.y199{bottom:343.644000px;}
.y16b{bottom:347.427000px;}
.y100{bottom:348.271500px;}
.y1be{bottom:352.570500px;}
.y149{bottom:353.827500px;}
.yd3{bottom:356.388000px;}
.yab{bottom:356.605500px;}
.y94{bottom:358.870500px;}
.ye0{bottom:361.648500px;}
.y71{bottom:364.164000px;}
.y52{bottom:364.426500px;}
.y1b{bottom:364.480500px;}
.y62{bottom:364.933500px;}
.y16a{bottom:367.227000px;}
.y198{bottom:367.695000px;}
.yff{bottom:369.871500px;}
.y1bd{bottom:370.570500px;}
.y148{bottom:375.427500px;}
.yaa{bottom:378.205500px;}
.y93{bottom:380.470500px;}
.ydf{bottom:383.248500px;}
.y51{bottom:386.026500px;}
.y1a{bottom:386.080500px;}
.y61{bottom:386.533500px;}
.y197{bottom:387.495000px;}
.y1bc{bottom:388.570500px;}
.y169{bottom:391.278000px;}
.yfe{bottom:391.471500px;}
.y10e{bottom:392.916000px;}
.y147{bottom:397.027500px;}
.ya9{bottom:399.805500px;}
.y92{bottom:402.070500px;}
.yd2{bottom:404.848500px;}
.y1bb{bottom:406.570500px;}
.y196{bottom:407.295000px;}
.y50{bottom:407.626500px;}
.y19{bottom:407.680500px;}
.y60{bottom:408.133500px;}
.y168{bottom:411.078000px;}
.y10d{bottom:412.266000px;}
.yfd{bottom:415.849500px;}
.y146{bottom:418.627500px;}
.ya8{bottom:421.405500px;}
.y91{bottom:423.670500px;}
.y1ba{bottom:424.570500px;}
.yd1{bottom:426.448500px;}
.y4f{bottom:429.226500px;}
.y18{bottom:429.280500px;}
.y5f{bottom:429.733500px;}
.y195{bottom:431.346000px;}
.y167{bottom:435.129000px;}
.yfc{bottom:437.449500px;}
.y145{bottom:440.227500px;}
.y1b9{bottom:442.570500px;}
.ya7{bottom:443.005500px;}
.y90{bottom:445.270500px;}
.yd0{bottom:448.048500px;}
.y4e{bottom:450.826500px;}
.y17{bottom:450.880500px;}
.y194{bottom:451.146000px;}
.yfb{bottom:459.049500px;}
.y166{bottom:459.180000px;}
.y1b8{bottom:460.570500px;}
.y144{bottom:461.827500px;}
.y5e{bottom:462.400500px;}
.ya6{bottom:464.605500px;}
.y8f{bottom:466.870500px;}
.ycf{bottom:469.648500px;}
.y4d{bottom:472.426500px;}
.y193{bottom:475.197000px;}
.y1b7{bottom:478.570500px;}
.yfa{bottom:480.649500px;}
.y165{bottom:483.231000px;}
.y143{bottom:483.427500px;}
.ya5{bottom:486.205500px;}
.y8e{bottom:488.470500px;}
.yce{bottom:491.248500px;}
.y4c{bottom:494.026500px;}
.y192{bottom:494.997000px;}
.y1b6{bottom:496.570500px;}
.y16{bottom:496.641000px;}
.yf9{bottom:502.249500px;}
.y164{bottom:503.031000px;}
.y142{bottom:505.027500px;}
.ya4{bottom:507.805500px;}
.y8d{bottom:510.070500px;}
.ycd{bottom:512.848500px;}
.y1b5{bottom:514.570500px;}
.y4b{bottom:515.626500px;}
.y191{bottom:519.048000px;}
.y163{bottom:522.831000px;}
.yf8{bottom:523.849500px;}
.y141{bottom:526.627500px;}
.ya3{bottom:529.405500px;}
.y8c{bottom:531.670500px;}
.y1b4{bottom:532.570500px;}
.ycc{bottom:534.448500px;}
.y4a{bottom:537.226500px;}
.y190{bottom:538.848000px;}
.yf7{bottom:545.449500px;}
.y162{bottom:546.882000px;}
.y140{bottom:548.227500px;}
.y1b3{bottom:550.570500px;}
.ya2{bottom:551.005500px;}
.y8b{bottom:553.270500px;}
.y15{bottom:555.976500px;}
.ycb{bottom:556.048500px;}
.y49{bottom:558.826500px;}
.y18f{bottom:562.899000px;}
.yf6{bottom:567.049500px;}
.y1b2{bottom:568.570500px;}
.y13f{bottom:569.827500px;}
.y161{bottom:570.933000px;}
.y124{bottom:572.605500px;}
.y8a{bottom:574.870500px;}
.y14{bottom:577.227000px;}
.yca{bottom:577.648500px;}
.y48{bottom:580.426500px;}
.y1b1{bottom:586.570500px;}
.y18e{bottom:586.950000px;}
.yf5{bottom:588.649500px;}
.y160{bottom:590.733000px;}
.y13e{bottom:591.427500px;}
.y123{bottom:594.205500px;}
.y13{bottom:595.227000px;}
.y89{bottom:596.470500px;}
.ya1{bottom:596.766000px;}
.yc9{bottom:599.248500px;}
.y47{bottom:602.026500px;}
.y1b0{bottom:604.570500px;}
.yf4{bottom:610.249500px;}
.y18d{bottom:611.001000px;}
.y13d{bottom:613.027500px;}
.y12{bottom:613.227000px;}
.y15f{bottom:614.784000px;}
.y122{bottom:615.805500px;}
.y88{bottom:618.070500px;}
.yc8{bottom:620.848500px;}
.y1af{bottom:622.570500px;}
.y46{bottom:623.626500px;}
.y18c{bottom:630.801000px;}
.y11{bottom:631.227000px;}
.y15e{bottom:634.584000px;}
.y13c{bottom:634.627500px;}
.y121{bottom:637.405500px;}
.y87{bottom:639.670500px;}
.y1ae{bottom:640.570500px;}
.yc7{bottom:642.448500px;}
.y45{bottom:645.226500px;}
.y18b{bottom:654.852000px;}
.yf3{bottom:656.010000px;}
.y13b{bottom:656.227500px;}
.y1ad{bottom:658.570500px;}
.y15d{bottom:658.635000px;}
.y120{bottom:659.005500px;}
.y10{bottom:661.227000px;}
.y86{bottom:661.270500px;}
.yc6{bottom:664.048500px;}
.y44{bottom:666.826500px;}
.y18a{bottom:674.652000px;}
.y1ac{bottom:676.570500px;}
.y13a{bottom:677.827500px;}
.y15c{bottom:678.435000px;}
.y11f{bottom:680.605500px;}
.y85{bottom:682.870500px;}
.yc5{bottom:685.648500px;}
.y43{bottom:688.426500px;}
.y1ab{bottom:694.570500px;}
.yf{bottom:694.752000px;}
.y189{bottom:698.703000px;}
.y139{bottom:699.427500px;}
.y11e{bottom:702.205500px;}
.y15b{bottom:702.486000px;}
.y84{bottom:704.470500px;}
.yc4{bottom:707.248500px;}
.y42{bottom:710.026500px;}
.ye{bottom:716.002500px;}
.y138{bottom:721.027500px;}
.y15a{bottom:722.286000px;}
.y188{bottom:722.754000px;}
.y11d{bottom:723.805500px;}
.y83{bottom:726.070500px;}
.yc3{bottom:728.848500px;}
.y41{bottom:731.626500px;}
.yd{bottom:734.002500px;}
.y1aa{bottom:736.056000px;}
.y187{bottom:742.554000px;}
.y137{bottom:742.627500px;}
.y11c{bottom:745.405500px;}
.y159{bottom:746.337000px;}
.y82{bottom:747.670500px;}
.yc2{bottom:750.448500px;}
.yc{bottom:752.002500px;}
.y40{bottom:753.226500px;}
.y136{bottom:764.227500px;}
.y186{bottom:766.605000px;}
.y11b{bottom:767.005500px;}
.y81{bottom:769.270500px;}
.yb{bottom:770.002500px;}
.y158{bottom:770.388000px;}
.yc1{bottom:772.048500px;}
.y3f{bottom:774.826500px;}
.y135{bottom:785.827500px;}
.y1a9{bottom:786.405000px;}
.ya{bottom:788.002500px;}
.y11a{bottom:788.605500px;}
.y157{bottom:790.188000px;}
.y185{bottom:790.656000px;}
.y80{bottom:790.870500px;}
.yc0{bottom:793.648500px;}
.y3e{bottom:796.426500px;}
.y134{bottom:807.427500px;}
.y119{bottom:810.205500px;}
.y1a8{bottom:810.456000px;}
.y156{bottom:814.239000px;}
.y184{bottom:814.707000px;}
.y7f{bottom:815.248500px;}
.y9{bottom:818.002500px;}
.y3d{bottom:818.026500px;}
.y133{bottom:829.027500px;}
.y1a7{bottom:830.256000px;}
.y118{bottom:831.805500px;}
.y155{bottom:834.039000px;}
.y183{bottom:834.507000px;}
.y7e{bottom:836.848500px;}
.y3c{bottom:839.626500px;}
.y132{bottom:850.627500px;}
.y117{bottom:853.405500px;}
.y182{bottom:854.307000px;}
.y154{bottom:858.090000px;}
.y7d{bottom:858.448500px;}
.y3b{bottom:861.226500px;}
.y131{bottom:872.227500px;}
.y70{bottom:873.672000px;}
.y1a6{bottom:874.107000px;}
.y116{bottom:875.005500px;}
.y153{bottom:877.890000px;}
.y181{bottom:878.358000px;}
.ybf{bottom:880.044000px;}
.y3a{bottom:882.826500px;}
.y6f{bottom:893.022000px;}
.y130{bottom:893.827500px;}
.y180{bottom:898.158000px;}
.y152{bottom:901.941000px;}
.ybe{bottom:902.041500px;}
.y39{bottom:904.426500px;}
.y8{bottom:905.200500px;}
.y12f{bottom:915.427500px;}
.y1a5{bottom:917.958000px;}
.y115{bottom:920.766000px;}
.y151{bottom:921.741000px;}
.y17f{bottom:922.209000px;}
.ybd{bottom:924.034500px;}
.y7{bottom:925.000500px;}
.y38{bottom:926.026500px;}
.y12e{bottom:937.027500px;}
.y150{bottom:941.541000px;}
.y17e{bottom:942.009000px;}
.y6{bottom:944.800500px;}
.ybc{bottom:946.036500px;}
.y37{bottom:947.626500px;}
.y12d{bottom:958.627500px;}
.y14f{bottom:965.592000px;}
.y17d{bottom:966.060000px;}
.ybb{bottom:968.034000px;}
.y36{bottom:969.226500px;}
.y5{bottom:977.355000px;}
.y12c{bottom:980.227500px;}
.y17c{bottom:985.860000px;}
.y14e{bottom:989.643000px;}
.yba{bottom:990.031500px;}
.y35{bottom:990.826500px;}
.y4{bottom:997.155000px;}
.y14d{bottom:1009.443000px;}
.y17b{bottom:1009.911000px;}
.yb9{bottom:1012.029000px;}
.y34{bottom:1012.426500px;}
.y12b{bottom:1025.988000px;}
.y3{bottom:1026.883500px;}
.y17a{bottom:1033.962000px;}
.y33{bottom:1034.026500px;}
.y14c{bottom:1052.166000px;}
.y1a4{bottom:1053.762000px;}
.y2{bottom:1053.883500px;}
.y32{bottom:1055.626500px;}
.y179{bottom:1058.013000px;}
.y12a{bottom:1074.448500px;}
.y31{bottom:1077.226500px;}
.y178{bottom:1077.813000px;}
.y1{bottom:1080.574500px;}
.y30{bottom:1098.826500px;}
.y177{bottom:1101.864000px;}
.y5d{bottom:1102.426500px;}
.y2f{bottom:1120.426500px;}
.y176{bottom:1121.664000px;}
.y5c{bottom:1121.776500px;}
.y29{bottom:1165.785000px;}
.y175{bottom:1174.505383px;}
.yf1{bottom:1176.815383px;}
.y58{bottom:1176.815533px;}
.y10b{bottom:1177.970233px;}
.y129{bottom:1177.970683px;}
.y28{bottom:1180.185000px;}
.yb7{bottom:1182.013333px;}
.y127{bottom:1182.590683px;}
.y7b{bottom:1183.745683px;}
.y125{bottom:1184.900983px;}
.y114{bottom:1185.844500px;}
.y1a3{bottom:1185.876000px;}
.y6e{bottom:1186.372500px;}
.ya0{bottom:1186.966500px;}
.y14b{bottom:1187.014500px;}
.yde{bottom:1187.560500px;}
.y27{bottom:1194.585000px;}
.y26{bottom:1208.985000px;}
.y2a{bottom:1244.590500px;}
.h13{height:13.200074px;}
.h16{height:16.188000px;}
.h11{height:16.969500px;}
.h10{height:27.117188px;}
.h17{height:35.835938px;}
.hd{height:36.017578px;}
.he{height:38.021484px;}
.hf{height:38.027484px;}
.hc{height:39.281250px;}
.h15{height:40.014000px;}
.h8{height:44.460000px;}
.h9{height:45.720000px;}
.h5{height:46.662000px;}
.h14{height:47.472000px;}
.h6{height:48.312000px;}
.h4{height:48.906000px;}
.h12{height:52.818750px;}
.ha{height:53.352000px;}
.h7{height:54.864000px;}
.hb{height:64.080000px;}
.h3{height:84.960000px;}
.h2{height:84.961200px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w3{width:5.760000px;}
.w5{width:11.519985px;}
.w4{width:456.896550px;}
.w2{width:456.896700px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:83.727000px;}
.x1{left:85.419000px;}
.x2{left:102.045000px;}
.x17{left:120.102000px;}
.x14{left:121.179000px;}
.x15{left:123.829500px;}
.xd{left:128.785500px;}
.x16{left:142.297500px;}
.x5{left:150.552000px;}
.x6{left:151.599000px;}
.xc{left:191.730000px;}
.x10{left:210.054000px;}
.x19{left:220.756500px;}
.x12{left:227.430000px;}
.x13{left:232.473000px;}
.x11{left:237.622500px;}
.x3{left:257.238000px;}
.x9{left:304.104000px;}
.x18{left:311.446500px;}
.xa{left:384.739500px;}
.x8{left:421.941000px;}
.xf{left:426.096000px;}
.xe{left:440.696274px;}
.x7{left:443.576294px;}
.x4{left:727.543500px;}
@media print{
.v2{vertical-align:-25.344000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.344000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:12.389333pt;}
.ls2{letter-spacing:39.157333pt;}
.ws1{word-spacing:-34.901333pt;}
.ws4{word-spacing:-27.072000pt;}
.ws0{word-spacing:-17.792000pt;}
.ws1f{word-spacing:-15.269333pt;}
.ws2{word-spacing:-15.018667pt;}
.ws16{word-spacing:-12.736000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws1e{word-spacing:-11.674667pt;}
.ws5{word-spacing:-8.666667pt;}
.ws17{word-spacing:-8.490667pt;}
.wsc{word-spacing:-2.293333pt;}
.ws9{word-spacing:-1.765333pt;}
.wsb{word-spacing:-1.018667pt;}
.ws13{word-spacing:-0.624000pt;}
.ws8{word-spacing:-0.517333pt;}
.wsa{word-spacing:-0.485333pt;}
.ws11{word-spacing:-0.432000pt;}
.wsd{word-spacing:-0.245333pt;}
.ws7{word-spacing:-0.202667pt;}
.ws6{word-spacing:0.000000pt;}
.ws18{word-spacing:0.032000pt;}
.ws1a{word-spacing:0.048000pt;}
.ws1c{word-spacing:0.069333pt;}
.ws19{word-spacing:0.074667pt;}
.ws1b{word-spacing:0.096000pt;}
.ws1d{word-spacing:0.128000pt;}
.ws15{word-spacing:0.378667pt;}
.wsf{word-spacing:0.528000pt;}
.wse{word-spacing:0.736000pt;}
.ws10{word-spacing:0.741333pt;}
.ws12{word-spacing:1.061333pt;}
.ws14{word-spacing:1.904000pt;}
._f{margin-left:-6.586667pt;}
._c{margin-left:-4.848000pt;}
._5{margin-left:-3.946667pt;}
._0{margin-left:-2.293333pt;}
._3{margin-left:-0.976000pt;}
._2{width:1.221333pt;}
._1{width:2.373333pt;}
._9{width:3.658603pt;}
._4{width:4.586667pt;}
._7{width:5.856000pt;}
._6{width:7.285312pt;}
._8{width:8.442688pt;}
._b{width:9.354496pt;}
._a{width:10.917312pt;}
._d{width:11.813312pt;}
._11{width:13.696000pt;}
._e{width:16.160000pt;}
._10{width:21.690688pt;}
.fs5{font-size:32.000000pt;}
.fs7{font-size:34.666667pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:2.912000pt;}
.y126{bottom:3.347867pt;}
.yb8{bottom:3.348000pt;}
.y7c{bottom:3.348133pt;}
.y59{bottom:3.348267pt;}
.yf2{bottom:3.348400pt;}
.y10c{bottom:3.348533pt;}
.y1c7{bottom:3.840267pt;}
.y2e{bottom:16.606667pt;}
.y1c9{bottom:17.534667pt;}
.y1c8{bottom:30.334667pt;}
.y5a{bottom:36.266764pt;}
.y2d{bottom:39.192000pt;}
.y1c6{bottom:50.226498pt;}
.y2c{bottom:56.389333pt;}
.y2b{bottom:80.602667pt;}
.ydd{bottom:103.313333pt;}
.yb6{bottom:105.782667pt;}
.y7a{bottom:107.049333pt;}
.y9f{bottom:107.796000pt;}
.y6d{bottom:108.246667pt;}
.yea{bottom:110.265333pt;}
.y113{bottom:110.366667pt;}
.y128{bottom:112.734667pt;}
.y10a{bottom:117.574667pt;}
.ydc{bottom:122.513333pt;}
.yb5{bottom:124.982667pt;}
.y79{bottom:126.249333pt;}
.y9e{bottom:126.996000pt;}
.y174{bottom:127.752000pt;}
.ye9{bottom:129.465333pt;}
.y25{bottom:129.513333pt;}
.y112{bottom:129.566667pt;}
.y6c{bottom:129.916000pt;}
.yf0{bottom:131.934667pt;}
.y1a2{bottom:131.946667pt;}
.y109{bottom:136.774667pt;}
.ydb{bottom:141.713333pt;}
.yb4{bottom:144.182667pt;}
.y173{bottom:145.352000pt;}
.y78{bottom:145.449333pt;}
.y9d{bottom:146.196000pt;}
.ye8{bottom:148.665333pt;}
.y24{bottom:148.713333pt;}
.y6b{bottom:149.116000pt;}
.y1a1{bottom:149.546667pt;}
.yef{bottom:151.134667pt;}
.y108{bottom:155.974667pt;}
.y111{bottom:158.604000pt;}
.yda{bottom:160.913333pt;}
.y172{bottom:162.952000pt;}
.yb3{bottom:163.382667pt;}
.y77{bottom:164.649333pt;}
.y9c{bottom:165.396000pt;}
.ye7{bottom:167.865333pt;}
.y23{bottom:167.913333pt;}
.y6a{bottom:168.316000pt;}
.yee{bottom:170.334667pt;}
.y1a0{bottom:170.925333pt;}
.y110{bottom:173.004000pt;}
.y107{bottom:175.174667pt;}
.yd9{bottom:180.113333pt;}
.yb2{bottom:182.582667pt;}
.y76{bottom:183.849333pt;}
.y171{bottom:184.330667pt;}
.y9b{bottom:184.596000pt;}
.ye6{bottom:187.065333pt;}
.y22{bottom:187.113333pt;}
.y10f{bottom:187.404000pt;}
.y69{bottom:187.516000pt;}
.y19f{bottom:188.525333pt;}
.yed{bottom:189.534667pt;}
.y106{bottom:194.374667pt;}
.yd8{bottom:199.313333pt;}
.y1c5{bottom:201.396000pt;}
.yb1{bottom:201.782667pt;}
.y75{bottom:203.049333pt;}
.y9a{bottom:203.796000pt;}
.y170{bottom:205.709333pt;}
.ye5{bottom:206.265333pt;}
.y21{bottom:206.313333pt;}
.y68{bottom:206.716000pt;}
.yec{bottom:208.734667pt;}
.y19e{bottom:209.904000pt;}
.y105{bottom:213.574667pt;}
.y1c4{bottom:217.396000pt;}
.yd7{bottom:218.513333pt;}
.yb0{bottom:220.982667pt;}
.y74{bottom:222.249333pt;}
.y99{bottom:222.996000pt;}
.y57{bottom:225.465333pt;}
.y20{bottom:225.513333pt;}
.y67{bottom:225.916000pt;}
.y16f{bottom:227.088000pt;}
.y19d{bottom:227.504000pt;}
.yeb{bottom:227.934667pt;}
.y104{bottom:232.774667pt;}
.y1c3{bottom:233.396000pt;}
.yd6{bottom:237.713333pt;}
.yaf{bottom:240.182667pt;}
.y73{bottom:241.449333pt;}
.y98{bottom:242.196000pt;}
.ye4{bottom:244.665333pt;}
.y1f{bottom:244.713333pt;}
.y66{bottom:245.116000pt;}
.y56{bottom:247.134667pt;}
.y16e{bottom:248.466667pt;}
.y19c{bottom:248.882667pt;}
.y1c2{bottom:249.396000pt;}
.y103{bottom:251.974667pt;}
.yd5{bottom:256.913333pt;}
.yae{bottom:259.382667pt;}
.y97{bottom:261.396000pt;}
.ye3{bottom:263.865333pt;}
.y1e{bottom:263.913333pt;}
.y65{bottom:264.316000pt;}
.y1c1{bottom:265.396000pt;}
.y55{bottom:266.334667pt;}
.y19b{bottom:266.482667pt;}
.y16d{bottom:269.845333pt;}
.y102{bottom:271.174667pt;}
.yd4{bottom:276.113333pt;}
.yad{bottom:278.582667pt;}
.y96{bottom:280.596000pt;}
.y1c0{bottom:281.396000pt;}
.y72{bottom:282.125333pt;}
.ye2{bottom:283.065333pt;}
.y54{bottom:285.534667pt;}
.y1d{bottom:285.582667pt;}
.y64{bottom:285.985333pt;}
.y16c{bottom:287.445333pt;}
.y19a{bottom:287.861333pt;}
.y101{bottom:290.374667pt;}
.y14a{bottom:295.313333pt;}
.y1bf{bottom:297.396000pt;}
.yac{bottom:297.782667pt;}
.y95{bottom:299.796000pt;}
.ye1{bottom:302.265333pt;}
.y53{bottom:304.734667pt;}
.y1c{bottom:304.782667pt;}
.y63{bottom:305.185333pt;}
.y199{bottom:305.461333pt;}
.y16b{bottom:308.824000pt;}
.y100{bottom:309.574667pt;}
.y1be{bottom:313.396000pt;}
.y149{bottom:314.513333pt;}
.yd3{bottom:316.789333pt;}
.yab{bottom:316.982667pt;}
.y94{bottom:318.996000pt;}
.ye0{bottom:321.465333pt;}
.y71{bottom:323.701333pt;}
.y52{bottom:323.934667pt;}
.y1b{bottom:323.982667pt;}
.y62{bottom:324.385333pt;}
.y16a{bottom:326.424000pt;}
.y198{bottom:326.840000pt;}
.yff{bottom:328.774667pt;}
.y1bd{bottom:329.396000pt;}
.y148{bottom:333.713333pt;}
.yaa{bottom:336.182667pt;}
.y93{bottom:338.196000pt;}
.ydf{bottom:340.665333pt;}
.y51{bottom:343.134667pt;}
.y1a{bottom:343.182667pt;}
.y61{bottom:343.585333pt;}
.y197{bottom:344.440000pt;}
.y1bc{bottom:345.396000pt;}
.y169{bottom:347.802667pt;}
.yfe{bottom:347.974667pt;}
.y10e{bottom:349.258667pt;}
.y147{bottom:352.913333pt;}
.ya9{bottom:355.382667pt;}
.y92{bottom:357.396000pt;}
.yd2{bottom:359.865333pt;}
.y1bb{bottom:361.396000pt;}
.y196{bottom:362.040000pt;}
.y50{bottom:362.334667pt;}
.y19{bottom:362.382667pt;}
.y60{bottom:362.785333pt;}
.y168{bottom:365.402667pt;}
.y10d{bottom:366.458667pt;}
.yfd{bottom:369.644000pt;}
.y146{bottom:372.113333pt;}
.ya8{bottom:374.582667pt;}
.y91{bottom:376.596000pt;}
.y1ba{bottom:377.396000pt;}
.yd1{bottom:379.065333pt;}
.y4f{bottom:381.534667pt;}
.y18{bottom:381.582667pt;}
.y5f{bottom:381.985333pt;}
.y195{bottom:383.418667pt;}
.y167{bottom:386.781333pt;}
.yfc{bottom:388.844000pt;}
.y145{bottom:391.313333pt;}
.y1b9{bottom:393.396000pt;}
.ya7{bottom:393.782667pt;}
.y90{bottom:395.796000pt;}
.yd0{bottom:398.265333pt;}
.y4e{bottom:400.734667pt;}
.y17{bottom:400.782667pt;}
.y194{bottom:401.018667pt;}
.yfb{bottom:408.044000pt;}
.y166{bottom:408.160000pt;}
.y1b8{bottom:409.396000pt;}
.y144{bottom:410.513333pt;}
.y5e{bottom:411.022667pt;}
.ya6{bottom:412.982667pt;}
.y8f{bottom:414.996000pt;}
.ycf{bottom:417.465333pt;}
.y4d{bottom:419.934667pt;}
.y193{bottom:422.397333pt;}
.y1b7{bottom:425.396000pt;}
.yfa{bottom:427.244000pt;}
.y165{bottom:429.538667pt;}
.y143{bottom:429.713333pt;}
.ya5{bottom:432.182667pt;}
.y8e{bottom:434.196000pt;}
.yce{bottom:436.665333pt;}
.y4c{bottom:439.134667pt;}
.y192{bottom:439.997333pt;}
.y1b6{bottom:441.396000pt;}
.y16{bottom:441.458667pt;}
.yf9{bottom:446.444000pt;}
.y164{bottom:447.138667pt;}
.y142{bottom:448.913333pt;}
.ya4{bottom:451.382667pt;}
.y8d{bottom:453.396000pt;}
.ycd{bottom:455.865333pt;}
.y1b5{bottom:457.396000pt;}
.y4b{bottom:458.334667pt;}
.y191{bottom:461.376000pt;}
.y163{bottom:464.738667pt;}
.yf8{bottom:465.644000pt;}
.y141{bottom:468.113333pt;}
.ya3{bottom:470.582667pt;}
.y8c{bottom:472.596000pt;}
.y1b4{bottom:473.396000pt;}
.ycc{bottom:475.065333pt;}
.y4a{bottom:477.534667pt;}
.y190{bottom:478.976000pt;}
.yf7{bottom:484.844000pt;}
.y162{bottom:486.117333pt;}
.y140{bottom:487.313333pt;}
.y1b3{bottom:489.396000pt;}
.ya2{bottom:489.782667pt;}
.y8b{bottom:491.796000pt;}
.y15{bottom:494.201333pt;}
.ycb{bottom:494.265333pt;}
.y49{bottom:496.734667pt;}
.y18f{bottom:500.354667pt;}
.yf6{bottom:504.044000pt;}
.y1b2{bottom:505.396000pt;}
.y13f{bottom:506.513333pt;}
.y161{bottom:507.496000pt;}
.y124{bottom:508.982667pt;}
.y8a{bottom:510.996000pt;}
.y14{bottom:513.090667pt;}
.yca{bottom:513.465333pt;}
.y48{bottom:515.934667pt;}
.y1b1{bottom:521.396000pt;}
.y18e{bottom:521.733333pt;}
.yf5{bottom:523.244000pt;}
.y160{bottom:525.096000pt;}
.y13e{bottom:525.713333pt;}
.y123{bottom:528.182667pt;}
.y13{bottom:529.090667pt;}
.y89{bottom:530.196000pt;}
.ya1{bottom:530.458667pt;}
.yc9{bottom:532.665333pt;}
.y47{bottom:535.134667pt;}
.y1b0{bottom:537.396000pt;}
.yf4{bottom:542.444000pt;}
.y18d{bottom:543.112000pt;}
.y13d{bottom:544.913333pt;}
.y12{bottom:545.090667pt;}
.y15f{bottom:546.474667pt;}
.y122{bottom:547.382667pt;}
.y88{bottom:549.396000pt;}
.yc8{bottom:551.865333pt;}
.y1af{bottom:553.396000pt;}
.y46{bottom:554.334667pt;}
.y18c{bottom:560.712000pt;}
.y11{bottom:561.090667pt;}
.y15e{bottom:564.074667pt;}
.y13c{bottom:564.113333pt;}
.y121{bottom:566.582667pt;}
.y87{bottom:568.596000pt;}
.y1ae{bottom:569.396000pt;}
.yc7{bottom:571.065333pt;}
.y45{bottom:573.534667pt;}
.y18b{bottom:582.090667pt;}
.yf3{bottom:583.120000pt;}
.y13b{bottom:583.313333pt;}
.y1ad{bottom:585.396000pt;}
.y15d{bottom:585.453333pt;}
.y120{bottom:585.782667pt;}
.y10{bottom:587.757333pt;}
.y86{bottom:587.796000pt;}
.yc6{bottom:590.265333pt;}
.y44{bottom:592.734667pt;}
.y18a{bottom:599.690667pt;}
.y1ac{bottom:601.396000pt;}
.y13a{bottom:602.513333pt;}
.y15c{bottom:603.053333pt;}
.y11f{bottom:604.982667pt;}
.y85{bottom:606.996000pt;}
.yc5{bottom:609.465333pt;}
.y43{bottom:611.934667pt;}
.y1ab{bottom:617.396000pt;}
.yf{bottom:617.557333pt;}
.y189{bottom:621.069333pt;}
.y139{bottom:621.713333pt;}
.y11e{bottom:624.182667pt;}
.y15b{bottom:624.432000pt;}
.y84{bottom:626.196000pt;}
.yc4{bottom:628.665333pt;}
.y42{bottom:631.134667pt;}
.ye{bottom:636.446667pt;}
.y138{bottom:640.913333pt;}
.y15a{bottom:642.032000pt;}
.y188{bottom:642.448000pt;}
.y11d{bottom:643.382667pt;}
.y83{bottom:645.396000pt;}
.yc3{bottom:647.865333pt;}
.y41{bottom:650.334667pt;}
.yd{bottom:652.446667pt;}
.y1aa{bottom:654.272000pt;}
.y187{bottom:660.048000pt;}
.y137{bottom:660.113333pt;}
.y11c{bottom:662.582667pt;}
.y159{bottom:663.410667pt;}
.y82{bottom:664.596000pt;}
.yc2{bottom:667.065333pt;}
.yc{bottom:668.446667pt;}
.y40{bottom:669.534667pt;}
.y136{bottom:679.313333pt;}
.y186{bottom:681.426667pt;}
.y11b{bottom:681.782667pt;}
.y81{bottom:683.796000pt;}
.yb{bottom:684.446667pt;}
.y158{bottom:684.789333pt;}
.yc1{bottom:686.265333pt;}
.y3f{bottom:688.734667pt;}
.y135{bottom:698.513333pt;}
.y1a9{bottom:699.026667pt;}
.ya{bottom:700.446667pt;}
.y11a{bottom:700.982667pt;}
.y157{bottom:702.389333pt;}
.y185{bottom:702.805333pt;}
.y80{bottom:702.996000pt;}
.yc0{bottom:705.465333pt;}
.y3e{bottom:707.934667pt;}
.y134{bottom:717.713333pt;}
.y119{bottom:720.182667pt;}
.y1a8{bottom:720.405333pt;}
.y156{bottom:723.768000pt;}
.y184{bottom:724.184000pt;}
.y7f{bottom:724.665333pt;}
.y9{bottom:727.113333pt;}
.y3d{bottom:727.134667pt;}
.y133{bottom:736.913333pt;}
.y1a7{bottom:738.005333pt;}
.y118{bottom:739.382667pt;}
.y155{bottom:741.368000pt;}
.y183{bottom:741.784000pt;}
.y7e{bottom:743.865333pt;}
.y3c{bottom:746.334667pt;}
.y132{bottom:756.113333pt;}
.y117{bottom:758.582667pt;}
.y182{bottom:759.384000pt;}
.y154{bottom:762.746667pt;}
.y7d{bottom:763.065333pt;}
.y3b{bottom:765.534667pt;}
.y131{bottom:775.313333pt;}
.y70{bottom:776.597333pt;}
.y1a6{bottom:776.984000pt;}
.y116{bottom:777.782667pt;}
.y153{bottom:780.346667pt;}
.y181{bottom:780.762667pt;}
.ybf{bottom:782.261333pt;}
.y3a{bottom:784.734667pt;}
.y6f{bottom:793.797333pt;}
.y130{bottom:794.513333pt;}
.y180{bottom:798.362667pt;}
.y152{bottom:801.725333pt;}
.ybe{bottom:801.814667pt;}
.y39{bottom:803.934667pt;}
.y8{bottom:804.622667pt;}
.y12f{bottom:813.713333pt;}
.y1a5{bottom:815.962667pt;}
.y115{bottom:818.458667pt;}
.y151{bottom:819.325333pt;}
.y17f{bottom:819.741333pt;}
.ybd{bottom:821.364000pt;}
.y7{bottom:822.222667pt;}
.y38{bottom:823.134667pt;}
.y12e{bottom:832.913333pt;}
.y150{bottom:836.925333pt;}
.y17e{bottom:837.341333pt;}
.y6{bottom:839.822667pt;}
.ybc{bottom:840.921333pt;}
.y37{bottom:842.334667pt;}
.y12d{bottom:852.113333pt;}
.y14f{bottom:858.304000pt;}
.y17d{bottom:858.720000pt;}
.ybb{bottom:860.474667pt;}
.y36{bottom:861.534667pt;}
.y5{bottom:868.760000pt;}
.y12c{bottom:871.313333pt;}
.y17c{bottom:876.320000pt;}
.y14e{bottom:879.682667pt;}
.yba{bottom:880.028000pt;}
.y35{bottom:880.734667pt;}
.y4{bottom:886.360000pt;}
.y14d{bottom:897.282667pt;}
.y17b{bottom:897.698667pt;}
.yb9{bottom:899.581333pt;}
.y34{bottom:899.934667pt;}
.y12b{bottom:911.989333pt;}
.y3{bottom:912.785333pt;}
.y17a{bottom:919.077333pt;}
.y33{bottom:919.134667pt;}
.y14c{bottom:935.258667pt;}
.y1a4{bottom:936.677333pt;}
.y2{bottom:936.785333pt;}
.y32{bottom:938.334667pt;}
.y179{bottom:940.456000pt;}
.y12a{bottom:955.065333pt;}
.y31{bottom:957.534667pt;}
.y178{bottom:958.056000pt;}
.y1{bottom:960.510667pt;}
.y30{bottom:976.734667pt;}
.y177{bottom:979.434667pt;}
.y5d{bottom:979.934667pt;}
.y2f{bottom:995.934667pt;}
.y176{bottom:997.034667pt;}
.y5c{bottom:997.134667pt;}
.y29{bottom:1036.253333pt;}
.y175{bottom:1044.004785pt;}
.yf1{bottom:1046.058118pt;}
.y58{bottom:1046.058252pt;}
.y10b{bottom:1047.084652pt;}
.y129{bottom:1047.085052pt;}
.y28{bottom:1049.053333pt;}
.yb7{bottom:1050.678518pt;}
.y127{bottom:1051.191718pt;}
.y7b{bottom:1052.218385pt;}
.y125{bottom:1053.245318pt;}
.y114{bottom:1054.084000pt;}
.y1a3{bottom:1054.112000pt;}
.y6e{bottom:1054.553333pt;}
.ya0{bottom:1055.081333pt;}
.y14b{bottom:1055.124000pt;}
.yde{bottom:1055.609333pt;}
.y27{bottom:1061.853333pt;}
.y26{bottom:1074.653333pt;}
.y2a{bottom:1106.302667pt;}
.h13{height:11.733399pt;}
.h16{height:14.389333pt;}
.h11{height:15.084000pt;}
.h10{height:24.104167pt;}
.h17{height:31.854167pt;}
.hd{height:32.015625pt;}
.he{height:33.796875pt;}
.hf{height:33.802208pt;}
.hc{height:34.916667pt;}
.h15{height:35.568000pt;}
.h8{height:39.520000pt;}
.h9{height:40.640000pt;}
.h5{height:41.477333pt;}
.h14{height:42.197333pt;}
.h6{height:42.944000pt;}
.h4{height:43.472000pt;}
.h12{height:46.950000pt;}
.ha{height:47.424000pt;}
.h7{height:48.768000pt;}
.hb{height:56.960000pt;}
.h3{height:75.520000pt;}
.h2{height:75.521067pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w3{width:5.120000pt;}
.w5{width:10.239987pt;}
.w4{width:406.130267pt;}
.w2{width:406.130400pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:74.424000pt;}
.x1{left:75.928000pt;}
.x2{left:90.706667pt;}
.x17{left:106.757333pt;}
.x14{left:107.714667pt;}
.x15{left:110.070667pt;}
.xd{left:114.476000pt;}
.x16{left:126.486667pt;}
.x5{left:133.824000pt;}
.x6{left:134.754667pt;}
.xc{left:170.426667pt;}
.x10{left:186.714667pt;}
.x19{left:196.228000pt;}
.x12{left:202.160000pt;}
.x13{left:206.642667pt;}
.x11{left:211.220000pt;}
.x3{left:228.656000pt;}
.x9{left:270.314667pt;}
.x18{left:276.841333pt;}
.xa{left:341.990667pt;}
.x8{left:375.058667pt;}
.xf{left:378.752000pt;}
.xe{left:391.730021pt;}
.x7{left:394.290039pt;}
.x4{left:646.705333pt;}
}




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