
    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_92259df02c6407d6a5ff0b97.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_625c8d2d6aeaef837e9312a6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2c83bc152b50478647dd2e64.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.887695;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_5bc799a7a97af7b96057ab09.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_05298e3305060e54d42c61a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_445ead2f4bc7d676e684d88d.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;}
.m16{transform:matrix(0.000000,0.250140,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250140,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250140,-0.250000,0.000000,0,0);}
.m18{transform:matrix(0.000000,-0.213259,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.213259,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.213259,0.250000,0.000000,0,0);}
.m1b{transform:matrix(0.000000,-0.235895,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.235895,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.235895,0.250000,0.000000,0,0);}
.m1f{transform:matrix(0.000000,-0.250045,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250045,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250045,0.250000,0.000000,0,0);}
.m13{transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250138,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.006081,-0.278010,0.249909,0.006758,0,0);-ms-transform:matrix(0.006081,-0.278010,0.249909,0.006758,0,0);-webkit-transform:matrix(0.006081,-0.278010,0.249909,0.006758,0,0);}
.me{transform:matrix(0.085914,-0.235030,0.234731,0.086032,0,0);-ms-transform:matrix(0.085914,-0.235030,0.234731,0.086032,0,0);-webkit-transform:matrix(0.085914,-0.235030,0.234731,0.086032,0,0);}
.m11{transform:matrix(0.094218,-0.231823,0.231518,0.094336,0,0);-ms-transform:matrix(0.094218,-0.231823,0.231518,0.094336,0,0);-webkit-transform:matrix(0.094218,-0.231823,0.231518,0.094336,0,0);}
.mf{transform:matrix(0.104134,-0.227520,0.227216,0.104274,0,0);-ms-transform:matrix(0.104134,-0.227520,0.227216,0.104274,0,0);-webkit-transform:matrix(0.104134,-0.227520,0.227216,0.104274,0,0);}
.m8{transform:matrix(0.145185,-0.212273,0.190822,0.161515,0,0);-ms-transform:matrix(0.145185,-0.212273,0.190822,0.161515,0,0);-webkit-transform:matrix(0.145185,-0.212273,0.190822,0.161515,0,0);}
.ma{transform:matrix(0.178837,0.174698,-0.174932,0.178602,0,0);-ms-transform:matrix(0.178837,0.174698,-0.174932,0.178602,0,0);-webkit-transform:matrix(0.178837,0.174698,-0.174932,0.178602,0,0);}
.m17{transform:matrix(0.213259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213259,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.224732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224732,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.224733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224733,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.224736,0.001021,-0.000918,0.249998,0,0);-ms-transform:matrix(0.224736,0.001021,-0.000918,0.249998,0,0);-webkit-transform:matrix(0.224736,0.001021,-0.000918,0.249998,0,0);}
.m5{transform:matrix(0.224737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224737,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.235895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235895,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.235904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235904,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m21{transform:matrix(0.250015,0.004361,-0.004361,0.249962,0,0);-ms-transform:matrix(0.250015,0.004361,-0.004361,0.249962,0,0);-webkit-transform:matrix(0.250015,0.004361,-0.004361,0.249962,0,0);}
.m20{transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250332,-0.001633,0.001633,0.249995,0,0);-ms-transform:matrix(0.250332,-0.001633,0.001633,0.249995,0,0);-webkit-transform:matrix(0.250332,-0.001633,0.001633,0.249995,0,0);}
.mb{transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-92.879963px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:28.799988px;}
.v4{vertical-align:49.679980px;}
.v2{vertical-align:124.559950px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.050940px;}
.ls17{letter-spacing:0.092638px;}
.ls2a{letter-spacing:0.333096px;}
.ls2{letter-spacing:0.346853px;}
.ls5{letter-spacing:0.410335px;}
.ls2b{letter-spacing:0.511277px;}
.ls26{letter-spacing:0.553315px;}
.ls7{letter-spacing:0.833403px;}
.ls21{letter-spacing:0.853375px;}
.ls28{letter-spacing:0.988220px;}
.lsa{letter-spacing:1.116079px;}
.lsf{letter-spacing:1.289074px;}
.ls1c{letter-spacing:1.320866px;}
.ls24{letter-spacing:1.507195px;}
.ls27{letter-spacing:1.581700px;}
.ls13{letter-spacing:1.952433px;}
.ls1d{letter-spacing:1.996226px;}
.ls9{letter-spacing:2.106098px;}
.ls1a{letter-spacing:2.275635px;}
.ls1e{letter-spacing:2.352855px;}
.ls20{letter-spacing:2.502394px;}
.ls23{letter-spacing:2.504353px;}
.ls29{letter-spacing:2.549024px;}
.ls2e{letter-spacing:2.788299px;}
.ls2c{letter-spacing:2.800335px;}
.ls15{letter-spacing:3.239293px;}
.ls4{letter-spacing:3.377035px;}
.ls12{letter-spacing:3.387113px;}
.ls16{letter-spacing:3.489882px;}
.ls3{letter-spacing:3.648665px;}
.ls19{letter-spacing:3.753673px;}
.ls2d{letter-spacing:3.776098px;}
.ls25{letter-spacing:3.819886px;}
.ls1{letter-spacing:4.214703px;}
.ls22{letter-spacing:4.473705px;}
.ls14{letter-spacing:5.082339px;}
.lsd{letter-spacing:5.132642px;}
.ls11{letter-spacing:5.288606px;}
.lse{letter-spacing:6.079041px;}
.ls1f{letter-spacing:6.147612px;}
.ls1b{letter-spacing:6.148580px;}
.ls6{letter-spacing:8.111693px;}
.lsb{letter-spacing:9.667057px;}
.lsc{letter-spacing:9.749497px;}
.ls8{letter-spacing:10.202696px;}
.ls18{letter-spacing:10.485142px;}
.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;}
}
.wsd{word-spacing:-100.769000px;}
.ws16{word-spacing:-66.653253px;}
.ws3{word-spacing:-46.637261px;}
.ws1{word-spacing:-40.031984px;}
.ws30{word-spacing:-35.027986px;}
.ws14{word-spacing:-33.426707px;}
.ws28{word-spacing:-30.442322px;}
.ws15{word-spacing:-30.023988px;}
.ws8{word-spacing:-26.817586px;}
.ws31{word-spacing:-26.621269px;}
.ws25{word-spacing:-24.353791px;}
.ws2b{word-spacing:-23.939990px;}
.ws1f{word-spacing:-23.255413px;}
.ws21{word-spacing:-22.383981px;}
.ws26{word-spacing:-22.324837px;}
.ws27{word-spacing:-22.318001px;}
.ws6{word-spacing:-21.455309px;}
.ws18{word-spacing:-21.059992px;}
.ws20{word-spacing:-20.094923px;}
.ws22{word-spacing:-19.583647px;}
.ws17{word-spacing:-19.371944px;}
.ws4{word-spacing:-19.288086px;}
.ws5{word-spacing:-18.773666px;}
.ws19{word-spacing:-17.999993px;}
.ws9{word-spacing:-17.595396px;}
.wsb{word-spacing:-17.519660px;}
.wsc{word-spacing:-17.508655px;}
.ws24{word-spacing:-17.291982px;}
.ws23{word-spacing:-17.191902px;}
.ws12{word-spacing:-16.534210px;}
.ws7{word-spacing:-16.091056px;}
.wsa{word-spacing:-15.562773px;}
.ws1c{word-spacing:-14.701475px;}
.ws29{word-spacing:-13.499995px;}
.ws1e{word-spacing:-13.410715px;}
.wse{word-spacing:-9.705354px;}
.ws10{word-spacing:-9.695230px;}
.ws11{word-spacing:-9.694898px;}
.wsf{word-spacing:-9.694809px;}
.ws13{word-spacing:-0.256472px;}
.ws1b{word-spacing:-0.040028px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:0.078480px;}
.ws2c{word-spacing:154.186476px;}
.ws2a{word-spacing:261.775977px;}
.ws2d{word-spacing:267.882760px;}
.ws2f{word-spacing:295.186951px;}
.ws1a{word-spacing:327.611405px;}
.ws2e{word-spacing:373.575711px;}
.ws1d{word-spacing:642.760193px;}
._e{margin-left:-15.516325px;}
._10{margin-left:-14.385332px;}
._9{margin-left:-13.028929px;}
._5{margin-left:-11.453804px;}
._c{margin-left:-10.443836px;}
._13{margin-left:-9.307443px;}
._3{margin-left:-8.065148px;}
._12{margin-left:-6.981054px;}
._d{margin-left:-5.897668px;}
._4{margin-left:-3.931507px;}
._6{margin-left:-2.456804px;}
._0{margin-left:-1.278970px;}
._1{width:1.053567px;}
._2{width:2.103199px;}
._14{width:3.422640px;}
._a{width:4.684003px;}
._b{width:6.283847px;}
._7{width:7.370555px;}
._11{width:8.738427px;}
._8{width:9.751173px;}
._f{width:13.564413px;}
._17{width:31.275287px;}
._15{width:41.668846px;}
._16{width:48.282109px;}
._2d{width:71.882296px;}
._1f{width:146.636731px;}
._20{width:162.606344px;}
._25{width:219.095280px;}
._26{width:274.004601px;}
._22{width:290.909902px;}
._27{width:292.575383px;}
._21{width:298.138753px;}
._24{width:307.686996px;}
._2b{width:318.506300px;}
._2c{width:325.690094px;}
._2a{width:329.446632px;}
._28{width:332.591456px;}
._18{width:343.806454px;}
._1b{width:345.892965px;}
._29{width:409.185405px;}
._23{width:421.350255px;}
._1c{width:428.919368px;}
._1d{width:611.231998px;}
._1a{width:658.815244px;}
._19{width:663.030846px;}
._1e{width:1241.601863px;}
.fc4{color:rgb(235,61,0);}
.fc3{color:rgb(37,34,30);}
.fc2{color:rgb(204,51,0);}
.fc1{color:rgb(51,51,153);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:27.928069px;}
.fs13{font-size:34.873414px;}
.fs16{font-size:34.873734px;}
.fs14{font-size:34.874929px;}
.fs12{font-size:34.911346px;}
.fs10{font-size:41.985343px;}
.fs21{font-size:48.239981px;}
.fs1c{font-size:53.732859px;}
.fs2c{font-size:53.999978px;}
.fsd{font-size:55.981197px;}
.fsa{font-size:57.881497px;}
.fs17{font-size:59.475576px;}
.fs2{font-size:59.759976px;}
.fs25{font-size:61.841375px;}
.fs27{font-size:62.201375px;}
.fsf{font-size:62.980775px;}
.fse{font-size:63.020359px;}
.fsc{font-size:63.292793px;}
.fs20{font-size:65.050774px;}
.fs8{font-size:67.531173px;}
.fs7{font-size:69.381604px;}
.fs23{font-size:70.444772px;}
.fs1f{font-size:71.999971px;}
.fs1d{font-size:74.202570px;}
.fs24{font-size:76.111770px;}
.fs26{font-size:76.556369px;}
.fs9{font-size:77.177369px;}
.fs2a{font-size:80.280580px;}
.fs29{font-size:80.305168px;}
.fs22{font-size:83.652567px;}
.fs1e{font-size:84.239966px;}
.fs1a{font-size:85.716566px;}
.fs28{font-size:87.603565px;}
.fs6{font-size:95.759962px;}
.fs1b{font-size:95.951362px;}
.fsb{font-size:96.466137px;}
.fs5{font-size:102.239959px;}
.fs18{font-size:107.999957px;}
.fs2b{font-size:109.504756px;}
.fs3{font-size:120.239952px;}
.fs2d{font-size:125.999950px;}
.fs1{font-size:143.999942px;}
.fs4{font-size:167.759933px;}
.fs11{font-size:167.948333px;}
.fs0{font-size:215.999914px;}
.fs19{font-size:239.759904px;}
.y0{bottom:0.000000px;}
.y25{bottom:0.900190px;}
.y3f{bottom:1.800255px;}
.yad{bottom:3.420066px;}
.yb1{bottom:3.420089px;}
.ybc{bottom:3.420105px;}
.ya3{bottom:3.420118px;}
.ya8{bottom:3.420132px;}
.yb7{bottom:3.420154px;}
.y65{bottom:6.300151px;}
.y34{bottom:9.900029px;}
.y9f{bottom:50.280337px;}
.y3c{bottom:54.240335px;}
.y8f{bottom:58.740334px;}
.yfc{bottom:61.800332px;}
.y85{bottom:63.240332px;}
.y35{bottom:65.580331px;}
.yd3{bottom:74.040327px;}
.y83{bottom:74.760327px;}
.ya{bottom:76.920326px;}
.y8e{bottom:80.520325px;}
.y84{bottom:85.020323px;}
.y82{bottom:89.160321px;}
.yef{bottom:93.300320px;}
.y14{bottom:94.020319px;}
.y9{bottom:94.560319px;}
.y99{bottom:97.800318px;}
.y40{bottom:99.240317px;}
.yd2{bottom:108.060314px;}
.y39{bottom:112.380312px;}
.y86{bottom:114.720311px;}
.y67{bottom:117.960310px;}
.yee{bottom:118.500310px;}
.y58{bottom:121.920308px;}
.y107{bottom:127.140306px;}
.y73{bottom:130.740305px;}
.yc7{bottom:134.160303px;}
.y66{bottom:135.600303px;}
.y13{bottom:136.500302px;}
.y80{bottom:137.040302px;}
.yfb{bottom:137.220302px;}
.yd1{bottom:142.080300px;}
.y74{bottom:146.400298px;}
.y89{bottom:153.780295px;}
.y57{bottom:154.140295px;}
.y9a{bottom:155.040295px;}
.y2c{bottom:156.840294px;}
.y36{bottom:162.960292px;}
.y61{bottom:163.680292px;}
.y7f{bottom:164.940291px;}
.y88{bottom:168.360290px;}
.y106{bottom:169.800289px;}
.yd0{bottom:176.100287px;}
.ycf{bottom:176.640286px;}
.y4d{bottom:181.320284px;}
.y87{bottom:182.760284px;}
.y56{bottom:186.540282px;}
.yec{bottom:187.080282px;}
.yce{bottom:191.220281px;}
.y3d{bottom:191.400280px;}
.y98{bottom:199.140277px;}
.y41{bottom:205.980275px;}
.ya0{bottom:208.680160px;}
.y9b{bottom:211.020273px;}
.yeb{bottom:212.100272px;}
.y105{bottom:212.820272px;}
.yfa{bottom:213.180272px;}
.y12{bottom:216.240271px;}
.y5b{bottom:216.960270px;}
.y20{bottom:217.860270px;}
.y55{bottom:218.940269px;}
.y72{bottom:219.120269px;}
.yed{bottom:223.620268px;}
.y3b{bottom:226.140267px;}
.y8a{bottom:227.760266px;}
.y37{bottom:229.920265px;}
.ybf{bottom:234.600263px;}
.y8{bottom:234.780263px;}
.y3a{bottom:234.960263px;}
.y4c{bottom:235.320263px;}
.yea{bottom:237.300262px;}
.y78{bottom:241.980260px;}
.yf9{bottom:250.800257px;}
.y54{bottom:251.340256px;}
.y3e{bottom:253.680000px;}
.y104{bottom:256.020255px;}
.y11{bottom:258.720254px;}
.y6a{bottom:259.440253px;}
.ye9{bottom:262.500252px;}
.y27{bottom:267.180250px;}
.y9c{bottom:268.260250px;}
.y4b{bottom:270.780249px;}
.yc0{bottom:278.340246px;}
.y97{bottom:282.840244px;}
.y5c{bottom:287.880242px;}
.y43{bottom:300.660237px;}
.y10{bottom:301.920236px;}
.y1f{bottom:304.080235px;}
.y6b{bottom:308.220234px;}
.y79{bottom:309.660233px;}
.y2b{bottom:312.180232px;}
.yd5{bottom:312.900232px;}
.y42{bottom:317.220230px;}
.y8d{bottom:321.360228px;}
.yc1{bottom:324.060227px;}
.y9d{bottom:324.420227px;}
.y4a{bottom:325.320227px;}
.yf8{bottom:326.940226px;}
.y17{bottom:333.420224px;}
.y7{bottom:335.220223px;}
.ye8{bottom:342.600220px;}
.y1e{bottom:346.740218px;}
.ye5{bottom:347.460218px;}
.y53{bottom:349.260217px;}
.y96{bottom:349.980217px;}
.y6c{bottom:357.360214px;}
.y5d{bottom:358.980213px;}
.y49{bottom:360.780213px;}
.y94{bottom:362.760212px;}
.yc2{bottom:367.800210px;}
.ye7{bottom:371.400208px;}
.y38{bottom:371.760208px;}
.ye4{bottom:372.300208px;}
.y62{bottom:375.900207px;}
.y7a{bottom:377.160206px;}
.y6{bottom:378.240206px;}
.y52{bottom:381.300204px;}
.y9e{bottom:381.660204px;}
.y16{bottom:383.100204px;}
.yf7{bottom:383.640204px;}
.y103{bottom:385.980203px;}
.yf{bottom:388.680202px;}
.y1d{bottom:389.940201px;}
.y8c{bottom:392.460200px;}
.ye3{bottom:397.680198px;}
.ye6{bottom:400.020197px;}
.y93{bottom:405.960195px;}
.y6d{bottom:406.320194px;}
.y81{bottom:409.740193px;}
.yc3{bottom:411.540192px;}
.y51{bottom:413.700192px;}
.y48{bottom:415.320191px;}
.y24{bottom:415.500000px;}
.y2a{bottom:420.900189px;}
.yf6{bottom:421.260188px;}
.y5{bottom:421.440188px;}
.y102{bottom:428.460186px;}
.y5e{bottom:430.260185px;}
.ye{bottom:431.340184px;}
.y95{bottom:432.600184px;}
.y1c{bottom:432.960184px;}
.y15{bottom:433.500184px;}
.y8b{bottom:435.660183px;}
.y91{bottom:439.980181px;}
.y7b{bottom:443.400180px;}
.y50{bottom:446.280178px;}
.y32{bottom:448.260178px;}
.y92{bottom:449.160177px;}
.y47{bottom:450.780177px;}
.y75{bottom:453.300176px;}
.yc4{bottom:457.260174px;}
.yf5{bottom:459.060173px;}
.y6e{bottom:460.140173px;}
.y4{bottom:464.460171px;}
.yb9{bottom:467.160170px;}
.y101{bottom:471.660168px;}
.ye2{bottom:472.920168px;}
.yd{bottom:474.360167px;}
.y4f{bottom:478.680166px;}
.y29{bottom:480.300165px;}
.yd4{bottom:480.480165px;}
.y90{bottom:483.000164px;}
.y63{bottom:484.620163px;}
.y46{bottom:486.780162px;}
.yb8{bottom:487.500162px;}
.y2d{bottom:489.300161px;}
.y26{bottom:498.300158px;}
.ycd{bottom:499.920157px;}
.yc5{bottom:501.000157px;}
.y5f{bottom:501.360156px;}
.ye1{bottom:501.720156px;}
.yb6{bottom:504.420000px;}
.y31{bottom:505.320155px;}
.y6f{bottom:506.040155px;}
.y64{bottom:509.460000px;}
.y7c{bottom:511.080153px;}
.ya6{bottom:515.760151px;}
.yf4{bottom:516.300150px;}
.yc{bottom:517.560150px;}
.y1b{bottom:519.720149px;}
.yaa{bottom:521.700148px;}
.y30{bottom:529.260145px;}
.ye0{bottom:530.340145px;}
.y2e{bottom:535.560143px;}
.ya5{bottom:535.920143px;}
.y45{bottom:541.320140px;}
.ya9{bottom:541.860140px;}
.yda{bottom:543.120140px;}
.y2f{bottom:546.720138px;}
.yf3{bottom:553.740136px;}
.y70{bottom:555.000135px;}
.ya4{bottom:556.260134px;}
.ya7{bottom:558.780000px;}
.yb{bottom:560.760133px;}
.yc9{bottom:561.120133px;}
.y1a{bottom:562.380132px;}
.yca{bottom:562.920132px;}
.yd9{bottom:568.140130px;}
.y60{bottom:572.280128px;}
.yd8{bottom:574.080127px;}
.y4e{bottom:576.420126px;}
.y7d{bottom:578.580126px;}
.y59{bottom:582.000124px;}
.yb5{bottom:588.120122px;}
.yc6{bottom:590.460121px;}
.yf2{bottom:591.720120px;}
.ya2{bottom:593.160000px;}
.yd7{bottom:593.520120px;}
.y28{bottom:600.000117px;}
.y100{bottom:601.620116px;}
.ydf{bottom:603.420116px;}
.y71{bottom:604.140115px;}
.yb4{bottom:608.460114px;}
.ybd{bottom:610.800113px;}
.ydc{bottom:616.020111px;}
.y3{bottom:621.420108px;}
.ybb{bottom:627.720000px;}
.yc8{bottom:628.080106px;}
.yde{bottom:628.260106px;}
.yb3{bottom:628.800105px;}
.y68{bottom:629.340105px;}
.ydb{bottom:640.860101px;}
.yff{bottom:644.100099px;}
.y7e{bottom:646.080099px;}
.y19{bottom:647.160098px;}
.yf1{bottom:648.780097px;}
.yb2{bottom:649.140097px;}
.yba{bottom:651.480096px;}
.ydd{bottom:653.640096px;}
.y77{bottom:654.900095px;}
.y22{bottom:661.740092px;}
.y44{bottom:664.800091px;}
.yb0{bottom:666.060000px;}
.y69{bottom:678.480086px;}
.y2{bottom:685.500083px;}
.yae{bottom:706.020075px;}
.yac{bottom:722.940000px;}
.yfe{bottom:729.780065px;}
.yf0{bottom:738.240062px;}
.ycc{bottom:740.400061px;}
.yab{bottom:746.520058px;}
.y1{bottom:750.480057px;}
.y5a{bottom:760.920053px;}
.yd6{bottom:762.180052px;}
.y76{bottom:769.560049px;}
.y23{bottom:778.020046px;}
.ybe{bottom:780.180045px;}
.y18{bottom:785.760043px;}
.y21{bottom:786.300042px;}
.ycb{bottom:789.180041px;}
.yfd{bottom:808.620034px;}
.y33{bottom:809.700000px;}
.yaf{bottom:813.120032px;}
.ya1{bottom:813.300032px;}
.h2c{height:17.820000px;}
.h19{height:29.128103px;}
.h20{height:29.160000px;}
.h15{height:36.411443px;}
.h18{height:36.574908px;}
.h16{height:36.755330px;}
.h1a{height:36.779099px;}
.h21{height:37.229944px;}
.h36{height:37.494126px;}
.h13{height:41.580000px;}
.h12{height:43.789401px;}
.h27{height:45.071801px;}
.h24{height:49.992168px;}
.h28{height:50.312792px;}
.h22{height:51.412816px;}
.h37{height:57.092321px;}
.h23{height:58.490836px;}
.hf{height:58.902343px;}
.h1e{height:59.390531px;}
.hc{height:60.368592px;}
.h1b{height:62.031167px;}
.h3{height:62.327788px;}
.h2d{height:64.498622px;}
.h2f{height:64.874090px;}
.h26{height:64.899818px;}
.h11{height:65.686980px;}
.h10{height:65.909569px;}
.he{height:66.438227px;}
.h1f{height:66.481925px;}
.h25{height:66.489583px;}
.ha{height:70.432903px;}
.h9{height:72.506382px;}
.h2a{height:73.471696px;}
.h2b{height:79.382197px;}
.h2e{height:79.845901px;}
.hb{height:80.493584px;}
.h31{height:83.755781px;}
.h32{height:83.868365px;}
.h29{height:87.247013px;}
.h35{height:87.859652px;}
.h30{height:91.367781px;}
.h17{height:94.320000px;}
.h7{height:99.874648px;}
.hd{height:100.862952px;}
.h6{height:106.633082px;}
.h39{height:108.890816px;}
.h1c{height:112.640580px;}
.h34{height:114.210039px;}
.h14{height:119.400768px;}
.h4{height:125.406512px;}
.h3a{height:131.414010px;}
.h2{height:150.187440px;}
.h38{height:156.452281px;}
.h8{height:166.320000px;}
.h5{height:174.968368px;}
.h1{height:225.281160px;}
.h1d{height:250.062087px;}
.h33{height:267.569977px;}
.h0{height:892.500000px;}
.w1{width:24.660000px;}
.w3{width:51.840000px;}
.w5{width:64.259640px;}
.w8{width:64.620000px;}
.w7{width:68.940000px;}
.wa{width:69.300000px;}
.w6{width:77.400000px;}
.w9{width:77.760000px;}
.w2{width:182.880000px;}
.w4{width:204.480000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x25{left:1.059594px;}
.x30{left:8.640449px;}
.x16{left:14.579893px;}
.x15{left:104.025960px;}
.x72{left:115.005854px;}
.x8a{left:117.165960px;}
.x8c{left:120.765872px;}
.x8e{left:126.705871px;}
.x8d{left:131.565858px;}
.x8b{left:133.905846px;}
.xf{left:135.165846px;}
.x59{left:140.386410px;}
.xbe{left:143.985840px;}
.xb4{left:146.685841px;}
.x58{left:147.946412px;}
.x36{left:149.025840px;}
.xc2{left:150.466423px;}
.x12{left:154.066438px;}
.xa{left:157.666437px;}
.xc1{left:161.086436px;}
.xc5{left:162.885922px;}
.x35{left:164.686434px;}
.xb{left:165.946434px;}
.xb5{left:169.186432px;}
.x57{left:170.266405px;}
.xc8{left:171.526431px;}
.xbf{left:173.326431px;}
.x39{left:174.406430px;}
.xc3{left:176.206355px;}
.x3e{left:177.826529px;}
.xc9{left:179.986428px;}
.x9{left:183.046427px;}
.x11{left:186.106426px;}
.x14{left:187.186425px;}
.xc6{left:189.525992px;}
.x1d{left:192.226423px;}
.x3a{left:197.266421px;}
.x37{left:199.966420px;}
.x10{left:203.386419px;}
.x3d{left:212.026415px;}
.x4e{left:220.486412px;}
.xa0{left:229.486336px;}
.x1{left:232.186407px;}
.x55{left:233.806406px;}
.x38{left:240.466271px;}
.x13{left:241.726403px;}
.x2{left:246.946397px;}
.x3f{left:255.406398px;}
.xc7{left:257.026544px;}
.x6d{left:258.826396px;}
.x3c{left:266.026394px;}
.x52{left:267.286393px;}
.xc4{left:268.726393px;}
.x7d{left:270.166349px;}
.x1b{left:277.186389px;}
.x51{left:278.266355px;}
.x5a{left:281.146388px;}
.xc0{left:282.946416px;}
.x54{left:285.466386px;}
.xbc{left:286.726385px;}
.x4b{left:293.746383px;}
.xb6{left:295.726622px;}
.x93{left:299.325600px;}
.x92{left:300.406314px;}
.xab{left:302.566379px;}
.x18{left:307.606377px;}
.x50{left:310.846376px;}
.xbd{left:312.286476px;}
.x1a{left:314.266374px;}
.x94{left:315.886374px;}
.x89{left:316.966373px;}
.xac{left:318.946372px;}
.xb3{left:323.086371px;}
.x85{left:327.586389px;}
.x7c{left:336.046366px;}
.xa1{left:337.486365px;}
.x40{left:340.546364px;}
.x4f{left:344.506362px;}
.x7e{left:346.306623px;}
.x5b{left:348.286361px;}
.x7b{left:353.146359px;}
.x84{left:355.666358px;}
.xae{left:358.366357px;}
.xad{left:364.126619px;}
.x3{left:380.686346px;}
.x5c{left:382.486347px;}
.x53{left:385.366346px;}
.x6f{left:387.886345px;}
.xa2{left:399.586340px;}
.x5d{left:416.686333px;}
.x41{left:426.046330px;}
.x3b{left:428.746329px;}
.x83{left:435.586325px;}
.x86{left:438.466325px;}
.x8f{left:440.805600px;}
.x19{left:444.766322px;}
.x5e{left:450.706320px;}
.x91{left:457.546315px;}
.xa3{left:459.886316px;}
.x90{left:460.966316px;}
.x7f{left:463.666315px;}
.x5f{left:484.906306px;}
.x42{left:511.006296px;}
.x17{left:516.226294px;}
.x4c{left:520.006292px;}
.x82{left:531.166230px;}
.x1c{left:537.286285px;}
.x43{left:545.026282px;}
.x87{left:546.466281px;}
.x71{left:548.806280px;}
.x60{left:553.126279px;}
.x77{left:557.266277px;}
.xa4{left:580.306268px;}
.x61{left:587.326265px;}
.x56{left:608.926256px;}
.x7a{left:616.846253px;}
.x62{left:621.526251px;}
.x44{left:629.986248px;}
.x81{left:640.246146px;}
.x20{left:649.606240px;}
.x21{left:654.826249px;}
.x8{left:663.106235px;}
.xaf{left:666.166234px;}
.xb0{left:667.246234px;}
.x63{left:688.666225px;}
.x23{left:696.046222px;}
.xa5{left:702.526219px;}
.x45{left:715.126214px;}
.x64{left:722.866211px;}
.x31{left:744.826202px;}
.x80{left:749.326062px;}
.x4{left:756.526197px;}
.xc{left:759.766196px;}
.x7{left:761.386212px;}
.x24{left:763.185600px;}
.x96{left:768.045600px;}
.x98{left:771.646191px;}
.x9a{left:777.766189px;}
.x99{left:782.446187px;}
.x97{left:784.786186px;}
.x6{left:788.566292px;}
.x65{left:791.266183px;}
.x5{left:793.606315px;}
.x46{left:800.266180px;}
.xd{left:807.645946px;}
.x95{left:809.986176px;}
.x34{left:815.206187px;}
.xe{left:819.165899px;}
.x2c{left:820.246177px;}
.xa6{left:823.126171px;}
.x66{left:825.286170px;}
.x1e{left:827.986169px;}
.xb2{left:829.426221px;}
.xb7{left:830.687491px;}
.xb1{left:832.126222px;}
.x2b{left:834.106166px;}
.xb8{left:841.487510px;}
.x67{left:859.486156px;}
.x4d{left:866.685600px;}
.x47{left:868.486153px;}
.x88{left:869.566152px;}
.x70{left:871.906151px;}
.x33{left:873.706151px;}
.xa7{left:883.246147px;}
.x68{left:893.686143px;}
.x76{left:897.466141px;}
.x1f{left:901.066140px;}
.x2e{left:904.306138px;}
.x74{left:905.926138px;}
.x73{left:914.566134px;}
.x9b{left:922.485600px;}
.x69{left:926.626129px;}
.x78{left:934.366126px;}
.x79{left:939.946124px;}
.x9c{left:942.826123px;}
.xa8{left:945.346122px;}
.x75{left:947.866375px;}
.x48{left:953.626119px;}
.xb9{left:959.207653px;}
.x6a{left:960.826116px;}
.x22{left:978.646109px;}
.x26{left:984.226106px;}
.x32{left:986.206106px;}
.x6b{left:995.026102px;}
.xa9{left:1005.646098px;}
.x2a{left:1013.385996px;}
.x6c{left:1029.226088px;}
.x27{left:1035.886078px;}
.x49{left:1038.586085px;}
.x28{left:1060.185999px;}
.xbb{left:1063.067700px;}
.xaa{left:1065.946074px;}
.x29{left:1069.005995px;}
.x6e{left:1074.226070px;}
.xba{left:1075.847708px;}
.x9e{left:1085.205600px;}
.x9d{left:1086.286065px;}
.x4a{left:1089.706064px;}
.x9f{left:1097.086061px;}
.x2d{left:1113.826054px;}
.x2f{left:1119.585600px;}
@media print{
.v1{vertical-align:-82.559967pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:25.599990pt;}
.v4{vertical-align:44.159982pt;}
.v2{vertical-align:110.719956pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.045280pt;}
.ls17{letter-spacing:0.082344pt;}
.ls2a{letter-spacing:0.296086pt;}
.ls2{letter-spacing:0.308314pt;}
.ls5{letter-spacing:0.364742pt;}
.ls2b{letter-spacing:0.454468pt;}
.ls26{letter-spacing:0.491835pt;}
.ls7{letter-spacing:0.740803pt;}
.ls21{letter-spacing:0.758555pt;}
.ls28{letter-spacing:0.878418pt;}
.lsa{letter-spacing:0.992070pt;}
.lsf{letter-spacing:1.145843pt;}
.ls1c{letter-spacing:1.174103pt;}
.ls24{letter-spacing:1.339728pt;}
.ls27{letter-spacing:1.405956pt;}
.ls13{letter-spacing:1.735496pt;}
.ls1d{letter-spacing:1.774423pt;}
.ls9{letter-spacing:1.872087pt;}
.ls1a{letter-spacing:2.022786pt;}
.ls1e{letter-spacing:2.091426pt;}
.ls20{letter-spacing:2.224350pt;}
.ls23{letter-spacing:2.226091pt;}
.ls29{letter-spacing:2.265799pt;}
.ls2e{letter-spacing:2.478488pt;}
.ls2c{letter-spacing:2.489186pt;}
.ls15{letter-spacing:2.879372pt;}
.ls4{letter-spacing:3.001809pt;}
.ls12{letter-spacing:3.010767pt;}
.ls16{letter-spacing:3.102117pt;}
.ls3{letter-spacing:3.243258pt;}
.ls19{letter-spacing:3.336598pt;}
.ls2d{letter-spacing:3.356532pt;}
.ls25{letter-spacing:3.395454pt;}
.ls1{letter-spacing:3.746402pt;}
.ls22{letter-spacing:3.976627pt;}
.ls14{letter-spacing:4.517635pt;}
.lsd{letter-spacing:4.562348pt;}
.ls11{letter-spacing:4.700983pt;}
.lse{letter-spacing:5.403592pt;}
.ls1f{letter-spacing:5.464544pt;}
.ls1b{letter-spacing:5.465404pt;}
.ls6{letter-spacing:7.210394pt;}
.lsb{letter-spacing:8.592940pt;}
.lsc{letter-spacing:8.666220pt;}
.ls8{letter-spacing:9.069063pt;}
.ls18{letter-spacing:9.320126pt;}
.wsd{word-spacing:-89.572444pt;}
.ws16{word-spacing:-59.247336pt;}
.ws3{word-spacing:-41.455343pt;}
.ws1{word-spacing:-35.583986pt;}
.ws30{word-spacing:-31.135988pt;}
.ws14{word-spacing:-29.712628pt;}
.ws28{word-spacing:-27.059842pt;}
.ws15{word-spacing:-26.687989pt;}
.ws8{word-spacing:-23.837854pt;}
.ws31{word-spacing:-23.663351pt;}
.ws25{word-spacing:-21.647814pt;}
.ws2b{word-spacing:-21.279991pt;}
.ws1f{word-spacing:-20.671479pt;}
.ws21{word-spacing:-19.896872pt;}
.ws26{word-spacing:-19.844299pt;}
.ws27{word-spacing:-19.838223pt;}
.ws6{word-spacing:-19.071385pt;}
.ws18{word-spacing:-18.719993pt;}
.ws20{word-spacing:-17.862154pt;}
.ws22{word-spacing:-17.407686pt;}
.ws17{word-spacing:-17.219506pt;}
.ws4{word-spacing:-17.144965pt;}
.ws5{word-spacing:-16.687703pt;}
.ws19{word-spacing:-15.999994pt;}
.ws9{word-spacing:-15.640352pt;}
.wsb{word-spacing:-15.573031pt;}
.wsc{word-spacing:-15.563249pt;}
.ws24{word-spacing:-15.370651pt;}
.ws23{word-spacing:-15.281691pt;}
.ws12{word-spacing:-14.697076pt;}
.ws7{word-spacing:-14.303161pt;}
.wsa{word-spacing:-13.833576pt;}
.ws1c{word-spacing:-13.067978pt;}
.ws29{word-spacing:-11.999995pt;}
.ws1e{word-spacing:-11.920635pt;}
.wse{word-spacing:-8.626982pt;}
.ws10{word-spacing:-8.617983pt;}
.ws11{word-spacing:-8.617687pt;}
.wsf{word-spacing:-8.617608pt;}
.ws13{word-spacing:-0.227975pt;}
.ws1b{word-spacing:-0.035580pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:0.069760pt;}
.ws2c{word-spacing:137.054645pt;}
.ws2a{word-spacing:232.689757pt;}
.ws2d{word-spacing:238.118009pt;}
.ws2f{word-spacing:262.388401pt;}
.ws1a{word-spacing:291.210138pt;}
.ws2e{word-spacing:332.067299pt;}
.ws1d{word-spacing:571.342393pt;}
._e{margin-left:-13.792289pt;}
._10{margin-left:-12.786962pt;}
._9{margin-left:-11.581270pt;}
._5{margin-left:-10.181159pt;}
._c{margin-left:-9.283410pt;}
._13{margin-left:-8.273282pt;}
._3{margin-left:-7.169020pt;}
._12{margin-left:-6.205382pt;}
._d{margin-left:-5.242372pt;}
._4{margin-left:-3.494673pt;}
._6{margin-left:-2.183826pt;}
._0{margin-left:-1.136862pt;}
._1{width:0.936504pt;}
._2{width:1.869510pt;}
._14{width:3.042347pt;}
._a{width:4.163559pt;}
._b{width:5.585642pt;}
._7{width:6.551604pt;}
._11{width:7.767491pt;}
._8{width:8.667709pt;}
._f{width:12.057256pt;}
._17{width:27.800255pt;}
._15{width:37.038975pt;}
._16{width:42.917430pt;}
._2d{width:63.895374pt;}
._1f{width:130.343761pt;}
._20{width:144.538972pt;}
._25{width:194.751360pt;}
._26{width:243.559645pt;}
._22{width:258.586579pt;}
._27{width:260.067007pt;}
._21{width:265.012225pt;}
._24{width:273.499552pt;}
._2b{width:283.116711pt;}
._2c{width:289.502306pt;}
._2a{width:292.841451pt;}
._28{width:295.636850pt;}
._18{width:305.605737pt;}
._1b{width:307.460413pt;}
._29{width:363.720360pt;}
._23{width:374.533560pt;}
._1c{width:381.261660pt;}
._1d{width:543.317332pt;}
._1a{width:585.613550pt;}
._19{width:589.360752pt;}
._1e{width:1103.646100pt;}
.fs15{font-size:24.824950pt;}
.fs13{font-size:30.998590pt;}
.fs16{font-size:30.998875pt;}
.fs14{font-size:30.999937pt;}
.fs12{font-size:31.032308pt;}
.fs10{font-size:37.320305pt;}
.fs21{font-size:42.879983pt;}
.fs1c{font-size:47.762541pt;}
.fs2c{font-size:47.999981pt;}
.fsd{font-size:49.761064pt;}
.fsa{font-size:51.450219pt;}
.fs17{font-size:52.867179pt;}
.fs2{font-size:53.119979pt;}
.fs25{font-size:54.970111pt;}
.fs27{font-size:55.290111pt;}
.fsf{font-size:55.982911pt;}
.fse{font-size:56.018097pt;}
.fsc{font-size:56.260260pt;}
.fs20{font-size:57.822910pt;}
.fs8{font-size:60.027709pt;}
.fs7{font-size:61.672537pt;}
.fs23{font-size:62.617575pt;}
.fs1f{font-size:63.999974pt;}
.fs1d{font-size:65.957840pt;}
.fs24{font-size:67.654906pt;}
.fs26{font-size:68.050106pt;}
.fs9{font-size:68.602106pt;}
.fs2a{font-size:71.360516pt;}
.fs29{font-size:71.382371pt;}
.fs22{font-size:74.357837pt;}
.fs1e{font-size:74.879970pt;}
.fs1a{font-size:76.192503pt;}
.fs28{font-size:77.869836pt;}
.fs6{font-size:85.119966pt;}
.fs1b{font-size:85.290099pt;}
.fsb{font-size:85.747677pt;}
.fs5{font-size:90.879964pt;}
.fs18{font-size:95.999962pt;}
.fs2b{font-size:97.337561pt;}
.fs3{font-size:106.879957pt;}
.fs2d{font-size:111.999955pt;}
.fs1{font-size:127.999949pt;}
.fs4{font-size:149.119940pt;}
.fs11{font-size:149.287407pt;}
.fs0{font-size:191.999923pt;}
.fs19{font-size:213.119915pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:0.800169pt;}
.y3f{bottom:1.600226pt;}
.yad{bottom:3.040059pt;}
.yb1{bottom:3.040079pt;}
.ybc{bottom:3.040093pt;}
.ya3{bottom:3.040105pt;}
.ya8{bottom:3.040117pt;}
.yb7{bottom:3.040137pt;}
.y65{bottom:5.600134pt;}
.y34{bottom:8.800026pt;}
.y9f{bottom:44.693633pt;}
.y3c{bottom:48.213631pt;}
.y8f{bottom:52.213630pt;}
.yfc{bottom:54.933629pt;}
.y85{bottom:56.213628pt;}
.y35{bottom:58.293627pt;}
.yd3{bottom:65.813624pt;}
.y83{bottom:66.453624pt;}
.ya{bottom:68.373623pt;}
.y8e{bottom:71.573622pt;}
.y84{bottom:75.573620pt;}
.y82{bottom:79.253619pt;}
.yef{bottom:82.933617pt;}
.y14{bottom:83.573617pt;}
.y9{bottom:84.053617pt;}
.y99{bottom:86.933616pt;}
.y40{bottom:88.213615pt;}
.yd2{bottom:96.053612pt;}
.y39{bottom:99.893611pt;}
.y86{bottom:101.973610pt;}
.y67{bottom:104.853609pt;}
.yee{bottom:105.333609pt;}
.y58{bottom:108.373607pt;}
.y107{bottom:113.013605pt;}
.y73{bottom:116.213604pt;}
.yc7{bottom:119.253603pt;}
.y66{bottom:120.533602pt;}
.y13{bottom:121.333602pt;}
.y80{bottom:121.813602pt;}
.yfb{bottom:121.973602pt;}
.yd1{bottom:126.293600pt;}
.y74{bottom:130.133599pt;}
.y89{bottom:136.693596pt;}
.y57{bottom:137.013596pt;}
.y9a{bottom:137.813596pt;}
.y2c{bottom:139.413595pt;}
.y36{bottom:144.853593pt;}
.y61{bottom:145.493592pt;}
.y7f{bottom:146.613592pt;}
.y88{bottom:149.653591pt;}
.y106{bottom:150.933590pt;}
.yd0{bottom:156.533588pt;}
.ycf{bottom:157.013588pt;}
.y4d{bottom:161.173586pt;}
.y87{bottom:162.453586pt;}
.y56{bottom:165.813584pt;}
.yec{bottom:166.293584pt;}
.yce{bottom:169.973583pt;}
.y3d{bottom:170.133583pt;}
.y98{bottom:177.013580pt;}
.y41{bottom:183.093577pt;}
.ya0{bottom:185.493475pt;}
.y9b{bottom:187.573576pt;}
.yeb{bottom:188.533575pt;}
.y105{bottom:189.173575pt;}
.yfa{bottom:189.493575pt;}
.y12{bottom:192.213574pt;}
.y5b{bottom:192.853574pt;}
.y20{bottom:193.653573pt;}
.y55{bottom:194.613573pt;}
.y72{bottom:194.773573pt;}
.yed{bottom:198.773571pt;}
.y3b{bottom:201.013570pt;}
.y8a{bottom:202.453570pt;}
.y37{bottom:204.373569pt;}
.ybf{bottom:208.533567pt;}
.y8{bottom:208.693567pt;}
.y3a{bottom:208.853567pt;}
.y4c{bottom:209.173567pt;}
.yea{bottom:210.933566pt;}
.y78{bottom:215.093565pt;}
.yf9{bottom:222.933561pt;}
.y54{bottom:223.413561pt;}
.y3e{bottom:225.493333pt;}
.y104{bottom:227.573560pt;}
.y11{bottom:229.973559pt;}
.y6a{bottom:230.613558pt;}
.ye9{bottom:233.333557pt;}
.y27{bottom:237.493556pt;}
.y9c{bottom:238.453555pt;}
.y4b{bottom:240.693554pt;}
.yc0{bottom:247.413552pt;}
.y97{bottom:251.413550pt;}
.y5c{bottom:255.893548pt;}
.y43{bottom:267.253544pt;}
.y10{bottom:268.373543pt;}
.y1f{bottom:270.293543pt;}
.y6b{bottom:273.973541pt;}
.y79{bottom:275.253541pt;}
.y2b{bottom:277.493540pt;}
.yd5{bottom:278.133539pt;}
.y42{bottom:281.973538pt;}
.y8d{bottom:285.653536pt;}
.yc1{bottom:288.053535pt;}
.y9d{bottom:288.373535pt;}
.y4a{bottom:289.173535pt;}
.yf8{bottom:290.613534pt;}
.y17{bottom:296.373532pt;}
.y7{bottom:297.973531pt;}
.ye8{bottom:304.533529pt;}
.y1e{bottom:308.213527pt;}
.ye5{bottom:308.853527pt;}
.y53{bottom:310.453526pt;}
.y96{bottom:311.093526pt;}
.y6c{bottom:317.653524pt;}
.y5d{bottom:319.093523pt;}
.y49{bottom:320.693522pt;}
.y94{bottom:322.453522pt;}
.yc2{bottom:326.933520pt;}
.ye7{bottom:330.133519pt;}
.y38{bottom:330.453518pt;}
.ye4{bottom:330.933518pt;}
.y62{bottom:334.133517pt;}
.y7a{bottom:335.253517pt;}
.y6{bottom:336.213516pt;}
.y52{bottom:338.933515pt;}
.y9e{bottom:339.253515pt;}
.y16{bottom:340.533514pt;}
.yf7{bottom:341.013514pt;}
.y103{bottom:343.093513pt;}
.yf{bottom:345.493512pt;}
.y1d{bottom:346.613512pt;}
.y8c{bottom:348.853511pt;}
.ye3{bottom:353.493509pt;}
.ye6{bottom:355.573508pt;}
.y93{bottom:360.853506pt;}
.y6d{bottom:361.173506pt;}
.y81{bottom:364.213505pt;}
.yc3{bottom:365.813504pt;}
.y51{bottom:367.733504pt;}
.y48{bottom:369.173503pt;}
.y24{bottom:369.333333pt;}
.y2a{bottom:374.133501pt;}
.yf6{bottom:374.453501pt;}
.y5{bottom:374.613501pt;}
.y102{bottom:380.853498pt;}
.y5e{bottom:382.453498pt;}
.ye{bottom:383.413497pt;}
.y95{bottom:384.533497pt;}
.y1c{bottom:384.853497pt;}
.y15{bottom:385.333497pt;}
.y8b{bottom:387.253496pt;}
.y91{bottom:391.093494pt;}
.y7b{bottom:394.133493pt;}
.y50{bottom:396.693492pt;}
.y32{bottom:398.453491pt;}
.y92{bottom:399.253491pt;}
.y47{bottom:400.693490pt;}
.y75{bottom:402.933489pt;}
.yc4{bottom:406.453488pt;}
.yf5{bottom:408.053487pt;}
.y6e{bottom:409.013487pt;}
.y4{bottom:412.853486pt;}
.yb9{bottom:415.253485pt;}
.y101{bottom:419.253483pt;}
.ye2{bottom:420.373483pt;}
.yd{bottom:421.653482pt;}
.y4f{bottom:425.493480pt;}
.y29{bottom:426.933480pt;}
.yd4{bottom:427.093480pt;}
.y90{bottom:429.333479pt;}
.y63{bottom:430.773478pt;}
.y46{bottom:432.693478pt;}
.yb8{bottom:433.333477pt;}
.y2d{bottom:434.933477pt;}
.y26{bottom:442.933473pt;}
.ycd{bottom:444.373473pt;}
.yc5{bottom:445.333473pt;}
.y5f{bottom:445.653472pt;}
.ye1{bottom:445.973472pt;}
.yb6{bottom:448.373333pt;}
.y31{bottom:449.173471pt;}
.y6f{bottom:449.813471pt;}
.y64{bottom:452.853333pt;}
.y7c{bottom:454.293469pt;}
.ya6{bottom:458.453467pt;}
.yf4{bottom:458.933467pt;}
.yc{bottom:460.053467pt;}
.y1b{bottom:461.973466pt;}
.yaa{bottom:463.733465pt;}
.y30{bottom:470.453462pt;}
.ye0{bottom:471.413462pt;}
.y2e{bottom:476.053460pt;}
.ya5{bottom:476.373460pt;}
.y45{bottom:481.173458pt;}
.ya9{bottom:481.653458pt;}
.yda{bottom:482.773458pt;}
.y2f{bottom:485.973456pt;}
.yf3{bottom:492.213454pt;}
.y70{bottom:493.333453pt;}
.ya4{bottom:494.453453pt;}
.ya7{bottom:496.693333pt;}
.yb{bottom:498.453451pt;}
.yc9{bottom:498.773451pt;}
.y1a{bottom:499.893451pt;}
.yca{bottom:500.373451pt;}
.yd9{bottom:505.013449pt;}
.y60{bottom:508.693447pt;}
.yd8{bottom:510.293447pt;}
.y4e{bottom:512.373446pt;}
.y7d{bottom:514.293445pt;}
.y59{bottom:517.333444pt;}
.yb5{bottom:522.773442pt;}
.yc6{bottom:524.853441pt;}
.yf2{bottom:525.973440pt;}
.ya2{bottom:527.253333pt;}
.yd7{bottom:527.573440pt;}
.y28{bottom:533.333437pt;}
.y100{bottom:534.773437pt;}
.ydf{bottom:536.373436pt;}
.y71{bottom:537.013436pt;}
.yb4{bottom:540.853434pt;}
.ybd{bottom:542.933433pt;}
.ydc{bottom:547.573432pt;}
.y3{bottom:552.373430pt;}
.ybb{bottom:557.973333pt;}
.yc8{bottom:558.293427pt;}
.yde{bottom:558.453427pt;}
.yb3{bottom:558.933427pt;}
.y68{bottom:559.413427pt;}
.ydb{bottom:569.653423pt;}
.yff{bottom:572.533422pt;}
.y7e{bottom:574.293421pt;}
.y19{bottom:575.253421pt;}
.yf1{bottom:576.693420pt;}
.yb2{bottom:577.013420pt;}
.yba{bottom:579.093419pt;}
.ydd{bottom:581.013418pt;}
.y77{bottom:582.133418pt;}
.y22{bottom:588.213415pt;}
.y44{bottom:590.933414pt;}
.yb0{bottom:592.053333pt;}
.y69{bottom:603.093409pt;}
.y2{bottom:609.333407pt;}
.yae{bottom:627.573400pt;}
.yac{bottom:642.613333pt;}
.yfe{bottom:648.693391pt;}
.yf0{bottom:656.213388pt;}
.ycc{bottom:658.133387pt;}
.yab{bottom:663.573385pt;}
.y1{bottom:667.093384pt;}
.y5a{bottom:676.373380pt;}
.yd6{bottom:677.493380pt;}
.y76{bottom:684.053377pt;}
.y23{bottom:691.573374pt;}
.ybe{bottom:693.493373pt;}
.y18{bottom:698.453371pt;}
.y21{bottom:698.933371pt;}
.ycb{bottom:701.493370pt;}
.yfd{bottom:718.773363pt;}
.y33{bottom:719.733333pt;}
.yaf{bottom:722.773362pt;}
.ya1{bottom:722.933361pt;}
.h2c{height:15.840000pt;}
.h19{height:25.891647pt;}
.h20{height:25.920000pt;}
.h15{height:32.365727pt;}
.h18{height:32.511029pt;}
.h16{height:32.671405pt;}
.h1a{height:32.692532pt;}
.h21{height:33.093284pt;}
.h36{height:33.328112pt;}
.h13{height:36.960000pt;}
.h12{height:38.923912pt;}
.h27{height:40.063823pt;}
.h24{height:44.437482pt;}
.h28{height:44.722482pt;}
.h22{height:45.700281pt;}
.h37{height:50.748730pt;}
.h23{height:51.991854pt;}
.hf{height:52.357638pt;}
.h1e{height:52.791583pt;}
.hc{height:53.660971pt;}
.h1b{height:55.138815pt;}
.h3{height:55.402478pt;}
.h2d{height:57.332108pt;}
.h2f{height:57.665858pt;}
.h26{height:57.688727pt;}
.h11{height:58.388427pt;}
.h10{height:58.586284pt;}
.he{height:59.056201pt;}
.h1f{height:59.095044pt;}
.h25{height:59.101851pt;}
.ha{height:62.607025pt;}
.h9{height:64.450117pt;}
.h2a{height:65.308174pt;}
.h2b{height:70.561953pt;}
.h2e{height:70.974134pt;}
.hb{height:71.549853pt;}
.h31{height:74.449583pt;}
.h32{height:74.549658pt;}
.h29{height:77.552900pt;}
.h35{height:78.097469pt;}
.h30{height:81.215805pt;}
.h17{height:83.840000pt;}
.h7{height:88.777464pt;}
.hd{height:89.655957pt;}
.h6{height:94.784962pt;}
.h39{height:96.791836pt;}
.h1c{height:100.124960pt;}
.h34{height:101.520034pt;}
.h14{height:106.134016pt;}
.h4{height:111.472455pt;}
.h3a{height:116.812453pt;}
.h2{height:133.499947pt;}
.h38{height:139.068694pt;}
.h8{height:147.840000pt;}
.h5{height:155.527438pt;}
.h1{height:200.249920pt;}
.h1d{height:222.277411pt;}
.h33{height:237.839980pt;}
.h0{height:793.333333pt;}
.w1{width:21.920000pt;}
.w3{width:46.080000pt;}
.w5{width:57.119680pt;}
.w8{width:57.440000pt;}
.w7{width:61.280000pt;}
.wa{width:61.600000pt;}
.w6{width:68.800000pt;}
.w9{width:69.120000pt;}
.w2{width:162.560000pt;}
.w4{width:181.760000pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x25{left:0.941862pt;}
.x30{left:7.680399pt;}
.x16{left:12.959904pt;}
.x15{left:92.467520pt;}
.x72{left:102.227426pt;}
.x8a{left:104.147520pt;}
.x8c{left:107.347441pt;}
.x8e{left:112.627441pt;}
.x8d{left:116.947429pt;}
.x8b{left:119.027419pt;}
.xf{left:120.147419pt;}
.x59{left:124.787920pt;}
.xbe{left:127.987414pt;}
.xb4{left:130.387415pt;}
.x58{left:131.507922pt;}
.x36{left:132.467414pt;}
.xc2{left:133.747932pt;}
.x12{left:136.947945pt;}
.xa{left:140.147944pt;}
.xc1{left:143.187943pt;}
.xc5{left:144.787487pt;}
.x35{left:146.387941pt;}
.xb{left:147.507941pt;}
.xb5{left:150.387940pt;}
.x57{left:151.347916pt;}
.xc8{left:152.467939pt;}
.xbf{left:154.067938pt;}
.x39{left:155.027938pt;}
.xc3{left:156.627871pt;}
.x3e{left:158.068026pt;}
.xc9{left:159.987936pt;}
.x9{left:162.707935pt;}
.x11{left:165.427934pt;}
.x14{left:166.387933pt;}
.xc6{left:168.467548pt;}
.x1d{left:170.867932pt;}
.x3a{left:175.347930pt;}
.x37{left:177.747929pt;}
.x10{left:180.787928pt;}
.x3d{left:188.467925pt;}
.x4e{left:195.987922pt;}
.xa0{left:203.987855pt;}
.x1{left:206.387917pt;}
.x55{left:207.827917pt;}
.x38{left:213.747796pt;}
.x13{left:214.867914pt;}
.x2{left:219.507909pt;}
.x3f{left:227.027909pt;}
.xc7{left:228.468039pt;}
.x6d{left:230.067908pt;}
.x3c{left:236.467905pt;}
.x52{left:237.587905pt;}
.xc4{left:238.867904pt;}
.x7d{left:240.147866pt;}
.x1b{left:246.387901pt;}
.x51{left:247.347871pt;}
.x5a{left:249.907900pt;}
.xc0{left:251.507926pt;}
.x54{left:253.747899pt;}
.xbc{left:254.867898pt;}
.x4b{left:261.107896pt;}
.xb6{left:262.868108pt;}
.x93{left:266.067200pt;}
.x92{left:267.027835pt;}
.xab{left:268.947892pt;}
.x18{left:273.427891pt;}
.x50{left:276.307889pt;}
.xbd{left:277.587978pt;}
.x1a{left:279.347888pt;}
.x94{left:280.787888pt;}
.x89{left:281.747887pt;}
.xac{left:283.507887pt;}
.xb3{left:287.187885pt;}
.x85{left:291.187901pt;}
.x7c{left:298.707881pt;}
.xa1{left:299.987880pt;}
.x40{left:302.707879pt;}
.x4f{left:306.227878pt;}
.x7e{left:307.828109pt;}
.x5b{left:309.587876pt;}
.x7b{left:313.907874pt;}
.x84{left:316.147874pt;}
.xae{left:318.547873pt;}
.xad{left:323.668106pt;}
.x3{left:338.387863pt;}
.x5c{left:339.987864pt;}
.x53{left:342.547863pt;}
.x6f{left:344.787862pt;}
.xa2{left:355.187858pt;}
.x5d{left:370.387852pt;}
.x41{left:378.707849pt;}
.x3b{left:381.107848pt;}
.x83{left:387.187844pt;}
.x86{left:389.747844pt;}
.x8f{left:391.827200pt;}
.x19{left:395.347842pt;}
.x5e{left:400.627840pt;}
.x91{left:406.707835pt;}
.xa3{left:408.787836pt;}
.x90{left:409.747836pt;}
.x7f{left:412.147835pt;}
.x5f{left:431.027828pt;}
.x42{left:454.227818pt;}
.x17{left:458.867816pt;}
.x4c{left:462.227815pt;}
.x82{left:472.147760pt;}
.x1c{left:477.587809pt;}
.x43{left:484.467806pt;}
.x87{left:485.747806pt;}
.x71{left:487.827805pt;}
.x60{left:491.667803pt;}
.x77{left:495.347802pt;}
.xa4{left:515.827794pt;}
.x61{left:522.067791pt;}
.x56{left:541.267783pt;}
.x7a{left:548.307781pt;}
.x62{left:552.467779pt;}
.x44{left:559.987776pt;}
.x81{left:569.107685pt;}
.x20{left:577.427769pt;}
.x21{left:582.067776pt;}
.x8{left:589.427764pt;}
.xaf{left:592.147763pt;}
.xb0{left:593.107764pt;}
.x63{left:612.147755pt;}
.x23{left:618.707753pt;}
.xa5{left:624.467750pt;}
.x45{left:635.667746pt;}
.x64{left:642.547743pt;}
.x31{left:662.067735pt;}
.x80{left:666.067610pt;}
.x4{left:672.467731pt;}
.xc{left:675.347730pt;}
.x7{left:676.787744pt;}
.x24{left:678.387200pt;}
.x96{left:682.707200pt;}
.x98{left:685.907726pt;}
.x9a{left:691.347723pt;}
.x99{left:695.507722pt;}
.x97{left:697.587721pt;}
.x6{left:700.947815pt;}
.x65{left:703.347719pt;}
.x5{left:705.427836pt;}
.x46{left:711.347715pt;}
.xd{left:717.907508pt;}
.x95{left:719.987712pt;}
.x34{left:724.627722pt;}
.xe{left:728.147466pt;}
.x2c{left:729.107712pt;}
.xa6{left:731.667707pt;}
.x66{left:733.587707pt;}
.x1e{left:735.987706pt;}
.xb2{left:737.267752pt;}
.xb7{left:738.388881pt;}
.xb1{left:739.667753pt;}
.x2b{left:741.427703pt;}
.xb8{left:747.988898pt;}
.x67{left:763.987694pt;}
.x4d{left:770.387200pt;}
.x47{left:771.987691pt;}
.x88{left:772.947691pt;}
.x70{left:775.027690pt;}
.x33{left:776.627689pt;}
.xa7{left:785.107686pt;}
.x68{left:794.387682pt;}
.x76{left:797.747681pt;}
.x1f{left:800.947680pt;}
.x2e{left:803.827678pt;}
.x74{left:805.267678pt;}
.x73{left:812.947675pt;}
.x9b{left:819.987200pt;}
.x69{left:823.667671pt;}
.x78{left:830.547668pt;}
.x79{left:835.507666pt;}
.x9c{left:838.067665pt;}
.xa8{left:840.307664pt;}
.x75{left:842.547889pt;}
.x48{left:847.667661pt;}
.xb9{left:852.629025pt;}
.x6a{left:854.067658pt;}
.x22{left:869.907652pt;}
.x26{left:874.867650pt;}
.x32{left:876.627649pt;}
.x6b{left:884.467646pt;}
.xa9{left:893.907642pt;}
.x2a{left:900.787552pt;}
.x6c{left:914.867634pt;}
.x27{left:920.787625pt;}
.x49{left:923.187631pt;}
.x28{left:942.387554pt;}
.xbb{left:944.949067pt;}
.xaa{left:947.507621pt;}
.x29{left:950.227551pt;}
.x6e{left:954.867618pt;}
.xba{left:956.309074pt;}
.x9e{left:964.627200pt;}
.x9d{left:965.587614pt;}
.x4a{left:968.627613pt;}
.x9f{left:975.187610pt;}
.x2d{left:990.067604pt;}
.x2f{left:995.187200pt;}
}




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