
    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_00be21a81ca56f2de9a197ac.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_282a4c2bdb22bceb13d792e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.263000;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_ff3bcf8177adb2f894a46224.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_67474ece918700567e6c7dea.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_54c59f285e241874279bc8e9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_45ff10f69c5f11c30443c43a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.837000;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_9a01f915caf8de3960cfc14d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_360a4b7771c1f3ff20c23c19.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_308a410923e24ff1754f3705.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_8be33fbfafc86954a04cf14f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4fa09414903d361712a61d21.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6fa251711a1efebe36cd1f02.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.937000;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_b14004491e7cf7348f571bb9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.837000;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_7b4b8a255cba027bbf04a5a1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.837000;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_bb2f6ab54069492d236942fb.woff2')format("woff");}.fff{font-family:fff;line-height:0.930664;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_6c6d5f4d5561eea82b8c0b98.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.677734;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_a521211a01ac4c927276163d.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_a01b5aa9c04b8313a609ee40.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.862305;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_d0330d71fd3f43c9e586daaf.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.808105;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_f99cd39ee221b8e52d06c260.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910156;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_8300bdcaa512eee1f4946dc5.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.691895;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_dd9af7bb0149b5d6c1190db0.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.837000;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_49e061a815d877852f59cfb4.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.839355;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_cdc9a0789ac9b36211f6d11a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.893555;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_38b64076fdcb3b8ec1ba66f7.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.858398;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_b4692ad5474508f1f6b2d64a.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.002930;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_cc15659b1d58602dee864676.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.727539;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_f267c5ab261b22f2bba03be0.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_474c4021180f1621b737929f.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.910156;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_733fc637be1356d345b07be8.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.858398;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_2e51a510cdf9de39da6bf731.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.895996;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_8f00a9f83e5383dfc6df8ef8.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.910156;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_1f446b92cc9306aa1357c83c.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.937000;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_a35401abd1e78e0f581eb618.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.722656;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_247e9098159fe4142d40bdf5.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.937000;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:ff24;src:url('chunks/assets/font_6da9e42bf6fbde9876be4be1.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_39f210ef9d59ec3661776a6d.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10{transform:matrix(0.070362,0.245100,-0.240294,0.068982,0,0);-ms-transform:matrix(0.070362,0.245100,-0.240294,0.068982,0,0);-webkit-transform:matrix(0.070362,0.245100,-0.240294,0.068982,0,0);}
.m8{transform:matrix(0.126324,0.221511,-0.217168,0.123847,0,0);-ms-transform:matrix(0.126324,0.221511,-0.217168,0.123847,0,0);-webkit-transform:matrix(0.126324,0.221511,-0.217168,0.123847,0,0);}
.md{transform:matrix(0.130812,0.218891,-0.214599,0.128247,0,0);-ms-transform:matrix(0.130812,0.218891,-0.214599,0.128247,0,0);-webkit-transform:matrix(0.130812,0.218891,-0.214599,0.128247,0,0);}
.mb{transform:matrix(0.169271,0.190715,-0.186976,0.165952,0,0);-ms-transform:matrix(0.169271,0.190715,-0.186976,0.165952,0,0);-webkit-transform:matrix(0.169271,0.190715,-0.186976,0.165952,0,0);}
.m2{transform:matrix(0.188827,-0.171375,0.168014,0.185125,0,0);-ms-transform:matrix(0.188827,-0.171375,0.168014,0.185125,0,0);-webkit-transform:matrix(0.188827,-0.171375,0.168014,0.185125,0,0);}
.mc{transform:matrix(0.196567,-0.162439,0.159254,0.192712,0,0);-ms-transform:matrix(0.196567,-0.162439,0.159254,0.192712,0,0);-webkit-transform:matrix(0.196567,-0.162439,0.159254,0.192712,0,0);}
.m7{transform:matrix(0.212620,0.140775,-0.138015,0.208451,0,0);-ms-transform:matrix(0.212620,0.140775,-0.138015,0.208451,0,0);-webkit-transform:matrix(0.212620,0.140775,-0.138015,0.208451,0,0);}
.m6{transform:matrix(0.233967,0.101413,-0.099424,0.229379,0,0);-ms-transform:matrix(0.233967,0.101413,-0.099424,0.229379,0,0);-webkit-transform:matrix(0.233967,0.101413,-0.099424,0.229379,0,0);}
.ma{transform:matrix(0.234063,0.101190,-0.099206,0.229474,0,0);-ms-transform:matrix(0.234063,0.101190,-0.099206,0.229474,0,0);-webkit-transform:matrix(0.234063,0.101190,-0.099206,0.229474,0,0);}
.m5{transform:matrix(0.235455,-0.097908,0.095988,0.230838,0,0);-ms-transform:matrix(0.235455,-0.097908,0.095988,0.230838,0,0);-webkit-transform:matrix(0.235455,-0.097908,0.095988,0.230838,0,0);}
.me{transform:matrix(0.236625,0.095046,-0.093182,0.231985,0,0);-ms-transform:matrix(0.236625,0.095046,-0.093182,0.231985,0,0);-webkit-transform:matrix(0.236625,0.095046,-0.093182,0.231985,0,0);}
.m4{transform:matrix(0.242192,-0.079801,0.078237,0.237443,0,0);-ms-transform:matrix(0.242192,-0.079801,0.078237,0.237443,0,0);-webkit-transform:matrix(0.242192,-0.079801,0.078237,0.237443,0,0);}
.m3{transform:matrix(0.248598,-0.056782,0.055669,0.243723,0,0);-ms-transform:matrix(0.248598,-0.056782,0.055669,0.243723,0,0);-webkit-transform:matrix(0.248598,-0.056782,0.055669,0.243723,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);}
.mf{transform:matrix(0.251458,-0.042353,0.041522,0.246528,0,0);-ms-transform:matrix(0.251458,-0.042353,0.041522,0.246528,0,0);-webkit-transform:matrix(0.251458,-0.042353,0.041522,0.246528,0,0);}
.m9{transform:matrix(0.254565,-0.014883,0.014591,0.249574,0,0);-ms-transform:matrix(0.254565,-0.014883,0.014591,0.249574,0,0);-webkit-transform:matrix(0.254565,-0.014883,0.014591,0.249574,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);}
.m11{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);}
.v3{vertical-align:-59.040000px;}
.v5{vertical-align:-44.640000px;}
.v7{vertical-align:-30.240000px;}
.v8{vertical-align:-28.800000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.440000px;}
.v6{vertical-align:44.640000px;}
.v2{vertical-align:59.040000px;}
.v1{vertical-align:60.480000px;}
.ls23{letter-spacing:-4.934399px;}
.ls28{letter-spacing:-1.305600px;}
.ls3c{letter-spacing:-1.046400px;}
.ls32{letter-spacing:-0.691200px;}
.ls3a{letter-spacing:-0.410400px;}
.ls1f{letter-spacing:-0.360000px;}
.ls2d{letter-spacing:-0.280800px;}
.ls3d{letter-spacing:-0.230400px;}
.ls31{letter-spacing:-0.226800px;}
.ls36{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.204000px;}
.ls2a{letter-spacing:-0.194400px;}
.ls44{letter-spacing:-0.192000px;}
.ls2f{letter-spacing:-0.183600px;}
.ls41{letter-spacing:-0.172800px;}
.ls1b{letter-spacing:-0.162000px;}
.ls1e{letter-spacing:-0.158400px;}
.ls46{letter-spacing:-0.153600px;}
.ls43{letter-spacing:-0.134400px;}
.ls2b{letter-spacing:-0.105600px;}
.ls3b{letter-spacing:-0.097200px;}
.ls45{letter-spacing:-0.086400px;}
.ls2c{letter-spacing:-0.084000px;}
.ls34{letter-spacing:-0.075600px;}
.ls20{letter-spacing:-0.052800px;}
.ls42{letter-spacing:-0.038400px;}
.ls19{letter-spacing:-0.036000px;}
.ls37{letter-spacing:-0.010800px;}
.ls18{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000001px;}
.lsb{letter-spacing:0.000012px;}
.ls30{letter-spacing:0.021600px;}
.ls7{letter-spacing:0.047035px;}
.ls3{letter-spacing:0.047093px;}
.ls17{letter-spacing:0.054002px;}
.ls29{letter-spacing:0.097200px;}
.ls1c{letter-spacing:0.105600px;}
.ls10{letter-spacing:0.108611px;}
.ls3f{letter-spacing:0.120000px;}
.ls35{letter-spacing:0.129600px;}
.ls40{letter-spacing:0.182400px;}
.ls47{letter-spacing:0.201600px;}
.lsd{letter-spacing:0.211200px;}
.ls38{letter-spacing:0.216000px;}
.ls24{letter-spacing:0.249600px;}
.ls33{letter-spacing:0.280800px;}
.ls3e{letter-spacing:0.291600px;}
.ls2e{letter-spacing:0.302400px;}
.ls14{letter-spacing:0.342000px;}
.ls1d{letter-spacing:0.343200px;}
.ls25{letter-spacing:0.364800px;}
.ls11{letter-spacing:0.384000px;}
.ls27{letter-spacing:0.422400px;}
.lsf{letter-spacing:1.368000px;}
.ls26{letter-spacing:1.373400px;}
.ls39{letter-spacing:1.887599px;}
.lse{letter-spacing:6.741175px;}
.ls22{letter-spacing:6.811764px;}
.ls21{letter-spacing:7.164705px;}
.lsa{letter-spacing:34.775743px;}
.lsc{letter-spacing:34.776043px;}
.ls8{letter-spacing:46.159785px;}
.ls16{letter-spacing:56.159957px;}
.ls15{letter-spacing:59.898000px;}
.ls13{letter-spacing:144.000000px;}
.ls12{letter-spacing:172.608011px;}
.ls0{letter-spacing:822.170181px;}
.ls1{letter-spacing:842.082480px;}
.ls6{letter-spacing:848.720089px;}
.ls5{letter-spacing:868.632913px;}
.ls2{letter-spacing:895.182762px;}
.ls4{letter-spacing:908.457396px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(95,60,15),0 0.015em rgb(95,60,15),0.015em 0 rgb(95,60,15),0 -0.015em  rgb(95,60,15);}
.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(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(95,60,15);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-72.000000px;}
.ws5{word-spacing:-66.343188px;}
.ws9{word-spacing:-66.211188px;}
.ws4{word-spacing:-65.999988px;}
.ws8{word-spacing:-65.947188px;}
.wsf{word-spacing:-65.894388px;}
.ws6{word-spacing:-65.841588px;}
.wse{word-spacing:-64.897200px;}
.ws3{word-spacing:-64.638000px;}
.ws1c{word-spacing:-64.573200px;}
.wsb{word-spacing:-43.814389px;}
.wsd{word-spacing:-43.756789px;}
.wsc{word-spacing:-42.086389px;}
.ws1e{word-spacing:-40.680000px;}
.ws1{word-spacing:-29.963999px;}
.ws2{word-spacing:-29.795999px;}
.ws14{word-spacing:-24.710400px;}
.ws18{word-spacing:-24.429600px;}
.ws12{word-spacing:-24.408000px;}
.ws17{word-spacing:-24.397200px;}
.ws15{word-spacing:-24.332400px;}
.ws16{word-spacing:-24.127200px;}
.ws13{word-spacing:-23.716800px;}
.ws28{word-spacing:-21.907198px;}
.ws2a{word-spacing:-21.897598px;}
.ws24{word-spacing:-21.878398px;}
.ws27{word-spacing:-21.695998px;}
.ws26{word-spacing:-21.657598px;}
.ws29{word-spacing:-21.609598px;}
.ws25{word-spacing:-21.523198px;}
.ws20{word-spacing:-21.465598px;}
.ws1f{word-spacing:-20.649598px;}
.wsa{word-spacing:-1.499400px;}
.ws21{word-spacing:-0.360000px;}
.ws10{word-spacing:-0.264000px;}
.ws22{word-spacing:-0.240000px;}
.ws19{word-spacing:-0.216000px;}
.ws0{word-spacing:-0.081346px;}
.ws23{word-spacing:-0.066000px;}
.ws7{word-spacing:0.000000px;}
.ws1b{word-spacing:0.194400px;}
.ws1a{word-spacing:70.029705px;}
.ws1d{word-spacing:73.320036px;}
._1a{margin-left:-37.152198px;}
._11{margin-left:-31.449600px;}
._5{margin-left:-30.069634px;}
._1b{margin-left:-26.399417px;}
._9{margin-left:-23.720400px;}
._12{margin-left:-18.479997px;}
._a{margin-left:-17.173969px;}
._19{margin-left:-15.336040px;}
._14{margin-left:-14.294161px;}
._7{margin-left:-9.741598px;}
._2{margin-left:-8.549993px;}
._d{margin-left:-7.202116px;}
._3{margin-left:-6.192000px;}
._4{margin-left:-4.212000px;}
._1{margin-left:-2.724000px;}
._0{margin-left:-1.187960px;}
._6{width:1.212766px;}
._13{width:2.335362px;}
._b{width:3.801600px;}
._c{width:5.891270px;}
._18{width:8.507234px;}
._8{width:14.539200px;}
._15{width:30.238753px;}
._1c{width:66.299552px;}
._17{width:81.420357px;}
._e{width:99.087918px;}
._16{width:162.000000px;}
._f{width:172.611011px;}
._10{width:422.184528px;}
.fc8{color:transparent;}
.fc7{color:rgb(5,99,193);}
.fc6{color:rgb(0,32,96);}
.fc4{color:rgb(143,90,21);}
.fc3{color:rgb(95,60,15);}
.fc2{color:rgb(77,109,102);}
.fc1{color:rgb(107,194,211);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs20{font-size:65.999995px;}
.fs0{font-size:81.345547px;}
.fs1{font-size:83.669672px;}
.fs1e{font-size:95.999990px;}
.fs1b{font-size:108.000000px;}
.fs2{font-size:119.999995px;}
.fsa{font-size:126.000000px;}
.fs1c{font-size:155.999952px;}
.fs1d{font-size:180.000000px;}
.fs6{font-size:191.999952px;}
.fs5{font-size:216.000000px;}
.fs1f{font-size:240.000048px;}
.fs4{font-size:263.999952px;}
.fsb{font-size:288.000000px;}
.fs3{font-size:324.000000px;}
.fs9{font-size:352.941120px;}
.fs7{font-size:360.000000px;}
.fs8{font-size:396.000000px;}
.fs17{font-size:470.588156px;}
.fs14{font-size:470.588183px;}
.fs15{font-size:470.588191px;}
.fsc{font-size:470.588195px;}
.fs16{font-size:470.588219px;}
.fs12{font-size:470.588222px;}
.fsd{font-size:470.588240px;}
.fs13{font-size:470.588257px;}
.fse{font-size:470.588272px;}
.fs11{font-size:470.588278px;}
.fs1a{font-size:470.588279px;}
.fs19{font-size:470.588284px;}
.fs10{font-size:470.588288px;}
.fsf{font-size:470.588295px;}
.fs18{font-size:470.588317px;}
.y0{bottom:0.000000px;}
.y3{bottom:18.493227px;}
.y55{bottom:22.200000px;}
.y54{bottom:53.880000px;}
.y4{bottom:59.484496px;}
.y10{bottom:61.058486px;}
.y6b{bottom:63.600000px;}
.y68{bottom:67.200000px;}
.yf{bottom:85.425378px;}
.y53{bottom:87.000000px;}
.ye{bottom:109.792285px;}
.y52{bottom:118.320000px;}
.yd{bottom:134.159192px;}
.y6a{bottom:137.040000px;}
.y67{bottom:139.200000px;}
.y51{bottom:151.440000px;}
.yc{bottom:158.526040px;}
.yb{bottom:182.893049px;}
.y50{bottom:184.200000px;}
.ya{bottom:208.534974px;}
.y5{bottom:209.672541px;}
.y66{bottom:212.640000px;}
.y69{bottom:213.720000px;}
.y4f{bottom:215.880000px;}
.y65{bottom:290.400000px;}
.y6{bottom:414.833159px;}
.y2{bottom:429.703623px;}
.y5c{bottom:437.280000px;}
.y89{bottom:455.280000px;}
.y88{bottom:483.720000px;}
.y5b{bottom:501.720000px;}
.y87{bottom:512.160000px;}
.y86{bottom:540.600000px;}
.y5a{bottom:566.160000px;}
.y85{bottom:570.840000px;}
.y84{bottom:599.280000px;}
.y7{bottom:619.993777px;}
.y59{bottom:624.840000px;}
.y83{bottom:627.720000px;}
.y58{bottom:689.280000px;}
.y57{bottom:768.840000px;}
.y8{bottom:770.181690px;}
.y9{bottom:811.173047px;}
.y56{bottom:833.280000px;}
.y81{bottom:889.080000px;}
.y82{bottom:944.160000px;}
.y5d{bottom:956.400000px;}
.y7e{bottom:1011.480000px;}
.y7f{bottom:1094.280000px;}
.y80{bottom:1181.760000px;}
.y7b{bottom:1258.440000px;}
.y7c{bottom:1339.800000px;}
.y7d{bottom:1411.800000px;}
.y78{bottom:1492.800000px;}
.y79{bottom:1565.880000px;}
.y7a{bottom:1644.720000px;}
.y75{bottom:1720.680000px;}
.y76{bottom:1807.800000px;}
.y77{bottom:1887.000000px;}
.y72{bottom:1967.280000px;}
.y73{bottom:2042.520000px;}
.y49{bottom:2044.680000px;}
.y74{bottom:2119.560000px;}
.y48{bottom:2124.240000px;}
.y64{bottom:2174.640000px;}
.y6f{bottom:2191.560000px;}
.y63{bottom:2203.080000px;}
.y47{bottom:2203.800000px;}
.y62{bottom:2249.880000px;}
.y70{bottom:2270.760000px;}
.y61{bottom:2303.880000px;}
.y4e{bottom:2324.760000px;}
.y71{bottom:2353.200000px;}
.y60{bottom:2357.880000px;}
.y4d{bottom:2411.520000px;}
.y6e{bottom:2441.760000px;}
.y4c{bottom:2497.200000px;}
.y1b{bottom:2499.720000px;}
.y6d{bottom:2520.960000px;}
.y1a{bottom:2577.840000px;}
.y4b{bottom:2583.960000px;}
.y19{bottom:2657.400000px;}
.y4a{bottom:2671.080000px;}
.y18{bottom:2760.720000px;}
.y25{bottom:2761.800000px;}
.y2c{bottom:2801.400000px;}
.y17{bottom:2840.280000px;}
.y24{bottom:2841.360000px;}
.y16{bottom:2919.840000px;}
.y23{bottom:2920.920000px;}
.y22{bottom:3000.120000px;}
.y15{bottom:3036.480000px;}
.y3d{bottom:3046.560000px;}
.y3f{bottom:3113.341186px;}
.y21{bottom:3114.240000px;}
.y46{bottom:3118.189275px;}
.y42{bottom:3135.013835px;}
.y40{bottom:3140.959232px;}
.y35{bottom:3145.055112px;}
.y43{bottom:3154.847490px;}
.y45{bottom:3164.447146px;}
.y44{bottom:3173.012753px;}
.y34{bottom:3190.920000px;}
.y38{bottom:3192.447344px;}
.y20{bottom:3193.800000px;}
.y41{bottom:3202.557993px;}
.y37{bottom:3222.359748px;}
.y3a{bottom:3229.774244px;}
.y36{bottom:3251.551487px;}
.y39{bottom:3253.279920px;}
.y1f{bottom:3273.360000px;}
.y3c{bottom:3280.200000px;}
.y3e{bottom:3282.626775px;}
.y3b{bottom:3316.200000px;}
.y33{bottom:3338.160000px;}
.y1e{bottom:3352.920000px;}
.y1d{bottom:3432.120000px;}
.y32{bottom:3459.840000px;}
.y31{bottom:3486.120000px;}
.y1c{bottom:3543.360000px;}
.y30{bottom:3573.240150px;}
.y1{bottom:3656.127000px;}
.y6c{bottom:3671.880150px;}
.y5f{bottom:3792.120150px;}
.y5e{bottom:3899.760150px;}
.y2f{bottom:4010.640150px;}
.y2e{bottom:4130.160150px;}
.y2d{bottom:4231.680150px;}
.y14{bottom:4378.200150px;}
.y2b{bottom:4379.280150px;}
.y11{bottom:4400.160150px;}
.y13{bottom:4414.200150px;}
.y12{bottom:4450.200150px;}
.y2a{bottom:4526.880150px;}
.y29{bottom:4585.200150px;}
.y28{bottom:4674.732150px;}
.y27{bottom:4782.732150px;}
.y26{bottom:4907.760120px;}
.h2b{height:43.989255px;}
.h4{height:61.009160px;}
.h3{height:62.752254px;}
.h27{height:68.906243px;}
.h2{height:78.984171px;}
.h17{height:81.972653px;}
.h5{height:83.378903px;}
.h22{height:89.068359px;}
.h26{height:122.431641px;}
.h25{height:133.312467px;}
.he{height:143.019492px;}
.hd{height:144.459492px;}
.h23{height:149.976563px;}
.h24{height:150.925781px;}
.h2a{height:166.640658px;}
.h28{height:173.437535px;}
.h29{height:181.920036px;}
.h8{height:183.304654px;}
.h10{height:184.744654px;}
.h7{height:190.781215px;}
.h21{height:195.187500px;}
.hf{height:199.968750px;}
.h9{height:200.111964px;}
.hc{height:241.440678px;}
.h6{height:243.000000px;}
.ha{height:270.000000px;}
.hb{height:297.000000px;}
.h1d{height:352.941117px;}
.h1a{height:352.941138px;}
.h1b{height:352.941143px;}
.h11{height:352.941146px;}
.h1c{height:352.941165px;}
.h18{height:352.941167px;}
.h12{height:352.941180px;}
.h19{height:352.941193px;}
.h13{height:352.941204px;}
.h16{height:352.941208px;}
.h20{height:352.941210px;}
.h1f{height:352.941213px;}
.h15{height:352.941216px;}
.h14{height:352.941221px;}
.h1e{height:352.941238px;}
.h1{height:839.834400px;}
.h0{height:5055.000000px;}
.w1{width:1574.689500px;}
.w0{width:3576.000000px;}
.x0{left:0.000000px;}
.x6{left:12.480873px;}
.x2{left:19.165168px;}
.x3c{left:20.647440px;}
.x1a{left:60.562560px;}
.x5{left:95.837342px;}
.x7{left:102.474849px;}
.x11{left:106.431375px;}
.x1c{left:109.478850px;}
.x19{left:123.942870px;}
.x10{left:149.696325px;}
.x13{left:160.431300px;}
.x20{left:167.586750px;}
.x12{left:173.931300px;}
.x41{left:244.712700px;}
.x1f{left:275.464800px;}
.x1d{left:289.991400px;}
.x21{left:317.916750px;}
.x4{left:368.906463px;}
.x8{left:375.543925px;}
.x17{left:456.845400px;}
.x45{left:477.401100px;}
.x3{left:548.836763px;}
.x9{left:555.474225px;}
.x46{left:570.873600px;}
.x4c{left:648.627450px;}
.x43{left:809.516250px;}
.x42{left:821.831250px;}
.x44{left:848.928600px;}
.x18{left:926.720250px;}
.x1e{left:1121.392200px;}
.x40{left:1132.860300px;}
.x3d{left:1199.659200px;}
.x3e{left:1253.659200px;}
.x48{left:1352.088450px;}
.x22{left:1415.029526px;}
.x49{left:1419.588450px;}
.xa{left:1468.415522px;}
.x25{left:1472.007444px;}
.xb{left:1530.485994px;}
.x39{left:1551.921000px;}
.x24{left:1561.225742px;}
.x3a{left:1586.811000px;}
.x1b{left:1636.059000px;}
.x38{left:1647.658500px;}
.x23{left:1660.395521px;}
.x37{left:1663.213500px;}
.x34{left:1703.292000px;}
.x35{left:1714.009500px;}
.x3b{left:1782.846000px;}
.x2b{left:1836.150734px;}
.x36{left:1840.917000px;}
.x2e{left:1886.016297px;}
.x2a{left:1892.152500px;}
.x3f{left:1915.159500px;}
.x47{left:1947.898500px;}
.x2d{left:1964.720132px;}
.xc{left:1974.688500px;}
.x1{left:1990.840500px;}
.x2c{left:2059.815241px;}
.x26{left:2315.023146px;}
.x27{left:2378.892945px;}
.x4a{left:2535.307500px;}
.x2f{left:2577.962593px;}
.x4d{left:2601.612000px;}
.x4b{left:2602.807500px;}
.x4e{left:2614.084500px;}
.x32{left:2616.050807px;}
.x58{left:2622.754500px;}
.x31{left:2670.654582px;}
.x28{left:2689.450500px;}
.x29{left:2691.243000px;}
.x30{left:2730.282771px;}
.x56{left:2735.442000px;}
.x57{left:2740.879500px;}
.x33{left:2761.058230px;}
.x5b{left:2799.372000px;}
.x59{left:2921.839500px;}
.x15{left:2940.264000px;}
.x14{left:2986.711500px;}
.x5a{left:3003.027000px;}
.x16{left:3007.764000px;}
.xd{left:3020.764500px;}
.x5c{left:3091.392000px;}
.x53{left:3195.678000px;}
.x50{left:3197.041500px;}
.xe{left:3199.287000px;}
.x51{left:3209.268000px;}
.x52{left:3211.258500px;}
.x54{left:3265.779000px;}
.xf{left:3266.899500px;}
.x4f{left:3278.278500px;}
.x55{left:3291.990000px;}
@media print{
.v3{vertical-align:-52.480000pt;}
.v5{vertical-align:-39.680000pt;}
.v7{vertical-align:-26.880000pt;}
.v8{vertical-align:-25.600000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.280000pt;}
.v6{vertical-align:39.680000pt;}
.v2{vertical-align:52.480000pt;}
.v1{vertical-align:53.760000pt;}
.ls23{letter-spacing:-4.386132pt;}
.ls28{letter-spacing:-1.160533pt;}
.ls3c{letter-spacing:-0.930133pt;}
.ls32{letter-spacing:-0.614400pt;}
.ls3a{letter-spacing:-0.364800pt;}
.ls1f{letter-spacing:-0.320000pt;}
.ls2d{letter-spacing:-0.249600pt;}
.ls3d{letter-spacing:-0.204800pt;}
.ls31{letter-spacing:-0.201600pt;}
.ls36{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.181333pt;}
.ls2a{letter-spacing:-0.172800pt;}
.ls44{letter-spacing:-0.170667pt;}
.ls2f{letter-spacing:-0.163200pt;}
.ls41{letter-spacing:-0.153600pt;}
.ls1b{letter-spacing:-0.144000pt;}
.ls1e{letter-spacing:-0.140800pt;}
.ls46{letter-spacing:-0.136533pt;}
.ls43{letter-spacing:-0.119467pt;}
.ls2b{letter-spacing:-0.093867pt;}
.ls3b{letter-spacing:-0.086400pt;}
.ls45{letter-spacing:-0.076800pt;}
.ls2c{letter-spacing:-0.074667pt;}
.ls34{letter-spacing:-0.067200pt;}
.ls20{letter-spacing:-0.046933pt;}
.ls42{letter-spacing:-0.034133pt;}
.ls19{letter-spacing:-0.032000pt;}
.ls37{letter-spacing:-0.009600pt;}
.ls18{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000001pt;}
.lsb{letter-spacing:0.000011pt;}
.ls30{letter-spacing:0.019200pt;}
.ls7{letter-spacing:0.041809pt;}
.ls3{letter-spacing:0.041861pt;}
.ls17{letter-spacing:0.048002pt;}
.ls29{letter-spacing:0.086400pt;}
.ls1c{letter-spacing:0.093867pt;}
.ls10{letter-spacing:0.096543pt;}
.ls3f{letter-spacing:0.106667pt;}
.ls35{letter-spacing:0.115200pt;}
.ls40{letter-spacing:0.162133pt;}
.ls47{letter-spacing:0.179200pt;}
.lsd{letter-spacing:0.187733pt;}
.ls38{letter-spacing:0.192000pt;}
.ls24{letter-spacing:0.221867pt;}
.ls33{letter-spacing:0.249600pt;}
.ls3e{letter-spacing:0.259200pt;}
.ls2e{letter-spacing:0.268800pt;}
.ls14{letter-spacing:0.304000pt;}
.ls1d{letter-spacing:0.305067pt;}
.ls25{letter-spacing:0.324267pt;}
.ls11{letter-spacing:0.341333pt;}
.ls27{letter-spacing:0.375467pt;}
.lsf{letter-spacing:1.216000pt;}
.ls26{letter-spacing:1.220800pt;}
.ls39{letter-spacing:1.677866pt;}
.lse{letter-spacing:5.992156pt;}
.ls22{letter-spacing:6.054901pt;}
.ls21{letter-spacing:6.368626pt;}
.lsa{letter-spacing:30.911771pt;}
.lsc{letter-spacing:30.912038pt;}
.ls8{letter-spacing:41.030920pt;}
.ls16{letter-spacing:49.919962pt;}
.ls15{letter-spacing:53.242667pt;}
.ls13{letter-spacing:128.000000pt;}
.ls12{letter-spacing:153.429343pt;}
.ls0{letter-spacing:730.817939pt;}
.ls1{letter-spacing:748.517760pt;}
.ls6{letter-spacing:754.417856pt;}
.ls5{letter-spacing:772.118145pt;}
.ls2{letter-spacing:795.718011pt;}
.ls4{letter-spacing:807.517685pt;}
.ws11{word-spacing:-64.000000pt;}
.ws5{word-spacing:-58.971723pt;}
.ws9{word-spacing:-58.854389pt;}
.ws4{word-spacing:-58.666656pt;}
.ws8{word-spacing:-58.619723pt;}
.wsf{word-spacing:-58.572789pt;}
.ws6{word-spacing:-58.525856pt;}
.wse{word-spacing:-57.686400pt;}
.ws3{word-spacing:-57.456000pt;}
.ws1c{word-spacing:-57.398400pt;}
.wsb{word-spacing:-38.946124pt;}
.wsd{word-spacing:-38.894924pt;}
.wsc{word-spacing:-37.410124pt;}
.ws1e{word-spacing:-36.160000pt;}
.ws1{word-spacing:-26.634666pt;}
.ws2{word-spacing:-26.485332pt;}
.ws14{word-spacing:-21.964800pt;}
.ws18{word-spacing:-21.715200pt;}
.ws12{word-spacing:-21.696000pt;}
.ws17{word-spacing:-21.686400pt;}
.ws15{word-spacing:-21.628800pt;}
.ws16{word-spacing:-21.446400pt;}
.ws13{word-spacing:-21.081600pt;}
.ws28{word-spacing:-19.473065pt;}
.ws2a{word-spacing:-19.464531pt;}
.ws24{word-spacing:-19.447465pt;}
.ws27{word-spacing:-19.285331pt;}
.ws26{word-spacing:-19.251198pt;}
.ws29{word-spacing:-19.208531pt;}
.ws25{word-spacing:-19.131731pt;}
.ws20{word-spacing:-19.080531pt;}
.ws1f{word-spacing:-18.355198pt;}
.wsa{word-spacing:-1.332800pt;}
.ws21{word-spacing:-0.320000pt;}
.ws10{word-spacing:-0.234667pt;}
.ws22{word-spacing:-0.213333pt;}
.ws19{word-spacing:-0.192000pt;}
.ws0{word-spacing:-0.072307pt;}
.ws23{word-spacing:-0.058667pt;}
.ws7{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.172800pt;}
.ws1a{word-spacing:62.248627pt;}
.ws1d{word-spacing:65.173365pt;}
._1a{margin-left:-33.024176pt;}
._11{margin-left:-27.955200pt;}
._5{margin-left:-26.728563pt;}
._1b{margin-left:-23.466149pt;}
._9{margin-left:-21.084800pt;}
._12{margin-left:-16.426664pt;}
._a{margin-left:-15.265750pt;}
._19{margin-left:-13.632035pt;}
._14{margin-left:-12.705921pt;}
._7{margin-left:-8.659198pt;}
._2{margin-left:-7.599993pt;}
._d{margin-left:-6.401881pt;}
._3{margin-left:-5.504000pt;}
._4{margin-left:-3.744000pt;}
._1{margin-left:-2.421333pt;}
._0{margin-left:-1.055965pt;}
._6{width:1.078015pt;}
._13{width:2.075877pt;}
._b{width:3.379200pt;}
._c{width:5.236684pt;}
._18{width:7.561985pt;}
._8{width:12.923733pt;}
._15{width:26.878892pt;}
._1c{width:58.932935pt;}
._17{width:72.373650pt;}
._e{width:88.078149pt;}
._16{width:144.000000pt;}
._f{width:153.432010pt;}
._10{width:375.275136pt;}
.fs20{font-size:58.666662pt;}
.fs0{font-size:72.307153pt;}
.fs1{font-size:74.373042pt;}
.fs1e{font-size:85.333325pt;}
.fs1b{font-size:96.000000pt;}
.fs2{font-size:106.666662pt;}
.fsa{font-size:112.000000pt;}
.fs1c{font-size:138.666624pt;}
.fs1d{font-size:160.000000pt;}
.fs6{font-size:170.666624pt;}
.fs5{font-size:192.000000pt;}
.fs1f{font-size:213.333376pt;}
.fs4{font-size:234.666624pt;}
.fsb{font-size:256.000000pt;}
.fs3{font-size:288.000000pt;}
.fs9{font-size:313.725440pt;}
.fs7{font-size:320.000000pt;}
.fs8{font-size:352.000000pt;}
.fs17{font-size:418.300583pt;}
.fs14{font-size:418.300607pt;}
.fs15{font-size:418.300614pt;}
.fsc{font-size:418.300617pt;}
.fs16{font-size:418.300639pt;}
.fs12{font-size:418.300642pt;}
.fsd{font-size:418.300658pt;}
.fs13{font-size:418.300673pt;}
.fse{font-size:418.300687pt;}
.fs11{font-size:418.300691pt;}
.fs1a{font-size:418.300693pt;}
.fs19{font-size:418.300697pt;}
.fs10{font-size:418.300700pt;}
.fsf{font-size:418.300706pt;}
.fs18{font-size:418.300726pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:16.438424pt;}
.y55{bottom:19.733333pt;}
.y54{bottom:47.893333pt;}
.y4{bottom:52.875108pt;}
.y10{bottom:54.274210pt;}
.y6b{bottom:56.533333pt;}
.y68{bottom:59.733333pt;}
.yf{bottom:75.933670pt;}
.y53{bottom:77.333333pt;}
.ye{bottom:97.593142pt;}
.y52{bottom:105.173333pt;}
.yd{bottom:119.252615pt;}
.y6a{bottom:121.813333pt;}
.y67{bottom:123.733333pt;}
.y51{bottom:134.613333pt;}
.yc{bottom:140.912036pt;}
.yb{bottom:162.571599pt;}
.y50{bottom:163.733333pt;}
.ya{bottom:185.364421pt;}
.y5{bottom:186.375592pt;}
.y66{bottom:189.013333pt;}
.y69{bottom:189.973333pt;}
.y4f{bottom:191.893333pt;}
.y65{bottom:258.133333pt;}
.y6{bottom:368.740586pt;}
.y2{bottom:381.958776pt;}
.y5c{bottom:388.693333pt;}
.y89{bottom:404.693333pt;}
.y88{bottom:429.973333pt;}
.y5b{bottom:445.973333pt;}
.y87{bottom:455.253333pt;}
.y86{bottom:480.533333pt;}
.y5a{bottom:503.253333pt;}
.y85{bottom:507.413333pt;}
.y84{bottom:532.693333pt;}
.y7{bottom:551.105579pt;}
.y59{bottom:555.413333pt;}
.y83{bottom:557.973333pt;}
.y58{bottom:612.693333pt;}
.y57{bottom:683.413333pt;}
.y8{bottom:684.605947pt;}
.y9{bottom:721.042708pt;}
.y56{bottom:740.693333pt;}
.y81{bottom:790.293333pt;}
.y82{bottom:839.253333pt;}
.y5d{bottom:850.133333pt;}
.y7e{bottom:899.093333pt;}
.y7f{bottom:972.693333pt;}
.y80{bottom:1050.453333pt;}
.y7b{bottom:1118.613333pt;}
.y7c{bottom:1190.933333pt;}
.y7d{bottom:1254.933333pt;}
.y78{bottom:1326.933333pt;}
.y79{bottom:1391.893333pt;}
.y7a{bottom:1461.973333pt;}
.y75{bottom:1529.493333pt;}
.y76{bottom:1606.933333pt;}
.y77{bottom:1677.333333pt;}
.y72{bottom:1748.693333pt;}
.y73{bottom:1815.573333pt;}
.y49{bottom:1817.493333pt;}
.y74{bottom:1884.053333pt;}
.y48{bottom:1888.213333pt;}
.y64{bottom:1933.013333pt;}
.y6f{bottom:1948.053333pt;}
.y63{bottom:1958.293333pt;}
.y47{bottom:1958.933333pt;}
.y62{bottom:1999.893333pt;}
.y70{bottom:2018.453333pt;}
.y61{bottom:2047.893333pt;}
.y4e{bottom:2066.453333pt;}
.y71{bottom:2091.733333pt;}
.y60{bottom:2095.893333pt;}
.y4d{bottom:2143.573333pt;}
.y6e{bottom:2170.453333pt;}
.y4c{bottom:2219.733333pt;}
.y1b{bottom:2221.973333pt;}
.y6d{bottom:2240.853333pt;}
.y1a{bottom:2291.413333pt;}
.y4b{bottom:2296.853333pt;}
.y19{bottom:2362.133333pt;}
.y4a{bottom:2374.293333pt;}
.y18{bottom:2453.973333pt;}
.y25{bottom:2454.933333pt;}
.y2c{bottom:2490.133333pt;}
.y17{bottom:2524.693333pt;}
.y24{bottom:2525.653333pt;}
.y16{bottom:2595.413333pt;}
.y23{bottom:2596.373333pt;}
.y22{bottom:2666.773333pt;}
.y15{bottom:2699.093333pt;}
.y3d{bottom:2708.053333pt;}
.y3f{bottom:2767.414388pt;}
.y21{bottom:2768.213333pt;}
.y46{bottom:2771.723800pt;}
.y42{bottom:2786.678965pt;}
.y40{bottom:2791.963762pt;}
.y35{bottom:2795.604544pt;}
.y43{bottom:2804.308880pt;}
.y45{bottom:2812.841907pt;}
.y44{bottom:2820.455780pt;}
.y34{bottom:2836.373333pt;}
.y38{bottom:2837.730973pt;}
.y20{bottom:2838.933333pt;}
.y41{bottom:2846.718216pt;}
.y37{bottom:2864.319776pt;}
.y3a{bottom:2870.910440pt;}
.y36{bottom:2890.267989pt;}
.y39{bottom:2891.804373pt;}
.y1f{bottom:2909.653333pt;}
.y3c{bottom:2915.733333pt;}
.y3e{bottom:2917.890466pt;}
.y3b{bottom:2947.733333pt;}
.y33{bottom:2967.253333pt;}
.y1e{bottom:2980.373333pt;}
.y1d{bottom:3050.773333pt;}
.y32{bottom:3075.413333pt;}
.y31{bottom:3098.773333pt;}
.y1c{bottom:3149.653333pt;}
.y30{bottom:3176.213467pt;}
.y1{bottom:3249.890667pt;}
.y6c{bottom:3263.893467pt;}
.y5f{bottom:3370.773467pt;}
.y5e{bottom:3466.453467pt;}
.y2f{bottom:3565.013467pt;}
.y2e{bottom:3671.253467pt;}
.y2d{bottom:3761.493467pt;}
.y14{bottom:3891.733467pt;}
.y2b{bottom:3892.693467pt;}
.y11{bottom:3911.253467pt;}
.y13{bottom:3923.733467pt;}
.y12{bottom:3955.733467pt;}
.y2a{bottom:4023.893467pt;}
.y29{bottom:4075.733467pt;}
.y28{bottom:4155.317467pt;}
.y27{bottom:4251.317467pt;}
.y26{bottom:4362.453440pt;}
.h2b{height:39.101560pt;}
.h4{height:54.230365pt;}
.h3{height:55.779782pt;}
.h27{height:61.249994pt;}
.h2{height:70.208152pt;}
.h17{height:72.864580pt;}
.h5{height:74.114580pt;}
.h22{height:79.171875pt;}
.h26{height:108.828125pt;}
.h25{height:118.499970pt;}
.he{height:127.128438pt;}
.hd{height:128.408437pt;}
.h23{height:133.312500pt;}
.h24{height:134.156250pt;}
.h2a{height:148.125030pt;}
.h28{height:154.166697pt;}
.h29{height:161.706699pt;}
.h8{height:162.937470pt;}
.h10{height:164.217470pt;}
.h7{height:169.583303pt;}
.h21{height:173.500000pt;}
.hf{height:177.750000pt;}
.h9{height:177.877301pt;}
.hc{height:214.613936pt;}
.h6{height:216.000000pt;}
.ha{height:240.000000pt;}
.hb{height:264.000000pt;}
.h1d{height:313.725437pt;}
.h1a{height:313.725456pt;}
.h1b{height:313.725461pt;}
.h11{height:313.725463pt;}
.h1c{height:313.725480pt;}
.h18{height:313.725481pt;}
.h12{height:313.725493pt;}
.h19{height:313.725504pt;}
.h13{height:313.725515pt;}
.h16{height:313.725518pt;}
.h20{height:313.725520pt;}
.h1f{height:313.725522pt;}
.h15{height:313.725525pt;}
.h14{height:313.725530pt;}
.h1e{height:313.725545pt;}
.h1{height:746.519467pt;}
.h0{height:4493.333333pt;}
.w1{width:1399.724000pt;}
.w0{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x6{left:11.094109pt;}
.x2{left:17.035705pt;}
.x3c{left:18.353280pt;}
.x1a{left:53.833387pt;}
.x5{left:85.188749pt;}
.x7{left:91.088754pt;}
.x11{left:94.605667pt;}
.x1c{left:97.314533pt;}
.x19{left:110.171440pt;}
.x10{left:133.063400pt;}
.x13{left:142.605600pt;}
.x20{left:148.966000pt;}
.x12{left:154.605600pt;}
.x41{left:217.522400pt;}
.x1f{left:244.857600pt;}
.x1d{left:257.770133pt;}
.x21{left:282.592667pt;}
.x4{left:327.916856pt;}
.x8{left:333.816822pt;}
.x17{left:406.084800pt;}
.x45{left:424.356533pt;}
.x3{left:487.854900pt;}
.x9{left:493.754867pt;}
.x46{left:507.443200pt;}
.x4c{left:576.557733pt;}
.x43{left:719.570000pt;}
.x42{left:730.516667pt;}
.x44{left:754.603200pt;}
.x18{left:823.751333pt;}
.x1e{left:996.793067pt;}
.x40{left:1006.986933pt;}
.x3d{left:1066.363733pt;}
.x3e{left:1114.363733pt;}
.x48{left:1201.856400pt;}
.x22{left:1257.804023pt;}
.x49{left:1261.856400pt;}
.xa{left:1305.258242pt;}
.x25{left:1308.451061pt;}
.xb{left:1360.431995pt;}
.x39{left:1379.485333pt;}
.x24{left:1387.756216pt;}
.x3a{left:1410.498667pt;}
.x1b{left:1454.274667pt;}
.x38{left:1464.585333pt;}
.x23{left:1475.907130pt;}
.x37{left:1478.412000pt;}
.x34{left:1514.037333pt;}
.x35{left:1523.564000pt;}
.x3b{left:1584.752000pt;}
.x2b{left:1632.133986pt;}
.x36{left:1636.370667pt;}
.x2e{left:1676.458931pt;}
.x2a{left:1681.913333pt;}
.x3f{left:1702.364000pt;}
.x47{left:1731.465333pt;}
.x2d{left:1746.417895pt;}
.xc{left:1755.278667pt;}
.x1{left:1769.636000pt;}
.x2c{left:1830.946881pt;}
.x26{left:2057.798352pt;}
.x27{left:2114.571507pt;}
.x4a{left:2253.606667pt;}
.x2f{left:2291.522305pt;}
.x4d{left:2312.544000pt;}
.x4b{left:2313.606667pt;}
.x4e{left:2323.630667pt;}
.x32{left:2325.378495pt;}
.x58{left:2331.337333pt;}
.x31{left:2373.915184pt;}
.x28{left:2390.622667pt;}
.x29{left:2392.216000pt;}
.x30{left:2426.918019pt;}
.x56{left:2431.504000pt;}
.x57{left:2436.337333pt;}
.x33{left:2454.273983pt;}
.x5b{left:2488.330667pt;}
.x59{left:2597.190667pt;}
.x15{left:2613.568000pt;}
.x14{left:2654.854667pt;}
.x5a{left:2669.357333pt;}
.x16{left:2673.568000pt;}
.xd{left:2685.124000pt;}
.x5c{left:2747.904000pt;}
.x53{left:2840.602667pt;}
.x50{left:2841.814667pt;}
.xe{left:2843.810667pt;}
.x51{left:2852.682667pt;}
.x52{left:2854.452000pt;}
.x54{left:2902.914667pt;}
.xf{left:2903.910667pt;}
.x4f{left:2914.025333pt;}
.x55{left:2926.213333pt;}
}




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