
    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_3224e95c24f81e6af568fc1b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.740723;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_6576dbf898b964392dcb73d9.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_4a2e5900f85feb7230058ccf.woff')format("woff");}.ff3{font-family:ff3;line-height:0.740234;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_6f560a1805c5acab786db433.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_24c72660b8ea6b291ae23914.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_437fb5a17c6b589ca626e524.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_8bbb2af21e8a69f44e5ad756.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a9cc45604ce6f1853e29caaa.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6499a1a3a083f4075f9c130c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.965820;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_d07bf60ce189ae2288ba7292.woff')format("woff");}.ffa{font-family:ffa;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_582ebe78f51c7ec74aca56f8.woff')format("woff");}.ffb{font-family:ffb;line-height:0.965820;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_7cfcb8dda8869b500274e642.woff')format("woff");}.ffc{font-family:ffc;line-height:0.971191;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_fb388e9b7eca5fb8d4d1adf1.woff')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_8d2f08432341b9efc71d321f.woff')format("woff");}.ffe{font-family:ffe;line-height:0.746094;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_c307ee58c8bc26ac2db59535.woff')format("woff");}.fff{font-family:fff;line-height:0.695312;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_938783f50bab47cf9fb4380c.woff')format("woff");}.ff10{font-family:ff10;line-height:0.669434;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_d83219bed3fcebb8486faa77.woff')format("woff");}.ff11{font-family:ff11;line-height:0.878418;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_acdd6d56611148afa7bc12cb.woff')format("woff");}.ff12{font-family:ff12;line-height:0.859375;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_5473351c07ac595830d3a2d5.woff')format("woff");}.ff13{font-family:ff13;line-height:0.928000;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_3628f5a9bf0abe5503543076.woff')format("woff");}.ff14{font-family:ff14;line-height:0.938477;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_eede405530c2c80bd3735ff9.woff')format("woff");}.ff15{font-family:ff15;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_9688d63c36edf6c4ba69a046.woff')format("woff");}.ff16{font-family:ff16;line-height:0.938477;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_ea7e9a61ca2291da6487679b.woff')format("woff");}.ff17{font-family:ff17;line-height:0.740723;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_ef14ecf203f6c3e2b6af9172.woff')format("woff");}.ff18{font-family:ff18;line-height:0.959000;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_8a618e75b6a7cc8025ebef4c.woff')format("woff");}.ff19{font-family:ff19;line-height:0.684000;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_fba32cba8428a9d7b0c2ab05.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.906000;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_cf5b549b793443f6ad69b144.woff')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_f19d1ea996021d58c6591183.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.951172;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_dad11fde52d7ad940d4e99ab.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.959000;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_ab3985754a238aaecb91a118.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.722000;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_abf3af2338f0db20a928b6e9.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.906000;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_5982f6006e9acbc5193b0ea7.woff')format("woff");}.ff20{font-family:ff20;line-height:0.482000;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_3af54b9d1674eba6e722da3a.woff')format("woff");}.ff21{font-family:ff21;line-height:0.756000;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_8e8acce724dc5483180eb63d.woff')format("woff");}.ff22{font-family:ff22;line-height:0.747000;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_99d5a92574ac44b561ee5339.woff')format("woff");}.ff23{font-family:ff23;line-height:0.958000;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_59e009e052dc5ba85a00face.woff')format("woff");}.ff24{font-family:ff24;line-height:0.705000;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_70efe11d770483770622efc0.woff')format("woff");}.ff25{font-family:ff25;line-height:0.965820;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;}
.m4{transform:matrix(0.000000,-0.230705,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.230705,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.230705,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.232581,-0.091684,0.091684,0.232581,0,0);-ms-transform:matrix(0.232581,-0.091684,0.091684,0.232581,0,0);-webkit-transform:matrix(0.232581,-0.091684,0.091684,0.232581,0,0);}
.m7{transform:matrix(0.246762,-0.040107,0.040107,0.246762,0,0);-ms-transform:matrix(0.246762,-0.040107,0.040107,0.246762,0,0);-webkit-transform:matrix(0.246762,-0.040107,0.040107,0.246762,0,0);}
.m6{transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250614,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-24.480000px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.972790px;}
.ls19{letter-spacing:-3.470400px;}
.ls6{letter-spacing:-0.669600px;}
.ls23{letter-spacing:-0.612816px;}
.ls24{letter-spacing:-0.508753px;}
.ls36{letter-spacing:-0.410400px;}
.ls5{letter-spacing:-0.390600px;}
.ls4{letter-spacing:-0.360000px;}
.ls44{letter-spacing:-0.324000px;}
.ls15{letter-spacing:-0.309600px;}
.ls47{letter-spacing:-0.259200px;}
.ls3f{letter-spacing:-0.249600px;}
.ls49{letter-spacing:-0.216000px;}
.ls2c{letter-spacing:-0.204000px;}
.ls2b{letter-spacing:-0.201600px;}
.ls46{letter-spacing:-0.194400px;}
.ls31{letter-spacing:-0.134400px;}
.ls37{letter-spacing:-0.118800px;}
.ls32{letter-spacing:-0.075600px;}
.ls4a{letter-spacing:-0.054000px;}
.ls11{letter-spacing:-0.043200px;}
.lsb{letter-spacing:-0.032400px;}
.ls17{letter-spacing:-0.021600px;}
.lsf{letter-spacing:-0.014400px;}
.ls40{letter-spacing:-0.009600px;}
.lsc{letter-spacing:-0.007200px;}
.ls22{letter-spacing:-0.003679px;}
.ls2{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.004057px;}
.ls3d{letter-spacing:0.005117px;}
.ls16{letter-spacing:0.010800px;}
.ls1a{letter-spacing:0.021600px;}
.ls0{letter-spacing:0.030003px;}
.ls18{letter-spacing:0.032400px;}
.ls1c{letter-spacing:0.036000px;}
.lsd{letter-spacing:0.043200px;}
.ls3e{letter-spacing:0.054000px;}
.ls1b{letter-spacing:0.057600px;}
.ls3b{letter-spacing:0.062134px;}
.ls21{letter-spacing:0.088296px;}
.ls20{letter-spacing:0.099333px;}
.ls2a{letter-spacing:0.100800px;}
.ls45{letter-spacing:0.120000px;}
.ls33{letter-spacing:0.129600px;}
.ls1f{letter-spacing:0.158197px;}
.lse{letter-spacing:0.158400px;}
.ls14{letter-spacing:0.162000px;}
.ls28{letter-spacing:0.172800px;}
.ls42{letter-spacing:0.173445px;}
.ls41{letter-spacing:0.174038px;}
.ls1e{letter-spacing:0.194987px;}
.ls7{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.235200px;}
.ls35{letter-spacing:0.237600px;}
.ls13{letter-spacing:0.244800px;}
.ls27{letter-spacing:0.252000px;}
.ls10{letter-spacing:0.270000px;}
.ls2d{letter-spacing:0.288000px;}
.ls34{letter-spacing:0.302400px;}
.lsa{letter-spacing:0.311400px;}
.ls9{letter-spacing:0.312000px;}
.ls38{letter-spacing:0.324000px;}
.ls12{letter-spacing:0.330000px;}
.ls1{letter-spacing:0.336000px;}
.ls1d{letter-spacing:0.354000px;}
.ls3c{letter-spacing:31.175383px;}
.ls3a{letter-spacing:31.266160px;}
.ls2f{letter-spacing:32.484220px;}
.ls30{letter-spacing:32.578808px;}
.ls29{letter-spacing:84.600000px;}
.ls39{letter-spacing:87.324599px;}
.ls26{letter-spacing:93.000002px;}
.ls43{letter-spacing:97.199700px;}
.ls25{letter-spacing:97.199760px;}
.ls8{letter-spacing:97.200000px;}
.ls48{letter-spacing:385.295987px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws30{word-spacing:-49.824000px;}
.ws2d{word-spacing:-38.318408px;}
.ws1f{word-spacing:-38.232000px;}
.ws1d{word-spacing:-38.016000px;}
.ws2e{word-spacing:-37.994408px;}
.ws1e{word-spacing:-37.897200px;}
.ws2f{word-spacing:-36.676800px;}
.ws13{word-spacing:-33.359999px;}
.ws0{word-spacing:-32.999999px;}
.ws11{word-spacing:-30.067200px;}
.ws14{word-spacing:-30.056400px;}
.wsc{word-spacing:-30.045600px;}
.wsa{word-spacing:-30.024000px;}
.ws12{word-spacing:-30.002400px;}
.ws20{word-spacing:-29.991600px;}
.wsd{word-spacing:-29.980800px;}
.ws7{word-spacing:-25.588800px;}
.ws15{word-spacing:-25.516800px;}
.ws3{word-spacing:-25.387200px;}
.ws8{word-spacing:-25.344000px;}
.ws6{word-spacing:-25.336800px;}
.ws4{word-spacing:-25.329600px;}
.ws9{word-spacing:-25.034400px;}
.wsb{word-spacing:-21.873600px;}
.ws5{word-spacing:-21.449997px;}
.ws1b{word-spacing:-21.389997px;}
.ws1c{word-spacing:-21.119997px;}
.ws10{word-spacing:-20.016000px;}
.wsf{word-spacing:-12.556941px;}
.wse{word-spacing:-8.509521px;}
.ws2{word-spacing:-0.108000px;}
.ws1{word-spacing:0.000000px;}
.ws2c{word-spacing:15.546215px;}
.ws1a{word-spacing:16.198892px;}
.ws2a{word-spacing:18.633009px;}
.ws17{word-spacing:19.415279px;}
.ws23{word-spacing:27.943474px;}
.ws26{word-spacing:27.946696px;}
.ws25{word-spacing:27.947902px;}
.ws22{word-spacing:27.949513px;}
.ws29{word-spacing:27.952940px;}
.ws28{word-spacing:27.955710px;}
.ws24{word-spacing:27.957963px;}
.ws19{word-spacing:29.122918px;}
.ws27{word-spacing:34.687069px;}
.ws21{word-spacing:44.719520px;}
.ws16{word-spacing:46.596980px;}
.ws18{word-spacing:2786.197444px;}
.ws2b{word-spacing:3902.043800px;}
._5{margin-left:-2465.289000px;}
._9{margin-left:-1116.886945px;}
._2{margin-left:-13.578004px;}
._13{margin-left:-8.566800px;}
._3{margin-left:-7.254002px;}
._d{margin-left:-5.615751px;}
._6{margin-left:-3.168000px;}
._0{margin-left:-1.248000px;}
._1{width:1.154151px;}
._7{width:3.300497px;}
._8{width:4.510013px;}
._11{width:5.614094px;}
._a{width:16.538077px;}
._b{width:17.573251px;}
._10{width:47.828819px;}
._14{width:93.000002px;}
._4{width:97.200000px;}
._e{width:208.590909px;}
._f{width:297.479049px;}
._12{width:504.371863px;}
._c{width:1245.449103px;}
.fca{color:rgb(128,152,163);}
.fc8{color:rgb(150,1,54);}
.fc9{color:rgb(0,0,0);}
.fc7{color:rgb(33,33,33);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(117,200,174);}
.fc3{color:rgb(0,50,73);}
.fc2{color:transparent;}
.fc1{color:rgb(254,255,255);}
.fc4{color:rgb(0,155,218);}
.fc0{color:rgb(129,151,166);}
.fsb{font-size:36.789974px;}
.fsa{font-size:42.045676px;}
.fs0{font-size:47.999995px;}
.fs13{font-size:56.123520px;}
.fsc{font-size:57.812806px;}
.fse{font-size:58.479755px;}
.fs8{font-size:59.999990px;}
.fs7{font-size:72.000000px;}
.fs10{font-size:95.999990px;}
.fs9{font-size:107.999991px;}
.fs6{font-size:108.000000px;}
.fs14{font-size:108.000023px;}
.fs12{font-size:112.247040px;}
.fsf{font-size:116.959509px;}
.fs1{font-size:119.999995px;}
.fs11{font-size:134.697349px;}
.fsd{font-size:140.352350px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:168.000048px;}
.fs5{font-size:180.000000px;}
.fs4{font-size:186.000048px;}
.y4b{bottom:-203.714745px;}
.y70{bottom:-103.008391px;}
.y4a{bottom:-102.600045px;}
.y98{bottom:-69.954288px;}
.y6f{bottom:-40.117971px;}
.y0{bottom:0.000000px;}
.y29{bottom:9.360000px;}
.y97{bottom:16.183535px;}
.y96{bottom:33.019014px;}
.y95{bottom:49.857309px;}
.y1d{bottom:53.280000px;}
.y48{bottom:53.394795px;}
.y6d{bottom:58.890121px;}
.y2{bottom:59.760000px;}
.y1{bottom:60.120000px;}
.y3e{bottom:61.560000px;}
.y1a{bottom:61.920015px;}
.y3a{bottom:62.280000px;}
.y7f{bottom:63.720000px;}
.y4c{bottom:64.080015px;}
.y14{bottom:64.440000px;}
.y28{bottom:65.160000px;}
.yc0{bottom:67.320000px;}
.y9d{bottom:70.920000px;}
.y47{bottom:73.440000px;}
.y6c{bottom:76.435339px;}
.y8d{bottom:76.512660px;}
.y2a{bottom:77.040000px;}
.y7e{bottom:81.720000px;}
.yac{bottom:85.320000px;}
.y61{bottom:87.480000px;}
.y1b{bottom:88.200015px;}
.y5b{bottom:88.920000px;}
.y3{bottom:90.000000px;}
.y5d{bottom:91.440000px;}
.y6b{bottom:93.977622px;}
.y7d{bottom:94.680000px;}
.y39{bottom:98.280000px;}
.y13{bottom:99.000000px;}
.ybf{bottom:104.760000px;}
.y15{bottom:106.560000px;}
.y58{bottom:108.000000px;}
.yc9{bottom:111.960000px;}
.y9c{bottom:115.920000px;}
.y68{bottom:117.000000px;}
.y5a{bottom:121.680000px;}
.yba{bottom:124.920000px;}
.yae{bottom:126.000000px;}
.y3d{bottom:126.720000px;}
.yab{bottom:130.320000px;}
.y4d{bottom:132.840000px;}
.y5{bottom:138.600000px;}
.y38{bottom:143.280000px;}
.y26{bottom:148.320000px;}
.y3c{bottom:149.400000px;}
.ybe{bottom:149.760000px;}
.yca{bottom:151.560000px;}
.y59{bottom:153.360000px;}
.yc8{bottom:154.080000px;}
.y9b{bottom:154.800000px;}
.y46{bottom:157.320000px;}
.yad{bottom:159.120000px;}
.y3b{bottom:170.280000px;}
.y85{bottom:171.000000px;}
.yaa{bottom:175.320000px;}
.y7c{bottom:177.120000px;}
.y37{bottom:180.720000px;}
.y12{bottom:182.880000px;}
.y4{bottom:183.600000px;}
.ybd{bottom:189.000000px;}
.yb9{bottom:189.360000px;}
.y67{bottom:190.440000px;}
.y57{bottom:194.760000px;}
.y45{bottom:196.560000px;}
.y84{bottom:202.320000px;}
.y94{bottom:204.176428px;}
.y9e{bottom:207.360000px;}
.y69{bottom:212.107650px;}
.y7b{bottom:216.000000px;}
.y25{bottom:218.879963px;}
.y36{bottom:219.600000px;}
.ya9{bottom:220.320000px;}
.y66{bottom:223.200000px;}
.yc7{bottom:226.080000px;}
.y44{bottom:234.000000px;}
.y93{bottom:237.850202px;}
.y56{bottom:239.760000px;}
.y65{bottom:254.880000px;}
.yb8{bottom:255.240000px;}
.y35{bottom:258.480000px;}
.y7a{bottom:261.000000px;}
.ya8{bottom:265.320000px;}
.y11{bottom:266.760000px;}
.y92{bottom:271.523976px;}
.yaf{bottom:272.520000px;}
.y55{bottom:279.000000px;}
.y8{bottom:282.240000px;}
.yb7{bottom:286.920000px;}
.y64{bottom:288.000000px;}
.y34{bottom:296.280000px;}
.y10{bottom:304.560000px;}
.y79{bottom:306.000000px;}
.y27{bottom:308.880000px;}
.ya7{bottom:310.320000px;}
.y43{bottom:311.760000px;}
.y91{bottom:313.616897px;}
.y72{bottom:314.280000px;}
.y63{bottom:320.760000px;}
.y54{bottom:324.000000px;}
.yc6{bottom:325.080000px;}
.y24{bottom:337.320000px;}
.y7{bottom:338.040000px;}
.y6{bottom:338.400000px;}
.y33{bottom:341.280000px;}
.y90{bottom:347.290671px;}
.y42{bottom:349.560000px;}
.y78{bottom:351.000000px;}
.yb6{bottom:351.360000px;}
.y62{bottom:360.000000px;}
.y53{bottom:362.880000px;}
.ybc{bottom:369.000000px;}
.yb1{bottom:369.360000px;}
.y23{bottom:376.560000px;}
.y32{bottom:380.160000px;}
.y8f{bottom:380.964445px;}
.yb5{bottom:384.480000px;}
.yf{bottom:388.440000px;}
.ya6{bottom:394.560000px;}
.y77{bottom:396.000000px;}
.yb0{bottom:401.040000px;}
.y52{bottom:407.880000px;}
.y83{bottom:416.880000px;}
.y31{bottom:419.040000px;}
.y22{bottom:421.560000px;}
.yc5{bottom:425.520000px;}
.ye{bottom:427.320000px;}
.ya5{bottom:439.560000px;}
.y76{bottom:441.000000px;}
.y82{bottom:450.000000px;}
.y51{bottom:452.880000px;}
.yb4{bottom:456.480000px;}
.y30{bottom:458.280000px;}
.yc4{bottom:469.080000px;}
.y6e{bottom:479.059639px;}
.y81{bottom:482.760000px;}
.ya4{bottom:484.560000px;}
.y50{bottom:491.760000px;}
.ybb{bottom:497.880000px;}
.y8c{bottom:499.680000px;}
.y2f{bottom:503.280000px;}
.y21{bottom:504.000000px;}
.yb3{bottom:507.240000px;}
.yd{bottom:511.560000px;}
.y19{bottom:512.640000px;}
.y80{bottom:514.440000px;}
.y41{bottom:517.320000px;}
.y75{bottom:524.880000px;}
.ya3{bottom:529.560000px;}
.y9f{bottom:533.520112px;}
.y4f{bottom:536.760000px;}
.y8b{bottom:537.120000px;}
.y2e{bottom:540.720000px;}
.yc{bottom:549.000000px;}
.y1e{bottom:555.840000px;}
.y40{bottom:556.560000px;}
.yb2{bottom:556.920000px;}
.y18{bottom:557.640000px;}
.y1c{bottom:560.880000px;}
.yc3{bottom:568.080000px;}
.y74{bottom:569.880000px;}
.ya2{bottom:574.560000px;}
.y6a{bottom:578.689944px;}
.y4e{bottom:581.760000px;}
.y8a{bottom:582.120000px;}
.y8e{bottom:584.615431px;}
.y2d{bottom:585.720000px;}
.y20{bottom:587.880000px;}
.y3f{bottom:594.000000px;}
.y17{bottom:602.640000px;}
.y60{bottom:611.280000px;}
.yc2{bottom:611.640000px;}
.y9a{bottom:612.000000px;}
.ya1{bottom:619.560000px;}
.y89{bottom:621.360000px;}
.y2c{bottom:624.600000px;}
.y1f{bottom:626.760000px;}
.yb{bottom:632.880000px;}
.y99{bottom:640.440000px;}
.y49{bottom:642.617055px;}
.y5c{bottom:644.760000px;}
.y16{bottom:647.640000px;}
.y5f{bottom:650.160000px;}
.y73{bottom:654.120000px;}
.yc1{bottom:655.200000px;}
.y88{bottom:660.240015px;}
.y2b{bottom:663.480015px;}
.ya0{bottom:664.560015px;}
.ya{bottom:671.760015px;}
.y71{bottom:676.440015px;}
.y87{bottom:714.960015px;}
.y9{bottom:741.960015px;}
.y5e{bottom:743.040015px;}
.y86{bottom:768.960015px;}
.h11{height:25.760167px;}
.h10{height:28.023607px;}
.h1{height:34.945309px;}
.h21{height:38.612982px;}
.h17{height:40.234071px;}
.h12{height:41.496496px;}
.h22{height:41.587528px;}
.h1a{height:43.333498px;}
.ha{height:45.585930px;}
.h13{height:52.632000px;}
.h14{height:54.703125px;}
.h9{height:55.054688px;}
.h1b{height:71.999993px;}
.h23{height:73.406243px;}
.h20{height:77.225964px;}
.hc{height:78.626953px;}
.h7{height:78.679688px;}
.he{height:78.890625px;}
.h1e{height:79.470904px;}
.h1f{height:82.164833px;}
.hd{height:82.582024px;}
.hb{height:82.582031px;}
.h24{height:83.078396px;}
.h2{height:87.363278px;}
.h19{height:87.719632px;}
.h1d{height:99.810736px;}
.h16{height:104.001092px;}
.h18{height:104.440932px;}
.h4{height:104.835938px;}
.h8{height:108.000000px;}
.h3{height:122.308629px;}
.h6{height:131.044922px;}
.h5{height:135.413121px;}
.h15{height:457.993350px;}
.h1c{height:519.782400px;}
.hf{height:646.530555px;}
.h0{height:810.000000px;}
.w1{width:475.892700px;}
.w2{width:590.106600px;}
.w3{width:649.025550px;}
.w0{width:1444.500000px;}
.x31{left:-583.625523px;}
.x34{left:-552.882814px;}
.x33{left:-460.881237px;}
.x41{left:-19.847980px;}
.x0{left:0.000000px;}
.x3d{left:3.398722px;}
.x2{left:25.214175px;}
.x16{left:26.427525px;}
.x52{left:34.154520px;}
.x6{left:36.311805px;}
.x46{left:38.824725px;}
.x17{left:60.177525px;}
.x53{left:67.904520px;}
.x7{left:70.486890px;}
.x11{left:78.545550px;}
.x10{left:92.672614px;}
.x38{left:107.332200px;}
.x21{left:128.987010px;}
.x47{left:131.074725px;}
.x39{left:148.956495px;}
.x1b{left:154.467900px;}
.x22{left:162.736950px;}
.x48{left:164.824650px;}
.x27{left:258.639150px;}
.x3b{left:262.936800px;}
.x3a{left:265.936800px;}
.xb{left:307.099350px;}
.x45{left:311.877296px;}
.xc{left:360.271500px;}
.xa{left:401.478600px;}
.x44{left:415.948800px;}
.x20{left:436.687350px;}
.xe{left:440.273250px;}
.x1d{left:481.113284px;}
.x1e{left:492.781784px;}
.x12{left:496.395150px;}
.x35{left:502.987547px;}
.x32{left:602.168014px;}
.x2e{left:641.435850px;}
.xd{left:645.099750px;}
.x2c{left:650.683350px;}
.x2a{left:654.560700px;}
.x29{left:659.623200px;}
.x40{left:660.811735px;}
.x14{left:663.886500px;}
.x3c{left:679.455300px;}
.x3e{left:680.853546px;}
.x2b{left:703.685700px;}
.x2f{left:708.373350px;}
.x3f{left:724.797094px;}
.x28{left:747.845700px;}
.x8{left:761.120700px;}
.x2d{left:780.935850px;}
.x43{left:792.772200px;}
.x30{left:796.840050px;}
.x49{left:897.372750px;}
.x4a{left:920.622750px;}
.x1c{left:921.767250px;}
.x23{left:928.683450px;}
.x24{left:930.175950px;}
.x36{left:946.046550px;}
.x4b{left:978.875250px;}
.x4c{left:999.875250px;}
.x25{left:1004.433450px;}
.x42{left:1014.768150px;}
.x4{left:1027.300200px;}
.x13{left:1029.452550px;}
.x4f{left:1032.697200px;}
.x5{left:1066.862700px;}
.x26{left:1099.948800px;}
.x18{left:1101.595500px;}
.x4d{left:1103.906700px;}
.x15{left:1107.041100px;}
.x4e{left:1127.092650px;}
.x50{left:1176.922200px;}
.x51{left:1210.672200px;}
.x9{left:1213.864050px;}
.x54{left:1216.636800px;}
.x1a{left:1245.799650px;}
.x3{left:1277.797350px;}
.xf{left:1289.857350px;}
.x1f{left:1388.343000px;}
.x19{left:1398.511050px;}
.x1{left:1405.261050px;}
.x37{left:1410.346500px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.309147pt;}
.ls19{letter-spacing:-3.084800pt;}
.ls6{letter-spacing:-0.595200pt;}
.ls23{letter-spacing:-0.544725pt;}
.ls24{letter-spacing:-0.452225pt;}
.ls36{letter-spacing:-0.364800pt;}
.ls5{letter-spacing:-0.347200pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls44{letter-spacing:-0.288000pt;}
.ls15{letter-spacing:-0.275200pt;}
.ls47{letter-spacing:-0.230400pt;}
.ls3f{letter-spacing:-0.221867pt;}
.ls49{letter-spacing:-0.192000pt;}
.ls2c{letter-spacing:-0.181333pt;}
.ls2b{letter-spacing:-0.179200pt;}
.ls46{letter-spacing:-0.172800pt;}
.ls31{letter-spacing:-0.119467pt;}
.ls37{letter-spacing:-0.105600pt;}
.ls32{letter-spacing:-0.067200pt;}
.ls4a{letter-spacing:-0.048000pt;}
.ls11{letter-spacing:-0.038400pt;}
.lsb{letter-spacing:-0.028800pt;}
.ls17{letter-spacing:-0.019200pt;}
.lsf{letter-spacing:-0.012800pt;}
.ls40{letter-spacing:-0.008533pt;}
.lsc{letter-spacing:-0.006400pt;}
.ls22{letter-spacing:-0.003270pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.003606pt;}
.ls3d{letter-spacing:0.004549pt;}
.ls16{letter-spacing:0.009600pt;}
.ls1a{letter-spacing:0.019200pt;}
.ls0{letter-spacing:0.026669pt;}
.ls18{letter-spacing:0.028800pt;}
.ls1c{letter-spacing:0.032000pt;}
.lsd{letter-spacing:0.038400pt;}
.ls3e{letter-spacing:0.048000pt;}
.ls1b{letter-spacing:0.051200pt;}
.ls3b{letter-spacing:0.055231pt;}
.ls21{letter-spacing:0.078485pt;}
.ls20{letter-spacing:0.088296pt;}
.ls2a{letter-spacing:0.089600pt;}
.ls45{letter-spacing:0.106667pt;}
.ls33{letter-spacing:0.115200pt;}
.ls1f{letter-spacing:0.140619pt;}
.lse{letter-spacing:0.140800pt;}
.ls14{letter-spacing:0.144000pt;}
.ls28{letter-spacing:0.153600pt;}
.ls42{letter-spacing:0.154174pt;}
.ls41{letter-spacing:0.154700pt;}
.ls1e{letter-spacing:0.173322pt;}
.ls7{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.209067pt;}
.ls35{letter-spacing:0.211200pt;}
.ls13{letter-spacing:0.217600pt;}
.ls27{letter-spacing:0.224000pt;}
.ls10{letter-spacing:0.240000pt;}
.ls2d{letter-spacing:0.256000pt;}
.ls34{letter-spacing:0.268800pt;}
.lsa{letter-spacing:0.276800pt;}
.ls9{letter-spacing:0.277333pt;}
.ls38{letter-spacing:0.288000pt;}
.ls12{letter-spacing:0.293333pt;}
.ls1{letter-spacing:0.298667pt;}
.ls1d{letter-spacing:0.314667pt;}
.ls3c{letter-spacing:27.711452pt;}
.ls3a{letter-spacing:27.792142pt;}
.ls2f{letter-spacing:28.874862pt;}
.ls30{letter-spacing:28.958940pt;}
.ls29{letter-spacing:75.200000pt;}
.ls39{letter-spacing:77.621865pt;}
.ls26{letter-spacing:82.666668pt;}
.ls43{letter-spacing:86.399733pt;}
.ls25{letter-spacing:86.399787pt;}
.ls8{letter-spacing:86.400000pt;}
.ls48{letter-spacing:342.485321pt;}
.ws30{word-spacing:-44.288000pt;}
.ws2d{word-spacing:-34.060807pt;}
.ws1f{word-spacing:-33.984000pt;}
.ws1d{word-spacing:-33.792000pt;}
.ws2e{word-spacing:-33.772807pt;}
.ws1e{word-spacing:-33.686400pt;}
.ws2f{word-spacing:-32.601600pt;}
.ws13{word-spacing:-29.653332pt;}
.ws0{word-spacing:-29.333332pt;}
.ws11{word-spacing:-26.726400pt;}
.ws14{word-spacing:-26.716800pt;}
.wsc{word-spacing:-26.707200pt;}
.wsa{word-spacing:-26.688000pt;}
.ws12{word-spacing:-26.668800pt;}
.ws20{word-spacing:-26.659200pt;}
.wsd{word-spacing:-26.649600pt;}
.ws7{word-spacing:-22.745600pt;}
.ws15{word-spacing:-22.681600pt;}
.ws3{word-spacing:-22.566400pt;}
.ws8{word-spacing:-22.528000pt;}
.ws6{word-spacing:-22.521600pt;}
.ws4{word-spacing:-22.515200pt;}
.ws9{word-spacing:-22.252800pt;}
.wsb{word-spacing:-19.443200pt;}
.ws5{word-spacing:-19.066664pt;}
.ws1b{word-spacing:-19.013330pt;}
.ws1c{word-spacing:-18.773330pt;}
.ws10{word-spacing:-17.792000pt;}
.wsf{word-spacing:-11.161726pt;}
.wse{word-spacing:-7.564019pt;}
.ws2{word-spacing:-0.096000pt;}
.ws1{word-spacing:0.000000pt;}
.ws2c{word-spacing:13.818858pt;}
.ws1a{word-spacing:14.399015pt;}
.ws2a{word-spacing:16.562674pt;}
.ws17{word-spacing:17.258025pt;}
.ws23{word-spacing:24.838644pt;}
.ws26{word-spacing:24.841508pt;}
.ws25{word-spacing:24.842579pt;}
.ws22{word-spacing:24.844012pt;}
.ws29{word-spacing:24.847058pt;}
.ws28{word-spacing:24.849520pt;}
.ws24{word-spacing:24.851523pt;}
.ws19{word-spacing:25.887038pt;}
.ws27{word-spacing:30.832950pt;}
.ws21{word-spacing:39.750684pt;}
.ws16{word-spacing:41.419538pt;}
.ws18{word-spacing:2476.619951pt;}
.ws2b{word-spacing:3468.483378pt;}
._5{margin-left:-2191.368000pt;}
._9{margin-left:-992.788396pt;}
._2{margin-left:-12.069336pt;}
._13{margin-left:-7.614933pt;}
._3{margin-left:-6.448002pt;}
._d{margin-left:-4.991779pt;}
._6{margin-left:-2.816000pt;}
._0{margin-left:-1.109333pt;}
._1{width:1.025912pt;}
._7{width:2.933775pt;}
._8{width:4.008900pt;}
._11{width:4.990306pt;}
._a{width:14.700513pt;}
._b{width:15.620668pt;}
._10{width:42.514506pt;}
._14{width:82.666668pt;}
._4{width:86.400000pt;}
._e{width:185.414141pt;}
._f{width:264.425821pt;}
._12{width:448.330545pt;}
._c{width:1107.065870pt;}
.fsb{font-size:32.702199pt;}
.fsa{font-size:37.373934pt;}
.fs0{font-size:42.666662pt;}
.fs13{font-size:49.887573pt;}
.fsc{font-size:51.389161pt;}
.fse{font-size:51.982004pt;}
.fs8{font-size:53.333325pt;}
.fs7{font-size:64.000000pt;}
.fs10{font-size:85.333325pt;}
.fs9{font-size:95.999992pt;}
.fs6{font-size:96.000000pt;}
.fs14{font-size:96.000020pt;}
.fs12{font-size:99.775147pt;}
.fsf{font-size:103.964008pt;}
.fs1{font-size:106.666662pt;}
.fs11{font-size:119.730977pt;}
.fsd{font-size:124.757645pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:149.333376pt;}
.fs5{font-size:160.000000pt;}
.fs4{font-size:165.333376pt;}
.y4b{bottom:-181.079773pt;}
.y70{bottom:-91.563014pt;}
.y4a{bottom:-91.200040pt;}
.y98{bottom:-62.181590pt;}
.y6f{bottom:-35.660419pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:8.320000pt;}
.y97{bottom:14.385365pt;}
.y96{bottom:29.350235pt;}
.y95{bottom:44.317608pt;}
.y1d{bottom:47.360000pt;}
.y48{bottom:47.462040pt;}
.y6d{bottom:52.346774pt;}
.y2{bottom:53.120000pt;}
.y1{bottom:53.440000pt;}
.y3e{bottom:54.720000pt;}
.y1a{bottom:55.040013pt;}
.y3a{bottom:55.360000pt;}
.y7f{bottom:56.640000pt;}
.y4c{bottom:56.960013pt;}
.y14{bottom:57.280000pt;}
.y28{bottom:57.920000pt;}
.yc0{bottom:59.840000pt;}
.y9d{bottom:63.040000pt;}
.y47{bottom:65.280000pt;}
.y6c{bottom:67.942523pt;}
.y8d{bottom:68.011253pt;}
.y2a{bottom:68.480000pt;}
.y7e{bottom:72.640000pt;}
.yac{bottom:75.840000pt;}
.y61{bottom:77.760000pt;}
.y1b{bottom:78.400013pt;}
.y5b{bottom:79.040000pt;}
.y3{bottom:80.000000pt;}
.y5d{bottom:81.280000pt;}
.y6b{bottom:83.535664pt;}
.y7d{bottom:84.160000pt;}
.y39{bottom:87.360000pt;}
.y13{bottom:88.000000pt;}
.ybf{bottom:93.120000pt;}
.y15{bottom:94.720000pt;}
.y58{bottom:96.000000pt;}
.yc9{bottom:99.520000pt;}
.y9c{bottom:103.040000pt;}
.y68{bottom:104.000000pt;}
.y5a{bottom:108.160000pt;}
.yba{bottom:111.040000pt;}
.yae{bottom:112.000000pt;}
.y3d{bottom:112.640000pt;}
.yab{bottom:115.840000pt;}
.y4d{bottom:118.080000pt;}
.y5{bottom:123.200000pt;}
.y38{bottom:127.360000pt;}
.y26{bottom:131.840000pt;}
.y3c{bottom:132.800000pt;}
.ybe{bottom:133.120000pt;}
.yca{bottom:134.720000pt;}
.y59{bottom:136.320000pt;}
.yc8{bottom:136.960000pt;}
.y9b{bottom:137.600000pt;}
.y46{bottom:139.840000pt;}
.yad{bottom:141.440000pt;}
.y3b{bottom:151.360000pt;}
.y85{bottom:152.000000pt;}
.yaa{bottom:155.840000pt;}
.y7c{bottom:157.440000pt;}
.y37{bottom:160.640000pt;}
.y12{bottom:162.560000pt;}
.y4{bottom:163.200000pt;}
.ybd{bottom:168.000000pt;}
.yb9{bottom:168.320000pt;}
.y67{bottom:169.280000pt;}
.y57{bottom:173.120000pt;}
.y45{bottom:174.720000pt;}
.y84{bottom:179.840000pt;}
.y94{bottom:181.490158pt;}
.y9e{bottom:184.320000pt;}
.y69{bottom:188.540133pt;}
.y7b{bottom:192.000000pt;}
.y25{bottom:194.559967pt;}
.y36{bottom:195.200000pt;}
.ya9{bottom:195.840000pt;}
.y66{bottom:198.400000pt;}
.yc7{bottom:200.960000pt;}
.y44{bottom:208.000000pt;}
.y93{bottom:211.422401pt;}
.y56{bottom:213.120000pt;}
.y65{bottom:226.560000pt;}
.yb8{bottom:226.880000pt;}
.y35{bottom:229.760000pt;}
.y7a{bottom:232.000000pt;}
.ya8{bottom:235.840000pt;}
.y11{bottom:237.120000pt;}
.y92{bottom:241.354645pt;}
.yaf{bottom:242.240000pt;}
.y55{bottom:248.000000pt;}
.y8{bottom:250.880000pt;}
.yb7{bottom:255.040000pt;}
.y64{bottom:256.000000pt;}
.y34{bottom:263.360000pt;}
.y10{bottom:270.720000pt;}
.y79{bottom:272.000000pt;}
.y27{bottom:274.560000pt;}
.ya7{bottom:275.840000pt;}
.y43{bottom:277.120000pt;}
.y91{bottom:278.770575pt;}
.y72{bottom:279.360000pt;}
.y63{bottom:285.120000pt;}
.y54{bottom:288.000000pt;}
.yc6{bottom:288.960000pt;}
.y24{bottom:299.840000pt;}
.y7{bottom:300.480000pt;}
.y6{bottom:300.800000pt;}
.y33{bottom:303.360000pt;}
.y90{bottom:308.702819pt;}
.y42{bottom:310.720000pt;}
.y78{bottom:312.000000pt;}
.yb6{bottom:312.320000pt;}
.y62{bottom:320.000000pt;}
.y53{bottom:322.560000pt;}
.ybc{bottom:328.000000pt;}
.yb1{bottom:328.320000pt;}
.y23{bottom:334.720000pt;}
.y32{bottom:337.920000pt;}
.y8f{bottom:338.635063pt;}
.yb5{bottom:341.760000pt;}
.yf{bottom:345.280000pt;}
.ya6{bottom:350.720000pt;}
.y77{bottom:352.000000pt;}
.yb0{bottom:356.480000pt;}
.y52{bottom:362.560000pt;}
.y83{bottom:370.560000pt;}
.y31{bottom:372.480000pt;}
.y22{bottom:374.720000pt;}
.yc5{bottom:378.240000pt;}
.ye{bottom:379.840000pt;}
.ya5{bottom:390.720000pt;}
.y76{bottom:392.000000pt;}
.y82{bottom:400.000000pt;}
.y51{bottom:402.560000pt;}
.yb4{bottom:405.760000pt;}
.y30{bottom:407.360000pt;}
.yc4{bottom:416.960000pt;}
.y6e{bottom:425.830790pt;}
.y81{bottom:429.120000pt;}
.ya4{bottom:430.720000pt;}
.y50{bottom:437.120000pt;}
.ybb{bottom:442.560000pt;}
.y8c{bottom:444.160000pt;}
.y2f{bottom:447.360000pt;}
.y21{bottom:448.000000pt;}
.yb3{bottom:450.880000pt;}
.yd{bottom:454.720000pt;}
.y19{bottom:455.680000pt;}
.y80{bottom:457.280000pt;}
.y41{bottom:459.840000pt;}
.y75{bottom:466.560000pt;}
.ya3{bottom:470.720000pt;}
.y9f{bottom:474.240100pt;}
.y4f{bottom:477.120000pt;}
.y8b{bottom:477.440000pt;}
.y2e{bottom:480.640000pt;}
.yc{bottom:488.000000pt;}
.y1e{bottom:494.080000pt;}
.y40{bottom:494.720000pt;}
.yb2{bottom:495.040000pt;}
.y18{bottom:495.680000pt;}
.y1c{bottom:498.560000pt;}
.yc3{bottom:504.960000pt;}
.y74{bottom:506.560000pt;}
.ya2{bottom:510.720000pt;}
.y6a{bottom:514.391061pt;}
.y4e{bottom:517.120000pt;}
.y8a{bottom:517.440000pt;}
.y8e{bottom:519.658161pt;}
.y2d{bottom:520.640000pt;}
.y20{bottom:522.560000pt;}
.y3f{bottom:528.000000pt;}
.y17{bottom:535.680000pt;}
.y60{bottom:543.360000pt;}
.yc2{bottom:543.680000pt;}
.y9a{bottom:544.000000pt;}
.ya1{bottom:550.720000pt;}
.y89{bottom:552.320000pt;}
.y2c{bottom:555.200000pt;}
.y1f{bottom:557.120000pt;}
.yb{bottom:562.560000pt;}
.y99{bottom:569.280000pt;}
.y49{bottom:571.215160pt;}
.y5c{bottom:573.120000pt;}
.y16{bottom:575.680000pt;}
.y5f{bottom:577.920000pt;}
.y73{bottom:581.440000pt;}
.yc1{bottom:582.400000pt;}
.y88{bottom:586.880013pt;}
.y2b{bottom:589.760013pt;}
.ya0{bottom:590.720013pt;}
.ya{bottom:597.120013pt;}
.y71{bottom:601.280013pt;}
.y87{bottom:635.520013pt;}
.y9{bottom:659.520013pt;}
.y5e{bottom:660.480013pt;}
.y86{bottom:683.520013pt;}
.h11{height:22.897927pt;}
.h10{height:24.909873pt;}
.h1{height:31.062497pt;}
.h21{height:34.322650pt;}
.h17{height:35.763619pt;}
.h12{height:36.885775pt;}
.h22{height:36.966692pt;}
.h1a{height:38.518665pt;}
.ha{height:40.520827pt;}
.h13{height:46.784000pt;}
.h14{height:48.625000pt;}
.h9{height:48.937500pt;}
.h1b{height:63.999994pt;}
.h23{height:65.249993pt;}
.h20{height:68.645301pt;}
.hc{height:69.890625pt;}
.h7{height:69.937500pt;}
.he{height:70.125000pt;}
.h1e{height:70.640804pt;}
.h1f{height:73.035407pt;}
.hd{height:73.406244pt;}
.hb{height:73.406250pt;}
.h24{height:73.847463pt;}
.h2{height:77.656247pt;}
.h19{height:77.973006pt;}
.h1d{height:88.720654pt;}
.h16{height:92.445415pt;}
.h18{height:92.836384pt;}
.h4{height:93.187500pt;}
.h8{height:96.000000pt;}
.h3{height:108.718781pt;}
.h6{height:116.484375pt;}
.h5{height:120.367219pt;}
.h15{height:407.105200pt;}
.h1c{height:462.028800pt;}
.hf{height:574.693827pt;}
.h0{height:720.000000pt;}
.w1{width:423.015733pt;}
.w2{width:524.539200pt;}
.w3{width:576.911600pt;}
.w0{width:1284.000000pt;}
.x31{left:-518.778242pt;}
.x34{left:-491.451391pt;}
.x33{left:-409.672210pt;}
.x41{left:-17.642649pt;}
.x0{left:0.000000pt;}
.x3d{left:3.021086pt;}
.x2{left:22.412600pt;}
.x16{left:23.491133pt;}
.x52{left:30.359573pt;}
.x6{left:32.277160pt;}
.x46{left:34.510867pt;}
.x17{left:53.491133pt;}
.x53{left:60.359573pt;}
.x7{left:62.655013pt;}
.x11{left:69.818267pt;}
.x10{left:82.375657pt;}
.x38{left:95.406400pt;}
.x21{left:114.655120pt;}
.x47{left:116.510867pt;}
.x39{left:132.405773pt;}
.x1b{left:137.304800pt;}
.x22{left:144.655067pt;}
.x48{left:146.510800pt;}
.x27{left:229.901467pt;}
.x3b{left:233.721600pt;}
.x3a{left:236.388267pt;}
.xb{left:272.977200pt;}
.x45{left:277.224263pt;}
.xc{left:320.241333pt;}
.xa{left:356.869867pt;}
.x44{left:369.732267pt;}
.x20{left:388.166533pt;}
.xe{left:391.354000pt;}
.x1d{left:427.656252pt;}
.x1e{left:438.028252pt;}
.x12{left:441.240133pt;}
.x35{left:447.100042pt;}
.x32{left:535.260457pt;}
.x2e{left:570.165200pt;}
.xd{left:573.422000pt;}
.x2c{left:578.385200pt;}
.x2a{left:581.831733pt;}
.x29{left:586.331733pt;}
.x40{left:587.388209pt;}
.x14{left:590.121333pt;}
.x3c{left:603.960267pt;}
.x3e{left:605.203152pt;}
.x2b{left:625.498400pt;}
.x2f{left:629.665200pt;}
.x3f{left:644.264083pt;}
.x28{left:664.751733pt;}
.x8{left:676.551733pt;}
.x2d{left:694.165200pt;}
.x43{left:704.686400pt;}
.x30{left:708.302267pt;}
.x49{left:797.664667pt;}
.x4a{left:818.331333pt;}
.x1c{left:819.348667pt;}
.x23{left:825.496400pt;}
.x24{left:826.823067pt;}
.x36{left:840.930267pt;}
.x4b{left:870.111333pt;}
.x4c{left:888.778000pt;}
.x25{left:892.829733pt;}
.x42{left:902.016133pt;}
.x4{left:913.155733pt;}
.x13{left:915.068933pt;}
.x4f{left:917.953067pt;}
.x5{left:948.322400pt;}
.x26{left:977.732267pt;}
.x18{left:979.196000pt;}
.x4d{left:981.250400pt;}
.x15{left:984.036533pt;}
.x4e{left:1001.860133pt;}
.x50{left:1046.153067pt;}
.x51{left:1076.153067pt;}
.x9{left:1078.990267pt;}
.x54{left:1081.454933pt;}
.x1a{left:1107.377467pt;}
.x3{left:1135.819867pt;}
.xf{left:1146.539867pt;}
.x1f{left:1234.082667pt;}
.x19{left:1243.120933pt;}
.x1{left:1249.120933pt;}
.x37{left:1253.641333pt;}
}




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