
    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_b6296638274d3d1dee0aeadc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.160156;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_0ca626d61a9e49064f65acc8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_f6738eb668a38e88f0e4810e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.160156;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_8cdff128d583f1e1c8992b5d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_f2077e4ad5eb2c14b3dfaecd.woff')format("woff");}.ff5{font-family:ff5;line-height:1.160156;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_76bd93bbcec54a79ad740b14.woff')format("woff");}.ff6{font-family:ff6;line-height:0.748291;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_4c440b5c69ccea5e2dcd9604.woff')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_67df10d4f92cba18a4562fff.woff')format("woff");}.ff8{font-family:ff8;line-height:1.160156;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_8140baa36a2643eaf11d541d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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_14c8bf916d58031cee1df7b3.woff')format("woff");}.ffa{font-family:ffa;line-height:1.160156;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_8cd0b72b8291bbe1ed385d05.woff')format("woff");}.ffb{font-family:ffb;line-height:0.748291;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_a67f7b56f11b96dc8286af6f.woff')format("woff");}.ffc{font-family:ffc;line-height:1.160156;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_b66348df5d78bc2af683ac18.woff')format("woff");}.ffd{font-family:ffd;line-height:0.999023;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_ef2cbe0322671c2092b12156.woff')format("woff");}.ffe{font-family:ffe;line-height:1.160156;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_67716b5e96a77cd54625f268.woff')format("woff");}.fff{font-family:fff;line-height:0.748291;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_b000426f9f983323e10faeb1.woff')format("woff");}.ff10{font-family:ff10;line-height:0.804443;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_6b299efa4d7481b89f1bd552.woff')format("woff");}.ff11{font-family:ff11;line-height:1.160156;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_4c440b5c69ccea5e2dcd9604.woff')format("woff");}.ff12{font-family:ff12;line-height:1.093262;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_e4a70f71049772233db63ac1.woff')format("woff");}.ff13{font-family:ff13;line-height:1.160156;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_0b6fcb6f8c6b333a0eb3fd8c.woff')format("woff");}.ff14{font-family:ff14;line-height:1.063477;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_47bacdc2aebf6539e2e4dfd3.woff')format("woff");}.ff15{font-family:ff15;line-height:0.999023;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_881b4bf0ee6936df3b397a83.woff')format("woff");}.ff16{font-family:ff16;line-height:0.748291;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_6bf30a1de4f3f4f80f83f4e5.woff')format("woff");}.ff17{font-family:ff17;line-height:1.160156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_9126e4767ab7b582e6c86f5c.woff')format("woff");}.ff18{font-family:ff18;line-height:1.160156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_bddabfacd5029854c7af16af.woff')format("woff");}.ff19{font-family:ff19;line-height:1.160156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_f4459f6c9a34cdd549546643.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.160156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_100991a442539d434523eee5.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.160156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_bd3f4424b29b2fa90cf5509a.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.160156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_8956e15e8b480ff33932632d.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.160156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_8238d90504700d7b2181618b.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.160156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_dd01671f47cbc7a2d3724259.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.160156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_6e2b145f7332b4509fbfbb02.woff')format("woff");}.ff20{font-family:ff20;line-height:0.805664;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_a3f6a523f552d2a3e39b2b24.woff')format("woff");}.ff21{font-family:ff21;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_9f5a685669c0f73ac788cca6.woff')format("woff");}.ff22{font-family:ff22;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_7b583a63c38734c05fa9e50e.woff')format("woff");}.ff23{font-family:ff23;line-height:1.160156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_08a05962198fdb2621027a80.woff')format("woff");}.ff24{font-family:ff24;line-height:1.160156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_fb904af69b72633e18243018.woff')format("woff");}.ff25{font-family:ff25;line-height:0.804443;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:ff26;src:url('chunks/assets/font_d1a795bfa26c72a917334055.woff')format("woff");}.ff26{font-family:ff26;line-height:1.160156;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:ff27;src:url('chunks/assets/font_f87f56b1f1c3a75bcef802c3.woff')format("woff");}.ff27{font-family:ff27;line-height:1.160156;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:ff28;src:url('chunks/assets/font_16aa291c5dab992e437dc75b.woff')format("woff");}.ff28{font-family:ff28;line-height:1.160156;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:ff29;src:url('chunks/assets/font_7a5bce08c17c37e89fb4cb6d.woff')format("woff");}.ff29{font-family:ff29;line-height:1.160156;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:ff2a;src:url('chunks/assets/font_93b1fe87291906efd5a9e56d.woff')format("woff");}.ff2a{font-family:ff2a;line-height:1.160156;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:ff2b;src:url('chunks/assets/font_0ae6c19a5d3cd9c3228e66d9.woff')format("woff");}.ff2b{font-family:ff2b;line-height:1.160156;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:ff2c;src:url('chunks/assets/font_7ada34001a8e911003025a87.woff')format("woff");}.ff2c{font-family:ff2c;line-height:1.160156;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:ff2d;src:url('chunks/assets/font_0bca17861a73e17d8ad97bba.woff')format("woff");}.ff2d{font-family:ff2d;line-height:1.160156;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:ff2e;src:url('chunks/assets/font_5df2f67e112ce57a5d7aded5.woff')format("woff");}.ff2e{font-family:ff2e;line-height:1.160156;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:ff2f;src:url('chunks/assets/font_7295b392175d4678492baf31.woff')format("woff");}.ff2f{font-family:ff2f;line-height:1.093262;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:ff30;src:url('chunks/assets/font_2272641a8df7fb8fdb28a21d.woff')format("woff");}.ff30{font-family:ff30;line-height:1.160156;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:ff31;src:url('chunks/assets/font_2138724e8ba122a8500f0461.woff')format("woff");}.ff31{font-family:ff31;line-height:1.160156;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:ff32;src:url('chunks/assets/font_ca5f1346bbf9bdccadc918e7.woff')format("woff");}.ff32{font-family:ff32;line-height:1.160156;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:ff33;src:url('chunks/assets/font_8af2d459f0d7071b6e95d02b.woff')format("woff");}.ff33{font-family:ff33;line-height:0.805664;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:ff34;src:url('chunks/assets/font_80231afbcb60a731f92e031e.woff')format("woff");}.ff34{font-family:ff34;line-height:1.160156;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:ff35;src:url('chunks/assets/font_2b9b16a4e94a538a9736ed0b.woff')format("woff");}.ff35{font-family:ff35;line-height:1.160156;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:ff36;src:url('chunks/assets/font_45fecb78c4316458a6cb422b.woff')format("woff");}.ff36{font-family:ff36;line-height:1.160156;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:ff37;src:url('chunks/assets/font_05e3f65518a7b29e099ea79d.woff')format("woff");}.ff37{font-family:ff37;line-height:1.160156;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:ff38;src:url('chunks/assets/font_5f52c56268f0fced12f0d3de.woff')format("woff");}.ff38{font-family:ff38;line-height:1.160156;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:ff39;src:url('chunks/assets/font_7dd4d625aa8d06553db5fcb2.woff')format("woff");}.ff39{font-family:ff39;line-height:1.160156;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:ff3a;src:url('chunks/assets/font_0686fe0e32b06020e94fd246.woff')format("woff");}.ff3a{font-family:ff3a;line-height:0.748291;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:ff3b;src:url('chunks/assets/font_f77adc95322783f16cd86974.woff')format("woff");}.ff3b{font-family:ff3b;line-height:0.748291;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;}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.359852,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.359852,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.359852,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m2{transform:matrix(0.250001,0.000000,-0.079055,0.237171,0,0);-ms-transform:matrix(0.250001,0.000000,-0.079055,0.237171,0,0);-webkit-transform:matrix(0.250001,0.000000,-0.079055,0.237171,0,0);}
.m3{transform:matrix(0.322025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322025,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:11.400000px;}
.ls6{letter-spacing:-24.000000px;}
.ls13{letter-spacing:-16.673520px;}
.ls5{letter-spacing:-3.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:1.275000px;}
.ls10{letter-spacing:3.000000px;}
.ls11{letter-spacing:3.108000px;}
.ls2{letter-spacing:3.345600px;}
.ls0{letter-spacing:4.464000px;}
.ls1{letter-spacing:6.204000px;}
.ls12{letter-spacing:8.099400px;}
.ls9{letter-spacing:9.000000px;}
.lsc{letter-spacing:9.891000px;}
.lse{letter-spacing:13.199400px;}
.lsb{letter-spacing:16.163400px;}
.lsd{letter-spacing:17.720400px;}
.lsf{letter-spacing:19.163400px;}
.ls7{letter-spacing:28.083000px;}
.ls8{letter-spacing:32.583000px;}
.lsa{letter-spacing:42.279000px;}
.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;}
}
.ws12{word-spacing:-39.336000px;}
.ws14{word-spacing:-38.227200px;}
.ws10{word-spacing:-35.705801px;}
.ws1e{word-spacing:-25.500000px;}
.ws15{word-spacing:-23.891867px;}
.wsa{word-spacing:-22.704000px;}
.ws7{word-spacing:-22.464000px;}
.ws18{word-spacing:-21.900000px;}
.ws1{word-spacing:-21.098882px;}
.ws21{word-spacing:-19.500000px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.500000px;}
.ws22{word-spacing:-14.398500px;}
.ws17{word-spacing:-14.250000px;}
.ws20{word-spacing:-14.249920px;}
.wsb{word-spacing:-13.200000px;}
.ws6{word-spacing:-12.750000px;}
.wsf{word-spacing:-11.398500px;}
.ws1b{word-spacing:-10.202943px;}
.ws9{word-spacing:-10.200000px;}
.ws13{word-spacing:-9.750000px;}
.wsd{word-spacing:-4.884000px;}
.ws5{word-spacing:-4.620000px;}
.ws3{word-spacing:-3.960000px;}
.ws16{word-spacing:-3.192000px;}
.ws8{word-spacing:-3.048000px;}
.wse{word-spacing:-1.386000px;}
.ws1a{word-spacing:-1.212000px;}
.ws11{word-spacing:0.000000px;}
.ws1f{word-spacing:1.003068px;}
.ws1c{word-spacing:5.471280px;}
.ws1d{word-spacing:9.483552px;}
.wsc{word-spacing:10.824000px;}
.ws0{word-spacing:12.825000px;}
.ws19{word-spacing:320.970000px;}
._27{margin-left:-29.988600px;}
._1b{margin-left:-27.174600px;}
._14{margin-left:-26.115060px;}
._37{margin-left:-24.150000px;}
._18{margin-left:-22.146600px;}
._31{margin-left:-20.873326px;}
._19{margin-left:-19.703303px;}
._2f{margin-left:-18.275460px;}
._1c{margin-left:-17.078400px;}
._17{margin-left:-15.013837px;}
._15{margin-left:-13.872000px;}
._b{margin-left:-12.837000px;}
._26{margin-left:-11.696891px;}
._1a{margin-left:-10.643940px;}
._4{margin-left:-9.078000px;}
._6{margin-left:-7.905000px;}
._1e{margin-left:-6.766200px;}
._a{margin-left:-5.427000px;}
._5{margin-left:-3.825000px;}
._7{margin-left:-2.765963px;}
._9{margin-left:-1.581000px;}
._e{width:1.275000px;}
._12{width:2.970000px;}
._13{width:4.080000px;}
._8{width:5.406000px;}
._d{width:7.398000px;}
._c{width:8.640000px;}
._16{width:9.822000px;}
._0{width:11.514000px;}
._2{width:13.452000px;}
._10{width:14.580000px;}
._f{width:16.308000px;}
._11{width:18.144000px;}
._34{width:19.374074px;}
._32{width:20.507963px;}
._24{width:21.660000px;}
._1f{width:23.142000px;}
._23{width:24.720919px;}
._2c{width:26.054216px;}
._2a{width:27.060000px;}
._29{width:28.211779px;}
._25{width:29.697000px;}
._22{width:30.797081px;}
._28{width:32.433000px;}
._21{width:33.687000px;}
._20{width:35.169000px;}
._39{width:36.775090px;}
._3{width:39.843000px;}
._1d{width:40.872000px;}
._1{width:42.750000px;}
._36{width:43.832963px;}
._2b{width:45.302926px;}
._38{width:52.023000px;}
._2e{width:75.690000px;}
._2d{width:77.628000px;}
._35{width:150.507000px;}
._30{width:197.830837px;}
._33{width:323.970000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:36.000000px;}
.fs2{font-size:38.999782px;}
.fsc{font-size:39.000000px;}
.fs6{font-size:40.800000px;}
.fs8{font-size:45.594000px;}
.fs11{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs7{font-size:52.800000px;}
.fsf{font-size:56.999682px;}
.fs0{font-size:57.000000px;}
.fsd{font-size:57.600000px;}
.fsa{font-size:60.000000px;}
.fs10{font-size:63.000000px;}
.fs9{font-size:65.999631px;}
.fs3{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.fse{font-size:150.000000px;}
.fs12{font-size:241.766040px;}
.fsb{font-size:348.000000px;}
.y0{bottom:0.000000px;}
.y22e{bottom:0.000030px;}
.y189{bottom:140.775000px;}
.yf9{bottom:146.574000px;}
.ybe{bottom:155.175000px;}
.y1a4{bottom:156.301500px;}
.ya2{bottom:158.116500px;}
.ydd{bottom:159.174000px;}
.y83{bottom:159.547500px;}
.y155{bottom:160.974000px;}
.y188{bottom:161.325000px;}
.y118{bottom:162.021000px;}
.y174{bottom:162.777000px;}
.y65{bottom:163.131000px;}
.y1e1{bottom:163.149000px;}
.y137{bottom:164.565000px;}
.y1c2{bottom:165.624000px;}
.yf8{bottom:166.747500px;}
.y22c{bottom:167.400000px;}
.y21d{bottom:167.424000px;}
.y200{bottom:169.575000px;}
.y46{bottom:172.800000px;}
.y57{bottom:172.818000px;}
.ybd{bottom:173.550000px;}
.y1a3{bottom:174.975000px;}
.ya1{bottom:178.966500px;}
.y187{bottom:179.325000px;}
.ydc{bottom:180.399000px;}
.y82{bottom:180.772500px;}
.y154{bottom:181.824000px;}
.y117{bottom:182.569500px;}
.y1e0{bottom:183.624000px;}
.y173{bottom:183.627000px;}
.y64{bottom:183.981000px;}
.y136{bottom:184.738500px;}
.yf7{bottom:184.747500px;}
.y1c1{bottom:186.924000px;}
.y22d{bottom:187.200000px;}
.y21c{bottom:188.349000px;}
.ybc{bottom:191.175000px;}
.ya0{bottom:199.141500px;}
.ydb{bottom:200.949000px;}
.y81{bottom:201.622500px;}
.y153{bottom:202.372500px;}
.y116{bottom:203.118000px;}
.y45{bottom:203.400000px;}
.y56{bottom:203.418000px;}
.y1df{bottom:204.547500px;}
.y172{bottom:204.550500px;}
.y63{bottom:205.579500px;}
.y135{bottom:205.587000px;}
.y1c0{bottom:207.774000px;}
.y21b{bottom:208.824000px;}
.ybb{bottom:209.175000px;}
.yba{bottom:209.185500px;}
.y9f{bottom:219.615000px;}
.y1a1{bottom:220.374000px;}
.yda{bottom:221.422500px;}
.y80{bottom:221.796000px;}
.y152{bottom:222.921000px;}
.y115{bottom:223.966500px;}
.y171{bottom:225.025500px;}
.y1de{bottom:225.397500px;}
.y62{bottom:226.129500px;}
.y134{bottom:226.137000px;}
.yb9{bottom:226.810500px;}
.y1bf{bottom:228.322500px;}
.y21a{bottom:230.122500px;}
.y1fe{bottom:231.915000px;}
.y9e{bottom:240.163500px;}
.y1a0{bottom:241.597500px;}
.yd9{bottom:241.971000px;}
.y7f{bottom:242.344500px;}
.y151{bottom:243.021000px;}
.y44{bottom:243.022500px;}
.y114{bottom:244.516500px;}
.y186{bottom:245.175000px;}
.y170{bottom:245.949000px;}
.y1dd{bottom:246.321000px;}
.y61{bottom:246.603000px;}
.y133{bottom:246.985500px;}
.y1be{bottom:248.796000px;}
.y219{bottom:250.222500px;}
.y28{bottom:252.375900px;}
.y1fd{bottom:252.390000px;}
.yf6{bottom:253.147500px;}
.y43{bottom:255.622500px;}
.y9d{bottom:260.713500px;}
.y27{bottom:261.375900px;}
.y39{bottom:261.750000px;}
.y19f{bottom:262.147500px;}
.yd8{bottom:262.821000px;}
.y7e{bottom:263.569500px;}
.y150{bottom:263.944500px;}
.y113{bottom:264.990000px;}
.y185{bottom:266.100000px;}
.y184{bottom:266.100588px;}
.y16f{bottom:266.422500px;}
.y60{bottom:267.151500px;}
.y1dc{bottom:267.171000px;}
.y132{bottom:267.534000px;}
.y1bd{bottom:269.346000px;}
.y218{bottom:271.146000px;}
.y26{bottom:271.800900px;}
.y1fc{bottom:272.938500px;}
.yf5{bottom:273.996000px;}
.y25{bottom:280.050900px;}
.y9c{bottom:281.187000px;}
.y19e{bottom:282.996000px;}
.yd7{bottom:283.369500px;}
.y42{bottom:284.046000px;}
.y7d{bottom:284.119500px;}
.y14f{bottom:284.418000px;}
.y112{bottom:285.913500px;}
.y183{bottom:286.575000px;}
.y16e{bottom:286.897500px;}
.y5f{bottom:288.001500px;}
.y1db{bottom:288.021000px;}
.y131{bottom:288.459000px;}
.y1bc{bottom:289.819500px;}
.y24{bottom:290.550900px;}
.y217{bottom:290.569500px;}
.y1fb{bottom:293.412000px;}
.yf4{bottom:294.919500px;}
.yb8{bottom:299.935500px;}
.y9b{bottom:301.360500px;}
.y19d{bottom:303.471000px;}
.yd6{bottom:304.219500px;}
.y7c{bottom:304.593000px;}
.y14e{bottom:305.343000px;}
.y111{bottom:306.013500px;}
.y16d{bottom:307.446000px;}
.y182{bottom:307.500000px;}
.y1da{bottom:308.194500px;}
.y5e{bottom:308.550000px;}
.y5d{bottom:308.551500px;}
.y130{bottom:308.932500px;}
.y23{bottom:309.599400px;}
.y22{bottom:309.974400px;}
.y1bb{bottom:310.743000px;}
.y216{bottom:311.793000px;}
.y1fa{bottom:314.262000px;}
.yf3{bottom:315.769500px;}
.yb7{bottom:320.784000px;}
.y9a{bottom:321.909000px;}
.y38{bottom:322.950000px;}
.y37{bottom:322.951515px;}
.y5b{bottom:322.980000px;}
.y19c{bottom:324.394500px;}
.yd5{bottom:324.844500px;}
.y7b{bottom:325.066500px;}
.y14d{bottom:325.816500px;}
.y110{bottom:326.562000px;}
.y21{bottom:326.849400px;}
.y16c{bottom:327.994500px;}
.y5c{bottom:329.100000px;}
.y1d9{bottom:329.118000px;}
.y12f{bottom:329.406000px;}
.y1ba{bottom:331.218000px;}
.y36{bottom:332.626515px;}
.y215{bottom:332.718000px;}
.y1f9{bottom:334.810500px;}
.yf2{bottom:335.943000px;}
.y20{bottom:338.024250px;}
.y35{bottom:340.951365px;}
.yb6{bottom:341.334000px;}
.y99{bottom:342.384000px;}
.yd4{bottom:345.318000px;}
.y7a{bottom:345.616500px;}
.y14c{bottom:346.365000px;}
.y10f{bottom:347.110500px;}
.y16b{bottom:348.543000px;}
.y1f{bottom:348.824100px;}
.y1d8{bottom:349.593000px;}
.y12e{bottom:350.331000px;}
.y34{bottom:351.376365px;}
.y1b9{bottom:351.766500px;}
.y214{bottom:353.191500px;}
.y1f8{bottom:355.359000px;}
.yf1{bottom:356.868000px;}
.y1e{bottom:358.199100px;}
.y33{bottom:360.376365px;}
.yb5{bottom:361.807500px;}
.y98{bottom:362.932500px;}
.yd3{bottom:365.791500px;}
.y79{bottom:366.166500px;}
.y1d{bottom:366.824100px;}
.y14b{bottom:367.215000px;}
.y10e{bottom:367.585500px;}
.y16a{bottom:369.393000px;}
.y1d7{bottom:370.141500px;}
.y32{bottom:370.801215px;}
.y12d{bottom:371.179500px;}
.y1b8{bottom:372.615000px;}
.y213{bottom:373.740000px;}
.y1f7{bottom:375.907500px;}
.y1c{bottom:377.249100px;}
.yf0{bottom:377.341500px;}
.y31{bottom:380.176215px;}
.yb4{bottom:382.356000px;}
.y97{bottom:383.332500px;}
.yd2{bottom:386.341500px;}
.y78{bottom:386.716500px;}
.y19b{bottom:387.015000px;}
.y14a{bottom:387.388500px;}
.y10d{bottom:388.509000px;}
.y30{bottom:389.851065px;}
.y169{bottom:389.941500px;}
.y1d6{bottom:390.991500px;}
.y12c{bottom:391.729500px;}
.y1b7{bottom:393.088500px;}
.y212{bottom:394.215000px;}
.y1b{bottom:395.999100px;}
.y1f6{bottom:396.756000px;}
.yef{bottom:397.815000px;}
.y2f{bottom:399.226065px;}
.yb3{bottom:402.904500px;}
.y96{bottom:403.957500px;}
.y1a{bottom:405.749100px;}
.yd1{bottom:406.815000px;}
.y77{bottom:407.190000px;}
.y149{bottom:407.938500px;}
.y10c{bottom:408.984000px;}
.y2e{bottom:409.651065px;}
.y168{bottom:410.415000px;}
.y181{bottom:410.790000px;}
.y1d5{bottom:411.540000px;}
.y12b{bottom:412.203000px;}
.y1b6{bottom:413.638500px;}
.y211{bottom:414.763500px;}
.y19{bottom:415.423950px;}
.y1f5{bottom:417.229500px;}
.y2d{bottom:417.975915px;}
.yee{bottom:418.740000px;}
.yb2{bottom:423.829500px;}
.y95{bottom:424.582500px;}
.y18{bottom:425.548950px;}
.yd0{bottom:427.440000px;}
.y2c{bottom:428.025915px;}
.y76{bottom:428.040000px;}
.y148{bottom:428.412000px;}
.y19a{bottom:428.413500px;}
.y10b{bottom:429.457500px;}
.y167{bottom:431.340000px;}
.y1d4{bottom:431.715000px;}
.y12a{bottom:432.751500px;}
.y1b5{bottom:434.188500px;}
.y17{bottom:434.548950px;}
.y210{bottom:435.613500px;}
.y1f4{bottom:437.779500px;}
.y2b{bottom:438.075900px;}
.yed{bottom:439.213500px;}
.y16{bottom:443.848950px;}
.yb1{bottom:444.303000px;}
.y94{bottom:445.056000px;}
.y2a{bottom:447.450900px;}
.ycf{bottom:447.913500px;}
.y75{bottom:448.588500px;}
.y147{bottom:448.962000px;}
.y199{bottom:448.963500px;}
.y10a{bottom:450.007500px;}
.y166{bottom:451.813500px;}
.y180{bottom:452.188500px;}
.y1d3{bottom:452.938500px;}
.y15{bottom:453.598950px;}
.y129{bottom:453.601500px;}
.y1b4{bottom:454.738500px;}
.y20f{bottom:456.162000px;}
.y29{bottom:456.825900px;}
.y1f3{bottom:458.329500px;}
.yec{bottom:460.512000px;}
.y14{bottom:464.023950px;}
.yb0{bottom:464.776500px;}
.y93{bottom:465.529500px;}
.yce{bottom:468.387000px;}
.y146{bottom:469.062000px;}
.y74{bottom:469.137000px;}
.y198{bottom:469.512000px;}
.y55{bottom:470.553000px;}
.y41{bottom:470.556000px;}
.y109{bottom:470.557500px;}
.y165{bottom:472.363500px;}
.y17f{bottom:472.738500px;}
.y13{bottom:473.023950px;}
.y1d2{bottom:473.412000px;}
.y128{bottom:474.150000px;}
.y127{bottom:474.162000px;}
.y1b3{bottom:475.587000px;}
.y20e{bottom:476.712000px;}
.y1f2{bottom:479.178000px;}
.yeb{bottom:481.362000px;}
.y12{bottom:482.023950px;}
.yaf{bottom:485.701500px;}
.y92{bottom:486.003000px;}
.yf{bottom:486.750300px;}
.ycd{bottom:488.937000px;}
.y145{bottom:489.610500px;}
.y73{bottom:489.612000px;}
.y197{bottom:490.362000px;}
.y108{bottom:490.732500px;}
.y54{bottom:492.453000px;}
.y40{bottom:492.456000px;}
.y11{bottom:492.823800px;}
.y164{bottom:493.212000px;}
.y17e{bottom:493.587000px;}
.y1d1{bottom:494.337000px;}
.y126{bottom:494.712000px;}
.ye{bottom:495.750300px;}
.y1b2{bottom:496.135500px;}
.y20d{bottom:497.560500px;}
.y1f1{bottom:499.353000px;}
.y5a{bottom:501.165000px;}
.y10{bottom:501.823800px;}
.yea{bottom:501.910500px;}
.yd{bottom:505.050150px;}
.yae{bottom:506.175000px;}
.y91{bottom:506.553000px;}
.ycc{bottom:509.410500px;}
.y144{bottom:510.159000px;}
.y72{bottom:510.535500px;}
.y107{bottom:511.131000px;}
.y196{bottom:511.210500px;}
.y53{bottom:513.753000px;}
.y3f{bottom:513.756000px;}
.y17d{bottom:513.760500px;}
.y163{bottom:513.837000px;}
.y1d0{bottom:514.810500px;}
.yc{bottom:515.175150px;}
.y125{bottom:515.185500px;}
.y1b1{bottom:516.610500px;}
.y20c{bottom:518.110500px;}
.y1f0{bottom:521.326500px;}
.ye9{bottom:522.759000px;}
.yb{bottom:524.175150px;}
.yad{bottom:527.100000px;}
.y90{bottom:527.103000px;}
.yac{bottom:527.109000px;}
.ycb{bottom:529.585500px;}
.y143{bottom:530.334000px;}
.y71{bottom:531.384000px;}
.y106{bottom:531.681000px;}
.y195{bottom:531.759000px;}
.y162{bottom:534.310500px;}
.y17c{bottom:534.985500px;}
.y3e{bottom:535.354500px;}
.y1cf{bottom:535.735500px;}
.y124{bottom:536.110500px;}
.y52{bottom:536.403000px;}
.y1b0{bottom:537.534000px;}
.y20b{bottom:538.209000px;}
.y1ef{bottom:540.000000px;}
.y1ee{bottom:540.000914px;}
.ye8{bottom:542.934000px;}
.y22b{bottom:543.310500px;}
.ya{bottom:543.975150px;}
.y8f{bottom:547.951500px;}
.yab{bottom:547.957500px;}
.yca{bottom:550.585500px;}
.y142{bottom:550.807500px;}
.y70{bottom:551.934000px;}
.y105{bottom:552.231000px;}
.y194{bottom:552.309000px;}
.y9{bottom:554.025150px;}
.y161{bottom:554.784000px;}
.y17b{bottom:555.159000px;}
.y123{bottom:556.209000px;}
.y1af{bottom:558.382500px;}
.y20a{bottom:559.132500px;}
.y1ed{bottom:560.925000px;}
.y22a{bottom:562.735500px;}
.y8{bottom:563.400150px;}
.ye7{bottom:563.782500px;}
.y8e{bottom:568.125000px;}
.yaa{bottom:568.506000px;}
.yc9{bottom:571.059000px;}
.y141{bottom:571.807500px;}
.y104{bottom:572.781000px;}
.y6f{bottom:572.782500px;}
.y7{bottom:573.150150px;}
.y193{bottom:573.157500px;}
.y160{bottom:575.709000px;}
.y17a{bottom:576.007500px;}
.y122{bottom:576.757500px;}
.y1ce{bottom:577.132500px;}
.y1ae{bottom:578.932500px;}
.y209{bottom:579.607500px;}
.y1ec{bottom:581.100000px;}
.y6{bottom:582.825000px;}
.y229{bottom:583.959000px;}
.ye6{bottom:584.707500px;}
.y8d{bottom:588.600000px;}
.ya9{bottom:589.356000px;}
.y51{bottom:590.028000px;}
.y3d{bottom:590.029500px;}
.yc8{bottom:591.532500px;}
.y140{bottom:591.906000px;}
.y5{bottom:592.200000px;}
.y6e{bottom:592.957500px;}
.y103{bottom:593.331000px;}
.y192{bottom:594.006000px;}
.y15f{bottom:596.259000px;}
.y179{bottom:596.557500px;}
.y121{bottom:597.607500px;}
.y1cd{bottom:597.982500px;}
.y1ad{bottom:599.406000px;}
.y208{bottom:600.906000px;}
.y1eb{bottom:601.200000px;}
.y1ea{bottom:601.206000px;}
.y4{bottom:602.250000px;}
.y228{bottom:604.507500px;}
.ye5{bottom:605.181000px;}
.y8c{bottom:609.454500px;}
.ya8{bottom:610.204500px;}
.y3{bottom:611.625000px;}
.y2{bottom:611.625150px;}
.y13f{bottom:612.004500px;}
.yc7{bottom:612.006000px;}
.y6d{bottom:613.357500px;}
.y102{bottom:613.804500px;}
.y191{bottom:614.931000px;}
.y15e{bottom:617.107500px;}
.y120{bottom:618.156000px;}
.y1{bottom:618.450000px;}
.y1cc{bottom:618.531000px;}
.y1ac{bottom:619.956000px;}
.y207{bottom:621.379500px;}
.y1e9{bottom:622.129500px;}
.y227{bottom:624.982500px;}
.ye4{bottom:626.106000px;}
.y8b{bottom:630.004500px;}
.yc6{bottom:632.181000px;}
.y13e{bottom:632.929500px;}
.y6c{bottom:634.281000px;}
.y101{bottom:634.429500px;}
.y190{bottom:635.481000px;}
.y178{bottom:637.581000px;}
.y15d{bottom:637.956000px;}
.y3c{bottom:638.253000px;}
.y50{bottom:638.626500px;}
.y11f{bottom:639.004500px;}
.y1cb{bottom:639.379500px;}
.y1ab{bottom:640.804500px;}
.y206{bottom:641.929500px;}
.y1e8{bottom:642.979500px;}
.y226{bottom:645.906000px;}
.ye3{bottom:646.579500px;}
.y8a{bottom:650.554500px;}
.y13d{bottom:653.104500px;}
.yc5{bottom:653.106000px;}
.y100{bottom:654.903000px;}
.y6b{bottom:655.204500px;}
.y18f{bottom:656.329500px;}
.y177{bottom:658.504500px;}
.y15c{bottom:658.804500px;}
.y11e{bottom:659.554500px;}
.y1ca{bottom:659.929500px;}
.y1aa{bottom:661.354500px;}
.y205{bottom:662.778000px;}
.y1e7{bottom:663.528000px;}
.y225{bottom:666.379500px;}
.ye2{bottom:667.503000px;}
.y89{bottom:671.104500px;}
.y13c{bottom:673.953000px;}
.yc4{bottom:673.954500px;}
.yff{bottom:675.376500px;}
.y6a{bottom:676.128000px;}
.y18e{bottom:677.178000px;}
.y176{bottom:678.979500px;}
.y15b{bottom:679.354500px;}
.y11d{bottom:680.104500px;}
.y1c9{bottom:680.778000px;}
.y1a9{bottom:682.578000px;}
.y59{bottom:682.590000px;}
.y204{bottom:683.328000px;}
.y1e6{bottom:683.703000px;}
.y224{bottom:687.304500px;}
.ye1{bottom:687.603000px;}
.y88{bottom:691.203000px;}
.y13b{bottom:694.126500px;}
.yc3{bottom:694.504500px;}
.yfe{bottom:695.926500px;}
.y69{bottom:696.603000px;}
.y4f{bottom:696.975000px;}
.y3b{bottom:696.976500px;}
.y18d{bottom:698.103000px;}
.y15a{bottom:699.903000px;}
.y11c{bottom:700.654500px;}
.y1c8{bottom:701.328000px;}
.y1a8{bottom:703.126500px;}
.y4d{bottom:704.175000px;}
.y203{bottom:704.176500px;}
.y1e5{bottom:704.551500px;}
.y223{bottom:707.778000px;}
.ye0{bottom:708.526500px;}
.y87{bottom:711.753000px;}
.ya7{bottom:711.754500px;}
.y13a{bottom:714.601500px;}
.yc2{bottom:715.353000px;}
.yfd{bottom:716.775000px;}
.y68{bottom:717.151500px;}
.y18c{bottom:718.576500px;}
.y159{bottom:720.753000px;}
.y202{bottom:721.501500px;}
.y11b{bottom:721.503000px;}
.y1c7{bottom:722.176500px;}
.y1a7{bottom:723.601500px;}
.y1e4{bottom:725.101500px;}
.y222{bottom:728.328000px;}
.ydf{bottom:729.751500px;}
.y4b{bottom:730.800000px;}
.y86{bottom:732.601500px;}
.y4c{bottom:733.350000px;}
.ya6{bottom:734.103000px;}
.y139{bottom:735.150000px;}
.yc1{bottom:736.201500px;}
.yfc{bottom:737.325000px;}
.y67{bottom:737.701500px;}
.y18b{bottom:739.501500px;}
.y158{bottom:741.301500px;}
.y11a{bottom:742.351500px;}
.y1c6{bottom:742.726500px;}
.y1a6{bottom:744.900000px;}
.y1e3{bottom:745.200000px;}
.y3a{bottom:745.950000px;}
.y221{bottom:749.176500px;}
.yde{bottom:749.925000px;}
.y85{bottom:753.525000px;}
.ya5{bottom:754.576500px;}
.y49{bottom:756.000000px;}
.y4a{bottom:756.750000px;}
.yc0{bottom:756.751500px;}
.yfb{bottom:757.500000px;}
.y66{bottom:758.550000px;}
.y18a{bottom:760.350000px;}
.y157{bottom:762.150000px;}
.y119{bottom:763.200000px;}
.y1c5{bottom:763.575000px;}
.y1a5{bottom:765.375000px;}
.y201{bottom:765.750000px;}
.y1e2{bottom:766.125000px;}
.yfa{bottom:766.500000px;}
.ya3{bottom:768.975000px;}
.y220{bottom:769.725000px;}
.ya4{bottom:770.775000px;}
.ybf{bottom:772.575000px;}
.y156{bottom:772.950000px;}
.y84{bottom:779.775000px;}
.y138{bottom:780.150000px;}
.y1a2{bottom:780.900000px;}
.y175{bottom:781.950000px;}
.y1c4{bottom:784.125000px;}
.y1c3{bottom:785.925000px;}
.y21e{bottom:786.300000px;}
.y1ff{bottom:786.975000px;}
.y48{bottom:786.976500px;}
.y21f{bottom:790.200000px;}
.y47{bottom:802.800000px;}
.y58{bottom:849.975000px;}
.y4e{bottom:853.950000px;}
.h19{height:23.994141px;}
.h4{height:33.743952px;}
.hd{height:33.744141px;}
.hc{height:34.220215px;}
.hf{height:38.390625px;}
.h17{height:42.117188px;}
.h3{height:44.749512px;}
.h8{height:45.049572px;}
.h10{height:48.404297px;}
.h13{height:49.318084px;}
.h2{height:49.318359px;}
.ha{height:51.914062px;}
.h16{height:55.955566px;}
.h15{height:56.917969px;}
.h9{height:57.105150px;}
.h5{height:57.105469px;}
.h6{height:62.296875px;}
.h7{height:93.445312px;}
.he{height:95.923828px;}
.h11{height:99.975586px;}
.h12{height:104.845313px;}
.h18{height:161.138010px;}
.hb{height:231.943359px;}
.h14{height:882.750000px;}
.h0{height:907.200000px;}
.h1{height:907.500000px;}
.w3{width:638.250000px;}
.w2{width:648.000000px;}
.w1{width:672.000000px;}
.w0{width:672.150000px;}
.x0{left:0.000000px;}
.x6d{left:4.650000px;}
.x20{left:10.798500px;}
.x5{left:52.201500px;}
.x7{left:55.426065px;}
.x16{left:65.550000px;}
.x6{left:72.751065px;}
.x19{left:74.175000px;}
.x1a{left:75.975000px;}
.xf{left:108.373500px;}
.x6a{left:115.200000px;}
.x6b{left:116.249985px;}
.x66{left:118.050165px;}
.x65{left:119.175000px;}
.xd{left:120.585000px;}
.x61{left:122.398500px;}
.x17{left:125.248500px;}
.x43{left:126.750030px;}
.x10{left:127.798500px;}
.x1d{left:128.863485px;}
.x34{left:129.975000px;}
.x4e{left:131.775015px;}
.x4d{left:132.825015px;}
.x4c{left:133.950015px;}
.x1b{left:134.998500px;}
.x4b{left:136.425000px;}
.x59{left:147.225000px;}
.x44{left:153.000030px;}
.x47{left:155.549985px;}
.x18{left:167.385000px;}
.x5f{left:170.249850px;}
.x60{left:171.374850px;}
.x5b{left:173.175015px;}
.x15{left:174.225000px;}
.x39{left:176.039700px;}
.x5c{left:177.149985px;}
.x3b{left:178.214700px;}
.x3e{left:179.249985px;}
.x45{left:181.049970px;}
.x32{left:182.850030px;}
.x31{left:183.975030px;}
.x30{left:185.025015px;}
.x2f{left:186.825015px;}
.x2e{left:187.950015px;}
.x2d{left:189.375000px;}
.x2c{left:190.425000px;}
.x2b{left:191.550000px;}
.x2a{left:192.975000px;}
.x29{left:198.001485px;}
.x3a{left:204.164700px;}
.x3f{left:211.350000px;}
.xa{left:218.850000px;}
.xb{left:227.160000px;}
.xc{left:230.760000px;}
.x14{left:243.000000px;}
.x22{left:253.410000px;}
.xe{left:262.783500px;}
.x25{left:266.025000px;}
.x28{left:267.826485px;}
.x52{left:271.035000px;}
.x69{left:275.025000px;}
.x46{left:276.450000px;}
.x1e{left:279.375000px;}
.x67{left:281.535000px;}
.x53{left:283.350000px;}
.x57{left:285.150000px;}
.x5d{left:288.375000px;}
.x62{left:290.850000px;}
.x38{left:292.350000px;}
.x4f{left:295.200000px;}
.x64{left:298.410000px;}
.x58{left:299.535000px;}
.x26{left:307.785000px;}
.x54{left:311.400000px;}
.x27{left:312.450000px;}
.x35{left:319.350000px;}
.x36{left:321.435000px;}
.x55{left:322.575000px;}
.x68{left:331.575000px;}
.x5e{left:333.000000px;}
.x1f{left:334.048500px;}
.x50{left:336.975000px;}
.x1c{left:340.950000px;}
.x4a{left:345.225000px;}
.x33{left:357.450000px;}
.x37{left:370.783500px;}
.x23{left:382.650000px;}
.x3c{left:385.950000px;}
.x24{left:387.000000px;}
.x3d{left:389.835000px;}
.x5a{left:423.375000px;}
.x48{left:425.175000px;}
.x11{left:429.133500px;}
.x12{left:434.533500px;}
.x21{left:442.048500px;}
.x41{left:464.025000px;}
.x63{left:470.550000px;}
.x13{left:484.183500px;}
.x51{left:486.375000px;}
.x56{left:487.425000px;}
.x42{left:489.585000px;}
.x40{left:531.000000px;}
.x49{left:537.150000px;}
.x1{left:545.775000px;}
.x2{left:546.825015px;}
.x3{left:574.950000px;}
.x8{left:576.375000px;}
.x4{left:594.375000px;}
.x9{left:595.800000px;}
.x6c{left:638.250000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.133333pt;}
.ls6{letter-spacing:-21.333333pt;}
.ls13{letter-spacing:-14.820907pt;}
.ls5{letter-spacing:-2.666667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:1.133333pt;}
.ls10{letter-spacing:2.666667pt;}
.ls11{letter-spacing:2.762667pt;}
.ls2{letter-spacing:2.973867pt;}
.ls0{letter-spacing:3.968000pt;}
.ls1{letter-spacing:5.514667pt;}
.ls12{letter-spacing:7.199467pt;}
.ls9{letter-spacing:8.000000pt;}
.lsc{letter-spacing:8.792000pt;}
.lse{letter-spacing:11.732800pt;}
.lsb{letter-spacing:14.367467pt;}
.lsd{letter-spacing:15.751467pt;}
.lsf{letter-spacing:17.034133pt;}
.ls7{letter-spacing:24.962667pt;}
.ls8{letter-spacing:28.962667pt;}
.lsa{letter-spacing:37.581333pt;}
.ws12{word-spacing:-34.965333pt;}
.ws14{word-spacing:-33.979733pt;}
.ws10{word-spacing:-31.738489pt;}
.ws1e{word-spacing:-22.666667pt;}
.ws15{word-spacing:-21.237215pt;}
.wsa{word-spacing:-20.181333pt;}
.ws7{word-spacing:-19.968000pt;}
.ws18{word-spacing:-19.466667pt;}
.ws1{word-spacing:-18.754562pt;}
.ws21{word-spacing:-17.333333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.666667pt;}
.ws22{word-spacing:-12.798667pt;}
.ws17{word-spacing:-12.666667pt;}
.ws20{word-spacing:-12.666596pt;}
.wsb{word-spacing:-11.733333pt;}
.ws6{word-spacing:-11.333333pt;}
.wsf{word-spacing:-10.132000pt;}
.ws1b{word-spacing:-9.069283pt;}
.ws9{word-spacing:-9.066667pt;}
.ws13{word-spacing:-8.666667pt;}
.wsd{word-spacing:-4.341333pt;}
.ws5{word-spacing:-4.106667pt;}
.ws3{word-spacing:-3.520000pt;}
.ws16{word-spacing:-2.837333pt;}
.ws8{word-spacing:-2.709333pt;}
.wse{word-spacing:-1.232000pt;}
.ws1a{word-spacing:-1.077333pt;}
.ws11{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.891616pt;}
.ws1c{word-spacing:4.863360pt;}
.ws1d{word-spacing:8.429824pt;}
.wsc{word-spacing:9.621333pt;}
.ws0{word-spacing:11.400000pt;}
.ws19{word-spacing:285.306667pt;}
._27{margin-left:-26.656533pt;}
._1b{margin-left:-24.155200pt;}
._14{margin-left:-23.213387pt;}
._37{margin-left:-21.466667pt;}
._18{margin-left:-19.685867pt;}
._31{margin-left:-18.554068pt;}
._19{margin-left:-17.514047pt;}
._2f{margin-left:-16.244853pt;}
._1c{margin-left:-15.180800pt;}
._17{margin-left:-13.345633pt;}
._15{margin-left:-12.330667pt;}
._b{margin-left:-11.410667pt;}
._26{margin-left:-10.397236pt;}
._1a{margin-left:-9.461280pt;}
._4{margin-left:-8.069333pt;}
._6{margin-left:-7.026667pt;}
._1e{margin-left:-6.014400pt;}
._a{margin-left:-4.824000pt;}
._5{margin-left:-3.400000pt;}
._7{margin-left:-2.458634pt;}
._9{margin-left:-1.405333pt;}
._e{width:1.133333pt;}
._12{width:2.640000pt;}
._13{width:3.626667pt;}
._8{width:4.805333pt;}
._d{width:6.576000pt;}
._c{width:7.680000pt;}
._16{width:8.730667pt;}
._0{width:10.234667pt;}
._2{width:11.957333pt;}
._10{width:12.960000pt;}
._f{width:14.496000pt;}
._11{width:16.128000pt;}
._34{width:17.221399pt;}
._32{width:18.229301pt;}
._24{width:19.253333pt;}
._1f{width:20.570667pt;}
._23{width:21.974150pt;}
._2c{width:23.159303pt;}
._2a{width:24.053333pt;}
._29{width:25.077137pt;}
._25{width:26.397333pt;}
._22{width:27.375183pt;}
._28{width:28.829333pt;}
._21{width:29.944000pt;}
._20{width:31.261333pt;}
._39{width:32.688969pt;}
._3{width:35.416000pt;}
._1d{width:36.330667pt;}
._1{width:38.000000pt;}
._36{width:38.962634pt;}
._2b{width:40.269268pt;}
._38{width:46.242667pt;}
._2e{width:67.280000pt;}
._2d{width:69.002667pt;}
._35{width:133.784000pt;}
._30{width:175.849633pt;}
._33{width:287.973333pt;}
.fs13{font-size:32.000000pt;}
.fs2{font-size:34.666473pt;}
.fsc{font-size:34.666667pt;}
.fs6{font-size:36.266667pt;}
.fs8{font-size:40.528000pt;}
.fs11{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs7{font-size:46.933333pt;}
.fsf{font-size:50.666384pt;}
.fs0{font-size:50.666667pt;}
.fsd{font-size:51.200000pt;}
.fsa{font-size:53.333333pt;}
.fs10{font-size:56.000000pt;}
.fs9{font-size:58.666339pt;}
.fs3{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.fse{font-size:133.333333pt;}
.fs12{font-size:214.903147pt;}
.fsb{font-size:309.333333pt;}
.y0{bottom:0.000000pt;}
.y22e{bottom:0.000027pt;}
.y189{bottom:125.133333pt;}
.yf9{bottom:130.288000pt;}
.ybe{bottom:137.933333pt;}
.y1a4{bottom:138.934667pt;}
.ya2{bottom:140.548000pt;}
.ydd{bottom:141.488000pt;}
.y83{bottom:141.820000pt;}
.y155{bottom:143.088000pt;}
.y188{bottom:143.400000pt;}
.y118{bottom:144.018667pt;}
.y174{bottom:144.690667pt;}
.y65{bottom:145.005333pt;}
.y1e1{bottom:145.021333pt;}
.y137{bottom:146.280000pt;}
.y1c2{bottom:147.221333pt;}
.yf8{bottom:148.220000pt;}
.y22c{bottom:148.800000pt;}
.y21d{bottom:148.821333pt;}
.y200{bottom:150.733333pt;}
.y46{bottom:153.600000pt;}
.y57{bottom:153.616000pt;}
.ybd{bottom:154.266667pt;}
.y1a3{bottom:155.533333pt;}
.ya1{bottom:159.081333pt;}
.y187{bottom:159.400000pt;}
.ydc{bottom:160.354667pt;}
.y82{bottom:160.686667pt;}
.y154{bottom:161.621333pt;}
.y117{bottom:162.284000pt;}
.y1e0{bottom:163.221333pt;}
.y173{bottom:163.224000pt;}
.y64{bottom:163.538667pt;}
.y136{bottom:164.212000pt;}
.yf7{bottom:164.220000pt;}
.y1c1{bottom:166.154667pt;}
.y22d{bottom:166.400000pt;}
.y21c{bottom:167.421333pt;}
.ybc{bottom:169.933333pt;}
.ya0{bottom:177.014667pt;}
.ydb{bottom:178.621333pt;}
.y81{bottom:179.220000pt;}
.y153{bottom:179.886667pt;}
.y116{bottom:180.549333pt;}
.y45{bottom:180.800000pt;}
.y56{bottom:180.816000pt;}
.y1df{bottom:181.820000pt;}
.y172{bottom:181.822667pt;}
.y63{bottom:182.737333pt;}
.y135{bottom:182.744000pt;}
.y1c0{bottom:184.688000pt;}
.y21b{bottom:185.621333pt;}
.ybb{bottom:185.933333pt;}
.yba{bottom:185.942667pt;}
.y9f{bottom:195.213333pt;}
.y1a1{bottom:195.888000pt;}
.yda{bottom:196.820000pt;}
.y80{bottom:197.152000pt;}
.y152{bottom:198.152000pt;}
.y115{bottom:199.081333pt;}
.y171{bottom:200.022667pt;}
.y1de{bottom:200.353333pt;}
.y62{bottom:201.004000pt;}
.y134{bottom:201.010667pt;}
.yb9{bottom:201.609333pt;}
.y1bf{bottom:202.953333pt;}
.y21a{bottom:204.553333pt;}
.y1fe{bottom:206.146667pt;}
.y9e{bottom:213.478667pt;}
.y1a0{bottom:214.753333pt;}
.yd9{bottom:215.085333pt;}
.y7f{bottom:215.417333pt;}
.y151{bottom:216.018667pt;}
.y44{bottom:216.020000pt;}
.y114{bottom:217.348000pt;}
.y186{bottom:217.933333pt;}
.y170{bottom:218.621333pt;}
.y1dd{bottom:218.952000pt;}
.y61{bottom:219.202667pt;}
.y133{bottom:219.542667pt;}
.y1be{bottom:221.152000pt;}
.y219{bottom:222.420000pt;}
.y28{bottom:224.334133pt;}
.y1fd{bottom:224.346667pt;}
.yf6{bottom:225.020000pt;}
.y43{bottom:227.220000pt;}
.y9d{bottom:231.745333pt;}
.y27{bottom:232.334133pt;}
.y39{bottom:232.666667pt;}
.y19f{bottom:233.020000pt;}
.yd8{bottom:233.618667pt;}
.y7e{bottom:234.284000pt;}
.y150{bottom:234.617333pt;}
.y113{bottom:235.546667pt;}
.y185{bottom:236.533333pt;}
.y184{bottom:236.533856pt;}
.y16f{bottom:236.820000pt;}
.y60{bottom:237.468000pt;}
.y1dc{bottom:237.485333pt;}
.y132{bottom:237.808000pt;}
.y1bd{bottom:239.418667pt;}
.y218{bottom:241.018667pt;}
.y26{bottom:241.600800pt;}
.y1fc{bottom:242.612000pt;}
.yf5{bottom:243.552000pt;}
.y25{bottom:248.934133pt;}
.y9c{bottom:249.944000pt;}
.y19e{bottom:251.552000pt;}
.yd7{bottom:251.884000pt;}
.y42{bottom:252.485333pt;}
.y7d{bottom:252.550667pt;}
.y14f{bottom:252.816000pt;}
.y112{bottom:254.145333pt;}
.y183{bottom:254.733333pt;}
.y16e{bottom:255.020000pt;}
.y5f{bottom:256.001333pt;}
.y1db{bottom:256.018667pt;}
.y131{bottom:256.408000pt;}
.y1bc{bottom:257.617333pt;}
.y24{bottom:258.267467pt;}
.y217{bottom:258.284000pt;}
.y1fb{bottom:260.810667pt;}
.yf4{bottom:262.150667pt;}
.yb8{bottom:266.609333pt;}
.y9b{bottom:267.876000pt;}
.y19d{bottom:269.752000pt;}
.yd6{bottom:270.417333pt;}
.y7c{bottom:270.749333pt;}
.y14e{bottom:271.416000pt;}
.y111{bottom:272.012000pt;}
.y16d{bottom:273.285333pt;}
.y182{bottom:273.333333pt;}
.y1da{bottom:273.950667pt;}
.y5e{bottom:274.266667pt;}
.y5d{bottom:274.268000pt;}
.y130{bottom:274.606667pt;}
.y23{bottom:275.199467pt;}
.y22{bottom:275.532800pt;}
.y1bb{bottom:276.216000pt;}
.y216{bottom:277.149333pt;}
.y1fa{bottom:279.344000pt;}
.yf3{bottom:280.684000pt;}
.yb7{bottom:285.141333pt;}
.y9a{bottom:286.141333pt;}
.y38{bottom:287.066667pt;}
.y37{bottom:287.068013pt;}
.y5b{bottom:287.093333pt;}
.y19c{bottom:288.350667pt;}
.yd5{bottom:288.750667pt;}
.y7b{bottom:288.948000pt;}
.y14d{bottom:289.614667pt;}
.y110{bottom:290.277333pt;}
.y21{bottom:290.532800pt;}
.y16c{bottom:291.550667pt;}
.y5c{bottom:292.533333pt;}
.y1d9{bottom:292.549333pt;}
.y12f{bottom:292.805333pt;}
.y1ba{bottom:294.416000pt;}
.y36{bottom:295.668013pt;}
.y215{bottom:295.749333pt;}
.y1f9{bottom:297.609333pt;}
.yf2{bottom:298.616000pt;}
.y20{bottom:300.466000pt;}
.y35{bottom:303.067880pt;}
.yb6{bottom:303.408000pt;}
.y99{bottom:304.341333pt;}
.yd4{bottom:306.949333pt;}
.y7a{bottom:307.214667pt;}
.y14c{bottom:307.880000pt;}
.y10f{bottom:308.542667pt;}
.y16b{bottom:309.816000pt;}
.y1f{bottom:310.065867pt;}
.y1d8{bottom:310.749333pt;}
.y12e{bottom:311.405333pt;}
.y34{bottom:312.334547pt;}
.y1b9{bottom:312.681333pt;}
.y214{bottom:313.948000pt;}
.y1f8{bottom:315.874667pt;}
.yf1{bottom:317.216000pt;}
.y1e{bottom:318.399200pt;}
.y33{bottom:320.334547pt;}
.yb5{bottom:321.606667pt;}
.y98{bottom:322.606667pt;}
.yd3{bottom:325.148000pt;}
.y79{bottom:325.481333pt;}
.y1d{bottom:326.065867pt;}
.y14b{bottom:326.413333pt;}
.y10e{bottom:326.742667pt;}
.y16a{bottom:328.349333pt;}
.y1d7{bottom:329.014667pt;}
.y32{bottom:329.601080pt;}
.y12d{bottom:329.937333pt;}
.y1b8{bottom:331.213333pt;}
.y213{bottom:332.213333pt;}
.y1f7{bottom:334.140000pt;}
.y1c{bottom:335.332533pt;}
.yf0{bottom:335.414667pt;}
.y31{bottom:337.934413pt;}
.yb4{bottom:339.872000pt;}
.y97{bottom:340.740000pt;}
.yd2{bottom:343.414667pt;}
.y78{bottom:343.748000pt;}
.y19b{bottom:344.013333pt;}
.y14a{bottom:344.345333pt;}
.y10d{bottom:345.341333pt;}
.y30{bottom:346.534280pt;}
.y169{bottom:346.614667pt;}
.y1d6{bottom:347.548000pt;}
.y12c{bottom:348.204000pt;}
.y1b7{bottom:349.412000pt;}
.y212{bottom:350.413333pt;}
.y1b{bottom:351.999200pt;}
.y1f6{bottom:352.672000pt;}
.yef{bottom:353.613333pt;}
.y2f{bottom:354.867613pt;}
.yb3{bottom:358.137333pt;}
.y96{bottom:359.073333pt;}
.y1a{bottom:360.665867pt;}
.yd1{bottom:361.613333pt;}
.y77{bottom:361.946667pt;}
.y149{bottom:362.612000pt;}
.y10c{bottom:363.541333pt;}
.y2e{bottom:364.134280pt;}
.y168{bottom:364.813333pt;}
.y181{bottom:365.146667pt;}
.y1d5{bottom:365.813333pt;}
.y12b{bottom:366.402667pt;}
.y1b6{bottom:367.678667pt;}
.y211{bottom:368.678667pt;}
.y19{bottom:369.265733pt;}
.y1f5{bottom:370.870667pt;}
.y2d{bottom:371.534147pt;}
.yee{bottom:372.213333pt;}
.yb2{bottom:376.737333pt;}
.y95{bottom:377.406667pt;}
.y18{bottom:378.265733pt;}
.yd0{bottom:379.946667pt;}
.y2c{bottom:380.467480pt;}
.y76{bottom:380.480000pt;}
.y148{bottom:380.810667pt;}
.y19a{bottom:380.812000pt;}
.y10b{bottom:381.740000pt;}
.y167{bottom:383.413333pt;}
.y1d4{bottom:383.746667pt;}
.y12a{bottom:384.668000pt;}
.y1b5{bottom:385.945333pt;}
.y17{bottom:386.265733pt;}
.y210{bottom:387.212000pt;}
.y1f4{bottom:389.137333pt;}
.y2b{bottom:389.400800pt;}
.yed{bottom:390.412000pt;}
.y16{bottom:394.532400pt;}
.yb1{bottom:394.936000pt;}
.y94{bottom:395.605333pt;}
.y2a{bottom:397.734133pt;}
.ycf{bottom:398.145333pt;}
.y75{bottom:398.745333pt;}
.y147{bottom:399.077333pt;}
.y199{bottom:399.078667pt;}
.y10a{bottom:400.006667pt;}
.y166{bottom:401.612000pt;}
.y180{bottom:401.945333pt;}
.y1d3{bottom:402.612000pt;}
.y15{bottom:403.199067pt;}
.y129{bottom:403.201333pt;}
.y1b4{bottom:404.212000pt;}
.y20f{bottom:405.477333pt;}
.y29{bottom:406.067467pt;}
.y1f3{bottom:407.404000pt;}
.yec{bottom:409.344000pt;}
.y14{bottom:412.465733pt;}
.yb0{bottom:413.134667pt;}
.y93{bottom:413.804000pt;}
.yce{bottom:416.344000pt;}
.y146{bottom:416.944000pt;}
.y74{bottom:417.010667pt;}
.y198{bottom:417.344000pt;}
.y55{bottom:418.269333pt;}
.y41{bottom:418.272000pt;}
.y109{bottom:418.273333pt;}
.y165{bottom:419.878667pt;}
.y17f{bottom:420.212000pt;}
.y13{bottom:420.465733pt;}
.y1d2{bottom:420.810667pt;}
.y128{bottom:421.466667pt;}
.y127{bottom:421.477333pt;}
.y1b3{bottom:422.744000pt;}
.y20e{bottom:423.744000pt;}
.y1f2{bottom:425.936000pt;}
.yeb{bottom:427.877333pt;}
.y12{bottom:428.465733pt;}
.yaf{bottom:431.734667pt;}
.y92{bottom:432.002667pt;}
.yf{bottom:432.666933pt;}
.ycd{bottom:434.610667pt;}
.y145{bottom:435.209333pt;}
.y73{bottom:435.210667pt;}
.y197{bottom:435.877333pt;}
.y108{bottom:436.206667pt;}
.y54{bottom:437.736000pt;}
.y40{bottom:437.738667pt;}
.y11{bottom:438.065600pt;}
.y164{bottom:438.410667pt;}
.y17e{bottom:438.744000pt;}
.y1d1{bottom:439.410667pt;}
.y126{bottom:439.744000pt;}
.ye{bottom:440.666933pt;}
.y1b2{bottom:441.009333pt;}
.y20d{bottom:442.276000pt;}
.y1f1{bottom:443.869333pt;}
.y5a{bottom:445.480000pt;}
.y10{bottom:446.065600pt;}
.yea{bottom:446.142667pt;}
.yd{bottom:448.933467pt;}
.yae{bottom:449.933333pt;}
.y91{bottom:450.269333pt;}
.ycc{bottom:452.809333pt;}
.y144{bottom:453.474667pt;}
.y72{bottom:453.809333pt;}
.y107{bottom:454.338667pt;}
.y196{bottom:454.409333pt;}
.y53{bottom:456.669333pt;}
.y3f{bottom:456.672000pt;}
.y17d{bottom:456.676000pt;}
.y163{bottom:456.744000pt;}
.y1d0{bottom:457.609333pt;}
.yc{bottom:457.933467pt;}
.y125{bottom:457.942667pt;}
.y1b1{bottom:459.209333pt;}
.y20c{bottom:460.542667pt;}
.y1f0{bottom:463.401333pt;}
.ye9{bottom:464.674667pt;}
.yb{bottom:465.933467pt;}
.yad{bottom:468.533333pt;}
.y90{bottom:468.536000pt;}
.yac{bottom:468.541333pt;}
.ycb{bottom:470.742667pt;}
.y143{bottom:471.408000pt;}
.y71{bottom:472.341333pt;}
.y106{bottom:472.605333pt;}
.y195{bottom:472.674667pt;}
.y162{bottom:474.942667pt;}
.y17c{bottom:475.542667pt;}
.y3e{bottom:475.870667pt;}
.y1cf{bottom:476.209333pt;}
.y124{bottom:476.542667pt;}
.y52{bottom:476.802667pt;}
.y1b0{bottom:477.808000pt;}
.y20b{bottom:478.408000pt;}
.y1ef{bottom:480.000000pt;}
.y1ee{bottom:480.000812pt;}
.ye8{bottom:482.608000pt;}
.y22b{bottom:482.942667pt;}
.ya{bottom:483.533467pt;}
.y8f{bottom:487.068000pt;}
.yab{bottom:487.073333pt;}
.yca{bottom:489.409333pt;}
.y142{bottom:489.606667pt;}
.y70{bottom:490.608000pt;}
.y105{bottom:490.872000pt;}
.y194{bottom:490.941333pt;}
.y9{bottom:492.466800pt;}
.y161{bottom:493.141333pt;}
.y17b{bottom:493.474667pt;}
.y123{bottom:494.408000pt;}
.y1af{bottom:496.340000pt;}
.y20a{bottom:497.006667pt;}
.y1ed{bottom:498.600000pt;}
.y22a{bottom:500.209333pt;}
.y8{bottom:500.800133pt;}
.ye7{bottom:501.140000pt;}
.y8e{bottom:505.000000pt;}
.yaa{bottom:505.338667pt;}
.yc9{bottom:507.608000pt;}
.y141{bottom:508.273333pt;}
.y104{bottom:509.138667pt;}
.y6f{bottom:509.140000pt;}
.y7{bottom:509.466800pt;}
.y193{bottom:509.473333pt;}
.y160{bottom:511.741333pt;}
.y17a{bottom:512.006667pt;}
.y122{bottom:512.673333pt;}
.y1ce{bottom:513.006667pt;}
.y1ae{bottom:514.606667pt;}
.y209{bottom:515.206667pt;}
.y1ec{bottom:516.533333pt;}
.y6{bottom:518.066667pt;}
.y229{bottom:519.074667pt;}
.ye6{bottom:519.740000pt;}
.y8d{bottom:523.200000pt;}
.ya9{bottom:523.872000pt;}
.y51{bottom:524.469333pt;}
.y3d{bottom:524.470667pt;}
.yc8{bottom:525.806667pt;}
.y140{bottom:526.138667pt;}
.y5{bottom:526.400000pt;}
.y6e{bottom:527.073333pt;}
.y103{bottom:527.405333pt;}
.y192{bottom:528.005333pt;}
.y15f{bottom:530.008000pt;}
.y179{bottom:530.273333pt;}
.y121{bottom:531.206667pt;}
.y1cd{bottom:531.540000pt;}
.y1ad{bottom:532.805333pt;}
.y208{bottom:534.138667pt;}
.y1eb{bottom:534.400000pt;}
.y1ea{bottom:534.405333pt;}
.y4{bottom:535.333333pt;}
.y228{bottom:537.340000pt;}
.ye5{bottom:537.938667pt;}
.y8c{bottom:541.737333pt;}
.ya8{bottom:542.404000pt;}
.y3{bottom:543.666667pt;}
.y2{bottom:543.666800pt;}
.y13f{bottom:544.004000pt;}
.yc7{bottom:544.005333pt;}
.y6d{bottom:545.206667pt;}
.y102{bottom:545.604000pt;}
.y191{bottom:546.605333pt;}
.y15e{bottom:548.540000pt;}
.y120{bottom:549.472000pt;}
.y1{bottom:549.733333pt;}
.y1cc{bottom:549.805333pt;}
.y1ac{bottom:551.072000pt;}
.y207{bottom:552.337333pt;}
.y1e9{bottom:553.004000pt;}
.y227{bottom:555.540000pt;}
.ye4{bottom:556.538667pt;}
.y8b{bottom:560.004000pt;}
.yc6{bottom:561.938667pt;}
.y13e{bottom:562.604000pt;}
.y6c{bottom:563.805333pt;}
.y101{bottom:563.937333pt;}
.y190{bottom:564.872000pt;}
.y178{bottom:566.738667pt;}
.y15d{bottom:567.072000pt;}
.y3c{bottom:567.336000pt;}
.y50{bottom:567.668000pt;}
.y11f{bottom:568.004000pt;}
.y1cb{bottom:568.337333pt;}
.y1ab{bottom:569.604000pt;}
.y206{bottom:570.604000pt;}
.y1e8{bottom:571.537333pt;}
.y226{bottom:574.138667pt;}
.ye3{bottom:574.737333pt;}
.y8a{bottom:578.270667pt;}
.y13d{bottom:580.537333pt;}
.yc5{bottom:580.538667pt;}
.y100{bottom:582.136000pt;}
.y6b{bottom:582.404000pt;}
.y18f{bottom:583.404000pt;}
.y177{bottom:585.337333pt;}
.y15c{bottom:585.604000pt;}
.y11e{bottom:586.270667pt;}
.y1ca{bottom:586.604000pt;}
.y1aa{bottom:587.870667pt;}
.y205{bottom:589.136000pt;}
.y1e7{bottom:589.802667pt;}
.y225{bottom:592.337333pt;}
.ye2{bottom:593.336000pt;}
.y89{bottom:596.537333pt;}
.y13c{bottom:599.069333pt;}
.yc4{bottom:599.070667pt;}
.yff{bottom:600.334667pt;}
.y6a{bottom:601.002667pt;}
.y18e{bottom:601.936000pt;}
.y176{bottom:603.537333pt;}
.y15b{bottom:603.870667pt;}
.y11d{bottom:604.537333pt;}
.y1c9{bottom:605.136000pt;}
.y1a9{bottom:606.736000pt;}
.y59{bottom:606.746667pt;}
.y204{bottom:607.402667pt;}
.y1e6{bottom:607.736000pt;}
.y224{bottom:610.937333pt;}
.ye1{bottom:611.202667pt;}
.y88{bottom:614.402667pt;}
.y13b{bottom:617.001333pt;}
.yc3{bottom:617.337333pt;}
.yfe{bottom:618.601333pt;}
.y69{bottom:619.202667pt;}
.y4f{bottom:619.533333pt;}
.y3b{bottom:619.534667pt;}
.y18d{bottom:620.536000pt;}
.y15a{bottom:622.136000pt;}
.y11c{bottom:622.804000pt;}
.y1c8{bottom:623.402667pt;}
.y1a8{bottom:625.001333pt;}
.y4d{bottom:625.933333pt;}
.y203{bottom:625.934667pt;}
.y1e5{bottom:626.268000pt;}
.y223{bottom:629.136000pt;}
.ye0{bottom:629.801333pt;}
.y87{bottom:632.669333pt;}
.ya7{bottom:632.670667pt;}
.y13a{bottom:635.201333pt;}
.yc2{bottom:635.869333pt;}
.yfd{bottom:637.133333pt;}
.y68{bottom:637.468000pt;}
.y18c{bottom:638.734667pt;}
.y159{bottom:640.669333pt;}
.y202{bottom:641.334667pt;}
.y11b{bottom:641.336000pt;}
.y1c7{bottom:641.934667pt;}
.y1a7{bottom:643.201333pt;}
.y1e4{bottom:644.534667pt;}
.y222{bottom:647.402667pt;}
.ydf{bottom:648.668000pt;}
.y4b{bottom:649.600000pt;}
.y86{bottom:651.201333pt;}
.y4c{bottom:651.866667pt;}
.ya6{bottom:652.536000pt;}
.y139{bottom:653.466667pt;}
.yc1{bottom:654.401333pt;}
.yfc{bottom:655.400000pt;}
.y67{bottom:655.734667pt;}
.y18b{bottom:657.334667pt;}
.y158{bottom:658.934667pt;}
.y11a{bottom:659.868000pt;}
.y1c6{bottom:660.201333pt;}
.y1a6{bottom:662.133333pt;}
.y1e3{bottom:662.400000pt;}
.y3a{bottom:663.066667pt;}
.y221{bottom:665.934667pt;}
.yde{bottom:666.600000pt;}
.y85{bottom:669.800000pt;}
.ya5{bottom:670.734667pt;}
.y49{bottom:672.000000pt;}
.y4a{bottom:672.666667pt;}
.yc0{bottom:672.668000pt;}
.yfb{bottom:673.333333pt;}
.y66{bottom:674.266667pt;}
.y18a{bottom:675.866667pt;}
.y157{bottom:677.466667pt;}
.y119{bottom:678.400000pt;}
.y1c5{bottom:678.733333pt;}
.y1a5{bottom:680.333333pt;}
.y201{bottom:680.666667pt;}
.y1e2{bottom:681.000000pt;}
.yfa{bottom:681.333333pt;}
.ya3{bottom:683.533333pt;}
.y220{bottom:684.200000pt;}
.ya4{bottom:685.133333pt;}
.ybf{bottom:686.733333pt;}
.y156{bottom:687.066667pt;}
.y84{bottom:693.133333pt;}
.y138{bottom:693.466667pt;}
.y1a2{bottom:694.133333pt;}
.y175{bottom:695.066667pt;}
.y1c4{bottom:697.000000pt;}
.y1c3{bottom:698.600000pt;}
.y21e{bottom:698.933333pt;}
.y1ff{bottom:699.533333pt;}
.y48{bottom:699.534667pt;}
.y21f{bottom:702.400000pt;}
.y47{bottom:713.600000pt;}
.y58{bottom:755.533333pt;}
.y4e{bottom:759.066667pt;}
.h19{height:21.328125pt;}
.h4{height:29.994624pt;}
.hd{height:29.994792pt;}
.hc{height:30.417969pt;}
.hf{height:34.125000pt;}
.h17{height:37.437500pt;}
.h3{height:39.777344pt;}
.h8{height:40.044064pt;}
.h10{height:43.026042pt;}
.h13{height:43.838297pt;}
.h2{height:43.838542pt;}
.ha{height:46.145833pt;}
.h16{height:49.738281pt;}
.h15{height:50.593750pt;}
.h9{height:50.760133pt;}
.h5{height:50.760417pt;}
.h6{height:55.375000pt;}
.h7{height:83.062500pt;}
.he{height:85.265625pt;}
.h11{height:88.867188pt;}
.h12{height:93.195833pt;}
.h18{height:143.233787pt;}
.hb{height:206.171875pt;}
.h14{height:784.666667pt;}
.h0{height:806.400000pt;}
.h1{height:806.666667pt;}
.w3{width:567.333333pt;}
.w2{width:576.000000pt;}
.w1{width:597.333333pt;}
.w0{width:597.466667pt;}
.x0{left:0.000000pt;}
.x6d{left:4.133333pt;}
.x20{left:9.598667pt;}
.x5{left:46.401333pt;}
.x7{left:49.267613pt;}
.x16{left:58.266667pt;}
.x6{left:64.667613pt;}
.x19{left:65.933333pt;}
.x1a{left:67.533333pt;}
.xf{left:96.332000pt;}
.x6a{left:102.400000pt;}
.x6b{left:103.333320pt;}
.x66{left:104.933480pt;}
.x65{left:105.933333pt;}
.xd{left:107.186667pt;}
.x61{left:108.798667pt;}
.x17{left:111.332000pt;}
.x43{left:112.666693pt;}
.x10{left:113.598667pt;}
.x1d{left:114.545320pt;}
.x34{left:115.533333pt;}
.x4e{left:117.133347pt;}
.x4d{left:118.066680pt;}
.x4c{left:119.066680pt;}
.x1b{left:119.998667pt;}
.x4b{left:121.266667pt;}
.x59{left:130.866667pt;}
.x44{left:136.000027pt;}
.x47{left:138.266653pt;}
.x18{left:148.786667pt;}
.x5f{left:151.333200pt;}
.x60{left:152.333200pt;}
.x5b{left:153.933347pt;}
.x15{left:154.866667pt;}
.x39{left:156.479733pt;}
.x5c{left:157.466653pt;}
.x3b{left:158.413067pt;}
.x3e{left:159.333320pt;}
.x45{left:160.933307pt;}
.x32{left:162.533360pt;}
.x31{left:163.533360pt;}
.x30{left:164.466680pt;}
.x2f{left:166.066680pt;}
.x2e{left:167.066680pt;}
.x2d{left:168.333333pt;}
.x2c{left:169.266667pt;}
.x2b{left:170.266667pt;}
.x2a{left:171.533333pt;}
.x29{left:176.001320pt;}
.x3a{left:181.479733pt;}
.x3f{left:187.866667pt;}
.xa{left:194.533333pt;}
.xb{left:201.920000pt;}
.xc{left:205.120000pt;}
.x14{left:216.000000pt;}
.x22{left:225.253333pt;}
.xe{left:233.585333pt;}
.x25{left:236.466667pt;}
.x28{left:238.067987pt;}
.x52{left:240.920000pt;}
.x69{left:244.466667pt;}
.x46{left:245.733333pt;}
.x1e{left:248.333333pt;}
.x67{left:250.253333pt;}
.x53{left:251.866667pt;}
.x57{left:253.466667pt;}
.x5d{left:256.333333pt;}
.x62{left:258.533333pt;}
.x38{left:259.866667pt;}
.x4f{left:262.400000pt;}
.x64{left:265.253333pt;}
.x58{left:266.253333pt;}
.x26{left:273.586667pt;}
.x54{left:276.800000pt;}
.x27{left:277.733333pt;}
.x35{left:283.866667pt;}
.x36{left:285.720000pt;}
.x55{left:286.733333pt;}
.x68{left:294.733333pt;}
.x5e{left:296.000000pt;}
.x1f{left:296.932000pt;}
.x50{left:299.533333pt;}
.x1c{left:303.066667pt;}
.x4a{left:306.866667pt;}
.x33{left:317.733333pt;}
.x37{left:329.585333pt;}
.x23{left:340.133333pt;}
.x3c{left:343.066667pt;}
.x24{left:344.000000pt;}
.x3d{left:346.520000pt;}
.x5a{left:376.333333pt;}
.x48{left:377.933333pt;}
.x11{left:381.452000pt;}
.x12{left:386.252000pt;}
.x21{left:392.932000pt;}
.x41{left:412.466667pt;}
.x63{left:418.266667pt;}
.x13{left:430.385333pt;}
.x51{left:432.333333pt;}
.x56{left:433.266667pt;}
.x42{left:435.186667pt;}
.x40{left:472.000000pt;}
.x49{left:477.466667pt;}
.x1{left:485.133333pt;}
.x2{left:486.066680pt;}
.x3{left:511.066667pt;}
.x8{left:512.333333pt;}
.x4{left:528.333333pt;}
.x9{left:529.600000pt;}
.x6c{left:567.333333pt;}
}




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