
    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_cf2417e64ca605d9f7d0c326.woff')format("woff");}.ff1{font-family:ff1;line-height:0.730957;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_04ba9c4ea9f99b84368098e4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.716000;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_497dc3dbb275c74502ae5090.woff')format("woff");}.ff3{font-family:ff3;line-height:0.716000;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_cff1395b65cc043086f0fd69.woff')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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_b5bc2a6bfa1e9ed12e574a2f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.912308;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_f5858b9a22aa2533a401d752.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f94fc8719631bacf091e25b9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.942871;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_07744daa99873e6b917a4ffe.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a6dd120f3b1c6eb32abc4a58.woff')format("woff");}.ff9{font-family:ff9;line-height:0.939453;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_cff1395b65cc043086f0fd69.woff')format("woff");}.ffa{font-family:ffa;line-height:0.936000;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_aac0fc29114e6e8dcef8baa2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.943359;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_cff1395b65cc043086f0fd69.woff')format("woff");}.ffc{font-family:ffc;line-height:0.936000;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_4c19ded20a1888a5f70ae20b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.927734;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_dd8690031314b8c5598a41ff.woff')format("woff");}.ffe{font-family:ffe;line-height:1.078613;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_5a1dccd1f81cd302a10f6508.woff')format("woff");}.fff{font-family:fff;line-height:0.781000;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_adf47afd7bca2199fb3fb3f8.woff')format("woff");}.ff10{font-family:ff10;line-height:0.912308;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_f54b28034e87107eac28c6a2.woff')format("woff");}.ff11{font-family:ff11;line-height:0.715820;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_9bbd2464c82b9ea4c5abc13d.woff')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_cff1395b65cc043086f0fd69.woff')format("woff");}.ff13{font-family:ff13;line-height:0.936000;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_9903f32dbdad1f6787bd9e44.woff')format("woff");}.ff14{font-family:ff14;line-height:0.927734;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_afb47f7f74a75da532dd9fd5.woff')format("woff");}.ff15{font-family:ff15;line-height:1.078613;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_5a1dccd1f81cd302a10f6508.woff')format("woff");}.ff16{font-family:ff16;line-height:0.781000;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_adf47afd7bca2199fb3fb3f8.woff')format("woff");}.ff17{font-family:ff17;line-height:0.912308;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_f54b28034e87107eac28c6a2.woff')format("woff");}.ff18{font-family:ff18;line-height:0.715820;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_9bbd2464c82b9ea4c5abc13d.woff')format("woff");}.ff19{font-family:ff19;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_5a1dccd1f81cd302a10f6508.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.781000;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_adf47afd7bca2199fb3fb3f8.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.912308;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_f54b28034e87107eac28c6a2.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.715820;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_9bbd2464c82b9ea4c5abc13d.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_c67c24578d173162840eafaa.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.927734;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_4a7806f29071e5e5dbac6e43.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.078613;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_5a1dccd1f81cd302a10f6508.woff')format("woff");}.ff20{font-family:ff20;line-height:0.781000;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_cff1395b65cc043086f0fd69.woff')format("woff");}.ff21{font-family:ff21;line-height:0.936000;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_adf47afd7bca2199fb3fb3f8.woff')format("woff");}.ff22{font-family:ff22;line-height:0.912308;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_f54b28034e87107eac28c6a2.woff')format("woff");}.ff23{font-family:ff23;line-height:0.715820;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_9bbd2464c82b9ea4c5abc13d.woff')format("woff");}.ff24{font-family:ff24;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_c67c24578d173162840eafaa.woff')format("woff");}.ff25{font-family:ff25;line-height:0.927734;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_4a7806f29071e5e5dbac6e43.woff')format("woff");}.ff26{font-family:ff26;line-height:1.078613;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_5a1dccd1f81cd302a10f6508.woff')format("woff");}.ff27{font-family:ff27;line-height:0.781000;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_cff1395b65cc043086f0fd69.woff')format("woff");}.ff28{font-family:ff28;line-height:0.936000;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_adf47afd7bca2199fb3fb3f8.woff')format("woff");}.ff29{font-family:ff29;line-height:0.912308;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_f54b28034e87107eac28c6a2.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.715820;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_9bbd2464c82b9ea4c5abc13d.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_4c630ca6ba05dc36ccf1a661.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.690918;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;}
.m1{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.142000px;}
.v2{vertical-align:6.046800px;}
.v3{vertical-align:19.980600px;}
.lsc{letter-spacing:-1.650000px;}
.lsb{letter-spacing:-1.320000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.001200px;}
.ls6{letter-spacing:0.003600px;}
.lsa{letter-spacing:0.005520px;}
.ls5{letter-spacing:8.640000px;}
.ls1{letter-spacing:10.800000px;}
.ls3{letter-spacing:13.200000px;}
.ls9{letter-spacing:14.400000px;}
.ls2{letter-spacing:19.585200px;}
.ls8{letter-spacing:28.800000px;}
.ls4{letter-spacing:36.000000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-420.000000px;}
.ws20{word-spacing:-98.766600px;}
.wsc{word-spacing:-92.160000px;}
.wsb{word-spacing:-75.600000px;}
.ws3f{word-spacing:-72.479400px;}
.ws21{word-spacing:-36.180000px;}
.ws40{word-spacing:-31.680000px;}
.ws6{word-spacing:-25.812000px;}
.wsae{word-spacing:-20.016000px;}
.ws41{word-spacing:-16.680000px;}
.ws42{word-spacing:-15.012000px;}
.wsd{word-spacing:-14.520000px;}
.ws4e{word-spacing:-14.400000px;}
.ws32{word-spacing:-14.388000px;}
.ws2f{word-spacing:-14.322000px;}
.ws37{word-spacing:-13.728000px;}
.ws3d{word-spacing:-13.464000px;}
.ws15{word-spacing:-13.068000px;}
.ws7{word-spacing:-12.960000px;}
.ws26{word-spacing:-12.672000px;}
.ws33{word-spacing:-12.474000px;}
.ws2b{word-spacing:-12.342000px;}
.ws13{word-spacing:-12.078000px;}
.ws18{word-spacing:-11.748000px;}
.ws29{word-spacing:-11.550000px;}
.ws17{word-spacing:-11.352000px;}
.ws2e{word-spacing:-11.286000px;}
.wse{word-spacing:-11.154000px;}
.ws1c{word-spacing:-11.088000px;}
.ws3a{word-spacing:-10.758000px;}
.ws19{word-spacing:-10.428000px;}
.ws38{word-spacing:-10.362000px;}
.ws10{word-spacing:-9.570000px;}
.ws22{word-spacing:-9.438000px;}
.wsf{word-spacing:-9.372000px;}
.ws30{word-spacing:-8.844000px;}
.ws25{word-spacing:-8.514000px;}
.ws2c{word-spacing:-8.316000px;}
.ws36{word-spacing:-8.250000px;}
.ws24{word-spacing:-7.986000px;}
.ws31{word-spacing:-7.722000px;}
.ws1b{word-spacing:-7.128000px;}
.ws14{word-spacing:-6.996000px;}
.ws23{word-spacing:-6.534000px;}
.ws11{word-spacing:-5.874000px;}
.ws97{word-spacing:-5.580000px;}
.wsa1{word-spacing:-5.520000px;}
.ws27{word-spacing:-5.346000px;}
.ws3b{word-spacing:-5.214000px;}
.ws59{word-spacing:-4.860000px;}
.ws2d{word-spacing:-4.818000px;}
.ws8e{word-spacing:-4.800000px;}
.ws7a{word-spacing:-4.680000px;}
.ws2a{word-spacing:-4.422000px;}
.ws34{word-spacing:-4.224000px;}
.ws50{word-spacing:-3.960000px;}
.ws9f{word-spacing:-3.900000px;}
.ws16{word-spacing:-3.894000px;}
.ws8f{word-spacing:-3.660000px;}
.ws57{word-spacing:-3.600000px;}
.ws3c{word-spacing:-3.498000px;}
.ws39{word-spacing:-3.432000px;}
.ws9b{word-spacing:-3.300000px;}
.ws69{word-spacing:-3.060000px;}
.ws68{word-spacing:-2.880000px;}
.ws28{word-spacing:-2.640000px;}
.ws86{word-spacing:-2.496000px;}
.ws84{word-spacing:-2.400000px;}
.ws1d{word-spacing:-2.376000px;}
.ws2{word-spacing:-2.220000px;}
.ws4c{word-spacing:-2.178000px;}
.ws1a{word-spacing:-2.046000px;}
.ws3{word-spacing:-1.998000px;}
.ws65{word-spacing:-1.860000px;}
.ws83{word-spacing:-1.800000px;}
.ws1e{word-spacing:-1.782000px;}
.ws12{word-spacing:-1.776000px;}
.ws4b{word-spacing:-1.512000px;}
.ws45{word-spacing:-1.080000px;}
.ws4{word-spacing:-0.972000px;}
.ws35{word-spacing:-0.864000px;}
.ws89{word-spacing:-0.600000px;}
.ws7e{word-spacing:-0.540000px;}
.ws4f{word-spacing:-0.300000px;}
.ws1{word-spacing:0.000000px;}
.ws8a{word-spacing:0.300000px;}
.ws79{word-spacing:0.420000px;}
.ws91{word-spacing:0.600000px;}
.ws6c{word-spacing:0.660000px;}
.ws48{word-spacing:0.756000px;}
.ws70{word-spacing:0.900000px;}
.ws60{word-spacing:1.140000px;}
.ws9e{word-spacing:1.560000px;}
.ws99{word-spacing:2.040000px;}
.ws62{word-spacing:2.400000px;}
.wsa9{word-spacing:2.592000px;}
.ws94{word-spacing:2.760000px;}
.ws98{word-spacing:2.940000px;}
.ws51{word-spacing:3.000000px;}
.ws58{word-spacing:3.060000px;}
.ws7c{word-spacing:3.360000px;}
.ws85{word-spacing:3.480000px;}
.ws4a{word-spacing:3.780000px;}
.wsa5{word-spacing:3.900000px;}
.ws7b{word-spacing:4.080000px;}
.ws92{word-spacing:4.560000px;}
.ws5f{word-spacing:4.980000px;}
.ws46{word-spacing:5.346000px;}
.ws80{word-spacing:5.400000px;}
.wsa6{word-spacing:5.724000px;}
.ws6e{word-spacing:5.760000px;}
.ws52{word-spacing:5.880000px;}
.ws76{word-spacing:5.940000px;}
.ws54{word-spacing:6.060000px;}
.ws6d{word-spacing:6.120000px;}
.ws67{word-spacing:6.360000px;}
.ws64{word-spacing:6.720000px;}
.ws90{word-spacing:6.780000px;}
.ws49{word-spacing:6.858000px;}
.ws95{word-spacing:6.960000px;}
.ws6b{word-spacing:7.560000px;}
.ws5a{word-spacing:7.620000px;}
.ws55{word-spacing:7.980000px;}
.ws74{word-spacing:8.820000px;}
.ws66{word-spacing:9.180000px;}
.ws9a{word-spacing:9.240000px;}
.ws43{word-spacing:9.288000px;}
.ws5e{word-spacing:9.360000px;}
.ws96{word-spacing:9.720000px;}
.ws56{word-spacing:9.780000px;}
.ws9c{word-spacing:10.260000px;}
.ws73{word-spacing:10.320000px;}
.ws5b{word-spacing:10.560000px;}
.ws88{word-spacing:11.280000px;}
.ws8d{word-spacing:11.640000px;}
.ws87{word-spacing:11.760000px;}
.wsa4{word-spacing:11.820000px;}
.ws8b{word-spacing:12.240000px;}
.wsac{word-spacing:12.312000px;}
.ws5c{word-spacing:12.480000px;}
.wsab{word-spacing:12.690000px;}
.ws78{word-spacing:12.780000px;}
.ws7f{word-spacing:13.020000px;}
.ws6f{word-spacing:13.380000px;}
.ws9d{word-spacing:14.340000px;}
.wsaa{word-spacing:15.228000px;}
.ws53{word-spacing:15.300000px;}
.wsa8{word-spacing:16.578000px;}
.ws63{word-spacing:16.860000px;}
.wsa0{word-spacing:16.980000px;}
.ws44{word-spacing:17.010000px;}
.ws8c{word-spacing:17.040000px;}
.ws75{word-spacing:17.220000px;}
.ws61{word-spacing:17.940000px;}
.ws5d{word-spacing:18.000000px;}
.wsa2{word-spacing:18.180000px;}
.ws82{word-spacing:19.380000px;}
.ws81{word-spacing:19.800000px;}
.ws72{word-spacing:20.040000px;}
.ws6a{word-spacing:20.280000px;}
.ws8{word-spacing:20.574000px;}
.ws47{word-spacing:21.006000px;}
.ws7d{word-spacing:21.240000px;}
.wsad{word-spacing:21.708000px;}
.wsa7{word-spacing:23.328000px;}
.ws71{word-spacing:23.340000px;}
.wsa3{word-spacing:23.520000px;}
.ws93{word-spacing:23.880000px;}
.ws77{word-spacing:26.820000px;}
.ws9{word-spacing:41.597400px;}
.wsa{word-spacing:41.633400px;}
.ws4d{word-spacing:79.594800px;}
.ws1f{word-spacing:81.017400px;}
.ws5{word-spacing:101.888400px;}
.ws3e{word-spacing:107.243400px;}
._f{margin-left:-2067.096000px;}
._35{margin-left:-1881.693600px;}
._2c{margin-left:-1721.301600px;}
._2a{margin-left:-1718.806800px;}
._3e{margin-left:-1698.882600px;}
._33{margin-left:-1597.708200px;}
._37{margin-left:-1537.439400px;}
._24{margin-left:-1473.690000px;}
._2e{margin-left:-1406.215800px;}
._26{margin-left:-1348.122600px;}
._7{margin-left:-1344.388800px;}
._42{margin-left:-1325.889000px;}
._2f{margin-left:-1314.353400px;}
._16{margin-left:-1272.573000px;}
._d{margin-left:-1238.490600px;}
._31{margin-left:-1212.406200px;}
._28{margin-left:-1194.318600px;}
._11{margin-left:-1134.312600px;}
._b{margin-left:-1121.347800px;}
._29{margin-left:-1086.210000px;}
._3a{margin-left:-1072.250400px;}
._1b{margin-left:-1068.670800px;}
._13{margin-left:-1065.258000px;}
._8{margin-left:-1053.270000px;}
._1d{margin-left:-1029.294000px;}
._9{margin-left:-998.220000px;}
._14{margin-left:-951.156000px;}
._34{margin-left:-937.422000px;}
._22{margin-left:-927.258600px;}
._10{margin-left:-924.264000px;}
._20{margin-left:-915.300000px;}
._17{margin-left:-897.210000px;}
._41{margin-left:-891.096000px;}
._3d{margin-left:-882.966000px;}
._1f{margin-left:-878.310000px;}
._12{margin-left:-861.192000px;}
._3b{margin-left:-858.276000px;}
._19{margin-left:-853.032000px;}
._30{margin-left:-840.294000px;}
._1a{margin-left:-838.440000px;}
._c{margin-left:-813.078000px;}
._15{margin-left:-796.932000px;}
._21{margin-left:-786.240000px;}
._1c{margin-left:-782.130000px;}
._1e{margin-left:-775.422000px;}
._32{margin-left:-767.210400px;}
._3f{margin-left:-762.156000px;}
._23{margin-left:-724.446000px;}
._39{margin-left:-705.240000px;}
._2b{margin-left:-696.222000px;}
._6{margin-left:-693.252000px;}
._3c{margin-left:-609.336000px;}
._5{margin-left:-571.860000px;}
._40{margin-left:-563.239800px;}
._0{margin-left:-508.577400px;}
._18{margin-left:-480.864000px;}
._2d{margin-left:-441.126000px;}
._e{margin-left:-399.114000px;}
._27{margin-left:-389.048400px;}
._38{margin-left:-378.162000px;}
._36{margin-left:-366.120000px;}
._25{margin-left:-264.060000px;}
._48{margin-left:-13.186800px;}
._43{margin-left:-10.800000px;}
._4a{margin-left:-8.923800px;}
._a{margin-left:-6.993000px;}
._44{margin-left:-5.940600px;}
._3{margin-left:-4.017600px;}
._2{margin-left:-2.220000px;}
._4{margin-left:-1.043400px;}
._49{width:1.015200px;}
._1{width:2.196000px;}
._4b{width:3.608400px;}
._4e{width:5.716200px;}
._4c{width:6.926400px;}
._47{width:8.532000px;}
._46{width:10.492200px;}
._50{width:12.054600px;}
._4f{width:13.132800px;}
._52{width:17.826000px;}
._45{width:20.593200px;}
._51{width:36.828000px;}
._54{width:59.007000px;}
._53{width:81.504000px;}
._55{width:135.702000px;}
._4d{width:231.586200px;}
.fcc{color:rgb(105,198,71);}
.fcb{color:rgb(246,131,19);}
.fc8{color:rgb(47,92,179);}
.fc7{color:rgb(210,32,39);}
.fc9{color:rgb(90,198,243);}
.fc5{color:rgb(61,123,199);}
.fca{color:rgb(0,0,0);}
.fc6{color:rgb(48,169,64);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(35,31,32);}
.fc2{color:transparent;}
.fc1{color:rgb(217,182,26);}
.fc0{color:rgb(213,185,16);}
.fsc{font-size:34.980000px;}
.fsa{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fsd{font-size:126.000000px;}
.fsb{font-size:144.000000px;}
.fs8{font-size:180.000000px;}
.fs9{font-size:288.000000px;}
.fs2{font-size:300.000000px;}
.fs0{font-size:300.112800px;}
.fs3{font-size:420.000000px;}
.fs1{font-size:420.157800px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.509250px;}
.y3{bottom:72.957000px;}
.y5{bottom:83.368950px;}
.y6{bottom:83.904450px;}
.y36{bottom:84.471900px;}
.y9e{bottom:85.007400px;}
.y35{bottom:127.558950px;}
.y5d{bottom:127.559100px;}
.y18b{bottom:127.559250px;}
.y165{bottom:128.326500px;}
.y61{bottom:135.315750px;}
.y18a{bottom:141.959250px;}
.y19e{bottom:142.136550px;}
.y6c{bottom:142.600050px;}
.y129{bottom:144.639300px;}
.y164{bottom:146.326500px;}
.y34{bottom:146.811000px;}
.y5c{bottom:148.011000px;}
.y105{bottom:149.817750px;}
.y60{bottom:151.515750px;}
.y19d{bottom:160.136550px;}
.y6b{bottom:160.600050px;}
.y128{bottom:162.639300px;}
.y104{bottom:164.217750px;}
.y163{bottom:164.326500px;}
.y33{bottom:166.062900px;}
.y5f{bottom:167.715750px;}
.y1c1{bottom:168.215100px;}
.y5b{bottom:168.463050px;}
.yd0{bottom:174.904350px;}
.y19c{bottom:178.136550px;}
.y6a{bottom:178.600050px;}
.y162{bottom:182.326500px;}
.y5e{bottom:183.915750px;}
.y1c0{bottom:184.415100px;}
.y32{bottom:185.314950px;}
.y189{bottom:186.815100px;}
.y103{bottom:188.269650px;}
.y5a{bottom:188.914950px;}
.y127{bottom:189.143250px;}
.ycf{bottom:189.304350px;}
.y19b{bottom:196.136550px;}
.y69{bottom:196.600050px;}
.y161{bottom:200.326500px;}
.y1bf{bottom:200.615100px;}
.y102{bottom:202.669650px;}
.y31{bottom:204.566850px;}
.y188{bottom:204.815100px;}
.y126{bottom:207.143250px;}
.yce{bottom:209.104350px;}
.y59{bottom:209.366850px;}
.y19a{bottom:214.136550px;}
.y68{bottom:214.600050px;}
.y1be{bottom:216.815250px;}
.y187{bottom:222.815100px;}
.y30{bottom:223.818900px;}
.y9d{bottom:224.493600px;}
.y125{bottom:225.143250px;}
.y101{bottom:226.721700px;}
.y160{bottom:226.830450px;}
.y58{bottom:229.818900px;}
.y199{bottom:232.136550px;}
.y67{bottom:232.600050px;}
.y1bd{bottom:233.015100px;}
.ycd{bottom:233.156400px;}
.y186{bottom:240.815100px;}
.y100{bottom:241.121550px;}
.y2f{bottom:243.070800px;}
.y124{bottom:243.143250px;}
.y9c{bottom:244.945650px;}
.ycc{bottom:247.556250px;}
.y1bc{bottom:249.215100px;}
.y198{bottom:250.136550px;}
.y57{bottom:250.270800px;}
.y66{bottom:250.600050px;}
.y1c3{bottom:253.855950px;}
.y185{bottom:258.815100px;}
.y123{bottom:261.143250px;}
.y2e{bottom:262.322700px;}
.yff{bottom:265.173600px;}
.y9b{bottom:265.397550px;}
.y1bb{bottom:265.415100px;}
.y15f{bottom:266.430450px;}
.ycb{bottom:267.356250px;}
.y197{bottom:268.136550px;}
.y65{bottom:268.600050px;}
.y56{bottom:270.722850px;}
.y1c2{bottom:271.855950px;}
.y184{bottom:276.815100px;}
.yfe{bottom:279.573600px;}
.y2d{bottom:281.574750px;}
.y1ba{bottom:281.615100px;}
.y15e{bottom:284.430450px;}
.y9a{bottom:285.849600px;}
.y55{bottom:291.174750px;}
.yca{bottom:291.408300px;}
.y183{bottom:294.815100px;}
.y64{bottom:295.104000px;}
.y1b9{bottom:297.815250px;}
.yfd{bottom:299.373600px;}
.y2c{bottom:300.826650px;}
.y15d{bottom:302.430450px;}
.y196{bottom:304.136550px;}
.y122{bottom:305.132100px;}
.y1d9{bottom:305.730000px;}
.yc9{bottom:305.808300px;}
.y99{bottom:306.301500px;}
.y54{bottom:311.626800px;}
.y182{bottom:312.815100px;}
.y63{bottom:313.104000px;}
.y1b8{bottom:314.015100px;}
.y2b{bottom:320.078700px;}
.y15c{bottom:320.430450px;}
.y195{bottom:322.136550px;}
.y121{bottom:323.132100px;}
.yfc{bottom:323.425500px;}
.y1d8{bottom:325.530000px;}
.yc8{bottom:325.608300px;}
.y98{bottom:326.753550px;}
.y1b7{bottom:330.215100px;}
.y181{bottom:330.815100px;}
.y53{bottom:332.078700px;}
.yfb{bottom:337.825500px;}
.y15b{bottom:338.430450px;}
.y2a{bottom:339.330600px;}
.y62{bottom:339.607950px;}
.y1d7{bottom:345.330000px;}
.y1b6{bottom:346.415100px;}
.y97{bottom:347.205450px;}
.y180{bottom:348.815100px;}
.y120{bottom:349.636050px;}
.yc7{bottom:349.660200px;}
.y52{bottom:352.530600px;}
.y15a{bottom:356.430450px;}
.yfa{bottom:357.625650px;}
.y29{bottom:358.582650px;}
.y1b5{bottom:362.615100px;}
.yc6{bottom:364.060200px;}
.y1d6{bottom:365.130000px;}
.y17f{bottom:366.815100px;}
.y11f{bottom:367.636050px;}
.y96{bottom:367.657500px;}
.y51{bottom:372.982650px;}
.y159{bottom:374.430450px;}
.y28{bottom:377.834550px;}
.y1b4{bottom:378.815250px;}
.yf9{bottom:381.677550px;}
.y17e{bottom:384.815100px;}
.y1d5{bottom:384.930000px;}
.y11e{bottom:385.636050px;}
.y95{bottom:388.109400px;}
.yc5{bottom:388.112250px;}
.y158{bottom:392.430450px;}
.y50{bottom:393.434550px;}
.y1b3{bottom:395.015100px;}
.yf8{bottom:396.077550px;}
.y27{bottom:397.086600px;}
.yc4{bottom:402.512250px;}
.y11d{bottom:403.636050px;}
.y94{bottom:408.561450px;}
.y157{bottom:410.430450px;}
.y1b2{bottom:411.215100px;}
.y4f{bottom:413.886600px;}
.y26{bottom:416.338500px;}
.yf7{bottom:420.129450px;}
.y17d{bottom:420.815100px;}
.y11c{bottom:421.636050px;}
.yc3{bottom:422.312250px;}
.y1b1{bottom:427.415100px;}
.y156{bottom:428.430450px;}
.y93{bottom:429.013350px;}
.y1ce{bottom:432.045300px;}
.y4e{bottom:434.338500px;}
.yf6{bottom:434.529450px;}
.y25{bottom:435.590400px;}
.y17c{bottom:438.815100px;}
.y1b0{bottom:443.615100px;}
.yc2{bottom:446.364150px;}
.y155{bottom:446.430450px;}
.y92{bottom:449.465400px;}
.y1cd{bottom:451.845300px;}
.yf5{bottom:454.329450px;}
.y4d{bottom:454.790550px;}
.y24{bottom:454.842450px;}
.y1af{bottom:459.815100px;}
.yc1{bottom:460.764150px;}
.y154{bottom:464.430450px;}
.y11b{bottom:465.624900px;}
.y91{bottom:469.917300px;}
.y1cc{bottom:471.645300px;}
.y23{bottom:474.094500px;}
.y4c{bottom:475.242450px;}
.yf4{bottom:478.381500px;}
.yc0{bottom:480.564300px;}
.y153{bottom:482.430450px;}
.y11a{bottom:483.624900px;}
.y90{bottom:490.369200px;}
.yf3{bottom:492.781500px;}
.y22{bottom:493.346400px;}
.y1ae{bottom:494.015100px;}
.y4b{bottom:495.694500px;}
.y152{bottom:500.430450px;}
.ybf{bottom:504.616200px;}
.y119{bottom:510.128850px;}
.y8f{bottom:510.821250px;}
.y1ad{bottom:512.015100px;}
.y21{bottom:512.598300px;}
.y4a{bottom:516.146400px;}
.yf2{bottom:516.833400px;}
.y151{bottom:518.430450px;}
.y1d4{bottom:518.760750px;}
.ybe{bottom:519.016200px;}
.y118{bottom:528.128850px;}
.y1ac{bottom:530.015100px;}
.yf1{bottom:531.233400px;}
.y8e{bottom:531.273150px;}
.y20{bottom:531.850350px;}
.y150{bottom:536.430450px;}
.y49{bottom:536.598450px;}
.y1d3{bottom:538.560750px;}
.ybd{bottom:538.816200px;}
.y117{bottom:546.128850px;}
.y1ab{bottom:548.015100px;}
.yf0{bottom:551.033400px;}
.y1f{bottom:551.102400px;}
.y8d{bottom:551.725200px;}
.y14f{bottom:554.430450px;}
.y48{bottom:557.050350px;}
.y1d2{bottom:558.360600px;}
.ybc{bottom:562.868250px;}
.y116{bottom:564.128850px;}
.y1aa{bottom:566.015100px;}
.y1e{bottom:570.354300px;}
.y14e{bottom:572.430450px;}
.yef{bottom:575.085450px;}
.ybb{bottom:577.268100px;}
.y47{bottom:577.502400px;}
.y1d1{bottom:578.160750px;}
.y115{bottom:582.128850px;}
.y1a9{bottom:584.015100px;}
.yee{bottom:589.485450px;}
.y1d{bottom:589.606200px;}
.y14d{bottom:590.430450px;}
.y8c{bottom:594.452400px;}
.yba{bottom:597.068100px;}
.y46{bottom:597.954300px;}
.y1d0{bottom:597.960600px;}
.y1a8{bottom:602.015100px;}
.y14c{bottom:608.430450px;}
.y1c{bottom:608.858250px;}
.yed{bottom:609.285450px;}
.y8b{bottom:613.704300px;}
.y1cf{bottom:617.760750px;}
.y45{bottom:618.406200px;}
.y1a7{bottom:620.015100px;}
.yb9{bottom:621.120150px;}
.y14b{bottom:626.430450px;}
.y1b{bottom:628.110150px;}
.y8a{bottom:632.956350px;}
.yec{bottom:633.337350px;}
.yb8{bottom:635.520150px;}
.y1a6{bottom:638.015100px;}
.y44{bottom:638.858250px;}
.y194{bottom:640.591050px;}
.y14a{bottom:644.430450px;}
.y1a{bottom:647.362200px;}
.yeb{bottom:647.737350px;}
.y12f{bottom:650.727750px;}
.y89{bottom:652.208250px;}
.yb7{bottom:655.320150px;}
.y1a5{bottom:656.015100px;}
.y193{bottom:658.591050px;}
.y43{bottom:659.310150px;}
.y149{bottom:662.430450px;}
.y19{bottom:666.614100px;}
.yea{bottom:667.537350px;}
.y12e{bottom:670.527750px;}
.y114{bottom:670.837500px;}
.y88{bottom:671.460300px;}
.y1a4{bottom:674.015100px;}
.y192{bottom:676.591050px;}
.y1cb{bottom:677.952450px;}
.yb6{bottom:679.372050px;}
.y42{bottom:679.762200px;}
.y148{bottom:680.430450px;}
.y18{bottom:685.866000px;}
.y12d{bottom:690.327750px;}
.y113{bottom:690.637500px;}
.y87{bottom:690.712350px;}
.ye9{bottom:691.589250px;}
.y1a3{bottom:692.015100px;}
.yb5{bottom:693.772050px;}
.y191{bottom:694.591050px;}
.y1ca{bottom:697.752450px;}
.y147{bottom:698.430450px;}
.y41{bottom:700.214100px;}
.y17{bottom:705.118050px;}
.ye8{bottom:705.989250px;}
.y86{bottom:709.964250px;}
.y1a2{bottom:710.015100px;}
.y12c{bottom:710.127750px;}
.y112{bottom:710.437500px;}
.y190{bottom:712.591050px;}
.yb4{bottom:713.572050px;}
.y146{bottom:716.430450px;}
.y1c9{bottom:717.552450px;}
.y40{bottom:720.666150px;}
.y16{bottom:724.369950px;}
.ye7{bottom:725.789400px;}
.y1a1{bottom:728.015100px;}
.y85{bottom:729.216150px;}
.y12b{bottom:729.927750px;}
.y111{bottom:730.237500px;}
.y18f{bottom:730.591050px;}
.y1c8{bottom:737.352450px;}
.yb3{bottom:737.624100px;}
.y3f{bottom:741.118050px;}
.y145{bottom:742.934400px;}
.y15{bottom:743.622000px;}
.y17b{bottom:746.015100px;}
.y84{bottom:748.468200px;}
.y18e{bottom:748.591050px;}
.y12a{bottom:749.727750px;}
.ye6{bottom:749.841300px;}
.y110{bottom:750.037500px;}
.yb2{bottom:752.024100px;}
.y2{bottom:754.869900px;}
.y4{bottom:755.061000px;}
.y3e{bottom:761.570100px;}
.y14{bottom:762.873900px;}
.y17a{bottom:764.015100px;}
.ye5{bottom:764.241300px;}
.y1c4{bottom:766.563300px;}
.y83{bottom:767.720100px;}
.yb1{bottom:776.076000px;}
.y179{bottom:782.015100px;}
.y3d{bottom:782.022000px;}
.y13{bottom:782.125950px;}
.y144{bottom:782.534400px;}
.ye4{bottom:784.041300px;}
.y18d{bottom:784.591050px;}
.y82{bottom:786.972150px;}
.yb0{bottom:790.476000px;}
.y178{bottom:800.015100px;}
.y143{bottom:800.534400px;}
.y12{bottom:801.378000px;}
.y3c{bottom:802.474050px;}
.y18c{bottom:802.591050px;}
.y1c7{bottom:805.427700px;}
.y81{bottom:806.224050px;}
.ye3{bottom:808.093350px;}
.yaf{bottom:814.528050px;}
.y177{bottom:818.015100px;}
.y142{bottom:818.534400px;}
.y11{bottom:820.629900px;}
.ye2{bottom:822.493350px;}
.y3b{bottom:822.925950px;}
.y80{bottom:825.476100px;}
.yae{bottom:828.928050px;}
.y1c6{bottom:835.531800px;}
.y176{bottom:836.015100px;}
.y141{bottom:836.534400px;}
.y10{bottom:839.881950px;}
.y10d{bottom:842.293200px;}
.y3a{bottom:843.378000px;}
.y7f{bottom:844.728000px;}
.ye1{bottom:846.545250px;}
.yad{bottom:852.979950px;}
.y175{bottom:854.015100px;}
.y140{bottom:854.534400px;}
.yf{bottom:859.133850px;}
.ye0{bottom:860.945250px;}
.y39{bottom:863.829900px;}
.y7e{bottom:863.980050px;}
.y1c5{bottom:865.635750px;}
.y10c{bottom:866.345250px;}
.yac{bottom:867.379950px;}
.y1a0{bottom:872.015100px;}
.y13f{bottom:872.534400px;}
.y174{bottom:880.519050px;}
.ydf{bottom:880.745250px;}
.y7d{bottom:883.232100px;}
.y38{bottom:884.281800px;}
.yab{bottom:887.179950px;}
.y13e{bottom:890.534400px;}
.y19f{bottom:898.519050px;}
.yc{bottom:903.943050px;}
.y37{bottom:904.733850px;}
.yde{bottom:904.797150px;}
.y13d{bottom:908.534400px;}
.yaa{bottom:911.232000px;}
.y7c{bottom:914.243400px;}
.ydd{bottom:919.197300px;}
.y173{bottom:920.119050px;}
.yb{bottom:921.943050px;}
.ya9{bottom:925.632000px;}
.y13c{bottom:926.534400px;}
.y7b{bottom:933.495300px;}
.y172{bottom:938.119050px;}
.y10b{bottom:938.997300px;}
.ydc{bottom:943.249200px;}
.y13b{bottom:944.534400px;}
.ya{bottom:948.446850px;}
.ya8{bottom:949.683900px;}
.y7a{bottom:952.747350px;}
.y171{bottom:956.119050px;}
.ydb{bottom:957.649200px;}
.y13a{bottom:962.534400px;}
.y10a{bottom:963.049200px;}
.ya7{bottom:964.083900px;}
.y9{bottom:966.446850px;}
.y79{bottom:971.999250px;}
.y170{bottom:974.119050px;}
.yda{bottom:977.449200px;}
.y139{bottom:980.534400px;}
.ya6{bottom:983.883900px;}
.ye{bottom:987.166650px;}
.y78{bottom:991.251300px;}
.y16f{bottom:992.119050px;}
.y8{bottom:992.950800px;}
.y109{bottom:997.249200px;}
.y138{bottom:998.534400px;}
.yd9{bottom:1001.501100px;}
.ya5{bottom:1007.935950px;}
.yd{bottom:1008.766800px;}
.y16e{bottom:1010.119050px;}
.y77{bottom:1010.503200px;}
.y7{bottom:1010.950800px;}
.yd8{bottom:1015.901250px;}
.y137{bottom:1016.534400px;}
.y108{bottom:1021.301100px;}
.ya4{bottom:1022.335950px;}
.y16d{bottom:1028.119050px;}
.y76{bottom:1029.755100px;}
.y136{bottom:1034.534400px;}
.yd7{bottom:1035.701100px;}
.y16c{bottom:1046.119050px;}
.ya3{bottom:1046.387850px;}
.y75{bottom:1049.007150px;}
.y135{bottom:1052.534400px;}
.y107{bottom:1055.501100px;}
.yd6{bottom:1059.753150px;}
.ya2{bottom:1060.787850px;}
.y16b{bottom:1064.119050px;}
.y74{bottom:1068.259050px;}
.y134{bottom:1070.534400px;}
.yd5{bottom:1074.153150px;}
.y106{bottom:1079.553150px;}
.y16a{bottom:1082.119050px;}
.y73{bottom:1087.511100px;}
.y133{bottom:1088.534400px;}
.y10f{bottom:1093.837500px;}
.yd4{bottom:1093.953150px;}
.y169{bottom:1100.119050px;}
.y132{bottom:1106.534400px;}
.y72{bottom:1106.763000px;}
.ya1{bottom:1109.035500px;}
.yd3{bottom:1118.005050px;}
.y168{bottom:1118.119050px;}
.y131{bottom:1124.534400px;}
.y71{bottom:1126.015050px;}
.yd2{bottom:1132.405050px;}
.y167{bottom:1136.119050px;}
.y10e{bottom:1137.037500px;}
.y70{bottom:1145.267100px;}
.y130{bottom:1151.038350px;}
.yd1{bottom:1152.205050px;}
.y166{bottom:1154.119050px;}
.y6f{bottom:1164.518850px;}
.y6e{bottom:1183.770900px;}
.y9f{bottom:1201.511100px;}
.ya0{bottom:1203.022800px;}
.y6d{bottom:1203.022950px;}
.h16{height:34.945312px;}
.h22{height:34.992188px;}
.h18{height:35.156250px;}
.h7{height:39.312000px;}
.hb{height:39.313477px;}
.hc{height:39.366211px;}
.h6{height:39.474000px;}
.hd{height:39.550781px;}
.hf{height:39.577148px;}
.he{height:41.454000px;}
.h21{height:42.568359px;}
.h8{height:43.681641px;}
.h1d{height:43.740234px;}
.h9{height:43.945312px;}
.h1f{height:43.974609px;}
.h20{height:45.481157px;}
.h15{height:46.825195px;}
.h1c{height:48.049805px;}
.h10{height:48.114258px;}
.h11{height:48.372070px;}
.h1e{height:51.082031px;}
.ha{height:52.417969px;}
.h24{height:52.488281px;}
.h13{height:52.560000px;}
.h17{height:57.169922px;}
.h23{height:85.148438px;}
.h1b{height:102.164062px;}
.h1a{height:124.734375px;}
.h12{height:155.917969px;}
.h19{height:155.918569px;}
.h14{height:204.328125px;}
.h4{height:215.625000px;}
.h2{height:215.706075px;}
.h5{height:297.360000px;}
.h3{height:297.471722px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:43.643400px;}
.x9{left:68.031450px;}
.x1b{left:72.776850px;}
.x18{left:82.227600px;}
.x2b{left:88.116150px;}
.x2e{left:93.945150px;}
.x2d{left:94.968300px;}
.x5{left:96.944850px;}
.x2f{left:98.654250px;}
.x1e{left:102.744600px;}
.xa{left:104.598450px;}
.x14{left:106.299150px;}
.x4{left:108.374100px;}
.x1a{left:110.551200px;}
.x25{left:127.559100px;}
.x1d{left:140.314950px;}
.x3{left:142.368300px;}
.x31{left:168.038400px;}
.x2a{left:178.582650px;}
.x36{left:198.173850px;}
.x30{left:201.950550px;}
.x1c{left:208.346400px;}
.x37{left:212.393850px;}
.x19{left:215.016000px;}
.x35{left:218.645850px;}
.x38{left:226.428600px;}
.x26{left:256.507650px;}
.x17{left:280.629900px;}
.x2c{left:299.518350px;}
.x32{left:315.243300px;}
.x27{left:338.333850px;}
.x29{left:356.685300px;}
.x33{left:359.700600px;}
.x34{left:369.487800px;}
.x28{left:431.956950px;}
.x7{left:449.685600px;}
.x8{left:511.976100px;}
.x20{left:563.787750px;}
.xf{left:581.778450px;}
.xb{left:596.738100px;}
.x12{left:599.176800px;}
.xe{left:605.154750px;}
.x6{left:611.421900px;}
.x10{left:612.957600px;}
.xc{left:617.239800px;}
.x24{left:619.752450px;}
.x21{left:621.429750px;}
.xd{left:634.041900px;}
.x11{left:652.837950px;}
.x13{left:656.048550px;}
.x1f{left:661.345650px;}
.x22{left:683.971200px;}
.x23{left:697.323300px;}
.x1{left:705.924150px;}
.x16{left:776.033700px;}
.x15{left:855.139050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.904000pt;}
.v2{vertical-align:5.374933pt;}
.v3{vertical-align:17.760533pt;}
.lsc{letter-spacing:-1.466667pt;}
.lsb{letter-spacing:-1.173333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.001067pt;}
.ls6{letter-spacing:0.003200pt;}
.lsa{letter-spacing:0.004907pt;}
.ls5{letter-spacing:7.680000pt;}
.ls1{letter-spacing:9.600000pt;}
.ls3{letter-spacing:11.733333pt;}
.ls9{letter-spacing:12.800000pt;}
.ls2{letter-spacing:17.409067pt;}
.ls8{letter-spacing:25.600000pt;}
.ls4{letter-spacing:32.000000pt;}
.ws0{word-spacing:-373.333333pt;}
.ws20{word-spacing:-87.792533pt;}
.wsc{word-spacing:-81.920000pt;}
.wsb{word-spacing:-67.200000pt;}
.ws3f{word-spacing:-64.426133pt;}
.ws21{word-spacing:-32.160000pt;}
.ws40{word-spacing:-28.160000pt;}
.ws6{word-spacing:-22.944000pt;}
.wsae{word-spacing:-17.792000pt;}
.ws41{word-spacing:-14.826667pt;}
.ws42{word-spacing:-13.344000pt;}
.wsd{word-spacing:-12.906667pt;}
.ws4e{word-spacing:-12.800000pt;}
.ws32{word-spacing:-12.789333pt;}
.ws2f{word-spacing:-12.730667pt;}
.ws37{word-spacing:-12.202667pt;}
.ws3d{word-spacing:-11.968000pt;}
.ws15{word-spacing:-11.616000pt;}
.ws7{word-spacing:-11.520000pt;}
.ws26{word-spacing:-11.264000pt;}
.ws33{word-spacing:-11.088000pt;}
.ws2b{word-spacing:-10.970667pt;}
.ws13{word-spacing:-10.736000pt;}
.ws18{word-spacing:-10.442667pt;}
.ws29{word-spacing:-10.266667pt;}
.ws17{word-spacing:-10.090667pt;}
.ws2e{word-spacing:-10.032000pt;}
.wse{word-spacing:-9.914667pt;}
.ws1c{word-spacing:-9.856000pt;}
.ws3a{word-spacing:-9.562667pt;}
.ws19{word-spacing:-9.269333pt;}
.ws38{word-spacing:-9.210667pt;}
.ws10{word-spacing:-8.506667pt;}
.ws22{word-spacing:-8.389333pt;}
.wsf{word-spacing:-8.330667pt;}
.ws30{word-spacing:-7.861333pt;}
.ws25{word-spacing:-7.568000pt;}
.ws2c{word-spacing:-7.392000pt;}
.ws36{word-spacing:-7.333333pt;}
.ws24{word-spacing:-7.098667pt;}
.ws31{word-spacing:-6.864000pt;}
.ws1b{word-spacing:-6.336000pt;}
.ws14{word-spacing:-6.218667pt;}
.ws23{word-spacing:-5.808000pt;}
.ws11{word-spacing:-5.221333pt;}
.ws97{word-spacing:-4.960000pt;}
.wsa1{word-spacing:-4.906667pt;}
.ws27{word-spacing:-4.752000pt;}
.ws3b{word-spacing:-4.634667pt;}
.ws59{word-spacing:-4.320000pt;}
.ws2d{word-spacing:-4.282667pt;}
.ws8e{word-spacing:-4.266667pt;}
.ws7a{word-spacing:-4.160000pt;}
.ws2a{word-spacing:-3.930667pt;}
.ws34{word-spacing:-3.754667pt;}
.ws50{word-spacing:-3.520000pt;}
.ws9f{word-spacing:-3.466667pt;}
.ws16{word-spacing:-3.461333pt;}
.ws8f{word-spacing:-3.253333pt;}
.ws57{word-spacing:-3.200000pt;}
.ws3c{word-spacing:-3.109333pt;}
.ws39{word-spacing:-3.050667pt;}
.ws9b{word-spacing:-2.933333pt;}
.ws69{word-spacing:-2.720000pt;}
.ws68{word-spacing:-2.560000pt;}
.ws28{word-spacing:-2.346667pt;}
.ws86{word-spacing:-2.218667pt;}
.ws84{word-spacing:-2.133333pt;}
.ws1d{word-spacing:-2.112000pt;}
.ws2{word-spacing:-1.973333pt;}
.ws4c{word-spacing:-1.936000pt;}
.ws1a{word-spacing:-1.818667pt;}
.ws3{word-spacing:-1.776000pt;}
.ws65{word-spacing:-1.653333pt;}
.ws83{word-spacing:-1.600000pt;}
.ws1e{word-spacing:-1.584000pt;}
.ws12{word-spacing:-1.578667pt;}
.ws4b{word-spacing:-1.344000pt;}
.ws45{word-spacing:-0.960000pt;}
.ws4{word-spacing:-0.864000pt;}
.ws35{word-spacing:-0.768000pt;}
.ws89{word-spacing:-0.533333pt;}
.ws7e{word-spacing:-0.480000pt;}
.ws4f{word-spacing:-0.266667pt;}
.ws1{word-spacing:0.000000pt;}
.ws8a{word-spacing:0.266667pt;}
.ws79{word-spacing:0.373333pt;}
.ws91{word-spacing:0.533333pt;}
.ws6c{word-spacing:0.586667pt;}
.ws48{word-spacing:0.672000pt;}
.ws70{word-spacing:0.800000pt;}
.ws60{word-spacing:1.013333pt;}
.ws9e{word-spacing:1.386667pt;}
.ws99{word-spacing:1.813333pt;}
.ws62{word-spacing:2.133333pt;}
.wsa9{word-spacing:2.304000pt;}
.ws94{word-spacing:2.453333pt;}
.ws98{word-spacing:2.613333pt;}
.ws51{word-spacing:2.666667pt;}
.ws58{word-spacing:2.720000pt;}
.ws7c{word-spacing:2.986667pt;}
.ws85{word-spacing:3.093333pt;}
.ws4a{word-spacing:3.360000pt;}
.wsa5{word-spacing:3.466667pt;}
.ws7b{word-spacing:3.626667pt;}
.ws92{word-spacing:4.053333pt;}
.ws5f{word-spacing:4.426667pt;}
.ws46{word-spacing:4.752000pt;}
.ws80{word-spacing:4.800000pt;}
.wsa6{word-spacing:5.088000pt;}
.ws6e{word-spacing:5.120000pt;}
.ws52{word-spacing:5.226667pt;}
.ws76{word-spacing:5.280000pt;}
.ws54{word-spacing:5.386667pt;}
.ws6d{word-spacing:5.440000pt;}
.ws67{word-spacing:5.653333pt;}
.ws64{word-spacing:5.973333pt;}
.ws90{word-spacing:6.026667pt;}
.ws49{word-spacing:6.096000pt;}
.ws95{word-spacing:6.186667pt;}
.ws6b{word-spacing:6.720000pt;}
.ws5a{word-spacing:6.773333pt;}
.ws55{word-spacing:7.093333pt;}
.ws74{word-spacing:7.840000pt;}
.ws66{word-spacing:8.160000pt;}
.ws9a{word-spacing:8.213333pt;}
.ws43{word-spacing:8.256000pt;}
.ws5e{word-spacing:8.320000pt;}
.ws96{word-spacing:8.640000pt;}
.ws56{word-spacing:8.693333pt;}
.ws9c{word-spacing:9.120000pt;}
.ws73{word-spacing:9.173333pt;}
.ws5b{word-spacing:9.386667pt;}
.ws88{word-spacing:10.026667pt;}
.ws8d{word-spacing:10.346667pt;}
.ws87{word-spacing:10.453333pt;}
.wsa4{word-spacing:10.506667pt;}
.ws8b{word-spacing:10.880000pt;}
.wsac{word-spacing:10.944000pt;}
.ws5c{word-spacing:11.093333pt;}
.wsab{word-spacing:11.280000pt;}
.ws78{word-spacing:11.360000pt;}
.ws7f{word-spacing:11.573333pt;}
.ws6f{word-spacing:11.893333pt;}
.ws9d{word-spacing:12.746667pt;}
.wsaa{word-spacing:13.536000pt;}
.ws53{word-spacing:13.600000pt;}
.wsa8{word-spacing:14.736000pt;}
.ws63{word-spacing:14.986667pt;}
.wsa0{word-spacing:15.093333pt;}
.ws44{word-spacing:15.120000pt;}
.ws8c{word-spacing:15.146667pt;}
.ws75{word-spacing:15.306667pt;}
.ws61{word-spacing:15.946667pt;}
.ws5d{word-spacing:16.000000pt;}
.wsa2{word-spacing:16.160000pt;}
.ws82{word-spacing:17.226667pt;}
.ws81{word-spacing:17.600000pt;}
.ws72{word-spacing:17.813333pt;}
.ws6a{word-spacing:18.026667pt;}
.ws8{word-spacing:18.288000pt;}
.ws47{word-spacing:18.672000pt;}
.ws7d{word-spacing:18.880000pt;}
.wsad{word-spacing:19.296000pt;}
.wsa7{word-spacing:20.736000pt;}
.ws71{word-spacing:20.746667pt;}
.wsa3{word-spacing:20.906667pt;}
.ws93{word-spacing:21.226667pt;}
.ws77{word-spacing:23.840000pt;}
.ws9{word-spacing:36.975467pt;}
.wsa{word-spacing:37.007467pt;}
.ws4d{word-spacing:70.750933pt;}
.ws1f{word-spacing:72.015467pt;}
.ws5{word-spacing:90.567467pt;}
.ws3e{word-spacing:95.327467pt;}
._f{margin-left:-1837.418667pt;}
._35{margin-left:-1672.616533pt;}
._2c{margin-left:-1530.045867pt;}
._2a{margin-left:-1527.828267pt;}
._3e{margin-left:-1510.117867pt;}
._33{margin-left:-1420.185067pt;}
._37{margin-left:-1366.612800pt;}
._24{margin-left:-1309.946667pt;}
._2e{margin-left:-1249.969600pt;}
._26{margin-left:-1198.331200pt;}
._7{margin-left:-1195.012267pt;}
._42{margin-left:-1178.568000pt;}
._2f{margin-left:-1168.314133pt;}
._16{margin-left:-1131.176000pt;}
._d{margin-left:-1100.880533pt;}
._31{margin-left:-1077.694400pt;}
._28{margin-left:-1061.616533pt;}
._11{margin-left:-1008.277867pt;}
._b{margin-left:-996.753600pt;}
._29{margin-left:-965.520000pt;}
._3a{margin-left:-953.111467pt;}
._1b{margin-left:-949.929600pt;}
._13{margin-left:-946.896000pt;}
._8{margin-left:-936.240000pt;}
._1d{margin-left:-914.928000pt;}
._9{margin-left:-887.306667pt;}
._14{margin-left:-845.472000pt;}
._34{margin-left:-833.264000pt;}
._22{margin-left:-824.229867pt;}
._10{margin-left:-821.568000pt;}
._20{margin-left:-813.600000pt;}
._17{margin-left:-797.520000pt;}
._41{margin-left:-792.085333pt;}
._3d{margin-left:-784.858667pt;}
._1f{margin-left:-780.720000pt;}
._12{margin-left:-765.504000pt;}
._3b{margin-left:-762.912000pt;}
._19{margin-left:-758.250667pt;}
._30{margin-left:-746.928000pt;}
._1a{margin-left:-745.280000pt;}
._c{margin-left:-722.736000pt;}
._15{margin-left:-708.384000pt;}
._21{margin-left:-698.880000pt;}
._1c{margin-left:-695.226667pt;}
._1e{margin-left:-689.264000pt;}
._32{margin-left:-681.964800pt;}
._3f{margin-left:-677.472000pt;}
._23{margin-left:-643.952000pt;}
._39{margin-left:-626.880000pt;}
._2b{margin-left:-618.864000pt;}
._6{margin-left:-616.224000pt;}
._3c{margin-left:-541.632000pt;}
._5{margin-left:-508.320000pt;}
._40{margin-left:-500.657600pt;}
._0{margin-left:-452.068800pt;}
._18{margin-left:-427.434667pt;}
._2d{margin-left:-392.112000pt;}
._e{margin-left:-354.768000pt;}
._27{margin-left:-345.820800pt;}
._38{margin-left:-336.144000pt;}
._36{margin-left:-325.440000pt;}
._25{margin-left:-234.720000pt;}
._48{margin-left:-11.721600pt;}
._43{margin-left:-9.600000pt;}
._4a{margin-left:-7.932267pt;}
._a{margin-left:-6.216000pt;}
._44{margin-left:-5.280533pt;}
._3{margin-left:-3.571200pt;}
._2{margin-left:-1.973333pt;}
._4{margin-left:-0.927467pt;}
._49{width:0.902400pt;}
._1{width:1.952000pt;}
._4b{width:3.207467pt;}
._4e{width:5.081067pt;}
._4c{width:6.156800pt;}
._47{width:7.584000pt;}
._46{width:9.326400pt;}
._50{width:10.715200pt;}
._4f{width:11.673600pt;}
._52{width:15.845333pt;}
._45{width:18.305067pt;}
._51{width:32.736000pt;}
._54{width:52.450667pt;}
._53{width:72.448000pt;}
._55{width:120.624000pt;}
._4d{width:205.854400pt;}
.fsc{font-size:31.093333pt;}
.fsa{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fsd{font-size:112.000000pt;}
.fsb{font-size:128.000000pt;}
.fs8{font-size:160.000000pt;}
.fs9{font-size:256.000000pt;}
.fs2{font-size:266.666667pt;}
.fs0{font-size:266.766933pt;}
.fs3{font-size:373.333333pt;}
.fs1{font-size:373.473600pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.452667pt;}
.y3{bottom:64.850667pt;}
.y5{bottom:74.105733pt;}
.y6{bottom:74.581733pt;}
.y36{bottom:75.086133pt;}
.y9e{bottom:75.562133pt;}
.y35{bottom:113.385733pt;}
.y5d{bottom:113.385867pt;}
.y18b{bottom:113.386000pt;}
.y165{bottom:114.068000pt;}
.y61{bottom:120.280667pt;}
.y18a{bottom:126.186000pt;}
.y19e{bottom:126.343600pt;}
.y6c{bottom:126.755600pt;}
.y129{bottom:128.568267pt;}
.y164{bottom:130.068000pt;}
.y34{bottom:130.498667pt;}
.y5c{bottom:131.565333pt;}
.y105{bottom:133.171333pt;}
.y60{bottom:134.680667pt;}
.y19d{bottom:142.343600pt;}
.y6b{bottom:142.755600pt;}
.y128{bottom:144.568267pt;}
.y104{bottom:145.971333pt;}
.y163{bottom:146.068000pt;}
.y33{bottom:147.611467pt;}
.y5f{bottom:149.080667pt;}
.y1c1{bottom:149.524533pt;}
.y5b{bottom:149.744933pt;}
.yd0{bottom:155.470533pt;}
.y19c{bottom:158.343600pt;}
.y6a{bottom:158.755600pt;}
.y162{bottom:162.068000pt;}
.y5e{bottom:163.480667pt;}
.y1c0{bottom:163.924533pt;}
.y32{bottom:164.724400pt;}
.y189{bottom:166.057867pt;}
.y103{bottom:167.350800pt;}
.y5a{bottom:167.924400pt;}
.y127{bottom:168.127333pt;}
.ycf{bottom:168.270533pt;}
.y19b{bottom:174.343600pt;}
.y69{bottom:174.755600pt;}
.y161{bottom:178.068000pt;}
.y1bf{bottom:178.324533pt;}
.y102{bottom:180.150800pt;}
.y31{bottom:181.837200pt;}
.y188{bottom:182.057867pt;}
.y126{bottom:184.127333pt;}
.yce{bottom:185.870533pt;}
.y59{bottom:186.103867pt;}
.y19a{bottom:190.343600pt;}
.y68{bottom:190.755600pt;}
.y1be{bottom:192.724667pt;}
.y187{bottom:198.057867pt;}
.y30{bottom:198.950133pt;}
.y9d{bottom:199.549867pt;}
.y125{bottom:200.127333pt;}
.y101{bottom:201.530400pt;}
.y160{bottom:201.627067pt;}
.y58{bottom:204.283467pt;}
.y199{bottom:206.343600pt;}
.y67{bottom:206.755600pt;}
.y1bd{bottom:207.124533pt;}
.ycd{bottom:207.250133pt;}
.y186{bottom:214.057867pt;}
.y100{bottom:214.330267pt;}
.y2f{bottom:216.062933pt;}
.y124{bottom:216.127333pt;}
.y9c{bottom:217.729467pt;}
.ycc{bottom:220.050000pt;}
.y1bc{bottom:221.524533pt;}
.y198{bottom:222.343600pt;}
.y57{bottom:222.462933pt;}
.y66{bottom:222.755600pt;}
.y1c3{bottom:225.649733pt;}
.y185{bottom:230.057867pt;}
.y123{bottom:232.127333pt;}
.y2e{bottom:233.175733pt;}
.yff{bottom:235.709867pt;}
.y9b{bottom:235.908933pt;}
.y1bb{bottom:235.924533pt;}
.y15f{bottom:236.827067pt;}
.ycb{bottom:237.650000pt;}
.y197{bottom:238.343600pt;}
.y65{bottom:238.755600pt;}
.y56{bottom:240.642533pt;}
.y1c2{bottom:241.649733pt;}
.y184{bottom:246.057867pt;}
.yfe{bottom:248.509867pt;}
.y2d{bottom:250.288667pt;}
.y1ba{bottom:250.324533pt;}
.y15e{bottom:252.827067pt;}
.y9a{bottom:254.088533pt;}
.y55{bottom:258.822000pt;}
.yca{bottom:259.029600pt;}
.y183{bottom:262.057867pt;}
.y64{bottom:262.314667pt;}
.y1b9{bottom:264.724667pt;}
.yfd{bottom:266.109867pt;}
.y2c{bottom:267.401467pt;}
.y15d{bottom:268.827067pt;}
.y196{bottom:270.343600pt;}
.y122{bottom:271.228533pt;}
.y1d9{bottom:271.760000pt;}
.yc9{bottom:271.829600pt;}
.y99{bottom:272.268000pt;}
.y54{bottom:277.001600pt;}
.y182{bottom:278.057867pt;}
.y63{bottom:278.314667pt;}
.y1b8{bottom:279.124533pt;}
.y2b{bottom:284.514400pt;}
.y15c{bottom:284.827067pt;}
.y195{bottom:286.343600pt;}
.y121{bottom:287.228533pt;}
.yfc{bottom:287.489333pt;}
.y1d8{bottom:289.360000pt;}
.yc8{bottom:289.429600pt;}
.y98{bottom:290.447600pt;}
.y1b7{bottom:293.524533pt;}
.y181{bottom:294.057867pt;}
.y53{bottom:295.181067pt;}
.yfb{bottom:300.289333pt;}
.y15b{bottom:300.827067pt;}
.y2a{bottom:301.627200pt;}
.y62{bottom:301.873733pt;}
.y1d7{bottom:306.960000pt;}
.y1b6{bottom:307.924533pt;}
.y97{bottom:308.627067pt;}
.y180{bottom:310.057867pt;}
.y120{bottom:310.787600pt;}
.yc7{bottom:310.809067pt;}
.y52{bottom:313.360533pt;}
.y15a{bottom:316.827067pt;}
.yfa{bottom:317.889467pt;}
.y29{bottom:318.740133pt;}
.y1b5{bottom:322.324533pt;}
.yc6{bottom:323.609067pt;}
.y1d6{bottom:324.560000pt;}
.y17f{bottom:326.057867pt;}
.y11f{bottom:326.787600pt;}
.y96{bottom:326.806667pt;}
.y51{bottom:331.540133pt;}
.y159{bottom:332.827067pt;}
.y28{bottom:335.852933pt;}
.y1b4{bottom:336.724667pt;}
.yf9{bottom:339.268933pt;}
.y17e{bottom:342.057867pt;}
.y1d5{bottom:342.160000pt;}
.y11e{bottom:342.787600pt;}
.y95{bottom:344.986133pt;}
.yc5{bottom:344.988667pt;}
.y158{bottom:348.827067pt;}
.y50{bottom:349.719600pt;}
.y1b3{bottom:351.124533pt;}
.yf8{bottom:352.068933pt;}
.y27{bottom:352.965867pt;}
.yc4{bottom:357.788667pt;}
.y11d{bottom:358.787600pt;}
.y94{bottom:363.165733pt;}
.y157{bottom:364.827067pt;}
.y1b2{bottom:365.524533pt;}
.y4f{bottom:367.899200pt;}
.y26{bottom:370.078667pt;}
.yf7{bottom:373.448400pt;}
.y17d{bottom:374.057867pt;}
.y11c{bottom:374.787600pt;}
.yc3{bottom:375.388667pt;}
.y1b1{bottom:379.924533pt;}
.y156{bottom:380.827067pt;}
.y93{bottom:381.345200pt;}
.y1ce{bottom:384.040267pt;}
.y4e{bottom:386.078667pt;}
.yf6{bottom:386.248400pt;}
.y25{bottom:387.191467pt;}
.y17c{bottom:390.057867pt;}
.y1b0{bottom:394.324533pt;}
.yc2{bottom:396.768133pt;}
.y155{bottom:396.827067pt;}
.y92{bottom:399.524800pt;}
.y1cd{bottom:401.640267pt;}
.yf5{bottom:403.848400pt;}
.y4d{bottom:404.258267pt;}
.y24{bottom:404.304400pt;}
.y1af{bottom:408.724533pt;}
.yc1{bottom:409.568133pt;}
.y154{bottom:412.827067pt;}
.y11b{bottom:413.888800pt;}
.y91{bottom:417.704267pt;}
.y1cc{bottom:419.240267pt;}
.y23{bottom:421.417333pt;}
.y4c{bottom:422.437733pt;}
.yf4{bottom:425.228000pt;}
.yc0{bottom:427.168267pt;}
.y153{bottom:428.827067pt;}
.y11a{bottom:429.888800pt;}
.y90{bottom:435.883733pt;}
.yf3{bottom:438.028000pt;}
.y22{bottom:438.530133pt;}
.y1ae{bottom:439.124533pt;}
.y4b{bottom:440.617333pt;}
.y152{bottom:444.827067pt;}
.ybf{bottom:448.547733pt;}
.y119{bottom:453.447867pt;}
.y8f{bottom:454.063333pt;}
.y1ad{bottom:455.124533pt;}
.y21{bottom:455.642933pt;}
.y4a{bottom:458.796800pt;}
.yf2{bottom:459.407467pt;}
.y151{bottom:460.827067pt;}
.y1d4{bottom:461.120667pt;}
.ybe{bottom:461.347733pt;}
.y118{bottom:469.447867pt;}
.y1ac{bottom:471.124533pt;}
.yf1{bottom:472.207467pt;}
.y8e{bottom:472.242800pt;}
.y20{bottom:472.755867pt;}
.y150{bottom:476.827067pt;}
.y49{bottom:476.976400pt;}
.y1d3{bottom:478.720667pt;}
.ybd{bottom:478.947733pt;}
.y117{bottom:485.447867pt;}
.y1ab{bottom:487.124533pt;}
.yf0{bottom:489.807467pt;}
.y1f{bottom:489.868800pt;}
.y8d{bottom:490.422400pt;}
.y14f{bottom:492.827067pt;}
.y48{bottom:495.155867pt;}
.y1d2{bottom:496.320533pt;}
.ybc{bottom:500.327333pt;}
.y116{bottom:501.447867pt;}
.y1aa{bottom:503.124533pt;}
.y1e{bottom:506.981600pt;}
.y14e{bottom:508.827067pt;}
.yef{bottom:511.187067pt;}
.ybb{bottom:513.127200pt;}
.y47{bottom:513.335467pt;}
.y1d1{bottom:513.920667pt;}
.y115{bottom:517.447867pt;}
.y1a9{bottom:519.124533pt;}
.yee{bottom:523.987067pt;}
.y1d{bottom:524.094400pt;}
.y14d{bottom:524.827067pt;}
.y8c{bottom:528.402133pt;}
.yba{bottom:530.727200pt;}
.y46{bottom:531.514933pt;}
.y1d0{bottom:531.520533pt;}
.y1a8{bottom:535.124533pt;}
.y14c{bottom:540.827067pt;}
.y1c{bottom:541.207333pt;}
.yed{bottom:541.587067pt;}
.y8b{bottom:545.514933pt;}
.y1cf{bottom:549.120667pt;}
.y45{bottom:549.694400pt;}
.y1a7{bottom:551.124533pt;}
.yb9{bottom:552.106800pt;}
.y14b{bottom:556.827067pt;}
.y1b{bottom:558.320133pt;}
.y8a{bottom:562.627867pt;}
.yec{bottom:562.966533pt;}
.yb8{bottom:564.906800pt;}
.y1a6{bottom:567.124533pt;}
.y44{bottom:567.874000pt;}
.y194{bottom:569.414267pt;}
.y14a{bottom:572.827067pt;}
.y1a{bottom:575.433067pt;}
.yeb{bottom:575.766533pt;}
.y12f{bottom:578.424667pt;}
.y89{bottom:579.740667pt;}
.yb7{bottom:582.506800pt;}
.y1a5{bottom:583.124533pt;}
.y193{bottom:585.414267pt;}
.y43{bottom:586.053467pt;}
.y149{bottom:588.827067pt;}
.y19{bottom:592.545867pt;}
.yea{bottom:593.366533pt;}
.y12e{bottom:596.024667pt;}
.y114{bottom:596.300000pt;}
.y88{bottom:596.853600pt;}
.y1a4{bottom:599.124533pt;}
.y192{bottom:601.414267pt;}
.y1cb{bottom:602.624400pt;}
.yb6{bottom:603.886267pt;}
.y42{bottom:604.233067pt;}
.y148{bottom:604.827067pt;}
.y18{bottom:609.658667pt;}
.y12d{bottom:613.624667pt;}
.y113{bottom:613.900000pt;}
.y87{bottom:613.966533pt;}
.ye9{bottom:614.746000pt;}
.y1a3{bottom:615.124533pt;}
.yb5{bottom:616.686267pt;}
.y191{bottom:617.414267pt;}
.y1ca{bottom:620.224400pt;}
.y147{bottom:620.827067pt;}
.y41{bottom:622.412533pt;}
.y17{bottom:626.771600pt;}
.ye8{bottom:627.546000pt;}
.y86{bottom:631.079333pt;}
.y1a2{bottom:631.124533pt;}
.y12c{bottom:631.224667pt;}
.y112{bottom:631.500000pt;}
.y190{bottom:633.414267pt;}
.yb4{bottom:634.286267pt;}
.y146{bottom:636.827067pt;}
.y1c9{bottom:637.824400pt;}
.y40{bottom:640.592133pt;}
.y16{bottom:643.884400pt;}
.ye7{bottom:645.146133pt;}
.y1a1{bottom:647.124533pt;}
.y85{bottom:648.192133pt;}
.y12b{bottom:648.824667pt;}
.y111{bottom:649.100000pt;}
.y18f{bottom:649.414267pt;}
.y1c8{bottom:655.424400pt;}
.yb3{bottom:655.665867pt;}
.y3f{bottom:658.771600pt;}
.y145{bottom:660.386133pt;}
.y15{bottom:660.997333pt;}
.y17b{bottom:663.124533pt;}
.y84{bottom:665.305067pt;}
.y18e{bottom:665.414267pt;}
.y12a{bottom:666.424667pt;}
.ye6{bottom:666.525600pt;}
.y110{bottom:666.700000pt;}
.yb2{bottom:668.465867pt;}
.y2{bottom:670.995467pt;}
.y4{bottom:671.165333pt;}
.y3e{bottom:676.951200pt;}
.y14{bottom:678.110133pt;}
.y17a{bottom:679.124533pt;}
.ye5{bottom:679.325600pt;}
.y1c4{bottom:681.389600pt;}
.y83{bottom:682.417867pt;}
.yb1{bottom:689.845333pt;}
.y179{bottom:695.124533pt;}
.y3d{bottom:695.130667pt;}
.y13{bottom:695.223067pt;}
.y144{bottom:695.586133pt;}
.ye4{bottom:696.925600pt;}
.y18d{bottom:697.414267pt;}
.y82{bottom:699.530800pt;}
.yb0{bottom:702.645333pt;}
.y178{bottom:711.124533pt;}
.y143{bottom:711.586133pt;}
.y12{bottom:712.336000pt;}
.y3c{bottom:713.310267pt;}
.y18c{bottom:713.414267pt;}
.y1c7{bottom:715.935733pt;}
.y81{bottom:716.643600pt;}
.ye3{bottom:718.305200pt;}
.yaf{bottom:724.024933pt;}
.y177{bottom:727.124533pt;}
.y142{bottom:727.586133pt;}
.y11{bottom:729.448800pt;}
.ye2{bottom:731.105200pt;}
.y3b{bottom:731.489733pt;}
.y80{bottom:733.756533pt;}
.yae{bottom:736.824933pt;}
.y1c6{bottom:742.694933pt;}
.y176{bottom:743.124533pt;}
.y141{bottom:743.586133pt;}
.y10{bottom:746.561733pt;}
.y10d{bottom:748.705067pt;}
.y3a{bottom:749.669333pt;}
.y7f{bottom:750.869333pt;}
.ye1{bottom:752.484667pt;}
.yad{bottom:758.204400pt;}
.y175{bottom:759.124533pt;}
.y140{bottom:759.586133pt;}
.yf{bottom:763.674533pt;}
.ye0{bottom:765.284667pt;}
.y39{bottom:767.848800pt;}
.y7e{bottom:767.982267pt;}
.y1c5{bottom:769.454000pt;}
.y10c{bottom:770.084667pt;}
.yac{bottom:771.004400pt;}
.y1a0{bottom:775.124533pt;}
.y13f{bottom:775.586133pt;}
.y174{bottom:782.683600pt;}
.ydf{bottom:782.884667pt;}
.y7d{bottom:785.095200pt;}
.y38{bottom:786.028267pt;}
.yab{bottom:788.604400pt;}
.y13e{bottom:791.586133pt;}
.y19f{bottom:798.683600pt;}
.yc{bottom:803.504933pt;}
.y37{bottom:804.207867pt;}
.yde{bottom:804.264133pt;}
.y13d{bottom:807.586133pt;}
.yaa{bottom:809.984000pt;}
.y7c{bottom:812.660800pt;}
.ydd{bottom:817.064267pt;}
.y173{bottom:817.883600pt;}
.yb{bottom:819.504933pt;}
.ya9{bottom:822.784000pt;}
.y13c{bottom:823.586133pt;}
.y7b{bottom:829.773600pt;}
.y172{bottom:833.883600pt;}
.y10b{bottom:834.664267pt;}
.ydc{bottom:838.443733pt;}
.y13b{bottom:839.586133pt;}
.ya{bottom:843.063867pt;}
.ya8{bottom:844.163467pt;}
.y7a{bottom:846.886533pt;}
.y171{bottom:849.883600pt;}
.ydb{bottom:851.243733pt;}
.y13a{bottom:855.586133pt;}
.y10a{bottom:856.043733pt;}
.ya7{bottom:856.963467pt;}
.y9{bottom:859.063867pt;}
.y79{bottom:863.999333pt;}
.y170{bottom:865.883600pt;}
.yda{bottom:868.843733pt;}
.y139{bottom:871.586133pt;}
.ya6{bottom:874.563467pt;}
.ye{bottom:877.481467pt;}
.y78{bottom:881.112267pt;}
.y16f{bottom:881.883600pt;}
.y8{bottom:882.622933pt;}
.y109{bottom:886.443733pt;}
.y138{bottom:887.586133pt;}
.yd9{bottom:890.223200pt;}
.ya5{bottom:895.943067pt;}
.yd{bottom:896.681600pt;}
.y16e{bottom:897.883600pt;}
.y77{bottom:898.225067pt;}
.y7{bottom:898.622933pt;}
.yd8{bottom:903.023333pt;}
.y137{bottom:903.586133pt;}
.y108{bottom:907.823200pt;}
.ya4{bottom:908.743067pt;}
.y16d{bottom:913.883600pt;}
.y76{bottom:915.337867pt;}
.y136{bottom:919.586133pt;}
.yd7{bottom:920.623200pt;}
.y16c{bottom:929.883600pt;}
.ya3{bottom:930.122533pt;}
.y75{bottom:932.450800pt;}
.y135{bottom:935.586133pt;}
.y107{bottom:938.223200pt;}
.yd6{bottom:942.002800pt;}
.ya2{bottom:942.922533pt;}
.y16b{bottom:945.883600pt;}
.y74{bottom:949.563600pt;}
.y134{bottom:951.586133pt;}
.yd5{bottom:954.802800pt;}
.y106{bottom:959.602800pt;}
.y16a{bottom:961.883600pt;}
.y73{bottom:966.676533pt;}
.y133{bottom:967.586133pt;}
.y10f{bottom:972.300000pt;}
.yd4{bottom:972.402800pt;}
.y169{bottom:977.883600pt;}
.y132{bottom:983.586133pt;}
.y72{bottom:983.789333pt;}
.ya1{bottom:985.809333pt;}
.yd3{bottom:993.782267pt;}
.y168{bottom:993.883600pt;}
.y131{bottom:999.586133pt;}
.y71{bottom:1000.902267pt;}
.yd2{bottom:1006.582267pt;}
.y167{bottom:1009.883600pt;}
.y10e{bottom:1010.700000pt;}
.y70{bottom:1018.015200pt;}
.y130{bottom:1023.145200pt;}
.yd1{bottom:1024.182267pt;}
.y166{bottom:1025.883600pt;}
.y6f{bottom:1035.127867pt;}
.y6e{bottom:1052.240800pt;}
.y9f{bottom:1068.009867pt;}
.ya0{bottom:1069.353600pt;}
.y6d{bottom:1069.353733pt;}
.h16{height:31.062500pt;}
.h22{height:31.104167pt;}
.h18{height:31.250000pt;}
.h7{height:34.944000pt;}
.hb{height:34.945312pt;}
.hc{height:34.992188pt;}
.h6{height:35.088000pt;}
.hd{height:35.156250pt;}
.hf{height:35.179688pt;}
.he{height:36.848000pt;}
.h21{height:37.838542pt;}
.h8{height:38.828125pt;}
.h1d{height:38.880208pt;}
.h9{height:39.062500pt;}
.h1f{height:39.088542pt;}
.h20{height:40.427695pt;}
.h15{height:41.622396pt;}
.h1c{height:42.710938pt;}
.h10{height:42.768229pt;}
.h11{height:42.997396pt;}
.h1e{height:45.406250pt;}
.ha{height:46.593750pt;}
.h24{height:46.656250pt;}
.h13{height:46.720000pt;}
.h17{height:50.817708pt;}
.h23{height:75.687500pt;}
.h1b{height:90.812500pt;}
.h1a{height:110.875000pt;}
.h12{height:138.593750pt;}
.h19{height:138.594283pt;}
.h14{height:181.625000pt;}
.h4{height:191.666667pt;}
.h2{height:191.738733pt;}
.h5{height:264.320000pt;}
.h3{height:264.419309pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:38.794133pt;}
.x9{left:60.472400pt;}
.x1b{left:64.690533pt;}
.x18{left:73.091200pt;}
.x2b{left:78.325467pt;}
.x2e{left:83.506800pt;}
.x2d{left:84.416267pt;}
.x5{left:86.173200pt;}
.x2f{left:87.692667pt;}
.x1e{left:91.328533pt;}
.xa{left:92.976400pt;}
.x14{left:94.488133pt;}
.x4{left:96.332533pt;}
.x1a{left:98.267733pt;}
.x25{left:113.385867pt;}
.x1d{left:124.724400pt;}
.x3{left:126.549600pt;}
.x31{left:149.367467pt;}
.x2a{left:158.740133pt;}
.x36{left:176.154533pt;}
.x30{left:179.511600pt;}
.x1c{left:185.196800pt;}
.x37{left:188.794533pt;}
.x19{left:191.125333pt;}
.x35{left:194.351867pt;}
.x38{left:201.269867pt;}
.x26{left:228.006800pt;}
.x17{left:249.448800pt;}
.x2c{left:266.238533pt;}
.x32{left:280.216267pt;}
.x27{left:300.741200pt;}
.x29{left:317.053600pt;}
.x33{left:319.733867pt;}
.x34{left:328.433600pt;}
.x28{left:383.961733pt;}
.x7{left:399.720533pt;}
.x8{left:455.089867pt;}
.x20{left:501.144667pt;}
.xf{left:517.136400pt;}
.xb{left:530.433867pt;}
.x12{left:532.601600pt;}
.xe{left:537.915333pt;}
.x6{left:543.486133pt;}
.x10{left:544.851200pt;}
.xc{left:548.657600pt;}
.x24{left:550.891067pt;}
.x21{left:552.382000pt;}
.xd{left:563.592800pt;}
.x11{left:580.300400pt;}
.x13{left:583.154267pt;}
.x1f{left:587.862800pt;}
.x22{left:607.974400pt;}
.x23{left:619.842933pt;}
.x1{left:627.488133pt;}
.x16{left:689.807733pt;}
.x15{left:760.123600pt;}
}




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