
    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_f854dc9f84c16a45b244e8f5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_07eff393afa29a50d35f3b1c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d05d42af63956a88ffb82b7f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a0d08afb3e578966e307247e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_16f4e2d1b86c81d14289a500.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_28e8ebb5e79268c6ede49008.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1f299813def2567ca34fc55d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_d040238819a2fd22f19eb2e0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5443bd12b6f146b20710393f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933594;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_c699a523b4352a1ed061ce4a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_fd1e8836d3f07c55ed5b3318.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_008e365f3a46b3daf6e4898c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4babe4a27c00bebd18e21a1b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.933594;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_874479a0822ef38731b1008d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f033271b2b6ae49df9a26094.woff2')format("woff");}.fff{font-family:fff;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_1f299813def2567ca34fc55d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.040039;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_9cc98d1fcb5f5f9ae162e97d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_ccd9f4f062a890dd262f94f1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.933594;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_cf4dc237b5acdb782186fcee.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_4ec6ace5dcef40eebee49a26.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_63a2f97c81db8e2f1e4513ab.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.933594;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_0d255c6540e451eda40143ce.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_c992b4762a76459fc724bb61.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_1f299813def2567ca34fc55d.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.040039;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_327d04039d31c71b7919784d.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_a787fe158a0ab7daff47d740.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_fd1e8836d3f07c55ed5b3318.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_b43557f561e3611a38f802c5.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_b3cad5c89ce3e46c0c7d873b.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.933594;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_e335eaf11f7804482b601f18.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_bae81c356d78a4fe0e211f4c.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_1f299813def2567ca34fc55d.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.040039;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_d7c0dfeb9fb939feb6696fdf.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_3df3d3fa33829a65ace29ae1.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.933594;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_fd1e8836d3f07c55ed5b3318.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_63c0eacb5222755bdb0c78f1.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_b3cad5c89ce3e46c0c7d873b.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.933594;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_79938050e5ba3946bac0aeaf.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_2abd9df3b87482884352ca89.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_1f299813def2567ca34fc55d.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.040039;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_fcf2570b05740bae6f564a74.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_cb978dee69e8b6bd23832d54.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_99d15fab0738883cc492522d.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.933594;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_d6b5c44f9069dbd207aabb38.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_30bceec716933499b4cd5c37.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_763726ac69ac89daa22d428d.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.933594;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_f4c6f21e425ab3181dbd21e9.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-27.360000px;}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-1.476000px;}
.lsb{letter-spacing:-1.182000px;}
.ls10{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.924000px;}
.ls13{letter-spacing:-0.828000px;}
.lsf{letter-spacing:-0.774000px;}
.ls4{letter-spacing:-0.666000px;}
.lsa{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.460200px;}
.ls3{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.206400px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:3.060000px;}
.ls1{letter-spacing:12.420000px;}
.lse{letter-spacing:79.140000px;}
.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;}
}
.ws2{word-spacing:-59.760000px;}
.ws11{word-spacing:-33.704640px;}
.ws16{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.560000px;}
.wsc{word-spacing:-15.300000px;}
.ws14{word-spacing:-15.146400px;}
.wsa{word-spacing:-15.046800px;}
.ws13{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws1{word-spacing:-14.580000px;}
.wse{word-spacing:-14.479800px;}
.wsd{word-spacing:-14.328000px;}
.ws7{word-spacing:-14.274000px;}
.ws15{word-spacing:-14.112000px;}
.ws8{word-spacing:-14.016000px;}
.ws12{word-spacing:-13.860000px;}
.ws3{word-spacing:-12.060000px;}
.wsf{word-spacing:-11.700000px;}
.ws10{word-spacing:-10.980000px;}
.ws4{word-spacing:-9.720000px;}
.ws5{word-spacing:-9.360000px;}
.ws9{word-spacing:0.000000px;}
._2c{margin-left:-18.192000px;}
._17{margin-left:-5.079600px;}
._2{margin-left:-3.227040px;}
._0{margin-left:-1.972080px;}
._1{width:1.188720px;}
._6{width:2.474400px;}
._a{width:3.703440px;}
._5{width:4.721040px;}
._3{width:5.976000px;}
._4{width:7.290720px;}
._13{width:8.367600px;}
._7{width:10.165680px;}
._8{width:11.772720px;}
._9{width:13.752000px;}
._f{width:16.792560px;}
._10{width:18.312960px;}
._14{width:19.451520px;}
._1a{width:21.366720px;}
._d{width:22.888080px;}
._e{width:23.970240px;}
._c{width:25.099200px;}
._b{width:26.951760px;}
._1f{width:28.027440px;}
._12{width:29.461680px;}
._11{width:30.716640px;}
._1b{width:32.449680px;}
._15{width:33.883920px;}
._16{width:35.025840px;}
._1c{width:36.035280px;}
._21{width:37.416240px;}
._1e{width:39.142560px;}
._1d{width:40.397760px;}
._26{width:42.011520px;}
._20{width:43.983360px;}
._19{width:46.382880px;}
._18{width:47.573760px;}
._25{width:49.122720px;}
._2a{width:53.246160px;}
._2b{width:54.953760px;}
._24{width:58.654080px;}
._23{width:60.095520px;}
._27{width:61.157520px;}
._28{width:70.038720px;}
._29{width:71.233920px;}
._22{width:1439.976000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:12.240000px;}
.fs9{font-size:23.760000px;}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fsb{font-size:45.360000px;}
.fs3{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ydc{bottom:0.720000px;}
.y16c{bottom:0.900000px;}
.y1a4{bottom:1.980000px;}
.yfc{bottom:2.700000px;}
.ye3{bottom:2.880000px;}
.ye0{bottom:3.060000px;}
.y12d{bottom:3.420000px;}
.y55{bottom:3.771000px;}
.y1e3{bottom:5.025000px;}
.y1c0{bottom:5.040000px;}
.y1df{bottom:5.070000px;}
.y1f2{bottom:5.205000px;}
.y1c2{bottom:5.220000px;}
.y1ce{bottom:5.265000px;}
.ydb{bottom:6.300000px;}
.y120{bottom:6.480000px;}
.yf4{bottom:9.720000px;}
.y185{bottom:9.900000px;}
.y203{bottom:10.065000px;}
.y1ca{bottom:10.080000px;}
.y1d7{bottom:10.110000px;}
.ye1{bottom:10.260000px;}
.y1a3{bottom:13.140000px;}
.y126{bottom:16.740000px;}
.y182{bottom:17.100000px;}
.y12c{bottom:17.280000px;}
.y122{bottom:17.460000px;}
.yde{bottom:17.640000px;}
.y178{bottom:18.540000px;}
.y1e4{bottom:18.705000px;}
.y1c8{bottom:18.720000px;}
.y1e0{bottom:18.750000px;}
.y1f3{bottom:18.885000px;}
.y1db{bottom:18.900000px;}
.y1cf{bottom:18.945000px;}
.y118{bottom:22.140000px;}
.y1e2{bottom:22.305000px;}
.yda{bottom:22.320000px;}
.y1bf{bottom:22.350000px;}
.y1e7{bottom:22.485000px;}
.y1c5{bottom:22.500000px;}
.y1de{bottom:22.530000px;}
.y1cd{bottom:22.545000px;}
.y184{bottom:24.120000px;}
.y1c6{bottom:27.360000px;}
.y1a2{bottom:29.160000px;}
.y177{bottom:34.380000px;}
.y16b{bottom:37.800000px;}
.y135{bottom:38.160000px;}
.y1c4{bottom:39.600000px;}
.y176{bottom:49.860000px;}
.y54{bottom:52.965000px;}
.y1{bottom:56.736000px;}
.y39{bottom:110.556000px;}
.yb4{bottom:111.996000px;}
.yd7{bottom:113.256000px;}
.y91{bottom:113.436000px;}
.y196{bottom:114.336000px;}
.yd5{bottom:114.876000px;}
.y1a0{bottom:116.856000px;}
.yd6{bottom:120.096000px;}
.y206{bottom:121.356000px;}
.y116{bottom:122.436000px;}
.y52{bottom:122.796000px;}
.y1bb{bottom:125.496000px;}
.y165{bottom:126.936000px;}
.y38{bottom:127.836000px;}
.yb3{bottom:129.276000px;}
.y115{bottom:129.456000px;}
.y90{bottom:130.536000px;}
.y195{bottom:131.616000px;}
.yd4{bottom:131.976000px;}
.y19f{bottom:134.136000px;}
.y109{bottom:135.036000px;}
.y114{bottom:136.296000px;}
.y51{bottom:140.076000px;}
.y169{bottom:141.336000px;}
.y1ba{bottom:142.776000px;}
.y113{bottom:143.136000px;}
.y164{bottom:144.216000px;}
.y37{bottom:144.936000px;}
.yb2{bottom:146.556000px;}
.y205{bottom:147.636000px;}
.y8f{bottom:147.816000px;}
.y1e6{bottom:148.365000px;}
.y194{bottom:148.896000px;}
.yd3{bottom:149.256000px;}
.y112{bottom:150.150000px;}
.y19e{bottom:151.410000px;}
.y108{bottom:152.310000px;}
.y111{bottom:156.990000px;}
.y50{bottom:157.170000px;}
.y1b9{bottom:159.870000px;}
.y163{bottom:161.490000px;}
.y36{bottom:162.210000px;}
.yb1{bottom:163.830000px;}
.y8e{bottom:165.090000px;}
.y193{bottom:166.170000px;}
.yd2{bottom:166.530000px;}
.y19d{bottom:168.510000px;}
.y107{bottom:169.590000px;}
.y110{bottom:170.850000px;}
.y4f{bottom:174.450000px;}
.y168{bottom:176.430000px;}
.y1b8{bottom:177.150000px;}
.y10f{bottom:177.690000px;}
.y162{bottom:178.770000px;}
.y35{bottom:179.490000px;}
.yb0{bottom:180.930000px;}
.y204{bottom:181.305000px;}
.y8d{bottom:182.370000px;}
.y192{bottom:183.450000px;}
.yd1{bottom:183.810000px;}
.y10e{bottom:184.530000px;}
.y19c{bottom:185.790000px;}
.y106{bottom:186.870000px;}
.y1e5{bottom:189.225000px;}
.y10d{bottom:191.550000px;}
.y4e{bottom:191.730000px;}
.y1b7{bottom:194.430000px;}
.y161{bottom:196.050000px;}
.y34{bottom:196.770000px;}
.yaf{bottom:198.210000px;}
.y10c{bottom:198.390000px;}
.y8c{bottom:199.650000px;}
.y191{bottom:200.550000px;}
.yd0{bottom:201.090000px;}
.y19b{bottom:203.070000px;}
.y105{bottom:204.150000px;}
.y10b{bottom:205.230000px;}
.y4d{bottom:209.010000px;}
.y167{bottom:211.710000px;}
.y10a{bottom:212.250000px;}
.y160{bottom:213.330000px;}
.y33{bottom:214.050000px;}
.yae{bottom:215.490000px;}
.y8b{bottom:216.930000px;}
.y190{bottom:217.830000px;}
.ycf{bottom:218.370000px;}
.y19a{bottom:220.350000px;}
.y104{bottom:221.430000px;}
.y202{bottom:222.165000px;}
.y4c{bottom:226.290000px;}
.y1b6{bottom:228.990000px;}
.y1e1{bottom:230.085000px;}
.y15f{bottom:230.430000px;}
.y32{bottom:231.330000px;}
.yad{bottom:232.770000px;}
.y8a{bottom:234.030000px;}
.y18f{bottom:235.110000px;}
.yce{bottom:235.470000px;}
.y199{bottom:237.630000px;}
.y103{bottom:238.530000px;}
.y4b{bottom:243.570000px;}
.y201{bottom:245.565000px;}
.y1b5{bottom:246.270000px;}
.y166{bottom:246.990000px;}
.y15e{bottom:247.710000px;}
.y31{bottom:248.430000px;}
.yac{bottom:250.050000px;}
.y89{bottom:251.310000px;}
.ycd{bottom:252.750000px;}
.y198{bottom:254.910000px;}
.y102{bottom:255.810000px;}
.y4a{bottom:260.670000px;}
.y18e{bottom:261.210000px;}
.y1b4{bottom:263.370000px;}
.y15d{bottom:264.990000px;}
.y30{bottom:265.710000px;}
.yab{bottom:267.330000px;}
.y88{bottom:268.590000px;}
.ycc{bottom:270.030000px;}
.y1dd{bottom:270.765000px;}
.y197{bottom:272.010000px;}
.y101{bottom:273.135000px;}
.y49{bottom:277.995000px;}
.y1b3{bottom:280.695000px;}
.y15c{bottom:282.315000px;}
.y2f{bottom:283.035000px;}
.yaa{bottom:284.475000px;}
.y87{bottom:285.915000px;}
.y200{bottom:286.455000px;}
.y18d{bottom:287.175000px;}
.ycb{bottom:287.355000px;}
.y100{bottom:290.415000px;}
.y1ab{bottom:293.295000px;}
.y48{bottom:295.275000px;}
.y1b2{bottom:297.975000px;}
.y15b{bottom:299.595000px;}
.y2e{bottom:300.315000px;}
.ya9{bottom:301.755000px;}
.y86{bottom:303.195000px;}
.yca{bottom:304.635000px;}
.yff{bottom:307.695000px;}
.y1aa{bottom:307.875000px;}
.y1ff{bottom:310.035000px;}
.y1dc{bottom:311.655000px;}
.y47{bottom:312.555000px;}
.y1b1{bottom:315.255000px;}
.y15a{bottom:316.875000px;}
.y2d{bottom:317.595000px;}
.ya8{bottom:319.035000px;}
.y85{bottom:320.475000px;}
.yc9{bottom:321.735000px;}
.y1a9{bottom:322.455000px;}
.yfe{bottom:324.975000px;}
.y46{bottom:329.835000px;}
.y1b0{bottom:332.535000px;}
.y159{bottom:333.975000px;}
.y2c{bottom:334.875000px;}
.ya7{bottom:336.315000px;}
.y1a8{bottom:336.855000px;}
.y84{bottom:337.575000px;}
.yc8{bottom:339.015000px;}
.yfd{bottom:339.915000px;}
.y45{bottom:346.935000px;}
.y1af{bottom:349.635000px;}
.y1fe{bottom:350.895000px;}
.y158{bottom:351.255000px;}
.y1a7{bottom:351.435000px;}
.y2b{bottom:351.975000px;}
.ya6{bottom:353.595000px;}
.y83{bottom:354.855000px;}
.y129{bottom:355.035000px;}
.yc7{bottom:356.295000px;}
.y44{bottom:364.215000px;}
.y1a6{bottom:366.015000px;}
.y1ae{bottom:366.915000px;}
.y157{bottom:368.535000px;}
.y2a{bottom:369.255000px;}
.y128{bottom:369.615000px;}
.ya5{bottom:370.875000px;}
.y82{bottom:372.135000px;}
.yc6{bottom:373.575000px;}
.y1a5{bottom:380.595000px;}
.y43{bottom:381.495000px;}
.y127{bottom:384.195000px;}
.y156{bottom:385.815000px;}
.y29{bottom:386.535000px;}
.ya4{bottom:387.975000px;}
.y81{bottom:389.415000px;}
.yc5{bottom:390.855000px;}
.y1fd{bottom:391.575000px;}
.y1ad{bottom:393.195000px;}
.y1a1{bottom:395.175000px;}
.y42{bottom:398.775000px;}
.y155{bottom:403.095000px;}
.y28{bottom:403.815000px;}
.ya3{bottom:405.255000px;}
.y80{bottom:406.695000px;}
.yc4{bottom:408.135000px;}
.y1da{bottom:410.475000px;}
.y1ac{bottom:410.655000px;}
.y41{bottom:416.055000px;}
.y154{bottom:420.375000px;}
.y27{bottom:421.095000px;}
.ya2{bottom:422.535000px;}
.y7f{bottom:423.975000px;}
.yc3{bottom:425.235000px;}
.y125{bottom:427.035000px;}
.y1fc{bottom:432.435000px;}
.y40{bottom:433.335000px;}
.y153{bottom:437.475000px;}
.y26{bottom:438.195000px;}
.ya1{bottom:439.815000px;}
.y7e{bottom:441.075000px;}
.y124{bottom:441.615000px;}
.yc2{bottom:442.515000px;}
.y18c{bottom:443.955000px;}
.y3f{bottom:450.435000px;}
.y152{bottom:454.755000px;}
.y25{bottom:455.475000px;}
.y1fb{bottom:456.015000px;}
.y121{bottom:456.195000px;}
.y18b{bottom:456.915000px;}
.ya0{bottom:457.095000px;}
.y7d{bottom:458.355000px;}
.yc1{bottom:459.795000px;}
.y3e{bottom:467.715000px;}
.y1d9{bottom:468.615000px;}
.y123{bottom:470.595000px;}
.y18a{bottom:471.495000px;}
.y151{bottom:472.035000px;}
.y24{bottom:472.755000px;}
.y9f{bottom:474.195000px;}
.y7c{bottom:475.635000px;}
.yc0{bottom:477.075000px;}
.y3d{bottom:484.995000px;}
.y11f{bottom:485.175000px;}
.y189{bottom:486.075000px;}
.y150{bottom:489.315000px;}
.y23{bottom:490.035000px;}
.y9e{bottom:491.475000px;}
.y7b{bottom:492.915000px;}
.ybf{bottom:494.355000px;}
.y1fa{bottom:496.695000px;}
.y188{bottom:500.655000px;}
.y3c{bottom:502.275000px;}
.y22{bottom:507.315000px;}
.y9d{bottom:508.755000px;}
.y1d8{bottom:509.295000px;}
.y7a{bottom:510.195000px;}
.ybe{bottom:511.635000px;}
.y187{bottom:515.235000px;}
.y3b{bottom:519.555000px;}
.y14f{bottom:520.815000px;}
.y9c{bottom:526.035000px;}
.y79{bottom:527.295000px;}
.ybd{bottom:528.735000px;}
.y14e{bottom:534.495000px;}
.y21{bottom:535.035000px;}
.yfb{bottom:535.395000px;}
.y3a{bottom:536.835000px;}
.y1f9{bottom:537.555000px;}
.y9b{bottom:543.315000px;}
.y186{bottom:543.495000px;}
.y78{bottom:544.575000px;}
.ybc{bottom:546.015000px;}
.y14d{bottom:548.175000px;}
.yfa{bottom:549.075000px;}
.y1d6{bottom:550.155000px;}
.y181{bottom:558.105000px;}
.y9a{bottom:560.625000px;}
.y1f8{bottom:561.165000px;}
.y77{bottom:561.885000px;}
.yf9{bottom:562.785000px;}
.ybb{bottom:563.325000px;}
.y20{bottom:566.025000px;}
.y1d5{bottom:573.765000px;}
.y14c{bottom:575.565000px;}
.yf8{bottom:576.465000px;}
.y99{bottom:577.725000px;}
.y76{bottom:579.165000px;}
.yba{bottom:580.605000px;}
.y1f{bottom:583.305000px;}
.y183{bottom:586.545000px;}
.y14b{bottom:589.245000px;}
.yf7{bottom:590.145000px;}
.y98{bottom:595.005000px;}
.y75{bottom:596.445000px;}
.yb9{bottom:597.885000px;}
.y180{bottom:600.945000px;}
.y1f7{bottom:602.025000px;}
.y149{bottom:602.925000px;}
.yf6{bottom:603.825000px;}
.y1e{bottom:609.585000px;}
.y97{bottom:612.285000px;}
.y74{bottom:613.725000px;}
.y1d4{bottom:614.445000px;}
.yb8{bottom:614.985000px;}
.y14a{bottom:616.605000px;}
.yf3{bottom:617.505000px;}
.y1f6{bottom:625.425000px;}
.y1d{bottom:626.865000px;}
.y96{bottom:629.565000px;}
.y148{bottom:630.285000px;}
.y73{bottom:630.825000px;}
.yf5{bottom:631.185000px;}
.yb7{bottom:632.265000px;}
.y1c{bottom:643.965000px;}
.yf2{bottom:644.865000px;}
.y95{bottom:646.845000px;}
.yb6{bottom:649.545000px;}
.y1d3{bottom:655.305000px;}
.y72{bottom:657.105000px;}
.y1b{bottom:661.245000px;}
.y94{bottom:664.125000px;}
.y1f5{bottom:666.285000px;}
.y147{bottom:668.625000px;}
.y17f{bottom:673.305000px;}
.y71{bottom:676.005000px;}
.yb5{bottom:677.085000px;}
.y1a{bottom:678.525000px;}
.y93{bottom:681.225000px;}
.yf1{bottom:683.025000px;}
.y146{bottom:685.725000px;}
.y17e{bottom:687.885000px;}
.y1f4{bottom:689.865000px;}
.y19{bottom:695.805000px;}
.y1d2{bottom:696.165000px;}
.y92{bottom:698.505000px;}
.yf0{bottom:700.305000px;}
.y17d{bottom:702.465000px;}
.y145{bottom:703.005000px;}
.y18{bottom:713.085000px;}
.y70{bottom:715.785000px;}
.y17c{bottom:717.045000px;}
.yef{bottom:717.585000px;}
.y144{bottom:720.285000px;}
.y17{bottom:730.185000px;}
.y1f1{bottom:730.560000px;}
.y17b{bottom:731.625000px;}
.y6f{bottom:733.065000px;}
.yee{bottom:734.865000px;}
.y143{bottom:737.565000px;}
.y17a{bottom:746.025000px;}
.y16{bottom:747.465000px;}
.y6e{bottom:750.345000px;}
.yed{bottom:752.145000px;}
.y1d1{bottom:754.125000px;}
.y142{bottom:754.845000px;}
.y179{bottom:760.605000px;}
.y15{bottom:764.745000px;}
.y6d{bottom:767.625000px;}
.yec{bottom:769.425000px;}
.y1f0{bottom:771.405000px;}
.y141{bottom:772.125000px;}
.y175{bottom:775.185000px;}
.y14{bottom:782.025000px;}
.y6c{bottom:784.725000px;}
.yeb{bottom:786.525000px;}
.y140{bottom:789.225000px;}
.y1d0{bottom:794.985000px;}
.y13{bottom:799.305000px;}
.y6b{bottom:802.005000px;}
.yea{bottom:803.805000px;}
.y13f{bottom:806.505000px;}
.y1ef{bottom:812.280000px;}
.y12{bottom:816.585000px;}
.y6a{bottom:819.285000px;}
.ye9{bottom:821.085000px;}
.y13e{bottom:823.785000px;}
.y11{bottom:832.605000px;}
.y1cc{bottom:835.665000px;}
.y69{bottom:836.565000px;}
.y13d{bottom:841.110000px;}
.y174{bottom:847.590000px;}
.y1ee{bottom:852.990000px;}
.y68{bottom:853.890000px;}
.y10{bottom:854.790000px;}
.y13c{bottom:855.330000px;}
.y173{bottom:862.170000px;}
.y11e{bottom:868.470000px;}
.y13b{bottom:869.910000px;}
.y67{bottom:870.990000px;}
.yf{bottom:871.890000px;}
.y1cb{bottom:876.570000px;}
.y172{bottom:876.750000px;}
.y11d{bottom:883.050000px;}
.y13a{bottom:884.490000px;}
.y66{bottom:888.270000px;}
.ye{bottom:889.170000px;}
.y171{bottom:891.150000px;}
.y1ed{bottom:893.850000px;}
.y11c{bottom:897.450000px;}
.y139{bottom:898.890000px;}
.y65{bottom:905.550000px;}
.y170{bottom:905.730000px;}
.yd{bottom:911.670000px;}
.y11b{bottom:912.030000px;}
.y138{bottom:913.470000px;}
.y1c9{bottom:917.430000px;}
.y16f{bottom:920.310000px;}
.y64{bottom:922.830000px;}
.yc{bottom:923.730000px;}
.y11a{bottom:926.610000px;}
.y137{bottom:928.050000px;}
.y1ec{bottom:934.710000px;}
.y16d{bottom:934.890000px;}
.y63{bottom:940.110000px;}
.yb{bottom:941.010000px;}
.y119{bottom:941.190000px;}
.y136{bottom:942.630000px;}
.y16e{bottom:949.470000px;}
.y117{bottom:955.770000px;}
.y134{bottom:957.210000px;}
.y62{bottom:957.390000px;}
.ya{bottom:958.290000px;}
.y16a{bottom:963.870000px;}
.y61{bottom:974.490000px;}
.y9{bottom:975.390000px;}
.y1c7{bottom:981.690000px;}
.y60{bottom:991.770000px;}
.y8{bottom:992.670000px;}
.ye8{bottom:1007.070000px;}
.y5f{bottom:1009.050000px;}
.y133{bottom:1009.590000px;}
.y7{bottom:1015.170000px;}
.y1eb{bottom:1016.250000px;}
.ye7{bottom:1021.650000px;}
.y1c3{bottom:1022.550000px;}
.y132{bottom:1024.170000px;}
.y5e{bottom:1026.330000px;}
.y6{bottom:1027.590000px;}
.ye6{bottom:1036.230000px;}
.y131{bottom:1038.750000px;}
.y5d{bottom:1043.610000px;}
.y5{bottom:1048.110000px;}
.ye5{bottom:1050.810000px;}
.y130{bottom:1053.330000px;}
.y1ea{bottom:1057.110000px;}
.y5c{bottom:1060.890000px;}
.ye4{bottom:1065.390000px;}
.y12f{bottom:1067.910000px;}
.y20a{bottom:1077.636450px;}
.y5b{bottom:1077.990000px;}
.ye2{bottom:1079.970000px;}
.y1c1{bottom:1080.510000px;}
.y12e{bottom:1082.490000px;}
.y4{bottom:1087.350000px;}
.ydd{bottom:1094.370000px;}
.y5a{bottom:1095.270000px;}
.y12b{bottom:1096.890000px;}
.y1e9{bottom:1097.790000px;}
.y209{bottom:1098.334650px;}
.y1be{bottom:1104.090000px;}
.ydf{bottom:1108.950000px;}
.y3{bottom:1111.470000px;}
.y59{bottom:1112.550000px;}
.y208{bottom:1119.032850px;}
.yd9{bottom:1123.560000px;}
.y12a{bottom:1126.080000px;}
.y58{bottom:1129.860000px;}
.y1e8{bottom:1138.680000px;}
.y207{bottom:1139.731050px;}
.y57{bottom:1147.140000px;}
.y1bd{bottom:1156.320000px;}
.yd8{bottom:1159.560000px;}
.y2{bottom:1164.060000px;}
.y56{bottom:1164.420000px;}
.y1bc{bottom:1172.520000px;}
.y53{bottom:1196.280000px;}
.h11{height:12.335625px;}
.h1b{height:12.765000px;}
.h24{height:12.945000px;}
.h19{height:12.960000px;}
.h1a{height:12.990000px;}
.h16{height:13.665000px;}
.h1e{height:13.680000px;}
.h15{height:13.845000px;}
.h1f{height:13.860000px;}
.h2c{height:13.860150px;}
.h14{height:13.890000px;}
.hb{height:17.271000px;}
.h35{height:20.145000px;}
.h40{height:20.160000px;}
.h3a{height:20.190000px;}
.h31{height:20.325000px;}
.h3f{height:20.340000px;}
.h41{height:20.370000px;}
.h1c{height:23.307539px;}
.hd{height:23.319141px;}
.h17{height:26.640000px;}
.h29{height:27.525000px;}
.h22{height:27.540000px;}
.h26{height:28.245000px;}
.h21{height:28.260000px;}
.h12{height:28.470000px;}
.h1d{height:34.365000px;}
.h20{height:34.545000px;}
.he{height:34.560000px;}
.h2e{height:35.332031px;}
.h2b{height:36.281250px;}
.h34{height:37.425000px;}
.h37{height:37.440000px;}
.h3e{height:37.461000px;}
.h30{height:37.470000px;}
.h33{height:37.605000px;}
.h3c{height:37.611000px;}
.h39{height:37.620000px;}
.h3b{height:37.641000px;}
.h36{height:37.642500px;}
.h3d{height:37.650000px;}
.h7{height:38.139609px;}
.h2a{height:41.385000px;}
.h28{height:42.120000px;}
.h2d{height:42.894141px;}
.h18{height:44.518359px;}
.h13{height:47.344922px;}
.h25{height:50.025000px;}
.h23{height:51.645000px;}
.hf{height:52.998047px;}
.h10{height:54.421875px;}
.h32{height:54.705000px;}
.h38{height:54.720000px;}
.h8{height:58.621992px;}
.h2{height:58.651172px;}
.h3{height:60.226875px;}
.h9{height:61.531172px;}
.h27{height:62.100000px;}
.h2f{height:63.855000px;}
.h6{height:65.010937px;}
.ha{height:66.757500px;}
.hc{height:70.664062px;}
.h5{height:72.562500px;}
.h4{height:84.898125px;}
.h42{height:1262.835000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w57{width:17.130000px;}
.wa{width:30.225000px;}
.w15{width:30.765000px;}
.wc{width:31.485000px;}
.w3e{width:32.025000px;}
.w4b{width:37.065000px;}
.w34{width:37.605000px;}
.w54{width:39.996000px;}
.w2{width:40.140000px;}
.w4d{width:41.205000px;}
.w13{width:41.385000px;}
.w27{width:41.745000px;}
.w3c{width:41.925000px;}
.w40{width:42.105000px;}
.w7{width:48.045000px;}
.w31{width:49.665000px;}
.w36{width:51.141000px;}
.w3b{width:52.005000px;}
.w11{width:52.365000px;}
.w32{width:56.865000px;}
.w8{width:60.825000px;}
.w10{width:62.445000px;}
.w26{width:62.805000px;}
.w49{width:62.985000px;}
.w22{width:93.960000px;}
.w45{width:99.345000px;}
.w50{width:105.660000px;}
.w52{width:105.696000px;}
.w2e{width:108.525000px;}
.w1b{width:108.900000px;}
.w44{width:113.421000px;}
.w42{width:113.436000px;}
.w43{width:113.565000px;}
.w1f{width:120.060000px;}
.w38{width:122.796000px;}
.w2b{width:122.940000px;}
.w2d{width:122.961000px;}
.w2c{width:122.976000px;}
.w1a{width:124.596000px;}
.w18{width:124.740000px;}
.w19{width:124.776000px;}
.w53{width:127.260000px;}
.w21{width:129.456000px;}
.w20{width:129.636000px;}
.w14{width:138.801000px;}
.w33{width:139.320000px;}
.w4c{width:141.861000px;}
.w35{width:142.005000px;}
.w9{width:146.916000px;}
.w28{width:147.636000px;}
.w29{width:147.801000px;}
.w51{width:148.176000px;}
.w12{width:148.356000px;}
.w3d{width:149.076000px;}
.wb{width:156.255000px;}
.w3f{width:156.975000px;}
.w4a{width:158.430000px;}
.wf{width:170.295000px;}
.w5{width:177.870000px;}
.w39{width:181.830000px;}
.w48{width:183.795000px;}
.w6{width:188.475000px;}
.w24{width:190.110000px;}
.w25{width:190.275000px;}
.we{width:190.650000px;}
.w30{width:193.875000px;}
.w47{width:196.230000px;}
.w3a{width:199.815000px;}
.w1d{width:238.395000px;}
.w46{width:251.895000px;}
.w23{width:252.075000px;}
.w4f{width:254.775000px;}
.w2f{width:258.735000px;}
.w37{width:259.455000px;}
.w2a{width:259.635000px;}
.wd{width:261.075000px;}
.w4{width:261.795000px;}
.w17{width:266.295000px;}
.w41{width:297.075000px;}
.w1e{width:475.275000px;}
.w1c{width:714.390000px;}
.w3{width:739.935000px;}
.w4e{width:744.450000px;}
.w16{width:752.550000px;}
.w55{width:763.695000px;}
.w56{width:764.235000px;}
.w58{width:892.914000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x82{left:1.260000px;}
.x13{left:8.100000px;}
.x5f{left:9.720000px;}
.x1d{left:10.800000px;}
.x40{left:12.636000px;}
.x1e{left:13.860000px;}
.x53{left:15.300000px;}
.x20{left:16.740000px;}
.x60{left:18.000000px;}
.x2c{left:19.080000px;}
.x19{left:20.700000px;}
.x5b{left:21.780000px;}
.x1f{left:22.860000px;}
.x4c{left:24.840000px;}
.x28{left:28.080000px;}
.x77{left:31.680000px;}
.x34{left:32.940000px;}
.x4b{left:35.100000px;}
.x39{left:36.540000px;}
.x49{left:37.980000px;}
.x3c{left:39.420000px;}
.x30{left:41.220000px;}
.x47{left:42.480000px;}
.x3b{left:43.920000px;}
.x6f{left:44.985000px;}
.x6e{left:46.440000px;}
.x38{left:47.520000px;}
.x35{left:49.140000px;}
.x36{left:50.580000px;}
.x3a{left:52.200000px;}
.x37{left:53.490000px;}
.x4a{left:54.750000px;}
.x48{left:56.010000px;}
.x42{left:57.060000px;}
.x7d{left:60.870000px;}
.x44{left:61.950000px;}
.x7c{left:63.930000px;}
.x7b{left:65.190000px;}
.x7e{left:68.250000px;}
.x15{left:72.000000px;}
.x26{left:73.605000px;}
.x3{left:76.500000px;}
.x81{left:77.580000px;}
.x9{left:78.840000px;}
.x17{left:81.885000px;}
.x22{left:84.600000px;}
.x64{left:87.465000px;}
.x3d{left:90.000000px;}
.xb{left:97.776000px;}
.x6{left:102.096000px;}
.x86{left:106.299150px;}
.xe{left:108.576000px;}
.x4{left:123.696000px;}
.x5{left:140.436000px;}
.x69{left:201.855000px;}
.x41{left:220.530000px;}
.xd{left:223.770000px;}
.x80{left:235.470000px;}
.x61{left:239.295000px;}
.x3f{left:254.595000px;}
.x2{left:261.750000px;}
.x62{left:264.495000px;}
.x2e{left:270.435000px;}
.x59{left:299.595000px;}
.x70{left:317.055000px;}
.x4e{left:319.215000px;}
.x11{left:324.435000px;}
.x23{left:329.835000px;}
.x76{left:334.695000px;}
.x55{left:336.855000px;}
.x14{left:339.015000px;}
.x2f{left:343.515000px;}
.x24{left:346.395000px;}
.x12{left:369.975000px;}
.x6a{left:382.575000px;}
.xa{left:426.495000px;}
.x1{left:430.095000px;}
.x7f{left:438.375000px;}
.x78{left:441.075000px;}
.x43{left:449.895000px;}
.x7{left:459.255000px;}
.x56{left:460.515000px;}
.x21{left:465.735000px;}
.x31{left:468.975000px;}
.x74{left:471.135000px;}
.x5d{left:476.220000px;}
.x51{left:477.660000px;}
.xc{left:480.525000px;}
.x8{left:484.845000px;}
.x1b{left:486.660000px;}
.xf{left:491.325000px;}
.x73{left:492.405000px;}
.x2a{left:495.660000px;}
.x6b{left:496.740000px;}
.x85{left:512.385000px;}
.x5a{left:514.560000px;}
.x16{left:517.620000px;}
.x4f{left:520.140000px;}
.x63{left:529.320000px;}
.x71{left:534.360000px;}
.x25{left:537.780000px;}
.x45{left:580.245000px;}
.x57{left:584.220000px;}
.x79{left:589.965000px;}
.x32{left:594.645000px;}
.x6c{left:611.040000px;}
.x84{left:638.205000px;}
.x5e{left:657.300000px;}
.x3e{left:662.010000px;}
.x52{left:668.670000px;}
.x1c{left:674.610000px;}
.x2b{left:677.310000px;}
.x68{left:680.910000px;}
.x4d{left:687.570000px;}
.x75{left:689.910000px;}
.x10{left:692.070000px;}
.x7a{left:696.390000px;}
.x2d{left:704.670000px;}
.x18{left:706.830000px;}
.x58{left:707.910000px;}
.x27{left:708.990000px;}
.x46{left:710.430000px;}
.x72{left:718.890000px;}
.x33{left:720.150000px;}
.x6d{left:725.190000px;}
.x67{left:727.350000px;}
.x65{left:729.870000px;}
.x54{left:731.850000px;}
.x1a{left:755.610000px;}
.x5c{left:759.570000px;}
.x29{left:772.170000px;}
.x50{left:774.690000px;}
.x66{left:782.610000px;}
.x83{left:842.910000px;}
@media print{
.v5{vertical-align:-24.320000pt;}
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-1.312000pt;}
.lsb{letter-spacing:-1.050667pt;}
.ls10{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.821333pt;}
.ls13{letter-spacing:-0.736000pt;}
.lsf{letter-spacing:-0.688000pt;}
.ls4{letter-spacing:-0.592000pt;}
.lsa{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.409067pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.183467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:2.720000pt;}
.ls1{letter-spacing:11.040000pt;}
.lse{letter-spacing:70.346667pt;}
.ws2{word-spacing:-53.120000pt;}
.ws11{word-spacing:-29.959680pt;}
.ws16{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.720000pt;}
.wsc{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.463467pt;}
.wsa{word-spacing:-13.374933pt;}
.ws13{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws1{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.870933pt;}
.wsd{word-spacing:-12.736000pt;}
.ws7{word-spacing:-12.688000pt;}
.ws15{word-spacing:-12.544000pt;}
.ws8{word-spacing:-12.458667pt;}
.ws12{word-spacing:-12.320000pt;}
.ws3{word-spacing:-10.720000pt;}
.wsf{word-spacing:-10.400000pt;}
.ws10{word-spacing:-9.760000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws5{word-spacing:-8.320000pt;}
.ws9{word-spacing:0.000000pt;}
._2c{margin-left:-16.170667pt;}
._17{margin-left:-4.515200pt;}
._2{margin-left:-2.868480pt;}
._0{margin-left:-1.752960pt;}
._1{width:1.056640pt;}
._6{width:2.199467pt;}
._a{width:3.291947pt;}
._5{width:4.196480pt;}
._3{width:5.312000pt;}
._4{width:6.480640pt;}
._13{width:7.437867pt;}
._7{width:9.036160pt;}
._8{width:10.464640pt;}
._9{width:12.224000pt;}
._f{width:14.926720pt;}
._10{width:16.278187pt;}
._14{width:17.290240pt;}
._1a{width:18.992640pt;}
._d{width:20.344960pt;}
._e{width:21.306880pt;}
._c{width:22.310400pt;}
._b{width:23.957120pt;}
._1f{width:24.913280pt;}
._12{width:26.188160pt;}
._11{width:27.303680pt;}
._1b{width:28.844160pt;}
._15{width:30.119040pt;}
._16{width:31.134080pt;}
._1c{width:32.031360pt;}
._21{width:33.258880pt;}
._1e{width:34.793387pt;}
._1d{width:35.909120pt;}
._26{width:37.343573pt;}
._20{width:39.096320pt;}
._19{width:41.229227pt;}
._18{width:42.287787pt;}
._25{width:43.664640pt;}
._2a{width:47.329920pt;}
._2b{width:48.847787pt;}
._24{width:52.136960pt;}
._23{width:53.418240pt;}
._27{width:54.362240pt;}
._28{width:62.256640pt;}
._29{width:63.319040pt;}
._22{width:1279.978667pt;}
.fsa{font-size:10.880000pt;}
.fs9{font-size:21.120000pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fsb{font-size:40.320000pt;}
.fs3{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ydc{bottom:0.640000pt;}
.y16c{bottom:0.800000pt;}
.y1a4{bottom:1.760000pt;}
.yfc{bottom:2.400000pt;}
.ye3{bottom:2.560000pt;}
.ye0{bottom:2.720000pt;}
.y12d{bottom:3.040000pt;}
.y55{bottom:3.352000pt;}
.y1e3{bottom:4.466667pt;}
.y1c0{bottom:4.480000pt;}
.y1df{bottom:4.506667pt;}
.y1f2{bottom:4.626667pt;}
.y1c2{bottom:4.640000pt;}
.y1ce{bottom:4.680000pt;}
.ydb{bottom:5.600000pt;}
.y120{bottom:5.760000pt;}
.yf4{bottom:8.640000pt;}
.y185{bottom:8.800000pt;}
.y203{bottom:8.946667pt;}
.y1ca{bottom:8.960000pt;}
.y1d7{bottom:8.986667pt;}
.ye1{bottom:9.120000pt;}
.y1a3{bottom:11.680000pt;}
.y126{bottom:14.880000pt;}
.y182{bottom:15.200000pt;}
.y12c{bottom:15.360000pt;}
.y122{bottom:15.520000pt;}
.yde{bottom:15.680000pt;}
.y178{bottom:16.480000pt;}
.y1e4{bottom:16.626667pt;}
.y1c8{bottom:16.640000pt;}
.y1e0{bottom:16.666667pt;}
.y1f3{bottom:16.786667pt;}
.y1db{bottom:16.800000pt;}
.y1cf{bottom:16.840000pt;}
.y118{bottom:19.680000pt;}
.y1e2{bottom:19.826667pt;}
.yda{bottom:19.840000pt;}
.y1bf{bottom:19.866667pt;}
.y1e7{bottom:19.986667pt;}
.y1c5{bottom:20.000000pt;}
.y1de{bottom:20.026667pt;}
.y1cd{bottom:20.040000pt;}
.y184{bottom:21.440000pt;}
.y1c6{bottom:24.320000pt;}
.y1a2{bottom:25.920000pt;}
.y177{bottom:30.560000pt;}
.y16b{bottom:33.600000pt;}
.y135{bottom:33.920000pt;}
.y1c4{bottom:35.200000pt;}
.y176{bottom:44.320000pt;}
.y54{bottom:47.080000pt;}
.y1{bottom:50.432000pt;}
.y39{bottom:98.272000pt;}
.yb4{bottom:99.552000pt;}
.yd7{bottom:100.672000pt;}
.y91{bottom:100.832000pt;}
.y196{bottom:101.632000pt;}
.yd5{bottom:102.112000pt;}
.y1a0{bottom:103.872000pt;}
.yd6{bottom:106.752000pt;}
.y206{bottom:107.872000pt;}
.y116{bottom:108.832000pt;}
.y52{bottom:109.152000pt;}
.y1bb{bottom:111.552000pt;}
.y165{bottom:112.832000pt;}
.y38{bottom:113.632000pt;}
.yb3{bottom:114.912000pt;}
.y115{bottom:115.072000pt;}
.y90{bottom:116.032000pt;}
.y195{bottom:116.992000pt;}
.yd4{bottom:117.312000pt;}
.y19f{bottom:119.232000pt;}
.y109{bottom:120.032000pt;}
.y114{bottom:121.152000pt;}
.y51{bottom:124.512000pt;}
.y169{bottom:125.632000pt;}
.y1ba{bottom:126.912000pt;}
.y113{bottom:127.232000pt;}
.y164{bottom:128.192000pt;}
.y37{bottom:128.832000pt;}
.yb2{bottom:130.272000pt;}
.y205{bottom:131.232000pt;}
.y8f{bottom:131.392000pt;}
.y1e6{bottom:131.880000pt;}
.y194{bottom:132.352000pt;}
.yd3{bottom:132.672000pt;}
.y112{bottom:133.466667pt;}
.y19e{bottom:134.586667pt;}
.y108{bottom:135.386667pt;}
.y111{bottom:139.546667pt;}
.y50{bottom:139.706667pt;}
.y1b9{bottom:142.106667pt;}
.y163{bottom:143.546667pt;}
.y36{bottom:144.186667pt;}
.yb1{bottom:145.626667pt;}
.y8e{bottom:146.746667pt;}
.y193{bottom:147.706667pt;}
.yd2{bottom:148.026667pt;}
.y19d{bottom:149.786667pt;}
.y107{bottom:150.746667pt;}
.y110{bottom:151.866667pt;}
.y4f{bottom:155.066667pt;}
.y168{bottom:156.826667pt;}
.y1b8{bottom:157.466667pt;}
.y10f{bottom:157.946667pt;}
.y162{bottom:158.906667pt;}
.y35{bottom:159.546667pt;}
.yb0{bottom:160.826667pt;}
.y204{bottom:161.160000pt;}
.y8d{bottom:162.106667pt;}
.y192{bottom:163.066667pt;}
.yd1{bottom:163.386667pt;}
.y10e{bottom:164.026667pt;}
.y19c{bottom:165.146667pt;}
.y106{bottom:166.106667pt;}
.y1e5{bottom:168.200000pt;}
.y10d{bottom:170.266667pt;}
.y4e{bottom:170.426667pt;}
.y1b7{bottom:172.826667pt;}
.y161{bottom:174.266667pt;}
.y34{bottom:174.906667pt;}
.yaf{bottom:176.186667pt;}
.y10c{bottom:176.346667pt;}
.y8c{bottom:177.466667pt;}
.y191{bottom:178.266667pt;}
.yd0{bottom:178.746667pt;}
.y19b{bottom:180.506667pt;}
.y105{bottom:181.466667pt;}
.y10b{bottom:182.426667pt;}
.y4d{bottom:185.786667pt;}
.y167{bottom:188.186667pt;}
.y10a{bottom:188.666667pt;}
.y160{bottom:189.626667pt;}
.y33{bottom:190.266667pt;}
.yae{bottom:191.546667pt;}
.y8b{bottom:192.826667pt;}
.y190{bottom:193.626667pt;}
.ycf{bottom:194.106667pt;}
.y19a{bottom:195.866667pt;}
.y104{bottom:196.826667pt;}
.y202{bottom:197.480000pt;}
.y4c{bottom:201.146667pt;}
.y1b6{bottom:203.546667pt;}
.y1e1{bottom:204.520000pt;}
.y15f{bottom:204.826667pt;}
.y32{bottom:205.626667pt;}
.yad{bottom:206.906667pt;}
.y8a{bottom:208.026667pt;}
.y18f{bottom:208.986667pt;}
.yce{bottom:209.306667pt;}
.y199{bottom:211.226667pt;}
.y103{bottom:212.026667pt;}
.y4b{bottom:216.506667pt;}
.y201{bottom:218.280000pt;}
.y1b5{bottom:218.906667pt;}
.y166{bottom:219.546667pt;}
.y15e{bottom:220.186667pt;}
.y31{bottom:220.826667pt;}
.yac{bottom:222.266667pt;}
.y89{bottom:223.386667pt;}
.ycd{bottom:224.666667pt;}
.y198{bottom:226.586667pt;}
.y102{bottom:227.386667pt;}
.y4a{bottom:231.706667pt;}
.y18e{bottom:232.186667pt;}
.y1b4{bottom:234.106667pt;}
.y15d{bottom:235.546667pt;}
.y30{bottom:236.186667pt;}
.yab{bottom:237.626667pt;}
.y88{bottom:238.746667pt;}
.ycc{bottom:240.026667pt;}
.y1dd{bottom:240.680000pt;}
.y197{bottom:241.786667pt;}
.y101{bottom:242.786667pt;}
.y49{bottom:247.106667pt;}
.y1b3{bottom:249.506667pt;}
.y15c{bottom:250.946667pt;}
.y2f{bottom:251.586667pt;}
.yaa{bottom:252.866667pt;}
.y87{bottom:254.146667pt;}
.y200{bottom:254.626667pt;}
.y18d{bottom:255.266667pt;}
.ycb{bottom:255.426667pt;}
.y100{bottom:258.146667pt;}
.y1ab{bottom:260.706667pt;}
.y48{bottom:262.466667pt;}
.y1b2{bottom:264.866667pt;}
.y15b{bottom:266.306667pt;}
.y2e{bottom:266.946667pt;}
.ya9{bottom:268.226667pt;}
.y86{bottom:269.506667pt;}
.yca{bottom:270.786667pt;}
.yff{bottom:273.506667pt;}
.y1aa{bottom:273.666667pt;}
.y1ff{bottom:275.586667pt;}
.y1dc{bottom:277.026667pt;}
.y47{bottom:277.826667pt;}
.y1b1{bottom:280.226667pt;}
.y15a{bottom:281.666667pt;}
.y2d{bottom:282.306667pt;}
.ya8{bottom:283.586667pt;}
.y85{bottom:284.866667pt;}
.yc9{bottom:285.986667pt;}
.y1a9{bottom:286.626667pt;}
.yfe{bottom:288.866667pt;}
.y46{bottom:293.186667pt;}
.y1b0{bottom:295.586667pt;}
.y159{bottom:296.866667pt;}
.y2c{bottom:297.666667pt;}
.ya7{bottom:298.946667pt;}
.y1a8{bottom:299.426667pt;}
.y84{bottom:300.066667pt;}
.yc8{bottom:301.346667pt;}
.yfd{bottom:302.146667pt;}
.y45{bottom:308.386667pt;}
.y1af{bottom:310.786667pt;}
.y1fe{bottom:311.906667pt;}
.y158{bottom:312.226667pt;}
.y1a7{bottom:312.386667pt;}
.y2b{bottom:312.866667pt;}
.ya6{bottom:314.306667pt;}
.y83{bottom:315.426667pt;}
.y129{bottom:315.586667pt;}
.yc7{bottom:316.706667pt;}
.y44{bottom:323.746667pt;}
.y1a6{bottom:325.346667pt;}
.y1ae{bottom:326.146667pt;}
.y157{bottom:327.586667pt;}
.y2a{bottom:328.226667pt;}
.y128{bottom:328.546667pt;}
.ya5{bottom:329.666667pt;}
.y82{bottom:330.786667pt;}
.yc6{bottom:332.066667pt;}
.y1a5{bottom:338.306667pt;}
.y43{bottom:339.106667pt;}
.y127{bottom:341.506667pt;}
.y156{bottom:342.946667pt;}
.y29{bottom:343.586667pt;}
.ya4{bottom:344.866667pt;}
.y81{bottom:346.146667pt;}
.yc5{bottom:347.426667pt;}
.y1fd{bottom:348.066667pt;}
.y1ad{bottom:349.506667pt;}
.y1a1{bottom:351.266667pt;}
.y42{bottom:354.466667pt;}
.y155{bottom:358.306667pt;}
.y28{bottom:358.946667pt;}
.ya3{bottom:360.226667pt;}
.y80{bottom:361.506667pt;}
.yc4{bottom:362.786667pt;}
.y1da{bottom:364.866667pt;}
.y1ac{bottom:365.026667pt;}
.y41{bottom:369.826667pt;}
.y154{bottom:373.666667pt;}
.y27{bottom:374.306667pt;}
.ya2{bottom:375.586667pt;}
.y7f{bottom:376.866667pt;}
.yc3{bottom:377.986667pt;}
.y125{bottom:379.586667pt;}
.y1fc{bottom:384.386667pt;}
.y40{bottom:385.186667pt;}
.y153{bottom:388.866667pt;}
.y26{bottom:389.506667pt;}
.ya1{bottom:390.946667pt;}
.y7e{bottom:392.066667pt;}
.y124{bottom:392.546667pt;}
.yc2{bottom:393.346667pt;}
.y18c{bottom:394.626667pt;}
.y3f{bottom:400.386667pt;}
.y152{bottom:404.226667pt;}
.y25{bottom:404.866667pt;}
.y1fb{bottom:405.346667pt;}
.y121{bottom:405.506667pt;}
.y18b{bottom:406.146667pt;}
.ya0{bottom:406.306667pt;}
.y7d{bottom:407.426667pt;}
.yc1{bottom:408.706667pt;}
.y3e{bottom:415.746667pt;}
.y1d9{bottom:416.546667pt;}
.y123{bottom:418.306667pt;}
.y18a{bottom:419.106667pt;}
.y151{bottom:419.586667pt;}
.y24{bottom:420.226667pt;}
.y9f{bottom:421.506667pt;}
.y7c{bottom:422.786667pt;}
.yc0{bottom:424.066667pt;}
.y3d{bottom:431.106667pt;}
.y11f{bottom:431.266667pt;}
.y189{bottom:432.066667pt;}
.y150{bottom:434.946667pt;}
.y23{bottom:435.586667pt;}
.y9e{bottom:436.866667pt;}
.y7b{bottom:438.146667pt;}
.ybf{bottom:439.426667pt;}
.y1fa{bottom:441.506667pt;}
.y188{bottom:445.026667pt;}
.y3c{bottom:446.466667pt;}
.y22{bottom:450.946667pt;}
.y9d{bottom:452.226667pt;}
.y1d8{bottom:452.706667pt;}
.y7a{bottom:453.506667pt;}
.ybe{bottom:454.786667pt;}
.y187{bottom:457.986667pt;}
.y3b{bottom:461.826667pt;}
.y14f{bottom:462.946667pt;}
.y9c{bottom:467.586667pt;}
.y79{bottom:468.706667pt;}
.ybd{bottom:469.986667pt;}
.y14e{bottom:475.106667pt;}
.y21{bottom:475.586667pt;}
.yfb{bottom:475.906667pt;}
.y3a{bottom:477.186667pt;}
.y1f9{bottom:477.826667pt;}
.y9b{bottom:482.946667pt;}
.y186{bottom:483.106667pt;}
.y78{bottom:484.066667pt;}
.ybc{bottom:485.346667pt;}
.y14d{bottom:487.266667pt;}
.yfa{bottom:488.066667pt;}
.y1d6{bottom:489.026667pt;}
.y181{bottom:496.093333pt;}
.y9a{bottom:498.333333pt;}
.y1f8{bottom:498.813333pt;}
.y77{bottom:499.453333pt;}
.yf9{bottom:500.253333pt;}
.ybb{bottom:500.733333pt;}
.y20{bottom:503.133333pt;}
.y1d5{bottom:510.013333pt;}
.y14c{bottom:511.613333pt;}
.yf8{bottom:512.413333pt;}
.y99{bottom:513.533333pt;}
.y76{bottom:514.813333pt;}
.yba{bottom:516.093333pt;}
.y1f{bottom:518.493333pt;}
.y183{bottom:521.373333pt;}
.y14b{bottom:523.773333pt;}
.yf7{bottom:524.573333pt;}
.y98{bottom:528.893333pt;}
.y75{bottom:530.173333pt;}
.yb9{bottom:531.453333pt;}
.y180{bottom:534.173333pt;}
.y1f7{bottom:535.133333pt;}
.y149{bottom:535.933333pt;}
.yf6{bottom:536.733333pt;}
.y1e{bottom:541.853333pt;}
.y97{bottom:544.253333pt;}
.y74{bottom:545.533333pt;}
.y1d4{bottom:546.173333pt;}
.yb8{bottom:546.653333pt;}
.y14a{bottom:548.093333pt;}
.yf3{bottom:548.893333pt;}
.y1f6{bottom:555.933333pt;}
.y1d{bottom:557.213333pt;}
.y96{bottom:559.613333pt;}
.y148{bottom:560.253333pt;}
.y73{bottom:560.733333pt;}
.yf5{bottom:561.053333pt;}
.yb7{bottom:562.013333pt;}
.y1c{bottom:572.413333pt;}
.yf2{bottom:573.213333pt;}
.y95{bottom:574.973333pt;}
.yb6{bottom:577.373333pt;}
.y1d3{bottom:582.493333pt;}
.y72{bottom:584.093333pt;}
.y1b{bottom:587.773333pt;}
.y94{bottom:590.333333pt;}
.y1f5{bottom:592.253333pt;}
.y147{bottom:594.333333pt;}
.y17f{bottom:598.493333pt;}
.y71{bottom:600.893333pt;}
.yb5{bottom:601.853333pt;}
.y1a{bottom:603.133333pt;}
.y93{bottom:605.533333pt;}
.yf1{bottom:607.133333pt;}
.y146{bottom:609.533333pt;}
.y17e{bottom:611.453333pt;}
.y1f4{bottom:613.213333pt;}
.y19{bottom:618.493333pt;}
.y1d2{bottom:618.813333pt;}
.y92{bottom:620.893333pt;}
.yf0{bottom:622.493333pt;}
.y17d{bottom:624.413333pt;}
.y145{bottom:624.893333pt;}
.y18{bottom:633.853333pt;}
.y70{bottom:636.253333pt;}
.y17c{bottom:637.373333pt;}
.yef{bottom:637.853333pt;}
.y144{bottom:640.253333pt;}
.y17{bottom:649.053333pt;}
.y1f1{bottom:649.386667pt;}
.y17b{bottom:650.333333pt;}
.y6f{bottom:651.613333pt;}
.yee{bottom:653.213333pt;}
.y143{bottom:655.613333pt;}
.y17a{bottom:663.133333pt;}
.y16{bottom:664.413333pt;}
.y6e{bottom:666.973333pt;}
.yed{bottom:668.573333pt;}
.y1d1{bottom:670.333333pt;}
.y142{bottom:670.973333pt;}
.y179{bottom:676.093333pt;}
.y15{bottom:679.773333pt;}
.y6d{bottom:682.333333pt;}
.yec{bottom:683.933333pt;}
.y1f0{bottom:685.693333pt;}
.y141{bottom:686.333333pt;}
.y175{bottom:689.053333pt;}
.y14{bottom:695.133333pt;}
.y6c{bottom:697.533333pt;}
.yeb{bottom:699.133333pt;}
.y140{bottom:701.533333pt;}
.y1d0{bottom:706.653333pt;}
.y13{bottom:710.493333pt;}
.y6b{bottom:712.893333pt;}
.yea{bottom:714.493333pt;}
.y13f{bottom:716.893333pt;}
.y1ef{bottom:722.026667pt;}
.y12{bottom:725.853333pt;}
.y6a{bottom:728.253333pt;}
.ye9{bottom:729.853333pt;}
.y13e{bottom:732.253333pt;}
.y11{bottom:740.093333pt;}
.y1cc{bottom:742.813333pt;}
.y69{bottom:743.613333pt;}
.y13d{bottom:747.653333pt;}
.y174{bottom:753.413333pt;}
.y1ee{bottom:758.213333pt;}
.y68{bottom:759.013333pt;}
.y10{bottom:759.813333pt;}
.y13c{bottom:760.293333pt;}
.y173{bottom:766.373333pt;}
.y11e{bottom:771.973333pt;}
.y13b{bottom:773.253333pt;}
.y67{bottom:774.213333pt;}
.yf{bottom:775.013333pt;}
.y1cb{bottom:779.173333pt;}
.y172{bottom:779.333333pt;}
.y11d{bottom:784.933333pt;}
.y13a{bottom:786.213333pt;}
.y66{bottom:789.573333pt;}
.ye{bottom:790.373333pt;}
.y171{bottom:792.133333pt;}
.y1ed{bottom:794.533333pt;}
.y11c{bottom:797.733333pt;}
.y139{bottom:799.013333pt;}
.y65{bottom:804.933333pt;}
.y170{bottom:805.093333pt;}
.yd{bottom:810.373333pt;}
.y11b{bottom:810.693333pt;}
.y138{bottom:811.973333pt;}
.y1c9{bottom:815.493333pt;}
.y16f{bottom:818.053333pt;}
.y64{bottom:820.293333pt;}
.yc{bottom:821.093333pt;}
.y11a{bottom:823.653333pt;}
.y137{bottom:824.933333pt;}
.y1ec{bottom:830.853333pt;}
.y16d{bottom:831.013333pt;}
.y63{bottom:835.653333pt;}
.yb{bottom:836.453333pt;}
.y119{bottom:836.613333pt;}
.y136{bottom:837.893333pt;}
.y16e{bottom:843.973333pt;}
.y117{bottom:849.573333pt;}
.y134{bottom:850.853333pt;}
.y62{bottom:851.013333pt;}
.ya{bottom:851.813333pt;}
.y16a{bottom:856.773333pt;}
.y61{bottom:866.213333pt;}
.y9{bottom:867.013333pt;}
.y1c7{bottom:872.613333pt;}
.y60{bottom:881.573333pt;}
.y8{bottom:882.373333pt;}
.ye8{bottom:895.173333pt;}
.y5f{bottom:896.933333pt;}
.y133{bottom:897.413333pt;}
.y7{bottom:902.373333pt;}
.y1eb{bottom:903.333333pt;}
.ye7{bottom:908.133333pt;}
.y1c3{bottom:908.933333pt;}
.y132{bottom:910.373333pt;}
.y5e{bottom:912.293333pt;}
.y6{bottom:913.413333pt;}
.ye6{bottom:921.093333pt;}
.y131{bottom:923.333333pt;}
.y5d{bottom:927.653333pt;}
.y5{bottom:931.653333pt;}
.ye5{bottom:934.053333pt;}
.y130{bottom:936.293333pt;}
.y1ea{bottom:939.653333pt;}
.y5c{bottom:943.013333pt;}
.ye4{bottom:947.013333pt;}
.y12f{bottom:949.253333pt;}
.y20a{bottom:957.899067pt;}
.y5b{bottom:958.213333pt;}
.ye2{bottom:959.973333pt;}
.y1c1{bottom:960.453333pt;}
.y12e{bottom:962.213333pt;}
.y4{bottom:966.533333pt;}
.ydd{bottom:972.773333pt;}
.y5a{bottom:973.573333pt;}
.y12b{bottom:975.013333pt;}
.y1e9{bottom:975.813333pt;}
.y209{bottom:976.297467pt;}
.y1be{bottom:981.413333pt;}
.ydf{bottom:985.733333pt;}
.y3{bottom:987.973333pt;}
.y59{bottom:988.933333pt;}
.y208{bottom:994.695867pt;}
.yd9{bottom:998.720000pt;}
.y12a{bottom:1000.960000pt;}
.y58{bottom:1004.320000pt;}
.y1e8{bottom:1012.160000pt;}
.y207{bottom:1013.094267pt;}
.y57{bottom:1019.680000pt;}
.y1bd{bottom:1027.840000pt;}
.yd8{bottom:1030.720000pt;}
.y2{bottom:1034.720000pt;}
.y56{bottom:1035.040000pt;}
.y1bc{bottom:1042.240000pt;}
.y53{bottom:1063.360000pt;}
.h11{height:10.965000pt;}
.h1b{height:11.346667pt;}
.h24{height:11.506667pt;}
.h19{height:11.520000pt;}
.h1a{height:11.546667pt;}
.h16{height:12.146667pt;}
.h1e{height:12.160000pt;}
.h15{height:12.306667pt;}
.h1f{height:12.320000pt;}
.h2c{height:12.320133pt;}
.h14{height:12.346667pt;}
.hb{height:15.352000pt;}
.h35{height:17.906667pt;}
.h40{height:17.920000pt;}
.h3a{height:17.946667pt;}
.h31{height:18.066667pt;}
.h3f{height:18.080000pt;}
.h41{height:18.106667pt;}
.h1c{height:20.717812pt;}
.hd{height:20.728125pt;}
.h17{height:23.680000pt;}
.h29{height:24.466667pt;}
.h22{height:24.480000pt;}
.h26{height:25.106667pt;}
.h21{height:25.120000pt;}
.h12{height:25.306667pt;}
.h1d{height:30.546667pt;}
.h20{height:30.706667pt;}
.he{height:30.720000pt;}
.h2e{height:31.406250pt;}
.h2b{height:32.250000pt;}
.h34{height:33.266667pt;}
.h37{height:33.280000pt;}
.h3e{height:33.298667pt;}
.h30{height:33.306667pt;}
.h33{height:33.426667pt;}
.h3c{height:33.432000pt;}
.h39{height:33.440000pt;}
.h3b{height:33.458667pt;}
.h36{height:33.460000pt;}
.h3d{height:33.466667pt;}
.h7{height:33.901875pt;}
.h2a{height:36.786667pt;}
.h28{height:37.440000pt;}
.h2d{height:38.128125pt;}
.h18{height:39.571875pt;}
.h13{height:42.084375pt;}
.h25{height:44.466667pt;}
.h23{height:45.906667pt;}
.hf{height:47.109375pt;}
.h10{height:48.375000pt;}
.h32{height:48.626667pt;}
.h38{height:48.640000pt;}
.h8{height:52.108438pt;}
.h2{height:52.134375pt;}
.h3{height:53.535000pt;}
.h9{height:54.694375pt;}
.h27{height:55.200000pt;}
.h2f{height:56.760000pt;}
.h6{height:57.787500pt;}
.ha{height:59.340000pt;}
.hc{height:62.812500pt;}
.h5{height:64.500000pt;}
.h4{height:75.465000pt;}
.h42{height:1122.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w57{width:15.226667pt;}
.wa{width:26.866667pt;}
.w15{width:27.346667pt;}
.wc{width:27.986667pt;}
.w3e{width:28.466667pt;}
.w4b{width:32.946667pt;}
.w34{width:33.426667pt;}
.w54{width:35.552000pt;}
.w2{width:35.680000pt;}
.w4d{width:36.626667pt;}
.w13{width:36.786667pt;}
.w27{width:37.106667pt;}
.w3c{width:37.266667pt;}
.w40{width:37.426667pt;}
.w7{width:42.706667pt;}
.w31{width:44.146667pt;}
.w36{width:45.458667pt;}
.w3b{width:46.226667pt;}
.w11{width:46.546667pt;}
.w32{width:50.546667pt;}
.w8{width:54.066667pt;}
.w10{width:55.506667pt;}
.w26{width:55.826667pt;}
.w49{width:55.986667pt;}
.w22{width:83.520000pt;}
.w45{width:88.306667pt;}
.w50{width:93.920000pt;}
.w52{width:93.952000pt;}
.w2e{width:96.466667pt;}
.w1b{width:96.800000pt;}
.w44{width:100.818667pt;}
.w42{width:100.832000pt;}
.w43{width:100.946667pt;}
.w1f{width:106.720000pt;}
.w38{width:109.152000pt;}
.w2b{width:109.280000pt;}
.w2d{width:109.298667pt;}
.w2c{width:109.312000pt;}
.w1a{width:110.752000pt;}
.w18{width:110.880000pt;}
.w19{width:110.912000pt;}
.w53{width:113.120000pt;}
.w21{width:115.072000pt;}
.w20{width:115.232000pt;}
.w14{width:123.378667pt;}
.w33{width:123.840000pt;}
.w4c{width:126.098667pt;}
.w35{width:126.226667pt;}
.w9{width:130.592000pt;}
.w28{width:131.232000pt;}
.w29{width:131.378667pt;}
.w51{width:131.712000pt;}
.w12{width:131.872000pt;}
.w3d{width:132.512000pt;}
.wb{width:138.893333pt;}
.w3f{width:139.533333pt;}
.w4a{width:140.826667pt;}
.wf{width:151.373333pt;}
.w5{width:158.106667pt;}
.w39{width:161.626667pt;}
.w48{width:163.373333pt;}
.w6{width:167.533333pt;}
.w24{width:168.986667pt;}
.w25{width:169.133333pt;}
.we{width:169.466667pt;}
.w30{width:172.333333pt;}
.w47{width:174.426667pt;}
.w3a{width:177.613333pt;}
.w1d{width:211.906667pt;}
.w46{width:223.906667pt;}
.w23{width:224.066667pt;}
.w4f{width:226.466667pt;}
.w2f{width:229.986667pt;}
.w37{width:230.626667pt;}
.w2a{width:230.786667pt;}
.wd{width:232.066667pt;}
.w4{width:232.706667pt;}
.w17{width:236.706667pt;}
.w41{width:264.066667pt;}
.w1e{width:422.466667pt;}
.w1c{width:635.013333pt;}
.w3{width:657.720000pt;}
.w4e{width:661.733333pt;}
.w16{width:668.933333pt;}
.w55{width:678.840000pt;}
.w56{width:679.320000pt;}
.w58{width:793.701333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x82{left:1.120000pt;}
.x13{left:7.200000pt;}
.x5f{left:8.640000pt;}
.x1d{left:9.600000pt;}
.x40{left:11.232000pt;}
.x1e{left:12.320000pt;}
.x53{left:13.600000pt;}
.x20{left:14.880000pt;}
.x60{left:16.000000pt;}
.x2c{left:16.960000pt;}
.x19{left:18.400000pt;}
.x5b{left:19.360000pt;}
.x1f{left:20.320000pt;}
.x4c{left:22.080000pt;}
.x28{left:24.960000pt;}
.x77{left:28.160000pt;}
.x34{left:29.280000pt;}
.x4b{left:31.200000pt;}
.x39{left:32.480000pt;}
.x49{left:33.760000pt;}
.x3c{left:35.040000pt;}
.x30{left:36.640000pt;}
.x47{left:37.760000pt;}
.x3b{left:39.040000pt;}
.x6f{left:39.986667pt;}
.x6e{left:41.280000pt;}
.x38{left:42.240000pt;}
.x35{left:43.680000pt;}
.x36{left:44.960000pt;}
.x3a{left:46.400000pt;}
.x37{left:47.546667pt;}
.x4a{left:48.666667pt;}
.x48{left:49.786667pt;}
.x42{left:50.720000pt;}
.x7d{left:54.106667pt;}
.x44{left:55.066667pt;}
.x7c{left:56.826667pt;}
.x7b{left:57.946667pt;}
.x7e{left:60.666667pt;}
.x15{left:64.000000pt;}
.x26{left:65.426667pt;}
.x3{left:68.000000pt;}
.x81{left:68.960000pt;}
.x9{left:70.080000pt;}
.x17{left:72.786667pt;}
.x22{left:75.200000pt;}
.x64{left:77.746667pt;}
.x3d{left:80.000000pt;}
.xb{left:86.912000pt;}
.x6{left:90.752000pt;}
.x86{left:94.488133pt;}
.xe{left:96.512000pt;}
.x4{left:109.952000pt;}
.x5{left:124.832000pt;}
.x69{left:179.426667pt;}
.x41{left:196.026667pt;}
.xd{left:198.906667pt;}
.x80{left:209.306667pt;}
.x61{left:212.706667pt;}
.x3f{left:226.306667pt;}
.x2{left:232.666667pt;}
.x62{left:235.106667pt;}
.x2e{left:240.386667pt;}
.x59{left:266.306667pt;}
.x70{left:281.826667pt;}
.x4e{left:283.746667pt;}
.x11{left:288.386667pt;}
.x23{left:293.186667pt;}
.x76{left:297.506667pt;}
.x55{left:299.426667pt;}
.x14{left:301.346667pt;}
.x2f{left:305.346667pt;}
.x24{left:307.906667pt;}
.x12{left:328.866667pt;}
.x6a{left:340.066667pt;}
.xa{left:379.106667pt;}
.x1{left:382.306667pt;}
.x7f{left:389.666667pt;}
.x78{left:392.066667pt;}
.x43{left:399.906667pt;}
.x7{left:408.226667pt;}
.x56{left:409.346667pt;}
.x21{left:413.986667pt;}
.x31{left:416.866667pt;}
.x74{left:418.786667pt;}
.x5d{left:423.306667pt;}
.x51{left:424.586667pt;}
.xc{left:427.133333pt;}
.x8{left:430.973333pt;}
.x1b{left:432.586667pt;}
.xf{left:436.733333pt;}
.x73{left:437.693333pt;}
.x2a{left:440.586667pt;}
.x6b{left:441.546667pt;}
.x85{left:455.453333pt;}
.x5a{left:457.386667pt;}
.x16{left:460.106667pt;}
.x4f{left:462.346667pt;}
.x63{left:470.506667pt;}
.x71{left:474.986667pt;}
.x25{left:478.026667pt;}
.x45{left:515.773333pt;}
.x57{left:519.306667pt;}
.x79{left:524.413333pt;}
.x32{left:528.573333pt;}
.x6c{left:543.146667pt;}
.x84{left:567.293333pt;}
.x5e{left:584.266667pt;}
.x3e{left:588.453333pt;}
.x52{left:594.373333pt;}
.x1c{left:599.653333pt;}
.x2b{left:602.053333pt;}
.x68{left:605.253333pt;}
.x4d{left:611.173333pt;}
.x75{left:613.253333pt;}
.x10{left:615.173333pt;}
.x7a{left:619.013333pt;}
.x2d{left:626.373333pt;}
.x18{left:628.293333pt;}
.x58{left:629.253333pt;}
.x27{left:630.213333pt;}
.x46{left:631.493333pt;}
.x72{left:639.013333pt;}
.x33{left:640.133333pt;}
.x6d{left:644.613333pt;}
.x67{left:646.533333pt;}
.x65{left:648.773333pt;}
.x54{left:650.533333pt;}
.x1a{left:671.653333pt;}
.x5c{left:675.173333pt;}
.x29{left:686.373333pt;}
.x50{left:688.613333pt;}
.x66{left:695.653333pt;}
.x83{left:749.253333pt;}
}




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