
    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_86f4875458ab3ef53d659db8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_4db389c5fe7a1e898eeb408e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_1f616a1f47d7fe752aa4dda5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_6f4fc91789b15b84782fc5df.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_42726e68193c9c5565e02d4c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.706055;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_5ea2d3a62a5161768ed0e169.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_84659d23b6e6ab790b1396c6.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1dafe21c37f7c71e4fe0bb2e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c503495d9639c46b32d00a29.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_806fcdbe2351a66521cbca8f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_aa5eccd7365a4e26e747a787.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.241699;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_95ed1a2ce14b7229ac4e0c81.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.909180;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_418ca37696421be6bfa917c5.woff2')format("woff");}.fff{font-family:fff;line-height:1.239258;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_4cdaca381d2846f3ca2a2ae4.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_0c25a27c25d4ebbe1fac06d9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.667000;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_5ca504eef93f8cb93e5c7ccf.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.840332;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_68891a2674c0d0fecd2539a1.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.432129;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_a12926c207225281a226b5d2.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;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_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m15{transform:matrix(0.155413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155413,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.155414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155414,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.155536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155536,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.155539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155539,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.236421,0.000000,-0.080861,0.236562,0,0);-ms-transform:matrix(0.236421,0.000000,-0.080861,0.236562,0,0);-webkit-transform:matrix(0.236421,0.000000,-0.080861,0.236562,0,0);}
.mb{transform:matrix(0.236427,0.000000,-0.080858,0.236563,0,0);-ms-transform:matrix(0.236427,0.000000,-0.080858,0.236563,0,0);-webkit-transform:matrix(0.236427,0.000000,-0.080858,0.236563,0,0);}
.m8{transform:matrix(0.236429,0.000000,-0.080857,0.236563,0,0);-ms-transform:matrix(0.236429,0.000000,-0.080857,0.236563,0,0);-webkit-transform:matrix(0.236429,0.000000,-0.080857,0.236563,0,0);}
.m9{transform:matrix(0.236432,0.000000,-0.080858,0.236563,0,0);-ms-transform:matrix(0.236432,0.000000,-0.080858,0.236563,0,0);-webkit-transform:matrix(0.236432,0.000000,-0.080858,0.236563,0,0);}
.ma{transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249874,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);}
.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);}
.v6{vertical-align:-88.559965px;}
.v9{vertical-align:-80.639968px;}
.v8{vertical-align:-29.519988px;}
.v7{vertical-align:-16.559993px;}
.v1{vertical-align:-13.679995px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.879999px;}
.v5{vertical-align:11.519995px;}
.v2{vertical-align:13.679995px;}
.v4{vertical-align:16.559993px;}
.va{vertical-align:80.639968px;}
.ls22{letter-spacing:-0.300600px;}
.ls23{letter-spacing:-0.120240px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.002690px;}
.lsb{letter-spacing:0.011797px;}
.ls20{letter-spacing:0.060120px;}
.ls21{letter-spacing:0.120240px;}
.ls1b{letter-spacing:0.131605px;}
.ls1d{letter-spacing:0.168127px;}
.ls1f{letter-spacing:0.226102px;}
.ls1{letter-spacing:0.226879px;}
.ls12{letter-spacing:0.403524px;}
.ls7{letter-spacing:0.947286px;}
.ls10{letter-spacing:0.951931px;}
.ls14{letter-spacing:2.525499px;}
.ls19{letter-spacing:3.245906px;}
.ls15{letter-spacing:3.247749px;}
.ls6{letter-spacing:4.147972px;}
.ls8{letter-spacing:4.762568px;}
.ls13{letter-spacing:5.480874px;}
.ls18{letter-spacing:14.648931px;}
.ls4{letter-spacing:15.369530px;}
.lsd{letter-spacing:16.089530px;}
.ls3{letter-spacing:18.017910px;}
.lsc{letter-spacing:19.750957px;}
.ls2{letter-spacing:22.772718px;}
.ls17{letter-spacing:23.493124px;}
.ls9{letter-spacing:24.213530px;}
.ls16{letter-spacing:24.432177px;}
.ls11{letter-spacing:95.185772px;}
.ls5{letter-spacing:95.906371px;}
.lse{letter-spacing:101.669369px;}
.lsa{letter-spacing:186.355425px;}
.ls1e{letter-spacing:376.542749px;}
.ls1a{letter-spacing:1034.273886px;}
.ls1c{letter-spacing:1046.519881px;}
.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;}
}
.ws18{word-spacing:-54.451206px;}
.ws1c{word-spacing:-45.194342px;}
.ws1f{word-spacing:-20.743907px;}
.ws17{word-spacing:-17.819993px;}
.ws19{word-spacing:-17.519693px;}
.ws1d{word-spacing:-17.198074px;}
.ws21{word-spacing:-16.773480px;}
.ws22{word-spacing:-16.593120px;}
.ws3{word-spacing:-15.417330px;}
.ws1a{word-spacing:-11.737975px;}
.ws4{word-spacing:-10.946228px;}
.ws1b{word-spacing:-9.460616px;}
.ws23{word-spacing:-0.180360px;}
.ws9{word-spacing:-0.053190px;}
.ws0{word-spacing:0.000000px;}
.ws26{word-spacing:0.300600px;}
.ws7{word-spacing:0.667220px;}
.ws25{word-spacing:1.262520px;}
.ws27{word-spacing:1.983960px;}
.wsa{word-spacing:3.548929px;}
.wsc{word-spacing:4.269339px;}
.ws2{word-spacing:4.989749px;}
.ws10{word-spacing:7.799858px;}
.ws13{word-spacing:8.488217px;}
.wse{word-spacing:8.948916px;}
.ws6{word-spacing:9.049144px;}
.ws15{word-spacing:9.669321px;}
.wsb{word-spacing:12.554665px;}
.ws24{word-spacing:14.909760px;}
.ws1{word-spacing:38.999995px;}
.ws1e{word-spacing:66.446766px;}
.ws20{word-spacing:66.541808px;}
.ws5{word-spacing:211.623407px;}
.ws14{word-spacing:229.633406px;}
.ws11{word-spacing:241.159983px;}
.wsd{word-spacing:270.008882px;}
.ws12{word-spacing:293.782264px;}
.ws16{word-spacing:296.663888px;}
.ws8{word-spacing:443.594615px;}
.wsf{word-spacing:512.065313px;}
._1a{margin-left:-93.994762px;}
._17{margin-left:-11.280900px;}
._0{margin-left:-9.282000px;}
._b{margin-left:-6.600000px;}
._7{margin-left:-3.840000px;}
._2{margin-left:-2.100000px;}
._4{margin-left:-1.080000px;}
._6{width:1.866000px;}
._c{width:3.238158px;}
._e{width:4.309965px;}
._11{width:5.397980px;}
._3{width:6.684000px;}
._5{width:8.580000px;}
._10{width:9.851174px;}
._1{width:11.790000px;}
._f{width:13.394528px;}
._12{width:14.806804px;}
._d{width:16.223898px;}
._16{width:18.687948px;}
._15{width:19.749934px;}
._1b{width:20.798977px;}
._8{width:21.846000px;}
._18{width:23.620442px;}
._19{width:24.830572px;}
._14{width:26.256442px;}
._13{width:27.306932px;}
._1d{width:28.519703px;}
._1c{width:29.658352px;}
._a{width:35.999999px;}
._9{width:53.999998px;}
._36{width:81.772369px;}
._35{width:85.789165px;}
._28{width:87.964230px;}
._29{width:168.131052px;}
._2c{width:205.337731px;}
._2e{width:215.608413px;}
._2d{width:256.538716px;}
._2a{width:260.343215px;}
._2b{width:295.382601px;}
._25{width:324.120209px;}
._21{width:329.063147px;}
._27{width:367.422079px;}
._2f{width:373.912217px;}
._1f{width:384.761102px;}
._33{width:447.646940px;}
._26{width:466.723768px;}
._31{width:577.533876px;}
._22{width:639.793913px;}
._32{width:655.642928px;}
._20{width:740.756459px;}
._24{width:757.166013px;}
._34{width:773.017832px;}
._23{width:858.361861px;}
._1e{width:903.208399px;}
._30{width:977.367654px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,139);}
.fc3{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:37.842465px;}
.fs11{font-size:40.319984px;}
.fs13{font-size:40.879424px;}
.fs18{font-size:41.208464px;}
.fs16{font-size:41.579983px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:44.147502px;}
.fs9{font-size:46.951901px;}
.fs1f{font-size:47.880000px;}
.fs5{font-size:48.000000px;}
.fsd{font-size:49.755580px;}
.fs1b{font-size:54.000000px;}
.fsc{font-size:58.165177px;}
.fs3{font-size:60.000000px;}
.fs1d{font-size:60.120000px;}
.fs19{font-size:61.863575px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:64.471174px;}
.fs1c{font-size:65.880000px;}
.fs10{font-size:69.119972px;}
.fs8{font-size:70.078772px;}
.fs14{font-size:71.279971px;}
.fs0{font-size:72.000000px;}
.fse{font-size:72.341339px;}
.fs12{font-size:73.045788px;}
.fs1a{font-size:74.618370px;}
.fs17{font-size:75.329348px;}
.fsf{font-size:75.652787px;}
.fs6{font-size:84.000000px;}
.fs1e{font-size:96.120000px;}
.fs2{font-size:102.000000px;}
.fs15{font-size:106.919957px;}
.y0{bottom:0.000000px;}
.y161{bottom:1.979219px;}
.yd1{bottom:2.519221px;}
.y13f{bottom:2.878984px;}
.y142{bottom:2.878993px;}
.y145{bottom:2.879001px;}
.y148{bottom:2.879009px;}
.y14f{bottom:2.879072px;}
.y170{bottom:2.879257px;}
.y17b{bottom:3.418991px;}
.y192{bottom:3.419143px;}
.y190{bottom:3.419165px;}
.y18e{bottom:3.419186px;}
.y18c{bottom:3.419208px;}
.y18a{bottom:3.419229px;}
.y188{bottom:3.419251px;}
.y7a{bottom:3.779042px;}
.y7d{bottom:3.779051px;}
.y91{bottom:3.779160px;}
.y9f{bottom:3.779216px;}
.yd3{bottom:3.779219px;}
.y3b{bottom:4.320009px;}
.yd5{bottom:5.939221px;}
.ya4{bottom:5.939229px;}
.y1a6{bottom:42.660000px;}
.y1a7{bottom:52.740000px;}
.y193{bottom:67.140000px;}
.y20{bottom:86.686500px;}
.y4{bottom:97.125005px;}
.y3a{bottom:123.240240px;}
.y39{bottom:127.560249px;}
.y1f{bottom:139.264499px;}
.ye1{bottom:161.939935px;}
.yb1{bottom:168.959932px;}
.ye0{bottom:178.859928px;}
.y69{bottom:179.039928px;}
.y175{bottom:181.199928px;}
.y16d{bottom:182.639927px;}
.ydf{bottom:185.519926px;}
.y68{bottom:185.699926px;}
.yb0{bottom:189.119924px;}
.y13a{bottom:193.619923px;}
.y16{bottom:196.933500px;}
.y121{bottom:207.299917px;}
.yaf{bottom:209.279916px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.yde{bottom:213.779914px;}
.y67{bottom:213.959914px;}
.y174{bottom:215.219914px;}
.y16c{bottom:217.379913px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y120{bottom:227.639909px;}
.y139{bottom:228.359909px;}
.yae{bottom:229.439908px;}
.y101{bottom:232.859907px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y66{bottom:237.899905px;}
.y11f{bottom:247.799901px;}
.yad{bottom:249.599900px;}
.y173{bottom:250.319900px;}
.y16b{bottom:252.119899px;}
.y100{bottom:253.199899px;}
.y65{bottom:258.059897px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.y138{bottom:263.099895px;}
.yac{bottom:269.759892px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y64{bottom:278.219889px;}
.y11e{bottom:282.359887px;}
.y172{bottom:284.159886px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y16a{bottom:286.859885px;}
.yff{bottom:287.579885px;}
.yab{bottom:289.919884px;}
.y137{bottom:297.839881px;}
.y63{bottom:298.379881px;}
.y11d{bottom:302.699879px;}
.yfe{bottom:307.919877px;}
.ydd{bottom:310.079876px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y62{bottom:318.539873px;}
.y169{bottom:320.519872px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.yaa{bottom:324.299870px;}
.yfd{bottom:328.079869px;}
.ydc{bottom:330.059868px;}
.y136{bottom:332.579867px;}
.y171{bottom:335.639866px;}
.y11c{bottom:337.439865px;}
.y61{bottom:338.699865px;}
.y168{bottom:344.099862px;}
.ya9{bottom:344.999862px;}
.yd{bottom:348.133500px;}
.ydb{bottom:350.219860px;}
.y167{bottom:351.839859px;}
.y166{bottom:354.179858px;}
.y184{bottom:354.719858px;}
.y16f{bottom:355.440600px;}
.y11b{bottom:357.779857px;}
.y16e{bottom:358.319857px;}
.y60{bottom:358.679857px;}
.yfc{bottom:362.639855px;}
.ya8{bottom:364.979854px;}
.y135{bottom:367.319853px;}
.y187{bottom:370.200600px;}
.y165{bottom:372.179851px;}
.y17e{bottom:373.619851px;}
.y11a{bottom:377.939849px;}
.y5f{bottom:378.839848px;}
.yfb{bottom:382.979847px;}
.yda{bottom:384.779846px;}
.ya7{bottom:385.139846px;}
.yc{bottom:386.785499px;}
.y164{bottom:392.339843px;}
.y5e{bottom:398.999840px;}
.y134{bottom:402.059839px;}
.yd9{bottom:405.119838px;}
.ya6{bottom:405.299838px;}
.yb{bottom:408.044999px;}
.y119{bottom:412.319835px;}
.y163{bottom:413.399835px;}
.yfa{bottom:417.539833px;}
.ya3{bottom:421.320600px;}
.y189{bottom:423.840600px;}
.yd8{bottom:425.279830px;}
.ya5{bottom:426.899829px;}
.y17f{bottom:427.259829px;}
.ya1{bottom:431.219828px;}
.ya2{bottom:431.399827px;}
.y118{bottom:432.659827px;}
.y5d{bottom:433.199827px;}
.y162{bottom:433.379827px;}
.y133{bottom:436.799825px;}
.yf9{bottom:437.879825px;}
.yd4{bottom:441.300600px;}
.yd0{bottom:444.180600px;}
.yd6{bottom:446.879821px;}
.yd2{bottom:447.600600px;}
.y160{bottom:450.120600px;}
.ycf{bottom:451.199820px;}
.yd7{bottom:451.379819px;}
.y117{bottom:452.819819px;}
.y5c{bottom:453.899818px;}
.y15f{bottom:454.439818px;}
.ya0{bottom:456.419817px;}
.y9e{bottom:456.960600px;}
.y9d{bottom:460.739816px;}
.y9c{bottom:460.919816px;}
.y132{bottom:471.539811px;}
.yf8{bottom:472.439811px;}
.y5b{bottom:474.059810px;}
.yce{bottom:475.139810px;}
.y18b{bottom:477.480600px;}
.y180{bottom:480.899808px;}
.y9b{bottom:482.519807px;}
.y116{bottom:487.379805px;}
.y15e{bottom:489.719804px;}
.yf7{bottom:492.779803px;}
.y5a{bottom:494.219802px;}
.ycd{bottom:495.299802px;}
.y99{bottom:500.879800px;}
.y97{bottom:505.019798px;}
.y131{bottom:506.279797px;}
.y115{bottom:507.719797px;}
.y9a{bottom:508.979796px;}
.y98{bottom:512.219795px;}
.y59{bottom:514.379794px;}
.ycc{bottom:515.459794px;}
.y38{bottom:516.848999px;}
.ya{bottom:520.864502px;}
.y15d{bottom:524.279790px;}
.y1a5{bottom:525.960000px;}
.yf6{bottom:527.339789px;}
.y96{bottom:527.519789px;}
.y18d{bottom:530.760600px;}
.y37{bottom:531.249000px;}
.y58{bottom:532.559787px;}
.y181{bottom:534.179786px;}
.ycb{bottom:535.619786px;}
.y9{bottom:538.864499px;}
.y130{bottom:541.019784px;}
.y114{bottom:542.279783px;}
.y36{bottom:545.649000px;}
.y1a4{bottom:546.830370px;}
.y57{bottom:547.139781px;}
.y95{bottom:547.499781px;}
.yf5{bottom:547.679781px;}
.y94{bottom:551.999779px;}
.yca{bottom:555.599778px;}
.y8{bottom:556.864499px;}
.y113{bottom:562.619775px;}
.y56{bottom:567.299773px;}
.y93{bottom:573.959770px;}
.yc9{bottom:575.759770px;}
.y15c{bottom:578.999768px;}
.y35{bottom:579.131995px;}
.yf4{bottom:582.059767px;}
.y1a3{bottom:583.380000px;}
.y18f{bottom:584.400600px;}
.y55{bottom:587.459765px;}
.y182{bottom:587.819765px;}
.y92{bottom:595.379762px;}
.y15a{bottom:595.559762px;}
.y90{bottom:595.920600px;}
.y12f{bottom:596.099762px;}
.y34{bottom:597.131995px;}
.y112{bottom:597.179761px;}
.y8f{bottom:599.699760px;}
.y8e{bottom:599.879760px;}
.y15b{bottom:602.219759px;}
.yf3{bottom:602.399759px;}
.y54{bottom:607.619757px;}
.y159{bottom:612.479755px;}
.y33{bottom:615.146998px;}
.yc8{bottom:616.079754px;}
.y111{bottom:617.519753px;}
.y8c{bottom:623.099751px;}
.y8d{bottom:627.059749px;}
.y53{bottom:627.779749px;}
.y158{bottom:629.219748px;}
.y1a2{bottom:630.072900px;}
.y12e{bottom:630.659748px;}
.y32{bottom:633.146998px;}
.yc7{bottom:636.239746px;}
.yf2{bottom:637.139745px;}
.y191{bottom:637.860600px;}
.y183{bottom:641.279743px;}
.y7{bottom:645.510000px;}
.y8b{bottom:645.599742px;}
.y157{bottom:647.399741px;}
.y51{bottom:647.759741px;}
.y31{bottom:651.146998px;}
.y12d{bottom:651.179740px;}
.y110{bottom:652.079739px;}
.y52{bottom:655.859738px;}
.yc6{bottom:656.399737px;}
.yf1{bottom:657.479737px;}
.y89{bottom:663.959734px;}
.y6{bottom:666.771000px;}
.y156{bottom:667.379733px;}
.y50{bottom:667.919733px;}
.y87{bottom:668.099733px;}
.y1a1{bottom:668.234070px;}
.y30{bottom:669.162001px;}
.y185{bottom:670.979732px;}
.y8a{bottom:672.059731px;}
.y10f{bottom:672.419731px;}
.y88{bottom:675.299730px;}
.yc5{bottom:676.559729px;}
.y12c{bottom:686.819725px;}
.y4f{bottom:688.079725px;}
.y155{bottom:688.259725px;}
.y86{bottom:690.599724px;}
.y2f{bottom:696.162001px;}
.yc3{bottom:696.719721px;}
.yf0{bottom:697.979721px;}
.yc4{bottom:704.819718px;}
.y1a0{bottom:706.575600px;}
.y10e{bottom:706.799717px;}
.y12b{bottom:706.979717px;}
.y4e{bottom:708.239717px;}
.y154{bottom:708.419717px;}
.y85{bottom:710.759716px;}
.y2e{bottom:714.161999px;}
.yc2{bottom:716.699713px;}
.yef{bottom:718.139713px;}
.y5{bottom:726.298500px;}
.y10d{bottom:727.139709px;}
.y4d{bottom:728.399709px;}
.y153{bottom:729.479708px;}
.y84{bottom:730.919708px;}
.y17c{bottom:736.319705px;}
.yc1{bottom:736.859705px;}
.y2d{bottom:741.162006px;}
.y12a{bottom:741.719703px;}
.y19f{bottom:744.826950px;}
.y4c{bottom:748.559701px;}
.y152{bottom:749.639700px;}
.y83{bottom:751.079700px;}
.y3{bottom:752.599495px;}
.y176{bottom:755.219698px;}
.yc0{bottom:757.019697px;}
.yee{bottom:758.639697px;}
.y2c{bottom:759.162006px;}
.y10c{bottom:761.879695px;}
.y129{bottom:762.059695px;}
.y4b{bottom:768.719693px;}
.y151{bottom:770.519692px;}
.y82{bottom:771.239692px;}
.ybf{bottom:777.179689px;}
.yed{bottom:778.799688px;}
.y10b{bottom:782.219687px;}
.y19e{bottom:783.078300px;}
.y2b{bottom:786.162006px;}
.y4a{bottom:788.879684px;}
.y150{bottom:790.679684px;}
.y81{bottom:791.399683px;}
.ybe{bottom:797.339681px;}
.y2a{bottom:804.162006px;}
.y177{bottom:808.859676px;}
.y49{bottom:809.039676px;}
.y80{bottom:811.559675px;}
.yec{bottom:812.999675px;}
.y14e{bottom:816.600600px;}
.y128{bottom:816.779673px;}
.ybd{bottom:817.499673px;}
.y19d{bottom:821.329650px;}
.y29{bottom:822.162006px;}
.y10a{bottom:822.719671px;}
.y48{bottom:829.199668px;}
.y7f{bottom:831.539667px;}
.y127{bottom:837.119665px;}
.ybc{bottom:837.659665px;}
.y19c{bottom:838.614150px;}
.y28{bottom:840.162006px;}
.y109{bottom:842.879663px;}
.y14d{bottom:846.659661px;}
.yeb{bottom:847.919661px;}
.y47{bottom:849.359660px;}
.y7e{bottom:851.699659px;}
.y19b{bottom:855.898650px;}
.ybb{bottom:857.639657px;}
.y27{bottom:858.162006px;}
.y178{bottom:862.319655px;}
.y7c{bottom:868.080600px;}
.yea{bottom:868.619653px;}
.y46{bottom:869.519652px;}
.y126{bottom:871.499651px;}
.y7b{bottom:871.859651px;}
.y26{bottom:876.162006px;}
.y2{bottom:879.369000px;}
.y14c{bottom:881.579647px;}
.y108{bottom:883.379647px;}
.ye9{bottom:888.779644px;}
.y45{bottom:889.679644px;}
.y79{bottom:891.660600px;}
.y125{bottom:891.839643px;}
.yba{bottom:892.379643px;}
.y19a{bottom:894.150000px;}
.y25{bottom:894.282009px;}
.y78{bottom:895.799642px;}
.y107{bottom:903.719639px;}
.ye8{bottom:908.939636px;}
.y44{bottom:909.659636px;}
.yb9{bottom:912.719635px;}
.y179{bottom:915.779634px;}
.y14b{bottom:916.319633px;}
.y77{bottom:916.499633px;}
.y124{bottom:926.579629px;}
.ye7{bottom:929.099628px;}
.y43{bottom:929.819628px;}
.yb8{bottom:932.879627px;}
.y199{bottom:933.030000px;}
.y76{bottom:936.479625px;}
.y106{bottom:938.099625px;}
.y24{bottom:941.317501px;}
.y123{bottom:946.919621px;}
.ye6{bottom:949.259620px;}
.y42{bottom:949.799620px;}
.y149{bottom:950.339620px;}
.y75{bottom:954.299618px;}
.y74{bottom:956.459617px;}
.y14a{bottom:956.999617px;}
.y105{bottom:958.439617px;}
.y1{bottom:966.726000px;}
.yb7{bottom:967.079613px;}
.y146{bottom:968.699613px;}
.ye5{bottom:969.419612px;}
.y41{bottom:969.959612px;}
.y147{bottom:973.740600px;}
.y198{bottom:974.700000px;}
.y73{bottom:977.159609px;}
.yb6{bottom:987.779605px;}
.ye4{bottom:989.039604px;}
.y143{bottom:989.399604px;}
.y23{bottom:989.615997px;}
.y40{bottom:990.119604px;}
.y104{bottom:993.179603px;}
.y144{bottom:994.620600px;}
.y72{bottom:995.699602px;}
.y70{bottom:1006.859597px;}
.y71{bottom:1007.039597px;}
.ye3{bottom:1007.579597px;}
.yb5{bottom:1007.939597px;}
.y3f{bottom:1010.279596px;}
.y140{bottom:1010.459596px;}
.y103{bottom:1013.519595px;}
.y141{bottom:1015.680600px;}
.y197{bottom:1016.460000px;}
.y17a{bottom:1019.460600px;}
.y6f{bottom:1021.979591px;}
.y186{bottom:1022.879591px;}
.ye2{bottom:1027.739589px;}
.y3e{bottom:1030.439588px;}
.y13d{bottom:1032.059587px;}
.y13e{bottom:1037.280600px;}
.y6e{bottom:1043.219583px;}
.y102{bottom:1048.079581px;}
.yb4{bottom:1048.259581px;}
.y3d{bottom:1050.599580px;}
.y17d{bottom:1052.579579px;}
.y13c{bottom:1053.119579px;}
.y196{bottom:1058.130000px;}
.y6d{bottom:1067.519573px;}
.y122{bottom:1068.059573px;}
.y22{bottom:1068.090000px;}
.yb3{bottom:1068.239573px;}
.y21{bottom:1082.490000px;}
.y6c{bottom:1083.539567px;}
.y6a{bottom:1087.679565px;}
.y3c{bottom:1087.859565px;}
.y13b{bottom:1088.219565px;}
.yb2{bottom:1088.399565px;}
.y6b{bottom:1094.879562px;}
.y195{bottom:1099.890000px;}
.y194{bottom:1141.200000px;}
.h30{height:10.620000px;}
.h2c{height:11.700000px;}
.h33{height:12.420000px;}
.h34{height:13.320000px;}
.h1b{height:15.120000px;}
.h36{height:17.280000px;}
.h10{height:19.440000px;}
.h1d{height:20.160000px;}
.h21{height:21.060000px;}
.h2e{height:21.600000px;}
.h27{height:29.340000px;}
.h7{height:32.130000px;}
.he{height:33.351562px;}
.h15{height:37.140310px;}
.h23{height:39.552172px;}
.h25{height:40.100958px;}
.h2d{height:40.423732px;}
.hc{height:40.664062px;}
.h29{height:40.788177px;}
.hd{height:41.689453px;}
.hf{height:42.970289px;}
.h8{height:43.804688px;}
.h6{height:45.900000px;}
.h14{height:46.044465px;}
.h13{height:46.080723px;}
.h18{height:47.933476px;}
.h3{height:48.195000px;}
.h3e{height:49.937344px;}
.h9{height:50.062500px;}
.h39{height:52.998047px;}
.h2{height:55.080000px;}
.h16{height:57.085940px;}
.hb{height:58.324219px;}
.h2b{height:60.664462px;}
.h3c{height:62.703281px;}
.h2f{height:63.274932px;}
.h3f{height:63.720000px;}
.h22{height:64.023724px;}
.h35{height:64.521776px;}
.h3a{height:64.657617px;}
.h1c{height:67.007578px;}
.h1f{height:67.512411px;}
.h24{height:67.660087px;}
.h20{height:67.837473px;}
.h12{height:68.778482px;}
.ha{height:69.128906px;}
.h2a{height:69.775279px;}
.h26{height:69.957394px;}
.h1e{height:70.074872px;}
.h17{height:70.392410px;}
.h11{height:70.626262px;}
.h3b{height:70.664062px;}
.h37{height:77.824628px;}
.h5{height:78.030000px;}
.h28{height:79.198035px;}
.h1a{height:85.338476px;}
.h19{height:86.952403px;}
.h3d{height:94.289590px;}
.h4{height:119.055004px;}
.h32{height:148.698450px;}
.h31{height:149.418450px;}
.h38{height:1262.790000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.we{width:4.500000px;}
.wd{width:6.120000px;}
.w4{width:7.920000px;}
.w7{width:9.540000px;}
.w5{width:9.720000px;}
.w8{width:10.080000px;}
.w6{width:11.160000px;}
.w10{width:16.020000px;}
.wc{width:17.640000px;}
.wf{width:18.540000px;}
.w9{width:19.080000px;}
.wa{width:19.260000px;}
.wb{width:40.320000px;}
.w12{width:579.240000px;}
.w2{width:637.794021px;}
.w3{width:892.500000px;}
.w11{width:892.890000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x34{left:1.799857px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x6{left:131.399947px;}
.x5c{left:133.740000px;}
.xa{left:136.259945px;}
.x5b{left:138.959944px;}
.x5{left:153.070500px;}
.x5d{left:154.439938px;}
.x3e{left:167.579933px;}
.x65{left:168.930000px;}
.x64{left:170.100000px;}
.x3f{left:172.439931px;}
.x40{left:180.899928px;}
.x18{left:183.958773px;}
.xb{left:186.299925px;}
.x12{left:187.379925px;}
.x51{left:188.639925px;}
.x13{left:190.439924px;}
.x52{left:193.499923px;}
.x41{left:198.899920px;}
.x4{left:203.484001px;}
.x42{left:213.299915px;}
.x5e{left:277.919889px;}
.xc{left:279.539897px;}
.x22{left:281.879934px;}
.x10{left:284.219860px;}
.x19{left:288.899911px;}
.x8{left:318.419873px;}
.x14{left:319.500000px;}
.x9{left:324.359870px;}
.x2a{left:330.299868px;}
.x15{left:331.919867px;}
.x2c{left:342.540000px;}
.xf{left:343.979862px;}
.x35{left:346.140000px;}
.x33{left:355.680000px;}
.x2e{left:363.239855px;}
.x36{left:365.219854px;}
.x21{left:370.619852px;}
.x2d{left:375.119850px;}
.x20{left:379.979848px;}
.xd{left:385.379760px;}
.x45{left:390.059119px;}
.x24{left:392.219843px;}
.x2b{left:399.959840px;}
.x1a{left:402.479839px;}
.x11{left:406.079831px;}
.x2f{left:410.939836px;}
.x28{left:413.820000px;}
.x30{left:416.159834px;}
.x27{left:425.879830px;}
.x23{left:433.979829px;}
.x26{left:435.960000px;}
.x59{left:440.099824px;}
.x7{left:442.800000px;}
.xe{left:446.759789px;}
.x25{left:449.819820px;}
.x4e{left:453.059819px;}
.x3{left:454.959000px;}
.x29{left:460.619816px;}
.x62{left:463.500000px;}
.x5f{left:466.019814px;}
.x60{left:481.679807px;}
.x16{left:513.900000px;}
.x46{left:519.299055px;}
.x55{left:525.059790px;}
.x17{left:528.659789px;}
.x56{left:534.599786px;}
.x57{left:544.139782px;}
.x58{left:553.679779px;}
.x1e{left:556.020000px;}
.x53{left:565.019774px;}
.x1d{left:568.259773px;}
.x54{left:569.699772px;}
.x1c{left:578.520000px;}
.x1b{left:592.559763px;}
.x50{left:601.739367px;}
.x1f{left:603.359759px;}
.x61{left:604.979758px;}
.x63{left:609.119756px;}
.x3c{left:616.320000px;}
.x48{left:619.379752px;}
.x4f{left:623.160000px;}
.x49{left:624.239750px;}
.x4a{left:628.919748px;}
.x3d{left:633.959746px;}
.x4b{left:638.639745px;}
.x4c{left:643.319743px;}
.x47{left:648.538992px;}
.x4d{left:657.719737px;}
.x43{left:661.140000px;}
.x44{left:667.079733px;}
.x37{left:690.840000px;}
.x39{left:711.539715px;}
.x38{left:723.599711px;}
.x3a{left:732.059707px;}
.x3b{left:748.079701px;}
.x31{left:752.039699px;}
.x32{left:757.979697px;}
.x5a{left:765.540000px;}
@media print{
.v6{vertical-align:-78.719969pt;}
.v9{vertical-align:-71.679971pt;}
.v8{vertical-align:-26.239990pt;}
.v7{vertical-align:-14.719994pt;}
.v1{vertical-align:-12.159995pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.559999pt;}
.v5{vertical-align:10.239996pt;}
.v2{vertical-align:12.159995pt;}
.v4{vertical-align:14.719994pt;}
.va{vertical-align:71.679971pt;}
.ls22{letter-spacing:-0.267200pt;}
.ls23{letter-spacing:-0.106880pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.002391pt;}
.lsb{letter-spacing:0.010486pt;}
.ls20{letter-spacing:0.053440pt;}
.ls21{letter-spacing:0.106880pt;}
.ls1b{letter-spacing:0.116982pt;}
.ls1d{letter-spacing:0.149446pt;}
.ls1f{letter-spacing:0.200979pt;}
.ls1{letter-spacing:0.201670pt;}
.ls12{letter-spacing:0.358688pt;}
.ls7{letter-spacing:0.842032pt;}
.ls10{letter-spacing:0.846161pt;}
.ls14{letter-spacing:2.244888pt;}
.ls19{letter-spacing:2.885249pt;}
.ls15{letter-spacing:2.886888pt;}
.ls6{letter-spacing:3.687086pt;}
.ls8{letter-spacing:4.233393pt;}
.ls13{letter-spacing:4.871888pt;}
.ls18{letter-spacing:13.021272pt;}
.ls4{letter-spacing:13.661805pt;}
.lsd{letter-spacing:14.301804pt;}
.ls3{letter-spacing:16.015920pt;}
.lsc{letter-spacing:17.556406pt;}
.ls2{letter-spacing:20.242416pt;}
.ls17{letter-spacing:20.882777pt;}
.ls9{letter-spacing:21.523138pt;}
.ls16{letter-spacing:21.717491pt;}
.ls11{letter-spacing:84.609575pt;}
.ls5{letter-spacing:85.250108pt;}
.lse{letter-spacing:90.372772pt;}
.lsa{letter-spacing:165.649267pt;}
.ls1e{letter-spacing:334.704666pt;}
.ls1a{letter-spacing:919.354566pt;}
.ls1c{letter-spacing:930.239895pt;}
.ws18{word-spacing:-48.401072pt;}
.ws1c{word-spacing:-40.172749pt;}
.ws1f{word-spacing:-18.439028pt;}
.ws17{word-spacing:-15.839994pt;}
.ws19{word-spacing:-15.573060pt;}
.ws1d{word-spacing:-15.287177pt;}
.ws21{word-spacing:-14.909760pt;}
.ws22{word-spacing:-14.749440pt;}
.ws3{word-spacing:-13.704293pt;}
.ws1a{word-spacing:-10.433756pt;}
.ws4{word-spacing:-9.729980pt;}
.ws1b{word-spacing:-8.409437pt;}
.ws23{word-spacing:-0.160320pt;}
.ws9{word-spacing:-0.047280pt;}
.ws0{word-spacing:0.000000pt;}
.ws26{word-spacing:0.267200pt;}
.ws7{word-spacing:0.593084pt;}
.ws25{word-spacing:1.122240pt;}
.ws27{word-spacing:1.763520pt;}
.wsa{word-spacing:3.154604pt;}
.wsc{word-spacing:3.794968pt;}
.ws2{word-spacing:4.435332pt;}
.ws10{word-spacing:6.933207pt;}
.ws13{word-spacing:7.545082pt;}
.wse{word-spacing:7.954592pt;}
.ws6{word-spacing:8.043684pt;}
.ws15{word-spacing:8.594952pt;}
.wsb{word-spacing:11.159702pt;}
.ws24{word-spacing:13.253120pt;}
.ws1{word-spacing:34.666663pt;}
.ws1e{word-spacing:59.063792pt;}
.ws20{word-spacing:59.148274pt;}
.ws5{word-spacing:188.109695pt;}
.ws14{word-spacing:204.118583pt;}
.ws11{word-spacing:214.364429pt;}
.wsd{word-spacing:240.007895pt;}
.ws12{word-spacing:261.139790pt;}
.ws16{word-spacing:263.701234pt;}
.ws8{word-spacing:394.306324pt;}
.wsf{word-spacing:455.169168pt;}
._1a{margin-left:-83.550900pt;}
._17{margin-left:-10.027466pt;}
._0{margin-left:-8.250667pt;}
._b{margin-left:-5.866667pt;}
._7{margin-left:-3.413333pt;}
._2{margin-left:-1.866667pt;}
._4{margin-left:-0.960000pt;}
._6{width:1.658667pt;}
._c{width:2.878363pt;}
._e{width:3.831080pt;}
._11{width:4.798205pt;}
._3{width:5.941333pt;}
._5{width:7.626667pt;}
._10{width:8.756599pt;}
._1{width:10.480000pt;}
._f{width:11.906247pt;}
._12{width:13.161604pt;}
._d{width:14.421243pt;}
._16{width:16.611510pt;}
._15{width:17.555497pt;}
._1b{width:18.487979pt;}
._8{width:19.418667pt;}
._18{width:20.995948pt;}
._19{width:22.071619pt;}
._14{width:23.339059pt;}
._13{width:24.272828pt;}
._1d{width:25.350848pt;}
._1c{width:26.362980pt;}
._a{width:31.999999pt;}
._9{width:47.999998pt;}
._36{width:72.686550pt;}
._35{width:76.257035pt;}
._28{width:78.190426pt;}
._29{width:149.449824pt;}
._2c{width:182.522428pt;}
._2e{width:191.651923pt;}
._2d{width:228.034414pt;}
._2a{width:231.416191pt;}
._2b{width:262.562312pt;}
._25{width:288.106852pt;}
._21{width:292.500575pt;}
._27{width:326.597404pt;}
._2f{width:332.366415pt;}
._1f{width:342.009869pt;}
._33{width:397.908391pt;}
._26{width:414.865571pt;}
._31{width:513.363446pt;}
._22{width:568.705701pt;}
._32{width:582.793714pt;}
._20{width:658.450186pt;}
._24{width:673.036456pt;}
._34{width:687.126961pt;}
._23{width:762.988321pt;}
._1e{width:802.851910pt;}
._30{width:868.771248pt;}
.fsb{font-size:33.637747pt;}
.fs11{font-size:35.839986pt;}
.fs13{font-size:36.337265pt;}
.fs18{font-size:36.629745pt;}
.fs16{font-size:36.959985pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:39.242224pt;}
.fs9{font-size:41.735023pt;}
.fs1f{font-size:42.560000pt;}
.fs5{font-size:42.666667pt;}
.fsd{font-size:44.227182pt;}
.fs1b{font-size:48.000000pt;}
.fsc{font-size:51.702379pt;}
.fs3{font-size:53.333333pt;}
.fs1d{font-size:53.440000pt;}
.fs19{font-size:54.989845pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:57.307710pt;}
.fs1c{font-size:58.560000pt;}
.fs10{font-size:61.439975pt;}
.fs8{font-size:62.292242pt;}
.fs14{font-size:63.359975pt;}
.fs0{font-size:64.000000pt;}
.fse{font-size:64.303413pt;}
.fs12{font-size:64.929589pt;}
.fs1a{font-size:66.327440pt;}
.fs17{font-size:66.959420pt;}
.fsf{font-size:67.246922pt;}
.fs6{font-size:74.666667pt;}
.fs1e{font-size:85.440000pt;}
.fs2{font-size:90.666667pt;}
.fs15{font-size:95.039962pt;}
.y0{bottom:0.000000pt;}
.y161{bottom:1.759306pt;}
.yd1{bottom:2.239308pt;}
.y13f{bottom:2.559097pt;}
.y142{bottom:2.559105pt;}
.y145{bottom:2.559112pt;}
.y148{bottom:2.559119pt;}
.y14f{bottom:2.559175pt;}
.y170{bottom:2.559339pt;}
.y17b{bottom:3.039103pt;}
.y192{bottom:3.039239pt;}
.y190{bottom:3.039258pt;}
.y18e{bottom:3.039277pt;}
.y18c{bottom:3.039296pt;}
.y18a{bottom:3.039315pt;}
.y188{bottom:3.039334pt;}
.y7a{bottom:3.359148pt;}
.y7d{bottom:3.359157pt;}
.y91{bottom:3.359253pt;}
.y9f{bottom:3.359303pt;}
.yd3{bottom:3.359306pt;}
.y3b{bottom:3.840008pt;}
.yd5{bottom:5.279308pt;}
.ya4{bottom:5.279315pt;}
.y1a6{bottom:37.920000pt;}
.y1a7{bottom:46.880000pt;}
.y193{bottom:59.680000pt;}
.y20{bottom:77.054667pt;}
.y4{bottom:86.333337pt;}
.y3a{bottom:109.546880pt;}
.y39{bottom:113.386888pt;}
.y1f{bottom:123.790666pt;}
.ye1{bottom:143.946609pt;}
.yb1{bottom:150.186607pt;}
.ye0{bottom:158.986603pt;}
.y69{bottom:159.146603pt;}
.y175{bottom:161.066602pt;}
.y16d{bottom:162.346602pt;}
.ydf{bottom:164.906601pt;}
.y68{bottom:165.066601pt;}
.yb0{bottom:168.106599pt;}
.y13a{bottom:172.106598pt;}
.y16{bottom:175.052000pt;}
.y121{bottom:184.266593pt;}
.yaf{bottom:186.026592pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.yde{bottom:190.026591pt;}
.y67{bottom:190.186591pt;}
.y174{bottom:191.306590pt;}
.y16c{bottom:193.226589pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y120{bottom:202.346586pt;}
.y139{bottom:202.986585pt;}
.yae{bottom:203.946585pt;}
.y101{bottom:206.986584pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y66{bottom:211.466582pt;}
.y11f{bottom:220.266579pt;}
.yad{bottom:221.866578pt;}
.y173{bottom:222.506578pt;}
.y16b{bottom:224.106577pt;}
.y100{bottom:225.066577pt;}
.y65{bottom:229.386575pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.y138{bottom:233.866573pt;}
.yac{bottom:239.786571pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y64{bottom:247.306568pt;}
.y11e{bottom:250.986566pt;}
.y172{bottom:252.586566pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y16a{bottom:254.986565pt;}
.yff{bottom:255.626564pt;}
.yab{bottom:257.706564pt;}
.y137{bottom:264.746561pt;}
.y63{bottom:265.226561pt;}
.y11d{bottom:269.066559pt;}
.yfe{bottom:273.706557pt;}
.ydd{bottom:275.626556pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y62{bottom:283.146553pt;}
.y169{bottom:284.906553pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.yaa{bottom:288.266551pt;}
.yfd{bottom:291.626550pt;}
.ydc{bottom:293.386549pt;}
.y136{bottom:295.626548pt;}
.y171{bottom:298.346547pt;}
.y11c{bottom:299.946547pt;}
.y61{bottom:301.066546pt;}
.y168{bottom:305.866544pt;}
.ya9{bottom:306.666544pt;}
.yd{bottom:309.452000pt;}
.ydb{bottom:311.306542pt;}
.y167{bottom:312.746542pt;}
.y166{bottom:314.826541pt;}
.y184{bottom:315.306541pt;}
.y16f{bottom:315.947200pt;}
.y11b{bottom:318.026539pt;}
.y16e{bottom:318.506539pt;}
.y60{bottom:318.826539pt;}
.yfc{bottom:322.346538pt;}
.ya8{bottom:324.426537pt;}
.y135{bottom:326.506536pt;}
.y187{bottom:329.067200pt;}
.y165{bottom:330.826534pt;}
.y17e{bottom:332.106534pt;}
.y11a{bottom:335.946532pt;}
.y5f{bottom:336.746532pt;}
.yfb{bottom:340.426530pt;}
.yda{bottom:342.026530pt;}
.ya7{bottom:342.346530pt;}
.yc{bottom:343.809333pt;}
.y164{bottom:348.746527pt;}
.y5e{bottom:354.666525pt;}
.y134{bottom:357.386524pt;}
.yd9{bottom:360.106523pt;}
.ya6{bottom:360.266523pt;}
.yb{bottom:362.706666pt;}
.y119{bottom:366.506520pt;}
.y163{bottom:367.466520pt;}
.yfa{bottom:371.146518pt;}
.ya3{bottom:374.507200pt;}
.y189{bottom:376.747200pt;}
.yd8{bottom:378.026515pt;}
.ya5{bottom:379.466515pt;}
.y17f{bottom:379.786515pt;}
.ya1{bottom:383.306513pt;}
.ya2{bottom:383.466513pt;}
.y118{bottom:384.586513pt;}
.y5d{bottom:385.066513pt;}
.y162{bottom:385.226513pt;}
.y133{bottom:388.266511pt;}
.yf9{bottom:389.226511pt;}
.yd4{bottom:392.267200pt;}
.yd0{bottom:394.827200pt;}
.yd6{bottom:397.226508pt;}
.yd2{bottom:397.867200pt;}
.y160{bottom:400.107200pt;}
.ycf{bottom:401.066506pt;}
.yd7{bottom:401.226506pt;}
.y117{bottom:402.506506pt;}
.y5c{bottom:403.466505pt;}
.y15f{bottom:403.946505pt;}
.ya0{bottom:405.706504pt;}
.y9e{bottom:406.187200pt;}
.y9d{bottom:409.546503pt;}
.y9c{bottom:409.706503pt;}
.y132{bottom:419.146499pt;}
.yf8{bottom:419.946499pt;}
.y5b{bottom:421.386498pt;}
.yce{bottom:422.346498pt;}
.y18b{bottom:424.427200pt;}
.y180{bottom:427.466496pt;}
.y9b{bottom:428.906495pt;}
.y116{bottom:433.226493pt;}
.y15e{bottom:435.306493pt;}
.yf7{bottom:438.026491pt;}
.y5a{bottom:439.306491pt;}
.ycd{bottom:440.266491pt;}
.y99{bottom:445.226489pt;}
.y97{bottom:448.906487pt;}
.y131{bottom:450.026487pt;}
.y115{bottom:451.306486pt;}
.y9a{bottom:452.426486pt;}
.y98{bottom:455.306485pt;}
.y59{bottom:457.226484pt;}
.ycc{bottom:458.186483pt;}
.y38{bottom:459.421332pt;}
.ya{bottom:462.990669pt;}
.y15d{bottom:466.026480pt;}
.y1a5{bottom:467.520000pt;}
.yf6{bottom:468.746479pt;}
.y96{bottom:468.906479pt;}
.y18d{bottom:471.787200pt;}
.y37{bottom:472.221333pt;}
.y58{bottom:473.386477pt;}
.y181{bottom:474.826477pt;}
.ycb{bottom:476.106476pt;}
.y9{bottom:478.990666pt;}
.y130{bottom:480.906474pt;}
.y114{bottom:482.026474pt;}
.y36{bottom:485.021333pt;}
.y1a4{bottom:486.071440pt;}
.y57{bottom:486.346472pt;}
.y95{bottom:486.666472pt;}
.yf5{bottom:486.826472pt;}
.y94{bottom:490.666470pt;}
.yca{bottom:493.866469pt;}
.y8{bottom:494.990666pt;}
.y113{bottom:500.106467pt;}
.y56{bottom:504.266465pt;}
.y93{bottom:510.186463pt;}
.yc9{bottom:511.786462pt;}
.y15c{bottom:514.666461pt;}
.y35{bottom:514.783995pt;}
.yf4{bottom:517.386460pt;}
.y1a3{bottom:518.560000pt;}
.y18f{bottom:519.467200pt;}
.y55{bottom:522.186458pt;}
.y182{bottom:522.506458pt;}
.y92{bottom:529.226455pt;}
.y15a{bottom:529.386455pt;}
.y90{bottom:529.707200pt;}
.y12f{bottom:529.866455pt;}
.y34{bottom:530.783995pt;}
.y112{bottom:530.826454pt;}
.y8f{bottom:533.066453pt;}
.y8e{bottom:533.226453pt;}
.y15b{bottom:535.306453pt;}
.yf3{bottom:535.466452pt;}
.y54{bottom:540.106451pt;}
.y159{bottom:544.426449pt;}
.y33{bottom:546.797331pt;}
.yc8{bottom:547.626448pt;}
.y111{bottom:548.906447pt;}
.y8c{bottom:553.866445pt;}
.y8d{bottom:557.386444pt;}
.y53{bottom:558.026443pt;}
.y158{bottom:559.306443pt;}
.y1a2{bottom:560.064800pt;}
.y12e{bottom:560.586442pt;}
.y32{bottom:562.797331pt;}
.yc7{bottom:565.546440pt;}
.yf2{bottom:566.346440pt;}
.y191{bottom:566.987200pt;}
.y183{bottom:570.026439pt;}
.y7{bottom:573.786667pt;}
.y8b{bottom:573.866437pt;}
.y157{bottom:575.466436pt;}
.y51{bottom:575.786436pt;}
.y31{bottom:578.797331pt;}
.y12d{bottom:578.826435pt;}
.y110{bottom:579.626435pt;}
.y52{bottom:582.986433pt;}
.yc6{bottom:583.466433pt;}
.yf1{bottom:584.426433pt;}
.y89{bottom:590.186431pt;}
.y6{bottom:592.685334pt;}
.y156{bottom:593.226429pt;}
.y50{bottom:593.706429pt;}
.y87{bottom:593.866429pt;}
.y1a1{bottom:593.985840pt;}
.y30{bottom:594.810667pt;}
.y185{bottom:596.426428pt;}
.y8a{bottom:597.386428pt;}
.y10f{bottom:597.706428pt;}
.y88{bottom:600.266427pt;}
.yc5{bottom:601.386426pt;}
.y12c{bottom:610.506422pt;}
.y4f{bottom:611.626422pt;}
.y155{bottom:611.786422pt;}
.y86{bottom:613.866421pt;}
.y2f{bottom:618.810667pt;}
.yc3{bottom:619.306419pt;}
.yf0{bottom:620.426418pt;}
.yc4{bottom:626.506416pt;}
.y1a0{bottom:628.067200pt;}
.y10e{bottom:628.266415pt;}
.y12b{bottom:628.426415pt;}
.y4e{bottom:629.546415pt;}
.y154{bottom:629.706415pt;}
.y85{bottom:631.786414pt;}
.y2e{bottom:634.810666pt;}
.yc2{bottom:637.066412pt;}
.yef{bottom:638.346411pt;}
.y5{bottom:645.598667pt;}
.y10d{bottom:646.346408pt;}
.y4d{bottom:647.466408pt;}
.y153{bottom:648.426407pt;}
.y84{bottom:649.706407pt;}
.y17c{bottom:654.506405pt;}
.yc1{bottom:654.986405pt;}
.y2d{bottom:658.810672pt;}
.y12a{bottom:659.306403pt;}
.y19f{bottom:662.068400pt;}
.y4c{bottom:665.386401pt;}
.y152{bottom:666.346400pt;}
.y83{bottom:667.626400pt;}
.y3{bottom:668.977329pt;}
.y176{bottom:671.306398pt;}
.yc0{bottom:672.906398pt;}
.yee{bottom:674.346397pt;}
.y2c{bottom:674.810672pt;}
.y10c{bottom:677.226396pt;}
.y129{bottom:677.386396pt;}
.y4b{bottom:683.306393pt;}
.y151{bottom:684.906393pt;}
.y82{bottom:685.546392pt;}
.ybf{bottom:690.826390pt;}
.yed{bottom:692.266390pt;}
.y10b{bottom:695.306389pt;}
.y19e{bottom:696.069600pt;}
.y2b{bottom:698.810672pt;}
.y4a{bottom:701.226386pt;}
.y150{bottom:702.826386pt;}
.y81{bottom:703.466385pt;}
.ybe{bottom:708.746383pt;}
.y2a{bottom:714.810672pt;}
.y177{bottom:718.986379pt;}
.y49{bottom:719.146379pt;}
.y80{bottom:721.386378pt;}
.yec{bottom:722.666378pt;}
.y14e{bottom:725.867200pt;}
.y128{bottom:726.026376pt;}
.ybd{bottom:726.666376pt;}
.y19d{bottom:730.070800pt;}
.y29{bottom:730.810672pt;}
.y10a{bottom:731.306374pt;}
.y48{bottom:737.066372pt;}
.y7f{bottom:739.146371pt;}
.y127{bottom:744.106369pt;}
.ybc{bottom:744.586369pt;}
.y19c{bottom:745.434800pt;}
.y28{bottom:746.810672pt;}
.y109{bottom:749.226367pt;}
.y14d{bottom:752.586366pt;}
.yeb{bottom:753.706365pt;}
.y47{bottom:754.986365pt;}
.y7e{bottom:757.066364pt;}
.y19b{bottom:760.798800pt;}
.ybb{bottom:762.346362pt;}
.y27{bottom:762.810672pt;}
.y178{bottom:766.506360pt;}
.y7c{bottom:771.627200pt;}
.yea{bottom:772.106358pt;}
.y46{bottom:772.906358pt;}
.y126{bottom:774.666357pt;}
.y7b{bottom:774.986357pt;}
.y26{bottom:778.810672pt;}
.y2{bottom:781.661334pt;}
.y14c{bottom:783.626353pt;}
.y108{bottom:785.226353pt;}
.ye9{bottom:790.026351pt;}
.y45{bottom:790.826350pt;}
.y79{bottom:792.587200pt;}
.y125{bottom:792.746350pt;}
.yba{bottom:793.226349pt;}
.y19a{bottom:794.800000pt;}
.y25{bottom:794.917341pt;}
.y78{bottom:796.266348pt;}
.y107{bottom:803.306345pt;}
.ye8{bottom:807.946343pt;}
.y44{bottom:808.586343pt;}
.yb9{bottom:811.306342pt;}
.y179{bottom:814.026341pt;}
.y14b{bottom:814.506341pt;}
.y77{bottom:814.666341pt;}
.y124{bottom:823.626337pt;}
.ye7{bottom:825.866336pt;}
.y43{bottom:826.506336pt;}
.yb8{bottom:829.226335pt;}
.y199{bottom:829.360000pt;}
.y76{bottom:832.426334pt;}
.y106{bottom:833.866333pt;}
.y24{bottom:836.726667pt;}
.y123{bottom:841.706330pt;}
.ye6{bottom:843.786329pt;}
.y42{bottom:844.266329pt;}
.y149{bottom:844.746329pt;}
.y75{bottom:848.266327pt;}
.y74{bottom:850.186327pt;}
.y14a{bottom:850.666326pt;}
.y105{bottom:851.946326pt;}
.y1{bottom:859.312000pt;}
.yb7{bottom:859.626323pt;}
.y146{bottom:861.066322pt;}
.ye5{bottom:861.706322pt;}
.y41{bottom:862.186322pt;}
.y147{bottom:865.547200pt;}
.y198{bottom:866.400000pt;}
.y73{bottom:868.586319pt;}
.yb6{bottom:878.026315pt;}
.ye4{bottom:879.146315pt;}
.y143{bottom:879.466315pt;}
.y23{bottom:879.658664pt;}
.y40{bottom:880.106315pt;}
.y104{bottom:882.826314pt;}
.y144{bottom:884.107200pt;}
.y72{bottom:885.066313pt;}
.y70{bottom:894.986309pt;}
.y71{bottom:895.146309pt;}
.ye3{bottom:895.626308pt;}
.yb5{bottom:895.946308pt;}
.y3f{bottom:898.026307pt;}
.y140{bottom:898.186307pt;}
.y103{bottom:900.906306pt;}
.y141{bottom:902.827200pt;}
.y197{bottom:903.520000pt;}
.y17a{bottom:906.187200pt;}
.y6f{bottom:908.426303pt;}
.y186{bottom:909.226303pt;}
.ye2{bottom:913.546301pt;}
.y3e{bottom:915.946300pt;}
.y13d{bottom:917.386300pt;}
.y13e{bottom:922.027200pt;}
.y6e{bottom:927.306296pt;}
.y102{bottom:931.626294pt;}
.yb4{bottom:931.786294pt;}
.y3d{bottom:933.866293pt;}
.y17d{bottom:935.626292pt;}
.y13c{bottom:936.106292pt;}
.y196{bottom:940.560000pt;}
.y6d{bottom:948.906287pt;}
.y122{bottom:949.386287pt;}
.y22{bottom:949.413333pt;}
.yb3{bottom:949.546287pt;}
.y21{bottom:962.213334pt;}
.y6c{bottom:963.146281pt;}
.y6a{bottom:966.826280pt;}
.y3c{bottom:966.986280pt;}
.y13b{bottom:967.306280pt;}
.yb2{bottom:967.466280pt;}
.y6b{bottom:973.226277pt;}
.y195{bottom:977.680000pt;}
.y194{bottom:1014.400000pt;}
.h30{height:9.440000pt;}
.h2c{height:10.400000pt;}
.h33{height:11.040000pt;}
.h34{height:11.840000pt;}
.h1b{height:13.440000pt;}
.h36{height:15.360000pt;}
.h10{height:17.280000pt;}
.h1d{height:17.920000pt;}
.h21{height:18.720000pt;}
.h2e{height:19.200000pt;}
.h27{height:26.080000pt;}
.h7{height:28.560000pt;}
.he{height:29.645833pt;}
.h15{height:33.013609pt;}
.h23{height:35.157486pt;}
.h25{height:35.645296pt;}
.h2d{height:35.932206pt;}
.hc{height:36.145833pt;}
.h29{height:36.256157pt;}
.hd{height:37.057292pt;}
.hf{height:38.195813pt;}
.h8{height:38.937500pt;}
.h6{height:40.800000pt;}
.h14{height:40.928414pt;}
.h13{height:40.960643pt;}
.h18{height:42.607535pt;}
.h3{height:42.840000pt;}
.h3e{height:44.388750pt;}
.h9{height:44.500000pt;}
.h39{height:47.109375pt;}
.h2{height:48.960000pt;}
.h16{height:50.743058pt;}
.hb{height:51.843750pt;}
.h2b{height:53.923966pt;}
.h3c{height:55.736250pt;}
.h2f{height:56.244384pt;}
.h3f{height:56.640000pt;}
.h22{height:56.909977pt;}
.h35{height:57.352690pt;}
.h3a{height:57.473437pt;}
.h1c{height:59.562292pt;}
.h1f{height:60.011032pt;}
.h24{height:60.142300pt;}
.h20{height:60.299976pt;}
.h12{height:61.136429pt;}
.ha{height:61.447917pt;}
.h2a{height:62.022471pt;}
.h26{height:62.184350pt;}
.h1e{height:62.288775pt;}
.h17{height:62.571031pt;}
.h11{height:62.778900pt;}
.h3b{height:62.812500pt;}
.h37{height:69.177447pt;}
.h5{height:69.360000pt;}
.h28{height:70.398253pt;}
.h1a{height:75.856423pt;}
.h19{height:77.291025pt;}
.h3d{height:83.812969pt;}
.h4{height:105.826671pt;}
.h32{height:132.176400pt;}
.h31{height:132.816400pt;}
.h38{height:1122.480000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.we{width:4.000000pt;}
.wd{width:5.440000pt;}
.w4{width:7.040000pt;}
.w7{width:8.480000pt;}
.w5{width:8.640000pt;}
.w8{width:8.960000pt;}
.w6{width:9.920000pt;}
.w10{width:14.240000pt;}
.wc{width:15.680000pt;}
.wf{width:16.480000pt;}
.w9{width:16.960000pt;}
.wa{width:17.120000pt;}
.wb{width:35.840000pt;}
.w12{width:514.880000pt;}
.w2{width:566.928019pt;}
.w3{width:793.333333pt;}
.w11{width:793.680000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x34{left:1.599873pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x6{left:116.799953pt;}
.x5c{left:118.880000pt;}
.xa{left:121.119952pt;}
.x5b{left:123.519951pt;}
.x5{left:136.062667pt;}
.x5d{left:137.279945pt;}
.x3e{left:148.959940pt;}
.x65{left:150.160000pt;}
.x64{left:151.200000pt;}
.x3f{left:153.279939pt;}
.x40{left:160.799936pt;}
.x18{left:163.518909pt;}
.xb{left:165.599934pt;}
.x12{left:166.559933pt;}
.x51{left:167.679933pt;}
.x13{left:169.279932pt;}
.x52{left:171.999931pt;}
.x41{left:176.799929pt;}
.x4{left:180.874667pt;}
.x42{left:189.599924pt;}
.x5e{left:247.039901pt;}
.xc{left:248.479909pt;}
.x22{left:250.559941pt;}
.x10{left:252.639876pt;}
.x19{left:256.799921pt;}
.x8{left:283.039887pt;}
.x14{left:284.000000pt;}
.x9{left:288.319885pt;}
.x2a{left:293.599883pt;}
.x15{left:295.039882pt;}
.x2c{left:304.480000pt;}
.xf{left:305.759878pt;}
.x35{left:307.680000pt;}
.x33{left:316.160000pt;}
.x2e{left:322.879871pt;}
.x36{left:324.639870pt;}
.x21{left:329.439868pt;}
.x2d{left:333.439867pt;}
.x20{left:337.759865pt;}
.xd{left:342.559787pt;}
.x45{left:346.719217pt;}
.x24{left:348.639861pt;}
.x2b{left:355.519858pt;}
.x1a{left:357.759857pt;}
.x11{left:360.959850pt;}
.x2f{left:365.279854pt;}
.x28{left:367.840000pt;}
.x30{left:369.919852pt;}
.x27{left:378.559849pt;}
.x23{left:385.759848pt;}
.x26{left:387.520000pt;}
.x59{left:391.199844pt;}
.x7{left:393.600000pt;}
.xe{left:397.119812pt;}
.x25{left:399.839840pt;}
.x4e{left:402.719839pt;}
.x3{left:404.408000pt;}
.x29{left:409.439836pt;}
.x62{left:412.000000pt;}
.x5f{left:414.239834pt;}
.x60{left:428.159829pt;}
.x16{left:456.800000pt;}
.x46{left:461.599160pt;}
.x55{left:466.719813pt;}
.x17{left:469.919812pt;}
.x56{left:475.199810pt;}
.x57{left:483.679807pt;}
.x58{left:492.159803pt;}
.x1e{left:494.240000pt;}
.x53{left:502.239799pt;}
.x1d{left:505.119798pt;}
.x54{left:506.399797pt;}
.x1c{left:514.240000pt;}
.x1b{left:526.719789pt;}
.x50{left:534.879438pt;}
.x1f{left:536.319785pt;}
.x61{left:537.759785pt;}
.x63{left:541.439783pt;}
.x3c{left:547.840000pt;}
.x48{left:550.559780pt;}
.x4f{left:553.920000pt;}
.x49{left:554.879778pt;}
.x4a{left:559.039776pt;}
.x3d{left:563.519775pt;}
.x4b{left:567.679773pt;}
.x4c{left:571.839771pt;}
.x47{left:576.479104pt;}
.x4d{left:584.639766pt;}
.x43{left:587.680000pt;}
.x44{left:592.959763pt;}
.x37{left:614.080000pt;}
.x39{left:632.479747pt;}
.x38{left:643.199743pt;}
.x3a{left:650.719740pt;}
.x3b{left:664.959734pt;}
.x31{left:668.479733pt;}
.x32{left:673.759730pt;}
.x5a{left:680.480000pt;}
}




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