
    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_9cd37966d05563dc0f6b6a23.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_522b224e07b138585a0ca931.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708008;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_c914d78d64f078f83ad9ee0d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.970703;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_d2e9efd9d03aed044cf52929.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.970703;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_a5b98569bd82b29f67e44cbe.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1d33a5df9fe55c66626bbf98.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.207031;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_0f7d073f95441a593ba8bc10.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.207031;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_bf876e0c1e06d5b25f43f353.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4640a62eac44ef3b938e8862.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_78d747d377f49d3583a41470.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_d2c0448d7b3a3b0474afdf6f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708008;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.003906;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_af6ed04d98cc21863ff3d3e5.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.311035;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_3a8fc00e505aefdf3b0f3414.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_4260ef41dcac1d4b617849e4.woff2')format("woff");}.fff{font-family:fff;line-height:1.093262;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_54be42a53580d2f1ca92ee96.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c5966cd5ce06491f5864c77a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.688477;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_ea9f9f895915ccc527689d04.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_a45ea0d292c0525421d3ac0d.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.108000;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_d5eebfe4ffbb6eaf15bdacc7.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.129000;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_3f044cb482c7a5ca5fad64df.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.093000;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_33acc5ca2fff06859f2f0e44.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_05997b714e56cfa04b734015.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.698242;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_5d1da60de0a4cfd7d2e47094.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;}
.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);}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,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);}
.v1{vertical-align:-47.520000px;}
.v3{vertical-align:-20.879992px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.359989px;}
.ls13{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.010641px;}
.ls1{letter-spacing:0.020880px;}
.ls5{letter-spacing:0.026496px;}
.lsd{letter-spacing:0.034560px;}
.lsa{letter-spacing:0.088560px;}
.ls8{letter-spacing:0.095760px;}
.lsf{letter-spacing:0.096000px;}
.ls16{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.178800px;}
.lsb{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.189257px;}
.ls1f{letter-spacing:0.189300px;}
.ls4{letter-spacing:0.215760px;}
.ls11{letter-spacing:0.244200px;}
.ls9{letter-spacing:0.265680px;}
.lse{letter-spacing:0.265800px;}
.ls1c{letter-spacing:0.272340px;}
.ls15{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.378514px;}
.ls1e{letter-spacing:0.378600px;}
.ls6{letter-spacing:0.445680px;}
.ls3{letter-spacing:0.488880px;}
.ls2{letter-spacing:0.503280px;}
.ls12{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.815760px;}
.ls21{letter-spacing:2.159999px;}
.ls1a{letter-spacing:3.599999px;}
.ls22{letter-spacing:5.909758px;}
.ls17{letter-spacing:6.659997px;}
.ls18{letter-spacing:7.379997px;}
.ls1d{letter-spacing:12.239995px;}
.ls7{letter-spacing:497.245680px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.999993px;}
.wsa{word-spacing:-17.712000px;}
.ws7{word-spacing:-15.915711px;}
.ws8{word-spacing:-15.343320px;}
.ws5{word-spacing:-15.277920px;}
.ws3{word-spacing:-15.144192px;}
.ws4{word-spacing:-15.133680px;}
.ws2{word-spacing:-15.099120px;}
.wse{word-spacing:-14.939994px;}
.wsc{word-spacing:-14.219994px;}
.ws6{word-spacing:-14.176512px;}
.ws1{word-spacing:-14.134320px;}
.wsb{word-spacing:-12.059995px;}
.wsf{word-spacing:-9.719996px;}
.ws0{word-spacing:0.000000px;}
._11{margin-left:-4.319998px;}
._2{margin-left:-3.051312px;}
._1{margin-left:-1.302480px;}
._0{width:1.229481px;}
._4{width:3.124224px;}
._3{width:4.181760px;}
._5{width:5.208615px;}
._6{width:6.987303px;}
._c{width:7.996176px;}
._a{width:9.216000px;}
._b{width:11.154519px;}
._15{width:12.455995px;}
._e{width:13.463995px;}
._f{width:14.527549px;}
._10{width:15.696992px;}
._17{width:16.773144px;}
._12{width:19.806473px;}
._18{width:21.076550px;}
._1d{width:22.267433px;}
._13{width:23.471991px;}
._14{width:24.834508px;}
._1e{width:25.847990px;}
._16{width:26.855989px;}
._1c{width:28.002507px;}
._d{width:29.094480px;}
._8{width:30.384000px;}
._9{width:32.449037px;}
._1f{width:34.245885px;}
._19{width:36.503985px;}
._1b{width:42.473502px;}
._1a{width:43.998463px;}
._7{width:161.796000px;}
._20{width:1415.645434px;}
.fca{color:rgb(31,78,121);}
.fc9{color:transparent;}
.fc8{color:rgb(0,86,150);}
.fcb{color:rgb(0,32,96);}
.fc7{color:rgb(0,32,96);}
.fc6{color:rgb(128,0,0);}
.fc5{color:rgb(0,0,153);}
.fc4{color:rgb(0,0,128);}
.fc3{color:rgb(165,0,33);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(192,0,0);}
.fc0{color:rgb(0,102,204);}
.fs13{font-size:38.879984px;}
.fs11{font-size:48.239981px;}
.fs9{font-size:48.240000px;}
.fsa{font-size:48.384000px;}
.fsb{font-size:50.848916px;}
.fs12{font-size:56.879977px;}
.fs10{font-size:59.759976px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:59.904000px;}
.fs14{font-size:66.239974px;}
.fsc{font-size:66.240000px;}
.fse{font-size:69.822393px;}
.fsf{font-size:71.999971px;}
.fsd{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs7{font-size:77.904000px;}
.fs4{font-size:81.965417px;}
.fs5{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.yb9{bottom:3.240007px;}
.ybc{bottom:3.600014px;}
.y126{bottom:4.320029px;}
.yf1{bottom:4.320030px;}
.ya0{bottom:7.380000px;}
.y79{bottom:7.410000px;}
.yb2{bottom:14.040000px;}
.y82{bottom:14.400000px;}
.y7f{bottom:14.610000px;}
.ya3{bottom:14.760000px;}
.y78{bottom:31.170000px;}
.y9f{bottom:31.320000px;}
.y6d{bottom:34.020000px;}
.yb1{bottom:37.980000px;}
.ya2{bottom:38.520000px;}
.y7e{bottom:38.550000px;}
.y6c{bottom:46.080000px;}
.y9e{bottom:55.116000px;}
.y81{bottom:55.980000px;}
.y83{bottom:56.160000px;}
.ybf{bottom:57.720277px;}
.y6b{bottom:58.140000px;}
.yb0{bottom:61.740000px;}
.y77{bottom:61.950000px;}
.y7d{bottom:62.310000px;}
.y6a{bottom:70.020000px;}
.yf0{bottom:70.320240px;}
.y125{bottom:73.740240px;}
.yef{bottom:74.640270px;}
.yee{bottom:77.699969px;}
.y124{bottom:78.060269px;}
.ybe{bottom:78.420269px;}
.y69{bottom:82.080000px;}
.yaf{bottom:85.500000px;}
.y76{bottom:85.710000px;}
.y7c{bottom:86.070000px;}
.y84{bottom:93.960000px;}
.y68{bottom:94.140000px;}
.ybd{bottom:98.400261px;}
.y67{bottom:106.020000px;}
.yae{bottom:109.305000px;}
.y75{bottom:109.470000px;}
.y9d{bottom:109.650000px;}
.y7b{bottom:109.830000px;}
.ya1{bottom:110.010000px;}
.yb3{bottom:110.025000px;}
.ybb{bottom:111.900240px;}
.yba{bottom:115.500254px;}
.y66{bottom:118.080000px;}
.yb8{bottom:129.540240px;}
.y65{bottom:130.140000px;}
.y147{bottom:131.339947px;}
.y121{bottom:131.340247px;}
.yb7{bottom:132.780247px;}
.yad{bottom:133.245000px;}
.y74{bottom:133.410000px;}
.y7a{bottom:133.770000px;}
.y120{bottom:136.560245px;}
.y64{bottom:142.056000px;}
.y11f{bottom:148.619941px;}
.y13f{bottom:148.620241px;}
.yb6{bottom:150.779940px;}
.y136{bottom:152.039939px;}
.y13e{bottom:153.839938px;}
.y63{bottom:154.110000px;}
.yac{bottom:157.005000px;}
.y13b{bottom:157.259937px;}
.y9c{bottom:157.530000px;}
.y11e{bottom:165.899934px;}
.y62{bottom:166.170000px;}
.y135{bottom:169.319932px;}
.y142{bottom:171.119932px;}
.y134{bottom:174.539930px;}
.y61{bottom:178.050000px;}
.yab{bottom:180.765000px;}
.y9b{bottom:181.290000px;}
.y11d{bottom:182.999927px;}
.y146{bottom:183.899926px;}
.y133{bottom:186.599925px;}
.y11c{bottom:188.219925px;}
.y60{bottom:190.110000px;}
.yec{bottom:191.459923px;}
.y11b{bottom:200.279920px;}
.y141{bottom:200.999920px;}
.y5f{bottom:202.170000px;}
.y132{bottom:203.699919px;}
.yaa{bottom:204.525000px;}
.y9a{bottom:205.050000px;}
.yeb{bottom:208.739917px;}
.y131{bottom:208.919916px;}
.yea{bottom:213.959914px;}
.y5e{bottom:214.050000px;}
.y145{bottom:214.499914px;}
.y11a{bottom:217.559913px;}
.y130{bottom:220.979912px;}
.y119{bottom:222.779911px;}
.ye9{bottom:226.019910px;}
.y5d{bottom:226.110000px;}
.y12f{bottom:226.199910px;}
.ya9{bottom:228.465000px;}
.y99{bottom:228.990000px;}
.ye8{bottom:231.239908px;}
.y118{bottom:234.839906px;}
.y13d{bottom:235.559906px;}
.y5c{bottom:238.170000px;}
.y12e{bottom:238.259905px;}
.y140{bottom:238.979904px;}
.y117{bottom:240.059904px;}
.ye7{bottom:243.119903px;}
.y13a{bottom:243.479903px;}
.y5b{bottom:250.050000px;}
.y116{bottom:252.119899px;}
.ya8{bottom:252.225000px;}
.y98{bottom:252.750000px;}
.y12d{bottom:255.539898px;}
.y139{bottom:256.259897px;}
.ye6{bottom:260.399896px;}
.y12c{bottom:260.759896px;}
.y14e{bottom:261.479895px;}
.y5a{bottom:262.110000px;}
.y13c{bottom:262.199895px;}
.ye5{bottom:265.619894px;}
.y115{bottom:269.399892px;}
.y12b{bottom:273.539891px;}
.y59{bottom:274.170000px;}
.y114{bottom:274.619890px;}
.ya7{bottom:275.985000px;}
.y97{bottom:276.510000px;}
.ye4{bottom:277.679889px;}
.y14d{bottom:281.459887px;}
.y138{bottom:285.959886px;}
.y58{bottom:286.050000px;}
.y113{bottom:287.399885px;}
.ye3{bottom:294.959882px;}
.y57{bottom:298.110000px;}
.y14c{bottom:299.459880px;}
.ya6{bottom:299.745000px;}
.y96{bottom:300.315000px;}
.y137{bottom:309.719876px;}
.y56{bottom:310.170000px;}
.ye2{bottom:312.239875px;}
.ye1{bottom:317.459873px;}
.y14b{bottom:320.159872px;}
.y55{bottom:322.050000px;}
.ya5{bottom:323.685000px;}
.y95{bottom:324.255000px;}
.ye0{bottom:330.239868px;}
.y12a{bottom:333.479867px;}
.y54{bottom:334.110000px;}
.y14a{bottom:340.859864px;}
.y53{bottom:346.170000px;}
.y94{bottom:348.015000px;}
.y129{bottom:357.419857px;}
.y112{bottom:357.599857px;}
.y52{bottom:358.050000px;}
.ydf{bottom:361.019856px;}
.y149{bottom:361.559855px;}
.y51{bottom:370.110000px;}
.y93{bottom:371.775000px;}
.ya{bottom:373.170000px;}
.y111{bottom:381.179848px;}
.y50{bottom:382.170000px;}
.y148{bottom:383.879846px;}
.yde{bottom:384.779846px;}
.y4f{bottom:394.095000px;}
.y92{bottom:395.535000px;}
.y9{bottom:397.155000px;}
.y110{bottom:404.939838px;}
.y4e{bottom:406.155000px;}
.ydd{bottom:408.719837px;}
.y8{bottom:416.595000px;}
.y4d{bottom:418.215000px;}
.y91{bottom:419.475000px;}
.y10f{bottom:428.699829px;}
.y4c{bottom:430.095000px;}
.ydc{bottom:432.479827px;}
.y7{bottom:436.575000px;}
.y4b{bottom:442.155000px;}
.y90{bottom:443.235000px;}
.y10e{bottom:452.639819px;}
.y4a{bottom:454.215000px;}
.ydb{bottom:456.239818px;}
.y6{bottom:457.095000px;}
.y49{bottom:466.095000px;}
.y8f{bottom:466.995000px;}
.y10d{bottom:476.399809px;}
.y48{bottom:478.155000px;}
.y5{bottom:478.695000px;}
.yda{bottom:479.999808px;}
.y47{bottom:490.215000px;}
.y8e{bottom:490.755000px;}
.y10c{bottom:500.159800px;}
.y46{bottom:502.095000px;}
.yd9{bottom:503.939798px;}
.y4{bottom:508.215000px;}
.y45{bottom:514.155000px;}
.y8d{bottom:514.695000px;}
.y10b{bottom:523.919790px;}
.y44{bottom:526.215000px;}
.yd8{bottom:527.699789px;}
.y3{bottom:535.215000px;}
.y43{bottom:538.095000px;}
.y8c{bottom:538.455000px;}
.y10a{bottom:547.859781px;}
.y42{bottom:550.155000px;}
.yd7{bottom:551.459779px;}
.y2{bottom:559.875000px;}
.y41{bottom:562.215000px;}
.y8b{bottom:562.245000px;}
.y109{bottom:571.619771px;}
.y40{bottom:574.095000px;}
.yd6{bottom:575.219770px;}
.y8a{bottom:586.005000px;}
.y3f{bottom:586.155000px;}
.y108{bottom:595.379762px;}
.y3e{bottom:598.215000px;}
.yd5{bottom:599.159760px;}
.y89{bottom:609.945000px;}
.y3d{bottom:610.095000px;}
.y107{bottom:619.139752px;}
.y3c{bottom:622.155000px;}
.yd4{bottom:622.919751px;}
.y88{bottom:633.705000px;}
.y3b{bottom:634.215000px;}
.y106{bottom:642.899743px;}
.y3a{bottom:646.125000px;}
.yd3{bottom:646.679741px;}
.y87{bottom:657.465000px;}
.y39{bottom:658.185000px;}
.y105{bottom:666.839733px;}
.y38{bottom:670.245000px;}
.yd2{bottom:670.439732px;}
.y86{bottom:681.225000px;}
.y37{bottom:682.125000px;}
.y104{bottom:690.599724px;}
.y36{bottom:694.185000px;}
.yd1{bottom:694.379722px;}
.y85{bottom:704.985000px;}
.y35{bottom:706.245000px;}
.y103{bottom:714.359714px;}
.yd0{bottom:717.779713px;}
.y34{bottom:718.125000px;}
.y33{bottom:730.185000px;}
.y102{bottom:738.119705px;}
.ycf{bottom:741.539703px;}
.y32{bottom:742.245000px;}
.y31{bottom:754.125000px;}
.y101{bottom:762.059695px;}
.yce{bottom:765.299694px;}
.y30{bottom:766.185000px;}
.yb4{bottom:777.705000px;}
.y100{bottom:785.819686px;}
.ycd{bottom:789.419684px;}
.y2f{bottom:790.125000px;}
.ya4{bottom:793.185000px;}
.y2e{bottom:802.185000px;}
.yff{bottom:809.579676px;}
.ycc{bottom:813.359675px;}
.y2d{bottom:814.245000px;}
.y80{bottom:815.325000px;}
.y2c{bottom:826.125000px;}
.yfe{bottom:833.339667px;}
.ycb{bottom:837.119665px;}
.y2b{bottom:838.185000px;}
.y2a{bottom:850.245000px;}
.yfd{bottom:857.279657px;}
.yca{bottom:860.879656px;}
.y29{bottom:862.125000px;}
.y28{bottom:874.185000px;}
.yfc{bottom:881.039648px;}
.yc9{bottom:884.639646px;}
.y27{bottom:886.245000px;}
.y73{bottom:887.880000px;}
.y26{bottom:898.170000px;}
.yfb{bottom:904.799638px;}
.yc8{bottom:908.579637px;}
.y25{bottom:910.230000px;}
.y24{bottom:922.290000px;}
.y144{bottom:928.199629px;}
.yfa{bottom:928.559629px;}
.yc7{bottom:932.339627px;}
.y23{bottom:934.170000px;}
.y22{bottom:946.230000px;}
.y143{bottom:952.139619px;}
.yf9{bottom:952.499619px;}
.yc6{bottom:956.099618px;}
.y21{bottom:958.290000px;}
.y20{bottom:970.170000px;}
.yf8{bottom:976.259609px;}
.yc5{bottom:979.859608px;}
.y1f{bottom:982.230000px;}
.y1e{bottom:994.290000px;}
.yf7{bottom:1000.019600px;}
.yc4{bottom:1003.799598px;}
.y1d{bottom:1006.170000px;}
.y1c{bottom:1018.230000px;}
.yf6{bottom:1023.779590px;}
.yc3{bottom:1027.559589px;}
.y1b{bottom:1030.290000px;}
.y1a{bottom:1042.170000px;}
.y72{bottom:1045.050000px;}
.yf5{bottom:1047.719581px;}
.yc2{bottom:1051.319579px;}
.y19{bottom:1054.230000px;}
.y18{bottom:1066.290000px;}
.y71{bottom:1068.810000px;}
.yf4{bottom:1071.479571px;}
.yc1{bottom:1075.079570px;}
.y17{bottom:1078.170000px;}
.y16{bottom:1090.230000px;}
.y70{bottom:1092.570000px;}
.y128{bottom:1094.879562px;}
.yf3{bottom:1095.239562px;}
.yc0{bottom:1099.019560px;}
.y15{bottom:1102.290000px;}
.y14{bottom:1114.170000px;}
.yb5{bottom:1115.399554px;}
.y6f{bottom:1116.510000px;}
.y127{bottom:1118.639553px;}
.yf2{bottom:1118.999552px;}
.y13{bottom:1126.230000px;}
.y6e{bottom:1133.250000px;}
.y12{bottom:1138.290000px;}
.y11{bottom:1150.200000px;}
.y1{bottom:1159.020000px;}
.y123{bottom:1159.139536px;}
.y10{bottom:1162.260000px;}
.yf{bottom:1174.320000px;}
.y122{bottom:1179.119528px;}
.ye{bottom:1186.200000px;}
.yed{bottom:1196.399521px;}
.yd{bottom:1198.260000px;}
.yc{bottom:1210.320000px;}
.yb{bottom:1222.200000px;}
.h1d{height:16.740000px;}
.h1f{height:16.920000px;}
.h25{height:20.520000px;}
.h23{height:34.603186px;}
.hc{height:39.477656px;}
.hd{height:39.595500px;}
.h2{height:40.569750px;}
.h3{height:41.493516px;}
.hf{height:41.612687px;}
.h24{height:42.933583px;}
.h18{height:47.286943px;}
.hb{height:48.263555px;}
.he{height:48.407625px;}
.h1e{height:53.186379px;}
.h1c{height:55.158458px;}
.h1a{height:55.825312px;}
.h8{height:59.421094px;}
.h9{height:59.531133px;}
.h6{height:62.634706px;}
.h20{height:63.071975px;}
.h17{height:63.175781px;}
.h1b{height:64.079974px;}
.h7{height:64.372852px;}
.ha{height:64.853086px;}
.h10{height:65.884219px;}
.h22{height:66.455973px;}
.h21{height:70.293572px;}
.h14{height:70.628906px;}
.h13{height:70.664062px;}
.h15{height:72.540000px;}
.h11{height:72.562500px;}
.h4{height:82.529297px;}
.h5{height:91.354219px;}
.h12{height:150.135000px;}
.h19{height:340.050000px;}
.h16{height:721.365000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:2.160000px;}
.wa{width:2.340000px;}
.w7{width:3.960000px;}
.w8{width:4.680000px;}
.w3{width:69.330000px;}
.w5{width:73.065000px;}
.w4{width:575.010000px;}
.w2{width:701.730000px;}
.w6{width:892.500000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4d{left:8.091000px;}
.x13{left:59.940000px;}
.x4f{left:61.230000px;}
.x2d{left:80.100000px;}
.x22{left:82.116000px;}
.x17{left:87.516000px;}
.x1{left:90.756000px;}
.x4a{left:93.636000px;}
.x1d{left:112.716000px;}
.x18{left:122.616000px;}
.x53{left:127.619949px;}
.x59{left:132.479947px;}
.x5b{left:136.620000px;}
.x57{left:139.319944px;}
.x51{left:142.005000px;}
.x28{left:147.636000px;}
.x3e{left:150.510000px;}
.x3c{left:152.670000px;}
.x3b{left:155.190000px;}
.x25{left:158.070000px;}
.x30{left:160.230000px;}
.x1f{left:161.490000px;}
.x41{left:163.290000px;}
.x5d{left:166.499933px;}
.x21{left:169.590000px;}
.x48{left:170.670000px;}
.x2c{left:172.650000px;}
.x1e{left:174.810000px;}
.x15{left:178.590000px;}
.xe{left:180.930000px;}
.x5e{left:186.659925px;}
.x5f{left:189.539924px;}
.x16{left:191.550000px;}
.x2e{left:195.150000px;}
.x3d{left:196.770000px;}
.x38{left:198.030000px;}
.x27{left:200.370000px;}
.x1c{left:202.530000px;}
.x40{left:204.150000px;}
.x37{left:207.030000px;}
.xc{left:210.630000px;}
.x26{left:212.970000px;}
.x35{left:216.030000px;}
.x7{left:217.830000px;}
.x11{left:219.090000px;}
.x2a{left:220.530000px;}
.x2b{left:223.230000px;}
.x1b{left:225.390000px;}
.x34{left:228.990000px;}
.x29{left:230.790000px;}
.x31{left:232.050000px;}
.x23{left:235.110000px;}
.x3a{left:236.550000px;}
.x24{left:240.870000px;}
.x42{left:242.490000px;}
.xd{left:250.230000px;}
.x39{left:251.670000px;}
.x20{left:253.110000px;}
.x36{left:255.090000px;}
.x10{left:264.675000px;}
.x14{left:266.655000px;}
.x32{left:270.975000px;}
.x33{left:273.495000px;}
.x3{left:275.295000px;}
.x47{left:288.435000px;}
.x2f{left:292.755000px;}
.x19{left:293.835000px;}
.x12{left:298.695000px;}
.x4{left:306.075000px;}
.x43{left:323.355000px;}
.x5{left:330.375000px;}
.x44{left:338.295000px;}
.x45{left:341.895000px;}
.x5c{left:343.619863px;}
.x3f{left:361.155000px;}
.xf{left:366.015000px;}
.x1a{left:368.715000px;}
.x58{left:373.859850px;}
.x55{left:377.459849px;}
.x4b{left:379.695000px;}
.x46{left:381.135000px;}
.x5a{left:388.439845px;}
.xb{left:396.075000px;}
.x6{left:401.655000px;}
.x9{left:405.795000px;}
.x4c{left:410.115000px;}
.x56{left:413.819834px;}
.xa{left:439.485000px;}
.x8{left:441.465000px;}
.x2{left:445.785000px;}
.x49{left:503.925000px;}
.x52{left:514.079794px;}
.x50{left:668.670000px;}
.x60{left:755.819341px;}
.x61{left:764.820000px;}
.x4e{left:795.390000px;}
.x54{left:888.480000px;}
@media print{
.v1{vertical-align:-42.240000pt;}
.v3{vertical-align:-18.559993pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.319990pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.009459pt;}
.ls1{letter-spacing:0.018560pt;}
.ls5{letter-spacing:0.023552pt;}
.lsd{letter-spacing:0.030720pt;}
.lsa{letter-spacing:0.078720pt;}
.ls8{letter-spacing:0.085120pt;}
.lsf{letter-spacing:0.085333pt;}
.ls16{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.158933pt;}
.lsb{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.168228pt;}
.ls1f{letter-spacing:0.168267pt;}
.ls4{letter-spacing:0.191787pt;}
.ls11{letter-spacing:0.217067pt;}
.ls9{letter-spacing:0.236160pt;}
.lse{letter-spacing:0.236267pt;}
.ls1c{letter-spacing:0.242080pt;}
.ls15{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.336457pt;}
.ls1e{letter-spacing:0.336533pt;}
.ls6{letter-spacing:0.396160pt;}
.ls3{letter-spacing:0.434560pt;}
.ls2{letter-spacing:0.447360pt;}
.ls12{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.725120pt;}
.ls21{letter-spacing:1.919999pt;}
.ls1a{letter-spacing:3.199999pt;}
.ls22{letter-spacing:5.253118pt;}
.ls17{letter-spacing:5.919998pt;}
.ls18{letter-spacing:6.559997pt;}
.ls1d{letter-spacing:10.879996pt;}
.ls7{letter-spacing:441.996160pt;}
.ws9{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.999994pt;}
.wsa{word-spacing:-15.744000pt;}
.ws7{word-spacing:-14.147298pt;}
.ws8{word-spacing:-13.638507pt;}
.ws5{word-spacing:-13.580373pt;}
.ws3{word-spacing:-13.461504pt;}
.ws4{word-spacing:-13.452160pt;}
.ws2{word-spacing:-13.421440pt;}
.wse{word-spacing:-13.279995pt;}
.wsc{word-spacing:-12.639995pt;}
.ws6{word-spacing:-12.601344pt;}
.ws1{word-spacing:-12.563840pt;}
.wsb{word-spacing:-10.719996pt;}
.wsf{word-spacing:-8.639997pt;}
.ws0{word-spacing:0.000000pt;}
._11{margin-left:-3.839998pt;}
._2{margin-left:-2.712277pt;}
._1{margin-left:-1.157760pt;}
._0{width:1.092872pt;}
._4{width:2.777088pt;}
._3{width:3.717120pt;}
._5{width:4.629880pt;}
._6{width:6.210936pt;}
._c{width:7.107712pt;}
._a{width:8.192000pt;}
._b{width:9.915128pt;}
._15{width:11.071996pt;}
._e{width:11.967995pt;}
._f{width:12.913377pt;}
._10{width:13.952882pt;}
._17{width:14.909461pt;}
._12{width:17.605753pt;}
._18{width:18.734711pt;}
._1d{width:19.793273pt;}
._13{width:20.863992pt;}
._14{width:22.075119pt;}
._1e{width:22.975991pt;}
._16{width:23.871990pt;}
._1c{width:24.891117pt;}
._d{width:25.861760pt;}
._8{width:27.008000pt;}
._9{width:28.843589pt;}
._1f{width:30.440787pt;}
._19{width:32.447987pt;}
._1b{width:37.754224pt;}
._1a{width:39.109745pt;}
._7{width:143.818667pt;}
._20{width:1258.351497pt;}
.fs13{font-size:34.559986pt;}
.fs11{font-size:42.879983pt;}
.fs9{font-size:42.880000pt;}
.fsa{font-size:43.008000pt;}
.fsb{font-size:45.199037pt;}
.fs12{font-size:50.559980pt;}
.fs10{font-size:53.119979pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:53.248000pt;}
.fs14{font-size:58.879976pt;}
.fsc{font-size:58.880000pt;}
.fse{font-size:62.064349pt;}
.fsf{font-size:63.999974pt;}
.fsd{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs7{font-size:69.248000pt;}
.fs4{font-size:72.858149pt;}
.fs5{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.yb9{bottom:2.880006pt;}
.ybc{bottom:3.200012pt;}
.y126{bottom:3.840026pt;}
.yf1{bottom:3.840027pt;}
.ya0{bottom:6.560000pt;}
.y79{bottom:6.586667pt;}
.yb2{bottom:12.480000pt;}
.y82{bottom:12.800000pt;}
.y7f{bottom:12.986667pt;}
.ya3{bottom:13.120000pt;}
.y78{bottom:27.706667pt;}
.y9f{bottom:27.840000pt;}
.y6d{bottom:30.240000pt;}
.yb1{bottom:33.760000pt;}
.ya2{bottom:34.240000pt;}
.y7e{bottom:34.266667pt;}
.y6c{bottom:40.960000pt;}
.y9e{bottom:48.992000pt;}
.y81{bottom:49.760000pt;}
.y83{bottom:49.920000pt;}
.ybf{bottom:51.306913pt;}
.y6b{bottom:51.680000pt;}
.yb0{bottom:54.880000pt;}
.y77{bottom:55.066667pt;}
.y7d{bottom:55.386667pt;}
.y6a{bottom:62.240000pt;}
.yf0{bottom:62.506880pt;}
.y125{bottom:65.546880pt;}
.yef{bottom:66.346907pt;}
.yee{bottom:69.066639pt;}
.y124{bottom:69.386906pt;}
.ybe{bottom:69.706905pt;}
.y69{bottom:72.960000pt;}
.yaf{bottom:76.000000pt;}
.y76{bottom:76.186667pt;}
.y7c{bottom:76.506667pt;}
.y84{bottom:83.520000pt;}
.y68{bottom:83.680000pt;}
.ybd{bottom:87.466898pt;}
.y67{bottom:94.240000pt;}
.yae{bottom:97.160000pt;}
.y75{bottom:97.306667pt;}
.y9d{bottom:97.466667pt;}
.y7b{bottom:97.626667pt;}
.ya1{bottom:97.786667pt;}
.yb3{bottom:97.800000pt;}
.ybb{bottom:99.466880pt;}
.yba{bottom:102.666892pt;}
.y66{bottom:104.960000pt;}
.yb8{bottom:115.146880pt;}
.y65{bottom:115.680000pt;}
.y147{bottom:116.746620pt;}
.y121{bottom:116.746887pt;}
.yb7{bottom:118.026886pt;}
.yad{bottom:118.440000pt;}
.y74{bottom:118.586667pt;}
.y7a{bottom:118.906667pt;}
.y120{bottom:121.386885pt;}
.y64{bottom:126.272000pt;}
.y11f{bottom:132.106614pt;}
.y13f{bottom:132.106880pt;}
.yb6{bottom:134.026613pt;}
.y136{bottom:135.146613pt;}
.y13e{bottom:136.746612pt;}
.y63{bottom:136.986667pt;}
.yac{bottom:139.560000pt;}
.y13b{bottom:139.786611pt;}
.y9c{bottom:140.026667pt;}
.y11e{bottom:147.466608pt;}
.y62{bottom:147.706667pt;}
.y135{bottom:150.506606pt;}
.y142{bottom:152.106606pt;}
.y134{bottom:155.146605pt;}
.y61{bottom:158.266667pt;}
.yab{bottom:160.680000pt;}
.y9b{bottom:161.146667pt;}
.y11d{bottom:162.666602pt;}
.y146{bottom:163.466601pt;}
.y133{bottom:165.866600pt;}
.y11c{bottom:167.306600pt;}
.y60{bottom:168.986667pt;}
.yec{bottom:170.186599pt;}
.y11b{bottom:178.026595pt;}
.y141{bottom:178.666595pt;}
.y5f{bottom:179.706667pt;}
.y132{bottom:181.066594pt;}
.yaa{bottom:181.800000pt;}
.y9a{bottom:182.266667pt;}
.yeb{bottom:185.546592pt;}
.y131{bottom:185.706592pt;}
.yea{bottom:190.186591pt;}
.y5e{bottom:190.266667pt;}
.y145{bottom:190.666590pt;}
.y11a{bottom:193.386589pt;}
.y130{bottom:196.426588pt;}
.y119{bottom:198.026587pt;}
.ye9{bottom:200.906586pt;}
.y5d{bottom:200.986667pt;}
.y12f{bottom:201.066586pt;}
.ya9{bottom:203.080000pt;}
.y99{bottom:203.546667pt;}
.ye8{bottom:205.546584pt;}
.y118{bottom:208.746583pt;}
.y13d{bottom:209.386583pt;}
.y5c{bottom:211.706667pt;}
.y12e{bottom:211.786582pt;}
.y140{bottom:212.426582pt;}
.y117{bottom:213.386581pt;}
.ye7{bottom:216.106580pt;}
.y13a{bottom:216.426580pt;}
.y5b{bottom:222.266667pt;}
.y116{bottom:224.106577pt;}
.ya8{bottom:224.200000pt;}
.y98{bottom:224.666667pt;}
.y12d{bottom:227.146576pt;}
.y139{bottom:227.786576pt;}
.ye6{bottom:231.466574pt;}
.y12c{bottom:231.786574pt;}
.y14e{bottom:232.426574pt;}
.y5a{bottom:232.986667pt;}
.y13c{bottom:233.066573pt;}
.ye5{bottom:236.106572pt;}
.y115{bottom:239.466571pt;}
.y12b{bottom:243.146569pt;}
.y59{bottom:243.706667pt;}
.y114{bottom:244.106569pt;}
.ya7{bottom:245.320000pt;}
.y97{bottom:245.786667pt;}
.ye4{bottom:246.826568pt;}
.y14d{bottom:250.186567pt;}
.y138{bottom:254.186565pt;}
.y58{bottom:254.266667pt;}
.y113{bottom:255.466564pt;}
.ye3{bottom:262.186562pt;}
.y57{bottom:264.986667pt;}
.y14c{bottom:266.186560pt;}
.ya6{bottom:266.440000pt;}
.y96{bottom:266.946667pt;}
.y137{bottom:275.306557pt;}
.y56{bottom:275.706667pt;}
.ye2{bottom:277.546556pt;}
.ye1{bottom:282.186554pt;}
.y14b{bottom:284.586553pt;}
.y55{bottom:286.266667pt;}
.ya5{bottom:287.720000pt;}
.y95{bottom:288.226667pt;}
.ye0{bottom:293.546549pt;}
.y12a{bottom:296.426548pt;}
.y54{bottom:296.986667pt;}
.y14a{bottom:302.986545pt;}
.y53{bottom:307.706667pt;}
.y94{bottom:309.346667pt;}
.y129{bottom:317.706540pt;}
.y112{bottom:317.866540pt;}
.y52{bottom:318.266667pt;}
.ydf{bottom:320.906538pt;}
.y149{bottom:321.386538pt;}
.y51{bottom:328.986667pt;}
.y93{bottom:330.466667pt;}
.ya{bottom:331.706667pt;}
.y111{bottom:338.826531pt;}
.y50{bottom:339.706667pt;}
.y148{bottom:341.226530pt;}
.yde{bottom:342.026530pt;}
.y4f{bottom:350.306667pt;}
.y92{bottom:351.586667pt;}
.y9{bottom:353.026667pt;}
.y110{bottom:359.946523pt;}
.y4e{bottom:361.026667pt;}
.ydd{bottom:363.306521pt;}
.y8{bottom:370.306667pt;}
.y4d{bottom:371.746667pt;}
.y91{bottom:372.866667pt;}
.y10f{bottom:381.066514pt;}
.y4c{bottom:382.306667pt;}
.ydc{bottom:384.426513pt;}
.y7{bottom:388.066667pt;}
.y4b{bottom:393.026667pt;}
.y90{bottom:393.986667pt;}
.y10e{bottom:402.346506pt;}
.y4a{bottom:403.746667pt;}
.ydb{bottom:405.546504pt;}
.y6{bottom:406.306667pt;}
.y49{bottom:414.306667pt;}
.y8f{bottom:415.106667pt;}
.y10d{bottom:423.466497pt;}
.y48{bottom:425.026667pt;}
.y5{bottom:425.506667pt;}
.yda{bottom:426.666496pt;}
.y47{bottom:435.746667pt;}
.y8e{bottom:436.226667pt;}
.y10c{bottom:444.586489pt;}
.y46{bottom:446.306667pt;}
.yd9{bottom:447.946487pt;}
.y4{bottom:451.746667pt;}
.y45{bottom:457.026667pt;}
.y8d{bottom:457.506667pt;}
.y10b{bottom:465.706480pt;}
.y44{bottom:467.746667pt;}
.yd8{bottom:469.066479pt;}
.y3{bottom:475.746667pt;}
.y43{bottom:478.306667pt;}
.y8c{bottom:478.626667pt;}
.y10a{bottom:486.986472pt;}
.y42{bottom:489.026667pt;}
.yd7{bottom:490.186471pt;}
.y2{bottom:497.666667pt;}
.y41{bottom:499.746667pt;}
.y8b{bottom:499.773333pt;}
.y109{bottom:508.106463pt;}
.y40{bottom:510.306667pt;}
.yd6{bottom:511.306462pt;}
.y8a{bottom:520.893333pt;}
.y3f{bottom:521.026667pt;}
.y108{bottom:529.226455pt;}
.y3e{bottom:531.746667pt;}
.yd5{bottom:532.586454pt;}
.y89{bottom:542.173333pt;}
.y3d{bottom:542.306667pt;}
.y107{bottom:550.346447pt;}
.y3c{bottom:553.026667pt;}
.yd4{bottom:553.706445pt;}
.y88{bottom:563.293333pt;}
.y3b{bottom:563.746667pt;}
.y106{bottom:571.466438pt;}
.y3a{bottom:574.333333pt;}
.yd3{bottom:574.826437pt;}
.y87{bottom:584.413333pt;}
.y39{bottom:585.053333pt;}
.y105{bottom:592.746430pt;}
.y38{bottom:595.773333pt;}
.yd2{bottom:595.946428pt;}
.y86{bottom:605.533333pt;}
.y37{bottom:606.333333pt;}
.y104{bottom:613.866421pt;}
.y36{bottom:617.053333pt;}
.yd1{bottom:617.226420pt;}
.y85{bottom:626.653333pt;}
.y35{bottom:627.773333pt;}
.y103{bottom:634.986413pt;}
.yd0{bottom:638.026411pt;}
.y34{bottom:638.333333pt;}
.y33{bottom:649.053333pt;}
.y102{bottom:656.106404pt;}
.ycf{bottom:659.146403pt;}
.y32{bottom:659.773333pt;}
.y31{bottom:670.333333pt;}
.y101{bottom:677.386396pt;}
.yce{bottom:680.266395pt;}
.y30{bottom:681.053333pt;}
.yb4{bottom:691.293333pt;}
.y100{bottom:698.506387pt;}
.ycd{bottom:701.706386pt;}
.y2f{bottom:702.333333pt;}
.ya4{bottom:705.053333pt;}
.y2e{bottom:713.053333pt;}
.yff{bottom:719.626379pt;}
.ycc{bottom:722.986377pt;}
.y2d{bottom:723.773333pt;}
.y80{bottom:724.733333pt;}
.y2c{bottom:734.333333pt;}
.yfe{bottom:740.746370pt;}
.ycb{bottom:744.106369pt;}
.y2b{bottom:745.053333pt;}
.y2a{bottom:755.773333pt;}
.yfd{bottom:762.026362pt;}
.yca{bottom:765.226361pt;}
.y29{bottom:766.333333pt;}
.y28{bottom:777.053333pt;}
.yfc{bottom:783.146353pt;}
.yc9{bottom:786.346352pt;}
.y27{bottom:787.773333pt;}
.y73{bottom:789.226667pt;}
.y26{bottom:798.373333pt;}
.yfb{bottom:804.266345pt;}
.yc8{bottom:807.626344pt;}
.y25{bottom:809.093333pt;}
.y24{bottom:819.813333pt;}
.y144{bottom:825.066337pt;}
.yfa{bottom:825.386337pt;}
.yc7{bottom:828.746335pt;}
.y23{bottom:830.373333pt;}
.y22{bottom:841.093333pt;}
.y143{bottom:846.346328pt;}
.yf9{bottom:846.666328pt;}
.yc6{bottom:849.866327pt;}
.y21{bottom:851.813333pt;}
.y20{bottom:862.373333pt;}
.yf8{bottom:867.786320pt;}
.yc5{bottom:870.986318pt;}
.y1f{bottom:873.093333pt;}
.y1e{bottom:883.813333pt;}
.yf7{bottom:888.906311pt;}
.yc4{bottom:892.266310pt;}
.y1d{bottom:894.373333pt;}
.y1c{bottom:905.093333pt;}
.yf6{bottom:910.026303pt;}
.yc3{bottom:913.386301pt;}
.y1b{bottom:915.813333pt;}
.y1a{bottom:926.373333pt;}
.y72{bottom:928.933333pt;}
.yf5{bottom:931.306294pt;}
.yc2{bottom:934.506293pt;}
.y19{bottom:937.093333pt;}
.y18{bottom:947.813333pt;}
.y71{bottom:950.053333pt;}
.yf4{bottom:952.426286pt;}
.yc1{bottom:955.626284pt;}
.y17{bottom:958.373333pt;}
.y16{bottom:969.093333pt;}
.y70{bottom:971.173333pt;}
.y128{bottom:973.226277pt;}
.yf3{bottom:973.546277pt;}
.yc0{bottom:976.906276pt;}
.y15{bottom:979.813333pt;}
.y14{bottom:990.373333pt;}
.yb5{bottom:991.466270pt;}
.y6f{bottom:992.453333pt;}
.y127{bottom:994.346269pt;}
.yf2{bottom:994.666269pt;}
.y13{bottom:1001.093333pt;}
.y6e{bottom:1007.333333pt;}
.y12{bottom:1011.813333pt;}
.y11{bottom:1022.400000pt;}
.y1{bottom:1030.240000pt;}
.y123{bottom:1030.346255pt;}
.y10{bottom:1033.120000pt;}
.yf{bottom:1043.840000pt;}
.y122{bottom:1048.106247pt;}
.ye{bottom:1054.400000pt;}
.yed{bottom:1063.466241pt;}
.yd{bottom:1065.120000pt;}
.yc{bottom:1075.840000pt;}
.yb{bottom:1086.400000pt;}
.h1d{height:14.880000pt;}
.h1f{height:15.040000pt;}
.h25{height:18.240000pt;}
.h23{height:30.758388pt;}
.hc{height:35.091250pt;}
.hd{height:35.196000pt;}
.h2{height:36.062000pt;}
.h3{height:36.883125pt;}
.hf{height:36.989055pt;}
.h24{height:38.163185pt;}
.h18{height:42.032838pt;}
.hb{height:42.900937pt;}
.he{height:43.029000pt;}
.h1e{height:47.276781pt;}
.h1c{height:49.029740pt;}
.h1a{height:49.622500pt;}
.h8{height:52.818750pt;}
.h9{height:52.916562pt;}
.h6{height:55.675294pt;}
.h20{height:56.063978pt;}
.h17{height:56.156250pt;}
.h1b{height:56.959977pt;}
.h7{height:57.220312pt;}
.ha{height:57.647187pt;}
.h10{height:58.563750pt;}
.h22{height:59.071976pt;}
.h21{height:62.483175pt;}
.h14{height:62.781250pt;}
.h13{height:62.812500pt;}
.h15{height:64.480000pt;}
.h11{height:64.500000pt;}
.h4{height:73.359375pt;}
.h5{height:81.203750pt;}
.h12{height:133.453333pt;}
.h19{height:302.266667pt;}
.h16{height:641.213333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:1.920000pt;}
.wa{width:2.080000pt;}
.w7{width:3.520000pt;}
.w8{width:4.160000pt;}
.w3{width:61.626667pt;}
.w5{width:64.946667pt;}
.w4{width:511.120000pt;}
.w2{width:623.760000pt;}
.w6{width:793.333333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4d{left:7.192000pt;}
.x13{left:53.280000pt;}
.x4f{left:54.426667pt;}
.x2d{left:71.200000pt;}
.x22{left:72.992000pt;}
.x17{left:77.792000pt;}
.x1{left:80.672000pt;}
.x4a{left:83.232000pt;}
.x1d{left:100.192000pt;}
.x18{left:108.992000pt;}
.x53{left:113.439955pt;}
.x59{left:117.759953pt;}
.x5b{left:121.440000pt;}
.x57{left:123.839950pt;}
.x51{left:126.226667pt;}
.x28{left:131.232000pt;}
.x3e{left:133.786667pt;}
.x3c{left:135.706667pt;}
.x3b{left:137.946667pt;}
.x25{left:140.506667pt;}
.x30{left:142.426667pt;}
.x1f{left:143.546667pt;}
.x41{left:145.146667pt;}
.x5d{left:147.999941pt;}
.x21{left:150.746667pt;}
.x48{left:151.706667pt;}
.x2c{left:153.466667pt;}
.x1e{left:155.386667pt;}
.x15{left:158.746667pt;}
.xe{left:160.826667pt;}
.x5e{left:165.919934pt;}
.x5f{left:168.479933pt;}
.x16{left:170.266667pt;}
.x2e{left:173.466667pt;}
.x3d{left:174.906667pt;}
.x38{left:176.026667pt;}
.x27{left:178.106667pt;}
.x1c{left:180.026667pt;}
.x40{left:181.466667pt;}
.x37{left:184.026667pt;}
.xc{left:187.226667pt;}
.x26{left:189.306667pt;}
.x35{left:192.026667pt;}
.x7{left:193.626667pt;}
.x11{left:194.746667pt;}
.x2a{left:196.026667pt;}
.x2b{left:198.426667pt;}
.x1b{left:200.346667pt;}
.x34{left:203.546667pt;}
.x29{left:205.146667pt;}
.x31{left:206.266667pt;}
.x23{left:208.986667pt;}
.x3a{left:210.266667pt;}
.x24{left:214.106667pt;}
.x42{left:215.546667pt;}
.xd{left:222.426667pt;}
.x39{left:223.706667pt;}
.x20{left:224.986667pt;}
.x36{left:226.746667pt;}
.x10{left:235.266667pt;}
.x14{left:237.026667pt;}
.x32{left:240.866667pt;}
.x33{left:243.106667pt;}
.x3{left:244.706667pt;}
.x47{left:256.386667pt;}
.x2f{left:260.226667pt;}
.x19{left:261.186667pt;}
.x12{left:265.506667pt;}
.x4{left:272.066667pt;}
.x43{left:287.426667pt;}
.x5{left:293.666667pt;}
.x44{left:300.706667pt;}
.x45{left:303.906667pt;}
.x5c{left:305.439878pt;}
.x3f{left:321.026667pt;}
.xf{left:325.346667pt;}
.x1a{left:327.746667pt;}
.x58{left:332.319867pt;}
.x55{left:335.519866pt;}
.x4b{left:337.506667pt;}
.x46{left:338.786667pt;}
.x5a{left:345.279862pt;}
.xb{left:352.066667pt;}
.x6{left:357.026667pt;}
.x9{left:360.706667pt;}
.x4c{left:364.546667pt;}
.x56{left:367.839853pt;}
.xa{left:390.653333pt;}
.x8{left:392.413333pt;}
.x2{left:396.253333pt;}
.x49{left:447.933333pt;}
.x52{left:456.959817pt;}
.x50{left:594.373333pt;}
.x60{left:671.839414pt;}
.x61{left:679.840000pt;}
.x4e{left:707.013333pt;}
.x54{left:789.760000pt;}
}




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