
    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_7ec04b348111e79076b0cf40.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.769043;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_fe845fbfc0b8e2a5140f9420.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_85548b1383b0ddab13719f78.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.935059;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_77c0f824daa9a3dad15db973.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_167c10feb8c9e4bd98813732.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.901855;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_b577081161fc3abc6cdc7fb0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_31923881a37289030c6a71cf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.081000;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_4551f05e66d17800633a1ce3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_466da9050680cf5cc5de5f58.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942871;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_32874792bb2db233f0658ee0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.981934;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_cf2dc6e526a4d860805e0ce8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.935059;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_12150481779f53d08fd5d52b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692871;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_90feab17e69f7f7a8e253359.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.675293;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_88a9b5adc07ec04842e51d40.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.824707;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_738165ae33ceec086287f71b.woff2')format("woff");}.fff{font-family:fff;line-height:0.682129;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_973d617a51f5f2735b0dfe7e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.942871;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_c80957e19e0b31aa75c18618.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.770996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_1c79f53591e606a5a7fd27b4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.750000;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_f74873a411d6c8ecee969737.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.770996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_ad3025760e535c659993cd05.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_5ed964edb9d72862f4f8a1af.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938965;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_0a41d1db3188f2ca50dcefe3.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.935059;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_4b5be0217f9835a930455ef5.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.674805;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_7798ba1cfdc4400c30c25659.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.908203;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_bc8c06e04e7ef1539330128a.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_4e681900a2f4b6f11f598120.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.925781;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_d09f1b1bd928d6b9a17e4809.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_49f95e02f6f616069a7a94f3.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.750000;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_9aae9f67e5921192aa6727a0.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.938965;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_ecd7bd9dcedfdb175e39d5dd.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.917969;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_2aa6e068030e75d1abc03761.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.750000;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_8c473f555e8816287b65fedf.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.938965;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_8f61f038fd183137800c3d15.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.304000;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_579d4a3a8b51200a6e873528.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.304000;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:ff23;src:url('chunks/assets/font_ade9d40713f850a5cad8c9cf.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.673340;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(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.vc{vertical-align:-72.000000px;}
.va{vertical-align:-60.480000px;}
.v9{vertical-align:-59.040000px;}
.v2{vertical-align:-30.240000px;}
.v6{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:30.240000px;}
.v7{vertical-align:67.680000px;}
.v1{vertical-align:69.120000px;}
.vd{vertical-align:72.000000px;}
.v8{vertical-align:83.520000px;}
.v3{vertical-align:84.960000px;}
.vb{vertical-align:89.280000px;}
.v4{vertical-align:168.480000px;}
.ve{vertical-align:266.400000px;}
.ls2f{letter-spacing:-13.157648px;}
.ls42{letter-spacing:-9.496202px;}
.ls3c{letter-spacing:-5.392941px;}
.ls1f{letter-spacing:-3.780000px;}
.ls30{letter-spacing:-3.063530px;}
.ls21{letter-spacing:-0.387600px;}
.ls2e{letter-spacing:-0.367200px;}
.ls3f{letter-spacing:-0.360000px;}
.ls3e{letter-spacing:-0.352800px;}
.ls36{letter-spacing:-0.265200px;}
.ls24{letter-spacing:-0.216600px;}
.ls38{letter-spacing:-0.178200px;}
.ls22{letter-spacing:-0.148200px;}
.ls25{letter-spacing:-0.127059px;}
.ls47{letter-spacing:-0.117000px;}
.ls32{letter-spacing:-0.113400px;}
.ls39{letter-spacing:-0.112200px;}
.ls1d{letter-spacing:-0.108000px;}
.ls41{letter-spacing:-0.090000px;}
.ls1e{letter-spacing:-0.064800px;}
.ls34{letter-spacing:-0.048600px;}
.ls3b{letter-spacing:-0.032400px;}
.ls1c{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000002px;}
.ls17{letter-spacing:0.000010px;}
.ls1{letter-spacing:0.021600px;}
.ls9{letter-spacing:0.034200px;}
.ls6{letter-spacing:0.054000px;}
.ls13{letter-spacing:0.054005px;}
.ls3{letter-spacing:0.059915px;}
.ls0{letter-spacing:0.059975px;}
.ls2{letter-spacing:0.064800px;}
.lsa{letter-spacing:0.068400px;}
.ls40{letter-spacing:0.073800px;}
.ls4{letter-spacing:0.086400px;}
.ls48{letter-spacing:0.090000px;}
.ls26{letter-spacing:0.096600px;}
.ls5{letter-spacing:0.108000px;}
.ls31{letter-spacing:0.113400px;}
.ls15{letter-spacing:0.132003px;}
.ls18{letter-spacing:0.142800px;}
.ls33{letter-spacing:0.144000px;}
.ls23{letter-spacing:0.148200px;}
.ls7{letter-spacing:0.151200px;}
.ls12{letter-spacing:0.162001px;}
.ls37{letter-spacing:0.193800px;}
.ls43{letter-spacing:0.205800px;}
.ls29{letter-spacing:0.220800px;}
.ls3a{letter-spacing:0.226800px;}
.ls44{letter-spacing:0.235200px;}
.ls2d{letter-spacing:0.259200px;}
.ls46{letter-spacing:0.270000px;}
.ls8{letter-spacing:0.288003px;}
.ls35{letter-spacing:0.291600px;}
.ls19{letter-spacing:0.294000px;}
.ls27{letter-spacing:0.300000px;}
.ls20{letter-spacing:0.319200px;}
.ls1a{letter-spacing:0.324000px;}
.lsb{letter-spacing:0.324706px;}
.ls45{letter-spacing:0.333000px;}
.ls3d{letter-spacing:0.345600px;}
.ls2c{letter-spacing:0.352800px;}
.ls16{letter-spacing:0.354000px;}
.ls28{letter-spacing:0.364800px;}
.ls2a{letter-spacing:0.693000px;}
.lsd{letter-spacing:0.779400px;}
.ls14{letter-spacing:0.780000px;}
.lsf{letter-spacing:0.870000px;}
.lsc{letter-spacing:1.320000px;}
.ls2b{letter-spacing:1.323000px;}
.ls1b{letter-spacing:1.326000px;}
.ls10{letter-spacing:327.084001px;}
.lse{letter-spacing:803.276401px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(28,101,128),0 0.015em rgb(28,101,128),0.015em 0 rgb(28,101,128),0 -0.015em  rgb(28,101,128);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(28,101,128);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-59.637600px;}
.ws9{word-spacing:-59.616000px;}
.wsa{word-spacing:-57.542400px;}
.ws8{word-spacing:-57.520800px;}
.ws5{word-spacing:-57.456000px;}
.ws4{word-spacing:-57.391200px;}
.ws10{word-spacing:-57.348000px;}
.ws16{word-spacing:-49.736473px;}
.ws15{word-spacing:-49.411767px;}
.ws17{word-spacing:-49.284708px;}
.ws24{word-spacing:-46.348237px;}
.ws2e{word-spacing:-44.018825px;}
.ws27{word-spacing:-43.383600px;}
.ws2c{word-spacing:-42.978600px;}
.ws2a{word-spacing:-42.913800px;}
.ws20{word-spacing:-41.400013px;}
.ws1b{word-spacing:-39.900013px;}
.ws19{word-spacing:-38.184599px;}
.ws1a{word-spacing:-38.087999px;}
.ws23{word-spacing:-36.254119px;}
.ws12{word-spacing:-31.783197px;}
.ws13{word-spacing:-31.612197px;}
.ws37{word-spacing:-31.590000px;}
.ws14{word-spacing:-31.463997px;}
.ws36{word-spacing:-31.383000px;}
.ws29{word-spacing:-27.274799px;}
.ws2b{word-spacing:-27.019799px;}
.ws28{word-spacing:-26.866799px;}
.ws1f{word-spacing:-25.533000px;}
.ws33{word-spacing:-0.588000px;}
.ws35{word-spacing:-0.529200px;}
.ws2d{word-spacing:-0.504000px;}
.ws1d{word-spacing:-0.478800px;}
.ws26{word-spacing:-0.324000px;}
.ws25{word-spacing:-0.270000px;}
.ws2f{word-spacing:-0.198000px;}
.ws30{word-spacing:-0.180000px;}
.ws1e{word-spacing:-0.138000px;}
.ws38{word-spacing:0.000000px;}
.ws31{word-spacing:0.180000px;}
.wsd{word-spacing:1.253400px;}
.wsf{word-spacing:1.254000px;}
.wsc{word-spacing:1.523400px;}
.wse{word-spacing:1.524000px;}
.ws7{word-spacing:1.717200px;}
.ws6{word-spacing:1.735200px;}
.ws3{word-spacing:1.770000px;}
.wsb{word-spacing:1.832400px;}
.ws2{word-spacing:1.856400px;}
.ws0{word-spacing:2.028000px;}
.ws11{word-spacing:3.660000px;}
.ws32{word-spacing:9.202202px;}
.ws21{word-spacing:285.141023px;}
.ws18{word-spacing:285.141623px;}
.ws22{word-spacing:543.101918px;}
.ws1c{word-spacing:547.012118px;}
.ws34{word-spacing:10452.093029px;}
._e{margin-left:-834.551977px;}
._15{margin-left:-26.719246px;}
._a{margin-left:-17.301600px;}
._14{margin-left:-14.748596px;}
._13{margin-left:-13.312080px;}
._f{margin-left:-11.485200px;}
._3{margin-left:-8.704800px;}
._5{margin-left:-6.825600px;}
._c{margin-left:-5.821837px;}
._1{margin-left:-4.514400px;}
._7{margin-left:-2.376000px;}
._0{margin-left:-1.360800px;}
._6{width:1.193940px;}
._4{width:2.440800px;}
._2{width:3.892800px;}
._8{width:5.307600px;}
._12{width:6.627872px;}
._9{width:7.734000px;}
._16{width:9.114001px;}
._b{width:10.243200px;}
._10{width:12.627389px;}
._11{width:13.631435px;}
._d{width:795.052846px;}
.fc3{color:rgb(229,246,251);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(28,101,128);}
.fc4{color:transparent;}
.fc0{color:rgb(29,102,128);}
.fs9{font-size:83.999995px;}
.fs7{font-size:90.000000px;}
.fsb{font-size:95.999990px;}
.fs10{font-size:101.999995px;}
.fsc{font-size:108.000000px;}
.fs3{font-size:113.999990px;}
.fs2{font-size:119.999995px;}
.fs8{font-size:126.000000px;}
.fs6{font-size:137.999995px;}
.fs4{font-size:141.176477px;}
.fs5{font-size:150.000048px;}
.fsd{font-size:162.000000px;}
.fsf{font-size:180.000000px;}
.fsa{font-size:191.999952px;}
.fs13{font-size:198.000000px;}
.fs1{font-size:216.000000px;}
.fs0{font-size:240.000048px;}
.fs14{font-size:245.999952px;}
.fse{font-size:270.000000px;}
.fs12{font-size:294.000048px;}
.fs11{font-size:576.000000px;}
.y0{bottom:0.000000px;}
.y57{bottom:48.120000px;}
.y27{bottom:58.560000px;}
.y26{bottom:93.120000px;}
.y25{bottom:127.680000px;}
.y24{bottom:160.440000px;}
.y23{bottom:195.000000px;}
.y22{bottom:229.560000px;}
.y21{bottom:264.120000px;}
.y5c{bottom:880.080000px;}
.y5d{bottom:997.800000px;}
.ye{bottom:1152.960000px;}
.yd{bottom:1217.400000px;}
.y20{bottom:1274.280000px;}
.yc{bottom:1285.080000px;}
.y5{bottom:1294.440000px;}
.y1f{bottom:1338.720000px;}
.y4{bottom:1360.320000px;}
.yb{bottom:1379.400000px;}
.y1a{bottom:1398.840000px;}
.y1e{bottom:1403.520000px;}
.y3{bottom:1455.000000px;}
.y19{bottom:1464.720000px;}
.ya{bottom:1472.280000px;}
.y1d{bottom:1491.720000px;}
.y18{bottom:1529.520000px;}
.y9{bottom:1538.520000px;}
.y2{bottom:1547.880000px;}
.y1c{bottom:1556.520000px;}
.y17{bottom:1593.960000px;}
.y1{bottom:1613.760000px;}
.y1b{bottom:1622.400000px;}
.y8{bottom:1631.400000px;}
.y16{bottom:1659.840000px;}
.y7{bottom:1695.840000px;}
.y15{bottom:1752.720000px;}
.y6{bottom:1762.080000px;}
.y14{bottom:1817.520000px;}
.y13{bottom:1884.840000px;}
.y12{bottom:1977.720000px;}
.y59{bottom:2002.920000px;}
.y11{bottom:2042.520000px;}
.y10{bottom:2106.960000px;}
.yf{bottom:2172.840000px;}
.y58{bottom:2183.640000px;}
.y4f{bottom:2785.200000px;}
.y2b{bottom:2795.722800px;}
.y4e{bottom:2834.520000px;}
.y42{bottom:2932.080000px;}
.y4b{bottom:2949.360000px;}
.y40{bottom:2949.802800px;}
.y4a{bottom:2981.040000px;}
.y41{bottom:2981.760000px;}
.y3f{bottom:2991.922800px;}
.y4d{bottom:3007.320000px;}
.y49{bottom:3010.920000px;}
.y36{bottom:3014.160000px;}
.y44{bottom:3025.680000px;}
.y4c{bottom:3057.000000px;}
.y35{bottom:3062.400000px;}
.y2a{bottom:3190.642800px;}
.y34{bottom:3213.240000px;}
.y48{bottom:3227.280000px;}
.y33{bottom:3255.360000px;}
.y46{bottom:3256.080000px;}
.y3c{bottom:3292.800000px;}
.y45{bottom:3305.760000px;}
.y50{bottom:3377.400000px;}
.y43{bottom:3378.480000px;}
.y47{bottom:3409.800000px;}
.y32{bottom:3460.920000px;}
.y3b{bottom:3482.160000px;}
.y31{bottom:3503.040000px;}
.y29{bottom:3678.442950px;}
.y52{bottom:3690.682950px;}
.y38{bottom:3719.040150px;}
.y3a{bottom:3720.840150px;}
.y51{bottom:3732.802950px;}
.y37{bottom:3736.680150px;}
.y39{bottom:3751.080150px;}
.y5a{bottom:3813.720150px;}
.y30{bottom:3905.880150px;}
.y2f{bottom:4007.760150px;}
.y2e{bottom:4049.880150px;}
.y28{bottom:4062.562950px;}
.y3e{bottom:4213.042950px;}
.y3d{bottom:4254.802950px;}
.y2d{bottom:4266.240150px;}
.y2c{bottom:4283.520150px;}
.y56{bottom:4525.440150px;}
.y55{bottom:4612.560150px;}
.y54{bottom:4695.360150px;}
.y5b{bottom:4764.480150px;}
.y53{bottom:4816.320150px;}
.he{height:71.999993px;}
.h1a{height:72.720703px;}
.hb{height:75.981439px;}
.h13{height:76.499996px;}
.h10{height:81.000000px;}
.h4{height:85.499993px;}
.h17{height:86.760000px;}
.h3{height:89.999996px;}
.h8{height:103.499996px;}
.h7{height:112.500036px;}
.h11{height:121.500000px;}
.h5{height:136.094124px;}
.hc{height:143.999964px;}
.hd{height:153.179993px;}
.h6{height:154.619993px;}
.h2{height:162.000000px;}
.h12{height:179.956055px;}
.h1{height:180.000036px;}
.hf{height:196.020036px;}
.ha{height:197.460036px;}
.h16{height:219.960000px;}
.h15{height:237.780000px;}
.h9{height:280.980036px;}
.h18{height:283.416046px;}
.h14{height:432.000000px;}
.h19{height:549.816046px;}
.h0{height:5055.000000px;}
.w0{width:3576.000000px;}
.x0{left:0.000000px;}
.x20{left:56.273745px;}
.x58{left:73.229760px;}
.xb{left:86.082165px;}
.xa{left:110.727165px;}
.x3d{left:119.963610px;}
.x7{left:126.859665px;}
.xc{left:144.934665px;}
.x8{left:148.099650px;}
.x3c{left:168.713550px;}
.x42{left:183.944250px;}
.x6{left:196.122150px;}
.x9{left:227.689650px;}
.xd{left:246.184650px;}
.x56{left:266.570100px;}
.x59{left:279.178800px;}
.x4e{left:363.704850px;}
.x45{left:380.884950px;}
.x44{left:388.759950px;}
.x41{left:389.760300px;}
.x49{left:395.509050px;}
.x43{left:399.822450px;}
.x4a{left:469.474050px;}
.x3f{left:513.571200px;}
.x47{left:521.454600px;}
.x40{left:530.821200px;}
.x46{left:541.232100px;}
.x48{left:680.923350px;}
.x5a{left:775.709700px;}
.x4d{left:777.990300px;}
.x50{left:781.207350px;}
.x3e{left:805.606050px;}
.x4c{left:808.245300px;}
.x4b{left:837.136200px;}
.x25{left:841.061700px;}
.x39{left:864.291750px;}
.x26{left:890.096700px;}
.x38{left:891.584250px;}
.x12{left:981.661650px;}
.x15{left:993.406650px;}
.x13{left:1014.886650px;}
.x11{left:1023.556650px;}
.xf{left:1033.516650px;}
.x16{left:1036.441650px;}
.x17{left:1043.536650px;}
.x10{left:1072.224150px;}
.x51{left:1093.173750px;}
.x27{left:1127.821500px;}
.xe{left:1133.139150px;}
.x2b{left:1152.544350px;}
.x19{left:1157.086650px;}
.x3b{left:1160.477700px;}
.x28{left:1177.598850px;}
.x18{left:1182.136650px;}
.x3a{left:1195.135350px;}
.x30{left:1206.285000px;}
.x37{left:1217.807400px;}
.x23{left:1231.043550px;}
.x14{left:1286.634150px;}
.x31{left:1332.984750px;}
.x24{left:1357.743300px;}
.x4f{left:1371.157350px;}
.x35{left:1523.322000px;}
.x34{left:1529.451000px;}
.x33{left:1665.720000px;}
.x29{left:1683.895500px;}
.x2c{left:1692.096000px;}
.x2e{left:1706.346000px;}
.x2d{left:1723.941000px;}
.x32{left:1728.060000px;}
.x2f{left:1745.248500px;}
.x2a{left:1763.415000px;}
.x36{left:1784.158500px;}
.x53{left:1948.764000px;}
.x52{left:1974.984000px;}
.x1d{left:2008.458000px;}
.x1b{left:2018.710500px;}
.x1c{left:2041.503000px;}
.x1e{left:2091.160500px;}
.x1a{left:2105.058000px;}
.x1f{left:2153.230500px;}
.x22{left:2186.352000px;}
.x21{left:2189.539500px;}
.x55{left:2318.061000px;}
.x54{left:2331.478500px;}
.x5c{left:2636.548500px;}
.x5d{left:2699.046000px;}
.x57{left:2884.882500px;}
.x5b{left:2904.591000px;}
.x4{left:2915.250000px;}
.x3{left:2937.697500px;}
.x5{left:2982.795000px;}
.x1{left:3005.527500px;}
.x2{left:3041.805000px;}
@media print{
.vc{vertical-align:-64.000000pt;}
.va{vertical-align:-53.760000pt;}
.v9{vertical-align:-52.480000pt;}
.v2{vertical-align:-26.880000pt;}
.v6{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:26.880000pt;}
.v7{vertical-align:60.160000pt;}
.v1{vertical-align:61.440000pt;}
.vd{vertical-align:64.000000pt;}
.v8{vertical-align:74.240000pt;}
.v3{vertical-align:75.520000pt;}
.vb{vertical-align:79.360000pt;}
.v4{vertical-align:149.760000pt;}
.ve{vertical-align:236.800000pt;}
.ls2f{letter-spacing:-11.695687pt;}
.ls42{letter-spacing:-8.441068pt;}
.ls3c{letter-spacing:-4.793726pt;}
.ls1f{letter-spacing:-3.360000pt;}
.ls30{letter-spacing:-2.723137pt;}
.ls21{letter-spacing:-0.344533pt;}
.ls2e{letter-spacing:-0.326400pt;}
.ls3f{letter-spacing:-0.320000pt;}
.ls3e{letter-spacing:-0.313600pt;}
.ls36{letter-spacing:-0.235733pt;}
.ls24{letter-spacing:-0.192533pt;}
.ls38{letter-spacing:-0.158400pt;}
.ls22{letter-spacing:-0.131733pt;}
.ls25{letter-spacing:-0.112941pt;}
.ls47{letter-spacing:-0.104000pt;}
.ls32{letter-spacing:-0.100800pt;}
.ls39{letter-spacing:-0.099733pt;}
.ls1d{letter-spacing:-0.096000pt;}
.ls41{letter-spacing:-0.080000pt;}
.ls1e{letter-spacing:-0.057600pt;}
.ls34{letter-spacing:-0.043200pt;}
.ls3b{letter-spacing:-0.028800pt;}
.ls1c{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000002pt;}
.ls17{letter-spacing:0.000009pt;}
.ls1{letter-spacing:0.019200pt;}
.ls9{letter-spacing:0.030400pt;}
.ls6{letter-spacing:0.048000pt;}
.ls13{letter-spacing:0.048004pt;}
.ls3{letter-spacing:0.053257pt;}
.ls0{letter-spacing:0.053311pt;}
.ls2{letter-spacing:0.057600pt;}
.lsa{letter-spacing:0.060800pt;}
.ls40{letter-spacing:0.065600pt;}
.ls4{letter-spacing:0.076800pt;}
.ls48{letter-spacing:0.080000pt;}
.ls26{letter-spacing:0.085867pt;}
.ls5{letter-spacing:0.096000pt;}
.ls31{letter-spacing:0.100800pt;}
.ls15{letter-spacing:0.117336pt;}
.ls18{letter-spacing:0.126933pt;}
.ls33{letter-spacing:0.128000pt;}
.ls23{letter-spacing:0.131733pt;}
.ls7{letter-spacing:0.134400pt;}
.ls12{letter-spacing:0.144001pt;}
.ls37{letter-spacing:0.172267pt;}
.ls43{letter-spacing:0.182933pt;}
.ls29{letter-spacing:0.196267pt;}
.ls3a{letter-spacing:0.201600pt;}
.ls44{letter-spacing:0.209067pt;}
.ls2d{letter-spacing:0.230400pt;}
.ls46{letter-spacing:0.240000pt;}
.ls8{letter-spacing:0.256003pt;}
.ls35{letter-spacing:0.259200pt;}
.ls19{letter-spacing:0.261333pt;}
.ls27{letter-spacing:0.266667pt;}
.ls20{letter-spacing:0.283733pt;}
.ls1a{letter-spacing:0.288000pt;}
.lsb{letter-spacing:0.288627pt;}
.ls45{letter-spacing:0.296000pt;}
.ls3d{letter-spacing:0.307200pt;}
.ls2c{letter-spacing:0.313600pt;}
.ls16{letter-spacing:0.314667pt;}
.ls28{letter-spacing:0.324267pt;}
.ls2a{letter-spacing:0.616000pt;}
.lsd{letter-spacing:0.692800pt;}
.ls14{letter-spacing:0.693333pt;}
.lsf{letter-spacing:0.773333pt;}
.lsc{letter-spacing:1.173333pt;}
.ls2b{letter-spacing:1.176000pt;}
.ls1b{letter-spacing:1.178667pt;}
.ls10{letter-spacing:290.741334pt;}
.lse{letter-spacing:714.023468pt;}
.ws1{word-spacing:-53.011200pt;}
.ws9{word-spacing:-52.992000pt;}
.wsa{word-spacing:-51.148800pt;}
.ws8{word-spacing:-51.129600pt;}
.ws5{word-spacing:-51.072000pt;}
.ws4{word-spacing:-51.014400pt;}
.ws10{word-spacing:-50.976000pt;}
.ws16{word-spacing:-44.210198pt;}
.ws15{word-spacing:-43.921571pt;}
.ws17{word-spacing:-43.808629pt;}
.ws24{word-spacing:-41.198433pt;}
.ws2e{word-spacing:-39.127845pt;}
.ws27{word-spacing:-38.563200pt;}
.ws2c{word-spacing:-38.203200pt;}
.ws2a{word-spacing:-38.145600pt;}
.ws20{word-spacing:-36.800012pt;}
.ws1b{word-spacing:-35.466678pt;}
.ws19{word-spacing:-33.941865pt;}
.ws1a{word-spacing:-33.855999pt;}
.ws23{word-spacing:-32.225884pt;}
.ws12{word-spacing:-28.251731pt;}
.ws13{word-spacing:-28.099731pt;}
.ws37{word-spacing:-28.080000pt;}
.ws14{word-spacing:-27.967998pt;}
.ws36{word-spacing:-27.896000pt;}
.ws29{word-spacing:-24.244266pt;}
.ws2b{word-spacing:-24.017599pt;}
.ws28{word-spacing:-23.881599pt;}
.ws1f{word-spacing:-22.696000pt;}
.ws33{word-spacing:-0.522667pt;}
.ws35{word-spacing:-0.470400pt;}
.ws2d{word-spacing:-0.448000pt;}
.ws1d{word-spacing:-0.425600pt;}
.ws26{word-spacing:-0.288000pt;}
.ws25{word-spacing:-0.240000pt;}
.ws2f{word-spacing:-0.176000pt;}
.ws30{word-spacing:-0.160000pt;}
.ws1e{word-spacing:-0.122667pt;}
.ws38{word-spacing:0.000000pt;}
.ws31{word-spacing:0.160000pt;}
.wsd{word-spacing:1.114133pt;}
.wsf{word-spacing:1.114667pt;}
.wsc{word-spacing:1.354133pt;}
.wse{word-spacing:1.354667pt;}
.ws7{word-spacing:1.526400pt;}
.ws6{word-spacing:1.542400pt;}
.ws3{word-spacing:1.573333pt;}
.wsb{word-spacing:1.628800pt;}
.ws2{word-spacing:1.650133pt;}
.ws0{word-spacing:1.802667pt;}
.ws11{word-spacing:3.253333pt;}
.ws32{word-spacing:8.179735pt;}
.ws21{word-spacing:253.458687pt;}
.ws18{word-spacing:253.459220pt;}
.ws22{word-spacing:482.757261pt;}
.ws1c{word-spacing:486.232994pt;}
.ws34{word-spacing:9290.749359pt;}
._e{margin-left:-741.823979pt;}
._15{margin-left:-23.750441pt;}
._a{margin-left:-15.379200pt;}
._14{margin-left:-13.109863pt;}
._13{margin-left:-11.832960pt;}
._f{margin-left:-10.209067pt;}
._3{margin-left:-7.737600pt;}
._5{margin-left:-6.067200pt;}
._c{margin-left:-5.174967pt;}
._1{margin-left:-4.012800pt;}
._7{margin-left:-2.112000pt;}
._0{margin-left:-1.209600pt;}
._6{width:1.061280pt;}
._4{width:2.169600pt;}
._2{width:3.460267pt;}
._8{width:4.717867pt;}
._12{width:5.891442pt;}
._9{width:6.874667pt;}
._16{width:8.101335pt;}
._b{width:9.105067pt;}
._10{width:11.224346pt;}
._11{width:12.116832pt;}
._d{width:706.713641pt;}
.fs9{font-size:74.666662pt;}
.fs7{font-size:80.000000pt;}
.fsb{font-size:85.333325pt;}
.fs10{font-size:90.666662pt;}
.fsc{font-size:96.000000pt;}
.fs3{font-size:101.333325pt;}
.fs2{font-size:106.666662pt;}
.fs8{font-size:112.000000pt;}
.fs6{font-size:122.666662pt;}
.fs4{font-size:125.490202pt;}
.fs5{font-size:133.333376pt;}
.fsd{font-size:144.000000pt;}
.fsf{font-size:160.000000pt;}
.fsa{font-size:170.666624pt;}
.fs13{font-size:176.000000pt;}
.fs1{font-size:192.000000pt;}
.fs0{font-size:213.333376pt;}
.fs14{font-size:218.666624pt;}
.fse{font-size:240.000000pt;}
.fs12{font-size:261.333376pt;}
.fs11{font-size:512.000000pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:42.773333pt;}
.y27{bottom:52.053333pt;}
.y26{bottom:82.773333pt;}
.y25{bottom:113.493333pt;}
.y24{bottom:142.613333pt;}
.y23{bottom:173.333333pt;}
.y22{bottom:204.053333pt;}
.y21{bottom:234.773333pt;}
.y5c{bottom:782.293333pt;}
.y5d{bottom:886.933333pt;}
.ye{bottom:1024.853333pt;}
.yd{bottom:1082.133333pt;}
.y20{bottom:1132.693333pt;}
.yc{bottom:1142.293333pt;}
.y5{bottom:1150.613333pt;}
.y1f{bottom:1189.973333pt;}
.y4{bottom:1209.173333pt;}
.yb{bottom:1226.133333pt;}
.y1a{bottom:1243.413333pt;}
.y1e{bottom:1247.573333pt;}
.y3{bottom:1293.333333pt;}
.y19{bottom:1301.973333pt;}
.ya{bottom:1308.693333pt;}
.y1d{bottom:1325.973333pt;}
.y18{bottom:1359.573333pt;}
.y9{bottom:1367.573333pt;}
.y2{bottom:1375.893333pt;}
.y1c{bottom:1383.573333pt;}
.y17{bottom:1416.853333pt;}
.y1{bottom:1434.453333pt;}
.y1b{bottom:1442.133333pt;}
.y8{bottom:1450.133333pt;}
.y16{bottom:1475.413333pt;}
.y7{bottom:1507.413333pt;}
.y15{bottom:1557.973333pt;}
.y6{bottom:1566.293333pt;}
.y14{bottom:1615.573333pt;}
.y13{bottom:1675.413333pt;}
.y12{bottom:1757.973333pt;}
.y59{bottom:1780.373333pt;}
.y11{bottom:1815.573333pt;}
.y10{bottom:1872.853333pt;}
.yf{bottom:1931.413333pt;}
.y58{bottom:1941.013333pt;}
.y4f{bottom:2475.733333pt;}
.y2b{bottom:2485.086933pt;}
.y4e{bottom:2519.573333pt;}
.y42{bottom:2606.293333pt;}
.y4b{bottom:2621.653333pt;}
.y40{bottom:2622.046933pt;}
.y4a{bottom:2649.813333pt;}
.y41{bottom:2650.453333pt;}
.y3f{bottom:2659.486933pt;}
.y4d{bottom:2673.173333pt;}
.y49{bottom:2676.373333pt;}
.y36{bottom:2679.253333pt;}
.y44{bottom:2689.493333pt;}
.y4c{bottom:2717.333333pt;}
.y35{bottom:2722.133333pt;}
.y2a{bottom:2836.126933pt;}
.y34{bottom:2856.213333pt;}
.y48{bottom:2868.693333pt;}
.y33{bottom:2893.653333pt;}
.y46{bottom:2894.293333pt;}
.y3c{bottom:2926.933333pt;}
.y45{bottom:2938.453333pt;}
.y50{bottom:3002.133333pt;}
.y43{bottom:3003.093333pt;}
.y47{bottom:3030.933333pt;}
.y32{bottom:3076.373333pt;}
.y3b{bottom:3095.253333pt;}
.y31{bottom:3113.813333pt;}
.y29{bottom:3269.727067pt;}
.y52{bottom:3280.607067pt;}
.y38{bottom:3305.813467pt;}
.y3a{bottom:3307.413467pt;}
.y51{bottom:3318.047067pt;}
.y37{bottom:3321.493467pt;}
.y39{bottom:3334.293467pt;}
.y5a{bottom:3389.973467pt;}
.y30{bottom:3471.893467pt;}
.y2f{bottom:3562.453467pt;}
.y2e{bottom:3599.893467pt;}
.y28{bottom:3611.167067pt;}
.y3e{bottom:3744.927067pt;}
.y3d{bottom:3782.047067pt;}
.y2d{bottom:3792.213467pt;}
.y2c{bottom:3807.573467pt;}
.y56{bottom:4022.613467pt;}
.y55{bottom:4100.053467pt;}
.y54{bottom:4173.653467pt;}
.y5b{bottom:4235.093467pt;}
.y53{bottom:4281.173467pt;}
.he{height:63.999994pt;}
.h1a{height:64.640625pt;}
.hb{height:67.539057pt;}
.h13{height:67.999997pt;}
.h10{height:72.000000pt;}
.h4{height:75.999994pt;}
.h17{height:77.120000pt;}
.h3{height:79.999997pt;}
.h8{height:91.999997pt;}
.h7{height:100.000032pt;}
.h11{height:108.000000pt;}
.h5{height:120.972554pt;}
.hc{height:127.999968pt;}
.hd{height:136.159994pt;}
.h6{height:137.439994pt;}
.h2{height:144.000000pt;}
.h12{height:159.960938pt;}
.h1{height:160.000032pt;}
.hf{height:174.240032pt;}
.ha{height:175.520032pt;}
.h16{height:195.520000pt;}
.h15{height:211.360000pt;}
.h9{height:249.760032pt;}
.h18{height:251.925374pt;}
.h14{height:384.000000pt;}
.h19{height:488.725374pt;}
.h0{height:4493.333333pt;}
.w0{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x20{left:50.021107pt;}
.x58{left:65.093120pt;}
.xb{left:76.517480pt;}
.xa{left:98.424147pt;}
.x3d{left:106.634320pt;}
.x7{left:112.764147pt;}
.xc{left:128.830813pt;}
.x8{left:131.644133pt;}
.x3c{left:149.967600pt;}
.x42{left:163.506000pt;}
.x6{left:174.330800pt;}
.x9{left:202.390800pt;}
.xd{left:218.830800pt;}
.x56{left:236.951200pt;}
.x59{left:248.158933pt;}
.x4e{left:323.293200pt;}
.x45{left:338.564400pt;}
.x44{left:345.564400pt;}
.x41{left:346.453600pt;}
.x49{left:351.563600pt;}
.x43{left:355.397733pt;}
.x4a{left:417.310267pt;}
.x3f{left:456.507733pt;}
.x47{left:463.515200pt;}
.x40{left:471.841067pt;}
.x46{left:481.095200pt;}
.x48{left:605.265200pt;}
.x5a{left:689.519733pt;}
.x4d{left:691.546933pt;}
.x50{left:694.406533pt;}
.x3e{left:716.094267pt;}
.x4c{left:718.440267pt;}
.x4b{left:744.121067pt;}
.x25{left:747.610400pt;}
.x39{left:768.259333pt;}
.x26{left:791.197067pt;}
.x38{left:792.519333pt;}
.x12{left:872.588133pt;}
.x15{left:883.028133pt;}
.x13{left:902.121467pt;}
.x11{left:909.828133pt;}
.xf{left:918.681467pt;}
.x16{left:921.281467pt;}
.x17{left:927.588133pt;}
.x10{left:953.088133pt;}
.x51{left:971.710000pt;}
.x27{left:1002.508000pt;}
.xe{left:1007.234800pt;}
.x2b{left:1024.483867pt;}
.x19{left:1028.521467pt;}
.x3b{left:1031.535733pt;}
.x28{left:1046.754533pt;}
.x18{left:1050.788133pt;}
.x3a{left:1062.342533pt;}
.x30{left:1072.253333pt;}
.x37{left:1082.495467pt;}
.x23{left:1094.260933pt;}
.x14{left:1143.674800pt;}
.x31{left:1184.875333pt;}
.x24{left:1206.882933pt;}
.x4f{left:1218.806533pt;}
.x35{left:1354.064000pt;}
.x34{left:1359.512000pt;}
.x33{left:1480.640000pt;}
.x29{left:1496.796000pt;}
.x2c{left:1504.085333pt;}
.x2e{left:1516.752000pt;}
.x2d{left:1532.392000pt;}
.x32{left:1536.053333pt;}
.x2f{left:1551.332000pt;}
.x2a{left:1567.480000pt;}
.x36{left:1585.918667pt;}
.x53{left:1732.234667pt;}
.x52{left:1755.541333pt;}
.x1d{left:1785.296000pt;}
.x1b{left:1794.409333pt;}
.x1c{left:1814.669333pt;}
.x1e{left:1858.809333pt;}
.x1a{left:1871.162667pt;}
.x1f{left:1913.982667pt;}
.x22{left:1943.424000pt;}
.x21{left:1946.257333pt;}
.x55{left:2060.498667pt;}
.x54{left:2072.425333pt;}
.x5c{left:2343.598667pt;}
.x5d{left:2399.152000pt;}
.x57{left:2564.340000pt;}
.x5b{left:2581.858667pt;}
.x4{left:2591.333333pt;}
.x3{left:2611.286667pt;}
.x5{left:2651.373333pt;}
.x1{left:2671.580000pt;}
.x2{left:2703.826667pt;}
}




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