
    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_40483d74b4600db95da69aad.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e7a63695c606217f8f083daf.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_df72d6d14f1206521df2ae04.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6e25439a62219644bed0fb9a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.349000;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_c7b2c43f6c75b2276e3aa387.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;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_b184027b70021625b1879cb9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_376cb590b2a5b41a15586b5a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c7b2c43f6c75b2276e3aa387.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_1105bf61ba3f5592ad2804c1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_40f2e50f8572ce3373061322.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_50de69082723f50d086df756.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_995217097edff0dda7624ede.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.700000;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_a6df5920cb4d0ad192074ba9.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_2ef3a04f1f1100b5804b16ac.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_8090c6be9b80c76bc352e9d0.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_995217097edff0dda7624ede.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.700000;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_0fb67214025b17c3ab220b7d.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_6af0f4cb154764b0f94ab332.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_6c47bdf14e9f63cab5155346.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_ac8745a0bca11b1d6a585f07.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.700000;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_ce73665795a1482671d09acf.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_8eb0bb26c1c9dfd42ef58969.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_6c47bdf14e9f63cab5155346.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_ac8745a0bca11b1d6a585f07.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.700000;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_6668596ef14ad2a3ee7c15ca.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_88da2ba879b3e870559dd9f0.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_fa7c96a2fbe162b4e1561b89.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_eb4792a0447f7e296247e45f.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.700000;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_3f5631691736873812b4c097.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_c7303c3ef34ae33d2c139e51.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_42f633f619532c60a38e81fb.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.700000;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_e3536ce4e9e0ccda7b3df4ae.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_e6818803d88a451e52af2e42.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_06ac08da177fd4c38834277b.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_42f633f619532c60a38e81fb.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.700000;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_ecc8be011b89e54ebcb0a9b3.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_be02cef9bcb09594dc4051f0.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_804324c5ef86bb055993c475.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_acd3639f892195988a1d0844.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.700000;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_1c7fdb6c38ac63e871343d49.woff2')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_d6d144743bcdc07ca4ae1b33.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_acd3639f892195988a1d0844.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.700000;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_2c0fa5e383d62625d9a570b5.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_f858ae99eafdd10551d56002.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_36cb6e119a6255a015f079d1.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_27e4037a44e5f72cf1a25537.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.700000;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_1d5be38bf2917f454bd1bf0c.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;}
@font-face{font-family:ff30;src:url('chunks/assets/font_8c0f0fd9f753a6469cfe5e16.woff2')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_bafdd1173bc366f43f62eee2.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_e7b874f85398f29165572394.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_27e4037a44e5f72cf1a25537.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_2e1a529546cab3471cf8a116.woff2')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_aa6e7c304d58a2eacf1bcef8.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.700000;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;}
.m32{transform:matrix(0.000000,-0.142500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.142500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.142500,0.250000,0.000000,0,0);}
.m31{transform:matrix(0.000000,-0.157500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.157500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.157500,0.250000,0.000000,0,0);}
.m3c{transform:matrix(0.000000,-0.172500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.172500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.172500,0.250000,0.000000,0,0);}
.m34{transform:matrix(0.000000,-0.190000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.190000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.190000,0.250000,0.000000,0,0);}
.m45{transform:matrix(0.000000,-0.192500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.192500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.192500,0.250000,0.000000,0,0);}
.m36{transform:matrix(0.000000,-0.197500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.197500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.197500,0.250000,0.000000,0,0);}
.m35{transform:matrix(0.000000,-0.202500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.202500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.202500,0.250000,0.000000,0,0);}
.m33{transform:matrix(0.000000,-0.205000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.205000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.205000,0.250000,0.000000,0,0);}
.m41{transform:matrix(0.000000,-0.212500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.212500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.212500,0.250000,0.000000,0,0);}
.m3b{transform:matrix(0.000000,-0.215000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.215000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.215000,0.250000,0.000000,0,0);}
.m3a{transform:matrix(0.000000,-0.220000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.220000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.220000,0.250000,0.000000,0,0);}
.m30{transform:matrix(0.000000,-0.222500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.222500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.222500,0.250000,0.000000,0,0);}
.m3e{transform:matrix(0.000000,-0.225000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.225000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.225000,0.250000,0.000000,0,0);}
.m46{transform:matrix(0.000000,-0.230000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.230000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.230000,0.250000,0.000000,0,0);}
.m43{transform:matrix(0.000000,-0.232500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.232500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.232500,0.250000,0.000000,0,0);}
.m40{transform:matrix(0.000000,-0.235000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.235000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.235000,0.250000,0.000000,0,0);}
.m37{transform:matrix(0.000000,-0.237500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.237500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.237500,0.250000,0.000000,0,0);}
.m44{transform:matrix(0.000000,-0.240000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.240000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.240000,0.250000,0.000000,0,0);}
.m3f{transform:matrix(0.000000,-0.242500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.242500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.242500,0.250000,0.000000,0,0);}
.m38{transform:matrix(0.000000,-0.245000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.245000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.245000,0.250000,0.000000,0,0);}
.m39{transform:matrix(0.000000,-0.247500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.247500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.247500,0.250000,0.000000,0,0);}
.m47{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);}
.m42{transform:matrix(0.000000,-0.267500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.267500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.267500,0.250000,0.000000,0,0);}
.m3d{transform:matrix(0.000000,-0.292500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.292500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.292500,0.250000,0.000000,0,0);}
.m2e{transform:matrix(0.000000,-0.307500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.307500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.307500,0.250000,0.000000,0,0);}
.m2f{transform:matrix(0.000000,-0.470000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.470000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.470000,0.250000,0.000000,0,0);}
.m2d{transform:matrix(0.000000,-5.000000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-5.000000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-5.000000,0.250000,0.000000,0,0);}
.m2c{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m14{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(1.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.567500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(3.962500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.962500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.962500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-1.806000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.106000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1{word-spacing:-66.000000px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:175.645161px;}
._0{width:5.300816px;}
._2{width:9.099474px;}
._1{width:11.147576px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:transparent;}
.fs6{font-size:30.000000px;}
.fs8{font-size:36.000000px;}
.fs5{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fsa{font-size:96.000000px;}
.fs9{font-size:162.000000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:4.504500px;}
.y21{bottom:5.940000px;}
.y59{bottom:24.304500px;}
.y20{bottom:25.740000px;}
.y1f{bottom:56.429898px;}
.y58{bottom:57.865398px;}
.y1bf{bottom:83.625000px;}
.yde{bottom:84.298500px;}
.y93{bottom:84.673500px;}
.y1e{bottom:86.173500px;}
.y126{bottom:86.848500px;}
.y1aa{bottom:87.375000px;}
.yf4{bottom:88.125000px;}
.y57{bottom:88.500000px;}
.y1c6{bottom:88.875000px;}
.yb9{bottom:89.173500px;}
.y159{bottom:90.298500px;}
.y125{bottom:135.148500px;}
.y1be{bottom:135.448500px;}
.y158{bottom:136.048500px;}
.y1c5{bottom:137.398500px;}
.ydd{bottom:140.473500px;}
.y1e8{bottom:141.825000px;}
.y56{bottom:143.173500px;}
.y1d{bottom:145.875000px;}
.y157{bottom:152.923500px;}
.y1bd{bottom:153.073500px;}
.y92{bottom:159.898500px;}
.ydc{bottom:159.973500px;}
.y183{bottom:160.348500px;}
.y55{bottom:162.673500px;}
.y1c{bottom:165.375000px;}
.y1d5{bottom:165.600000px;}
.y91{bottom:179.398500px;}
.y182{bottom:180.148500px;}
.y124{bottom:181.948500px;}
.y54{bottom:182.098500px;}
.y156{bottom:182.848500px;}
.y1b{bottom:185.173500px;}
.y1a{bottom:185.848500px;}
.y1c3{bottom:193.573500px;}
.y90{bottom:198.823500px;}
.ydb{bottom:199.500000px;}
.y8f{bottom:199.875000px;}
.y181{bottom:199.948500px;}
.y1c7{bottom:200.850000px;}
.yb8{bottom:201.148500px;}
.y123{bottom:201.298500px;}
.y53{bottom:201.898500px;}
.y155{bottom:202.573500px;}
.y1cb{bottom:208.800000px;}
.y1c2{bottom:210.898500px;}
.yda{bottom:218.625000px;}
.y180{bottom:219.000000px;}
.yf3{bottom:220.573500px;}
.y122{bottom:220.798500px;}
.y52{bottom:221.323500px;}
.y154{bottom:222.375000px;}
.y19{bottom:225.073500px;}
.y1ce{bottom:229.648500px;}
.y1d1{bottom:234.750000px;}
.y8e{bottom:238.048500px;}
.y8d{bottom:238.798500px;}
.y1d4{bottom:239.400000px;}
.yf2{bottom:240.073500px;}
.y121{bottom:240.223500px;}
.yb7{bottom:240.750000px;}
.y51{bottom:241.125000px;}
.y153{bottom:241.875000px;}
.y1cf{bottom:241.950000px;}
.y1bc{bottom:242.023500px;}
.y1bb{bottom:242.398500px;}
.y1b9{bottom:242.698500px;}
.y1ba{bottom:242.773500px;}
.y1c8{bottom:248.635500px;}
.y1b8{bottom:250.348500px;}
.y17f{bottom:257.923500px;}
.y8c{bottom:258.223500px;}
.yd9{bottom:258.898500px;}
.y120{bottom:259.648500px;}
.yf1{bottom:259.798500px;}
.yb6{bottom:259.875000px;}
.y50{bottom:260.548500px;}
.yb5{bottom:261.298500px;}
.y152{bottom:261.673500px;}
.y1cc{bottom:262.425000px;}
.y1b7{bottom:266.473500px;}
.y8b{bottom:277.273500px;}
.y17e{bottom:277.348500px;}
.y8a{bottom:278.023500px;}
.y17d{bottom:278.098500px;}
.y17c{bottom:278.398500px;}
.y1b6{bottom:279.148500px;}
.y11f{bottom:279.448500px;}
.y4f{bottom:280.048500px;}
.y151{bottom:281.098500px;}
.y1b5{bottom:289.875000px;}
.y1c9{bottom:291.975000px;}
.y89{bottom:296.773500px;}
.y4e{bottom:299.773500px;}
.y18{bottom:300.000000px;}
.yb4{bottom:300.523500px;}
.y17{bottom:300.750000px;}
.y150{bottom:300.898500px;}
.y1b2{bottom:301.048500px;}
.y1b3{bottom:312.525000px;}
.y1b4{bottom:312.973500px;}
.y88{bottom:316.500000px;}
.yd8{bottom:316.875000px;}
.y17b{bottom:316.948500px;}
.y11e{bottom:318.375000px;}
.y4b{bottom:319.198500px;}
.y4c{bottom:319.275000px;}
.y4d{bottom:319.573500px;}
.y14f{bottom:320.698500px;}
.y1b1{bottom:325.573500px;}
.y87{bottom:336.000000px;}
.y17a{bottom:336.375000px;}
.y86{bottom:336.673500px;}
.y1b0{bottom:337.798500px;}
.y11d{bottom:338.173500px;}
.y48{bottom:339.000000px;}
.y49{bottom:339.073500px;}
.y16{bottom:339.223500px;}
.y4a{bottom:339.375000px;}
.y15{bottom:339.973500px;}
.y14e{bottom:340.500000px;}
.y1cd{bottom:344.850000px;}
.y1ae{bottom:348.598500px;}
.y1af{bottom:350.025000px;}
.y1d2{bottom:354.225000px;}
.yd7{bottom:355.798500px;}
.y85{bottom:356.173500px;}
.y179{bottom:356.548500px;}
.y11c{bottom:357.598500px;}
.yf0{bottom:358.500000px;}
.y47{bottom:358.798500px;}
.y14d{bottom:360.298500px;}
.y1d0{bottom:364.350000px;}
.y1ab{bottom:368.025000px;}
.y84{bottom:375.223500px;}
.yd6{bottom:375.598500px;}
.y83{bottom:375.900000px;}
.y178{bottom:375.973500px;}
.y11b{bottom:377.400000px;}
.yef{bottom:377.923500px;}
.yb3{bottom:378.298500px;}
.y46{bottom:378.598500px;}
.y14{bottom:379.573500px;}
.y14c{bottom:379.723500px;}
.y1da{bottom:383.025000px;}
.y1ca{bottom:390.225000px;}
.y82{bottom:394.650000px;}
.y177{bottom:395.098500px;}
.yd5{bottom:395.400000px;}
.y176{bottom:395.775000px;}
.y11a{bottom:396.823500px;}
.y13{bottom:396.900000px;}
.yee{bottom:397.348500px;}
.y12{bottom:397.573500px;}
.y45{bottom:398.098500px;}
.y14b{bottom:399.525000px;}
.yd4{bottom:414.073500px;}
.y81{bottom:414.448500px;}
.y11{bottom:414.525000px;}
.y80{bottom:415.198500px;}
.y175{bottom:415.275000px;}
.y119{bottom:416.250000px;}
.yed{bottom:417.150000px;}
.yb2{bottom:417.525000px;}
.y44{bottom:417.900000px;}
.y14a{bottom:418.948500px;}
.y10{bottom:432.150000px;}
.yd3{bottom:433.875000px;}
.y7f{bottom:434.250000px;}
.y174{bottom:434.323500px;}
.y173{bottom:434.698500px;}
.y118{bottom:436.048500px;}
.yec{bottom:436.573500px;}
.yb1{bottom:436.948500px;}
.y43{bottom:437.400000px;}
.y149{bottom:438.750000px;}
.yf{bottom:449.775000px;}
.y7e{bottom:453.375000px;}
.y7d{bottom:454.048500px;}
.y117{bottom:455.473500px;}
.yb0{bottom:456.375000px;}
.y42{bottom:457.125000px;}
.yaf{bottom:457.500000px;}
.y148{bottom:458.548500px;}
.ye{bottom:467.398500px;}
.y7{bottom:468.148500px;}
.yd2{bottom:472.798500px;}
.y7c{bottom:473.098500px;}
.y7b{bottom:473.473500px;}
.y172{bottom:473.923500px;}
.y116{bottom:474.973500px;}
.y41{bottom:476.548500px;}
.y147{bottom:477.973500px;}
.y1d8{bottom:483.450000px;}
.y1d7{bottom:484.950000px;}
.yd1{bottom:492.598500px;}
.y7a{bottom:492.898500px;}
.y115{bottom:494.698500px;}
.y114{bottom:495.073500px;}
.y40{bottom:495.673500px;}
.yeb{bottom:495.973500px;}
.yae{bottom:496.348500px;}
.y1d3{bottom:496.800000px;}
.y146{bottom:497.473500px;}
.y1ad{bottom:504.823500px;}
.yd{bottom:506.625000px;}
.y79{bottom:512.023500px;}
.y78{bottom:512.398500px;}
.y113{bottom:513.823500px;}
.y112{bottom:514.198500px;}
.y111{bottom:514.500000px;}
.yad{bottom:515.098500px;}
.y3f{bottom:515.773500px;}
.y145{bottom:517.198500px;}
.yc{bottom:524.250000px;}
.y77{bottom:531.823500px;}
.y76{bottom:532.198500px;}
.y110{bottom:533.250000px;}
.y10f{bottom:533.625000px;}
.y10e{bottom:534.000000px;}
.yac{bottom:534.898500px;}
.y3e{bottom:535.198500px;}
.y144{bottom:536.698500px;}
.yb{bottom:541.948500px;}
.y75{bottom:551.250000px;}
.y74{bottom:551.625000px;}
.y171{bottom:551.698500px;}
.y10d{bottom:553.125000px;}
.y1a8{bottom:553.573500px;}
.y10c{bottom:553.798500px;}
.y1a9{bottom:553.948500px;}
.yab{bottom:554.323500px;}
.y1d9{bottom:554.400000px;}
.y3d{bottom:554.698500px;}
.y143{bottom:556.125000px;}
.ya{bottom:559.198500px;}
.y73{bottom:571.048500px;}
.y170{bottom:571.125000px;}
.y10b{bottom:572.848500px;}
.y1a7{bottom:573.375000px;}
.yea{bottom:573.750000px;}
.yaa{bottom:574.125000px;}
.y3c{bottom:574.500000px;}
.y142{bottom:575.923500px;}
.y9{bottom:576.823500px;}
.yd0{bottom:590.098500px;}
.y72{bottom:590.173500px;}
.y71{bottom:590.473500px;}
.y16f{bottom:590.548500px;}
.y1a6{bottom:592.798500px;}
.ye9{bottom:593.173500px;}
.ya9{bottom:593.548500px;}
.y3b{bottom:593.923500px;}
.y8{bottom:594.448500px;}
.y141{bottom:595.348500px;}
.ycf{bottom:609.598500px;}
.y70{bottom:609.898500px;}
.y6f{bottom:609.973500px;}
.y16e{bottom:610.348500px;}
.y10a{bottom:612.073500px;}
.y6{bottom:612.148500px;}
.y1a4{bottom:612.298500px;}
.y1a5{bottom:612.598500px;}
.ya8{bottom:612.973500px;}
.y3a{bottom:613.423500px;}
.y140{bottom:614.773500px;}
.y1ea{bottom:624.600000px;}
.y1e9{bottom:624.975000px;}
.yce{bottom:629.023500px;}
.y6e{bottom:629.398500px;}
.y1a3{bottom:632.098500px;}
.ya7{bottom:632.773500px;}
.ye8{bottom:632.848500px;}
.y39{bottom:633.148500px;}
.y13f{bottom:634.573500px;}
.ycd{bottom:648.523500px;}
.y6d{bottom:648.823500px;}
.y16d{bottom:649.198500px;}
.y16c{bottom:649.573500px;}
.y1a2{bottom:651.523500px;}
.ya6{bottom:652.198500px;}
.y38{bottom:652.573500px;}
.y13e{bottom:654.000000px;}
.ycc{bottom:668.250000px;}
.y6c{bottom:668.625000px;}
.y109{bottom:670.798500px;}
.y1a0{bottom:670.948500px;}
.y1a1{bottom:671.323500px;}
.ya5{bottom:671.698500px;}
.y37{bottom:672.375000px;}
.y13d{bottom:673.798500px;}
.ycb{bottom:687.673500px;}
.y6b{bottom:688.048500px;}
.y108{bottom:689.923500px;}
.y19d{bottom:690.375000px;}
.y19f{bottom:690.750000px;}
.ya4{bottom:691.500000px;}
.y36{bottom:691.875000px;}
.y13c{bottom:693.298500px;}
.y19e{bottom:693.898500px;}
.yca{bottom:707.098500px;}
.y6a{bottom:707.473500px;}
.y16b{bottom:707.923500px;}
.y107{bottom:709.648500px;}
.y19c{bottom:710.173500px;}
.ye7{bottom:710.548500px;}
.y35{bottom:711.598500px;}
.y13b{bottom:712.723500px;}
.y1d6{bottom:713.175000px;}
.y5{bottom:716.548500px;}
.y69{bottom:727.273500px;}
.y16a{bottom:727.348500px;}
.y106{bottom:729.073500px;}
.y19b{bottom:729.973500px;}
.ye6{bottom:730.348500px;}
.ya3{bottom:730.723500px;}
.y34{bottom:731.098500px;}
.y13a{bottom:732.523500px;}
.y4{bottom:735.598500px;}
.yc9{bottom:746.398500px;}
.y68{bottom:746.698500px;}
.y169{bottom:746.773500px;}
.y105{bottom:748.573500px;}
.y19a{bottom:749.398500px;}
.y199{bottom:749.473500px;}
.ye5{bottom:749.773500px;}
.ya2{bottom:750.148500px;}
.y33{bottom:750.523500px;}
.y139{bottom:751.573500px;}
.y138{bottom:751.948500px;}
.yc8{bottom:765.823500px;}
.y67{bottom:766.198500px;}
.y168{bottom:766.573500px;}
.y104{bottom:768.300000px;}
.y197{bottom:768.898500px;}
.y198{bottom:769.273500px;}
.ya1{bottom:769.948500px;}
.y32{bottom:770.323500px;}
.y137{bottom:771.375000px;}
.y1e1{bottom:772.575000px;}
.y3{bottom:773.698500px;}
.yc7{bottom:785.250000px;}
.y66{bottom:786.000000px;}
.y103{bottom:787.800000px;}
.y195{bottom:788.323500px;}
.y196{bottom:789.000000px;}
.ya0{bottom:789.375000px;}
.y31{bottom:789.750000px;}
.y136{bottom:790.875000px;}
.y1e2{bottom:799.950000px;}
.yc6{bottom:805.050000px;}
.y65{bottom:805.425000px;}
.y167{bottom:805.500000px;}
.y102{bottom:807.223500px;}
.y194{bottom:808.125000px;}
.y9f{bottom:808.875000px;}
.y30{bottom:809.550000px;}
.y9e{bottom:809.625000px;}
.y135{bottom:810.675000px;}
.y2{bottom:810.823500px;}
.y1e3{bottom:816.150000px;}
.y1e6{bottom:818.250000px;}
.yc5{bottom:824.473500px;}
.y166{bottom:824.925000px;}
.y101{bottom:826.648500px;}
.y192{bottom:827.175000px;}
.y193{bottom:827.925000px;}
.y1df{bottom:828.750000px;}
.y2f{bottom:828.973500px;}
.y134{bottom:830.098500px;}
.y1{bottom:831.375000px;}
.y64{bottom:843.900000px;}
.y165{bottom:844.425000px;}
.y100{bottom:846.150000px;}
.y190{bottom:846.675000px;}
.y191{bottom:847.348500px;}
.y9d{bottom:848.098500px;}
.y9c{bottom:848.473500px;}
.y2e{bottom:848.775000px;}
.y133{bottom:849.525000px;}
.y1e0{bottom:858.598500px;}
.yc4{bottom:863.698500px;}
.yc3{bottom:863.775000px;}
.y164{bottom:864.150000px;}
.y1e4{bottom:864.750000px;}
.yff{bottom:865.875000px;}
.y18f{bottom:866.775000px;}
.y9b{bottom:867.900000px;}
.y2d{bottom:868.275000px;}
.y132{bottom:869.323500px;}
.y163{bottom:883.650000px;}
.yfe{bottom:885.300000px;}
.y18e{bottom:885.900000px;}
.y9a{bottom:887.323500px;}
.y2c{bottom:888.000000px;}
.y131{bottom:888.750000px;}
.y1db{bottom:896.400000px;}
.y1dc{bottom:901.425000px;}
.y63{bottom:902.625000px;}
.y162{bottom:903.000000px;}
.yfd{bottom:904.800000px;}
.y18d{bottom:905.323500px;}
.ye4{bottom:906.750000px;}
.y99{bottom:907.125000px;}
.y2b{bottom:907.500000px;}
.y130{bottom:908.550000px;}
.y1e7{bottom:921.600000px;}
.yc2{bottom:922.050000px;}
.y62{bottom:922.425000px;}
.y161{bottom:922.800000px;}
.yfc{bottom:924.598500px;}
.y18c{bottom:925.500000px;}
.y98{bottom:926.550000px;}
.y2a{bottom:927.300000px;}
.y12f{bottom:928.348500px;}
.yc1{bottom:941.473500px;}
.y61{bottom:941.848500px;}
.y160{bottom:942.300000px;}
.yfb{bottom:943.723500px;}
.y1dd{bottom:943.950000px;}
.y18b{bottom:944.550000px;}
.y97{bottom:945.973500px;}
.ye3{bottom:946.050000px;}
.y29{bottom:946.723500px;}
.y12e{bottom:947.775000px;}
.yc0{bottom:960.900000px;}
.y60{bottom:961.275000px;}
.y15f{bottom:961.723500px;}
.yfa{bottom:963.448500px;}
.y18a{bottom:964.348500px;}
.y96{bottom:965.775000px;}
.y28{bottom:966.150000px;}
.y12d{bottom:967.573500px;}
.ybf{bottom:980.698500px;}
.y5f{bottom:981.073500px;}
.y15e{bottom:981.150000px;}
.yf9{bottom:982.875000px;}
.y189{bottom:984.223500px;}
.ye2{bottom:985.573500px;}
.y27{bottom:985.948500px;}
.y12c{bottom:987.375000px;}
.y1c1{bottom:987.448500px;}
.y1e5{bottom:987.450000px;}
.y1de{bottom:993.975000px;}
.ybe{bottom:1000.198500px;}
.y5e{bottom:1000.500000px;}
.y15d{bottom:1000.948500px;}
.y187{bottom:1003.650000px;}
.y188{bottom:1003.948500px;}
.y26{bottom:1005.073500px;}
.ye1{bottom:1005.750000px;}
.y12b{bottom:1007.175000px;}
.y1c0{bottom:1014.073500px;}
.ybd{bottom:1019.625000px;}
.y5d{bottom:1020.000000px;}
.y15c{bottom:1020.375000px;}
.yf7{bottom:1021.800000px;}
.yf8{bottom:1022.098500px;}
.y186{bottom:1023.823500px;}
.y25{bottom:1024.500000px;}
.y95{bottom:1024.875000px;}
.y12a{bottom:1026.973500px;}
.y1ac{bottom:1067.550000px;}
.ybb{bottom:1068.223500px;}
.yba{bottom:1068.598500px;}
.y5b{bottom:1068.900000px;}
.ybc{bottom:1068.973500px;}
.y5c{bottom:1069.275000px;}
.y15a{bottom:1069.348500px;}
.y15b{bottom:1069.800000px;}
.yf6{bottom:1070.400000px;}
.yf5{bottom:1070.775000px;}
.y184{bottom:1072.425000px;}
.y22{bottom:1073.400000px;}
.y23{bottom:1073.473500px;}
.y185{bottom:1073.848500px;}
.ye0{bottom:1074.150000px;}
.ydf{bottom:1074.223500px;}
.y94{bottom:1074.525000px;}
.y24{bottom:1074.598500px;}
.y128{bottom:1075.573500px;}
.y127{bottom:1075.650000px;}
.y1c4{bottom:1076.025000px;}
.y129{bottom:1076.400000px;}
.h11{height:29.443359px;}
.h14{height:35.332031px;}
.h15{height:36.281250px;}
.hf{height:39.930225px;}
.hd{height:41.220703px;}
.ha{height:42.058500px;}
.h1c{height:43.804688px;}
.h3{height:47.109375px;}
.h5{height:52.998047px;}
.h6{height:54.421875px;}
.h9{height:58.857422px;}
.h2{height:58.886719px;}
.h7{height:60.468750px;}
.h1d{height:62.578125px;}
.he{height:64.743164px;}
.h8{height:64.775391px;}
.hb{height:65.274000px;}
.h10{height:66.515625px;}
.h4{height:70.664062px;}
.h1{height:72.562500px;}
.h1e{height:75.992719px;}
.h13{height:76.514648px;}
.h1b{height:76.552734px;}
.h18{height:81.351562px;}
.h1a{height:94.218750px;}
.h19{height:96.750000px;}
.h16{height:158.994141px;}
.h17{height:163.265625px;}
.h0{height:1227.000000px;}
.h12{height:1228.500000px;}
.hc{height:1231.500000px;}
.h1f{height:1246.500000px;}
.w5{width:285.348000px;}
.w1{width:285.351000px;}
.w3{width:377.263500px;}
.w0{width:834.000000px;}
.w4{width:835.500000px;}
.w2{width:837.000000px;}
.w6{width:840.000000px;}
.w7{width:843.000000px;}
.x0{left:0.000000px;}
.x1e{left:3.747000px;}
.x1f{left:9.520500px;}
.x11{left:63.779755px;}
.x8{left:73.425000px;}
.x23{left:74.850000px;}
.x3a{left:76.350000px;}
.x53{left:77.400000px;}
.x6e{left:83.550000px;}
.x5f{left:85.350000px;}
.x15{left:86.400000px;}
.x12{left:87.450000px;}
.x1c{left:88.575000px;}
.x2e{left:89.625000px;}
.x24{left:91.425000px;}
.x3f{left:92.550000px;}
.xe{left:94.350000px;}
.x25{left:96.150000px;}
.x3c{left:97.198500px;}
.x1{left:98.250000px;}
.x55{left:99.375000px;}
.x59{left:102.187500px;}
.x13{left:103.350000px;}
.x41{left:105.448500px;}
.x2c{left:106.485000px;}
.x16{left:107.625000px;}
.x1b{left:109.050000px;}
.x2f{left:110.850000px;}
.xf{left:113.400000px;}
.x26{left:115.575000px;}
.x28{left:117.375000px;}
.x29{left:119.175000px;}
.x60{left:121.350000px;}
.x3b{left:123.825000px;}
.x3d{left:124.950000px;}
.x19{left:127.800000px;}
.x35{left:128.850000px;}
.x20{left:129.975000px;}
.x36{left:131.775000px;}
.x52{left:132.825000px;}
.x33{left:137.175000px;}
.x8f{left:139.276500px;}
.xd{left:140.775000px;}
.x66{left:149.400000px;}
.x27{left:169.575000px;}
.xc{left:171.000000px;}
.x5a{left:173.850000px;}
.x67{left:178.200000px;}
.x61{left:181.050000px;}
.x39{left:182.850000px;}
.x3e{left:183.975000px;}
.x30{left:192.975000px;}
.x34{left:196.950000px;}
.x8d{left:202.350000px;}
.x9{left:203.398500px;}
.x2a{left:205.950000px;}
.x1a{left:210.975000px;}
.x6c{left:220.648500px;}
.x56{left:225.750000px;}
.x8c{left:234.000000px;}
.x54{left:241.200000px;}
.x8e{left:264.225000px;}
.x46{left:266.400000px;}
.x17{left:271.425000px;}
.x2{left:272.850000px;}
.x14{left:277.575000px;}
.x42{left:280.425000px;}
.x2d{left:281.550000px;}
.x63{left:286.200000px;}
.x57{left:287.250000px;}
.x90{left:290.850000px;}
.x6d{left:295.200000px;}
.x64{left:297.000000px;}
.x31{left:303.450000px;}
.x48{left:314.625000px;}
.x6{left:321.150000px;}
.x4{left:329.025000px;}
.x18{left:336.225000px;}
.x8b{left:346.350000px;}
.x47{left:359.250000px;}
.x5d{left:360.750000px;}
.x69{left:363.600000px;}
.x6a{left:368.250000px;}
.x43{left:370.800000px;}
.x7{left:372.225000px;}
.xa{left:387.375000px;}
.x32{left:389.548500px;}
.x62{left:393.450000px;}
.xb{left:394.575000px;}
.x1d{left:395.956787px;}
.x3{left:399.600000px;}
.x8a{left:401.401500px;}
.x49{left:406.048500px;}
.x5c{left:420.450000px;}
.x7d{left:426.600000px;}
.x7e{left:428.775000px;}
.x80{left:430.575000px;}
.x7f{left:433.048500px;}
.x81{left:434.175000px;}
.x93{left:447.451500px;}
.x44{left:451.423500px;}
.x92{left:454.651500px;}
.x91{left:455.701500px;}
.x4d{left:473.025000px;}
.x5{left:484.950000px;}
.x83{left:495.375000px;}
.x82{left:498.601500px;}
.x45{left:505.050000px;}
.x84{left:510.826500px;}
.x4e{left:511.950000px;}
.x89{left:531.375000px;}
.x78{left:545.025000px;}
.x79{left:554.400000px;}
.x95{left:558.750000px;}
.x4f{left:574.950000px;}
.x7a{left:578.175000px;}
.x10{left:579.600000px;}
.x70{left:581.400000px;}
.x72{left:582.450000px;}
.x76{left:584.250000px;}
.x77{left:587.550000px;}
.x71{left:596.850000px;}
.x85{left:606.601500px;}
.x68{left:609.825000px;}
.x6b{left:612.000000px;}
.x65{left:613.425000px;}
.x75{left:618.825000px;}
.x86{left:622.500000px;}
.x74{left:625.650000px;}
.x73{left:633.975000px;}
.x50{left:635.025000px;}
.x87{left:637.500000px;}
.x7c{left:642.600000px;}
.x2b{left:644.400000px;}
.x40{left:645.450000px;}
.x58{left:647.250000px;}
.x94{left:650.851500px;}
.x7b{left:657.000000px;}
.x5e{left:677.175000px;}
.x4a{left:678.225000px;}
.x21{left:693.375000px;}
.x37{left:694.425000px;}
.x4c{left:695.850000px;}
.x6f{left:696.975000px;}
.x5b{left:705.225000px;}
.x88{left:707.776500px;}
.x4b{left:720.000000px;}
.x22{left:733.650000px;}
.x38{left:734.775000px;}
.x96{left:738.750000px;}
.x51{left:745.950000px;}
.x97{left:758.176500px;}
@media print{
.v1{vertical-align:-1.605333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.205333pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-58.666667pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:156.129032pt;}
._0{width:4.711837pt;}
._2{width:8.088421pt;}
._1{width:9.908956pt;}
.fs6{font-size:26.666667pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fsa{font-size:85.333333pt;}
.fs9{font-size:144.000000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:4.004000pt;}
.y21{bottom:5.280000pt;}
.y59{bottom:21.604000pt;}
.y20{bottom:22.880000pt;}
.y1f{bottom:50.159909pt;}
.y58{bottom:51.435909pt;}
.y1bf{bottom:74.333333pt;}
.yde{bottom:74.932000pt;}
.y93{bottom:75.265333pt;}
.y1e{bottom:76.598667pt;}
.y126{bottom:77.198667pt;}
.y1aa{bottom:77.666667pt;}
.yf4{bottom:78.333333pt;}
.y57{bottom:78.666667pt;}
.y1c6{bottom:79.000000pt;}
.yb9{bottom:79.265333pt;}
.y159{bottom:80.265333pt;}
.y125{bottom:120.132000pt;}
.y1be{bottom:120.398667pt;}
.y158{bottom:120.932000pt;}
.y1c5{bottom:122.132000pt;}
.ydd{bottom:124.865333pt;}
.y1e8{bottom:126.066667pt;}
.y56{bottom:127.265333pt;}
.y1d{bottom:129.666667pt;}
.y157{bottom:135.932000pt;}
.y1bd{bottom:136.065333pt;}
.y92{bottom:142.132000pt;}
.ydc{bottom:142.198667pt;}
.y183{bottom:142.532000pt;}
.y55{bottom:144.598667pt;}
.y1c{bottom:147.000000pt;}
.y1d5{bottom:147.200000pt;}
.y91{bottom:159.465333pt;}
.y182{bottom:160.132000pt;}
.y124{bottom:161.732000pt;}
.y54{bottom:161.865333pt;}
.y156{bottom:162.532000pt;}
.y1b{bottom:164.598667pt;}
.y1a{bottom:165.198667pt;}
.y1c3{bottom:172.065333pt;}
.y90{bottom:176.732000pt;}
.ydb{bottom:177.333333pt;}
.y8f{bottom:177.666667pt;}
.y181{bottom:177.732000pt;}
.y1c7{bottom:178.533333pt;}
.yb8{bottom:178.798667pt;}
.y123{bottom:178.932000pt;}
.y53{bottom:179.465333pt;}
.y155{bottom:180.065333pt;}
.y1cb{bottom:185.600000pt;}
.y1c2{bottom:187.465333pt;}
.yda{bottom:194.333333pt;}
.y180{bottom:194.666667pt;}
.yf3{bottom:196.065333pt;}
.y122{bottom:196.265333pt;}
.y52{bottom:196.732000pt;}
.y154{bottom:197.666667pt;}
.y19{bottom:200.065333pt;}
.y1ce{bottom:204.132000pt;}
.y1d1{bottom:208.666667pt;}
.y8e{bottom:211.598667pt;}
.y8d{bottom:212.265333pt;}
.y1d4{bottom:212.800000pt;}
.yf2{bottom:213.398667pt;}
.y121{bottom:213.532000pt;}
.yb7{bottom:214.000000pt;}
.y51{bottom:214.333333pt;}
.y153{bottom:215.000000pt;}
.y1cf{bottom:215.066667pt;}
.y1bc{bottom:215.132000pt;}
.y1bb{bottom:215.465333pt;}
.y1b9{bottom:215.732000pt;}
.y1ba{bottom:215.798667pt;}
.y1c8{bottom:221.009333pt;}
.y1b8{bottom:222.532000pt;}
.y17f{bottom:229.265333pt;}
.y8c{bottom:229.532000pt;}
.yd9{bottom:230.132000pt;}
.y120{bottom:230.798667pt;}
.yf1{bottom:230.932000pt;}
.yb6{bottom:231.000000pt;}
.y50{bottom:231.598667pt;}
.yb5{bottom:232.265333pt;}
.y152{bottom:232.598667pt;}
.y1cc{bottom:233.266667pt;}
.y1b7{bottom:236.865333pt;}
.y8b{bottom:246.465333pt;}
.y17e{bottom:246.532000pt;}
.y8a{bottom:247.132000pt;}
.y17d{bottom:247.198667pt;}
.y17c{bottom:247.465333pt;}
.y1b6{bottom:248.132000pt;}
.y11f{bottom:248.398667pt;}
.y4f{bottom:248.932000pt;}
.y151{bottom:249.865333pt;}
.y1b5{bottom:257.666667pt;}
.y1c9{bottom:259.533333pt;}
.y89{bottom:263.798667pt;}
.y4e{bottom:266.465333pt;}
.y18{bottom:266.666667pt;}
.yb4{bottom:267.132000pt;}
.y17{bottom:267.333333pt;}
.y150{bottom:267.465333pt;}
.y1b2{bottom:267.598667pt;}
.y1b3{bottom:277.800000pt;}
.y1b4{bottom:278.198667pt;}
.y88{bottom:281.333333pt;}
.yd8{bottom:281.666667pt;}
.y17b{bottom:281.732000pt;}
.y11e{bottom:283.000000pt;}
.y4b{bottom:283.732000pt;}
.y4c{bottom:283.800000pt;}
.y4d{bottom:284.065333pt;}
.y14f{bottom:285.065333pt;}
.y1b1{bottom:289.398667pt;}
.y87{bottom:298.666667pt;}
.y17a{bottom:299.000000pt;}
.y86{bottom:299.265333pt;}
.y1b0{bottom:300.265333pt;}
.y11d{bottom:300.598667pt;}
.y48{bottom:301.333333pt;}
.y49{bottom:301.398667pt;}
.y16{bottom:301.532000pt;}
.y4a{bottom:301.666667pt;}
.y15{bottom:302.198667pt;}
.y14e{bottom:302.666667pt;}
.y1cd{bottom:306.533333pt;}
.y1ae{bottom:309.865333pt;}
.y1af{bottom:311.133333pt;}
.y1d2{bottom:314.866667pt;}
.yd7{bottom:316.265333pt;}
.y85{bottom:316.598667pt;}
.y179{bottom:316.932000pt;}
.y11c{bottom:317.865333pt;}
.yf0{bottom:318.666667pt;}
.y47{bottom:318.932000pt;}
.y14d{bottom:320.265333pt;}
.y1d0{bottom:323.866667pt;}
.y1ab{bottom:327.133333pt;}
.y84{bottom:333.532000pt;}
.yd6{bottom:333.865333pt;}
.y83{bottom:334.133333pt;}
.y178{bottom:334.198667pt;}
.y11b{bottom:335.466667pt;}
.yef{bottom:335.932000pt;}
.yb3{bottom:336.265333pt;}
.y46{bottom:336.532000pt;}
.y14{bottom:337.398667pt;}
.y14c{bottom:337.532000pt;}
.y1da{bottom:340.466667pt;}
.y1ca{bottom:346.866667pt;}
.y82{bottom:350.800000pt;}
.y177{bottom:351.198667pt;}
.yd5{bottom:351.466667pt;}
.y176{bottom:351.800000pt;}
.y11a{bottom:352.732000pt;}
.y13{bottom:352.800000pt;}
.yee{bottom:353.198667pt;}
.y12{bottom:353.398667pt;}
.y45{bottom:353.865333pt;}
.y14b{bottom:355.133333pt;}
.yd4{bottom:368.065333pt;}
.y81{bottom:368.398667pt;}
.y11{bottom:368.466667pt;}
.y80{bottom:369.065333pt;}
.y175{bottom:369.133333pt;}
.y119{bottom:370.000000pt;}
.yed{bottom:370.800000pt;}
.yb2{bottom:371.133333pt;}
.y44{bottom:371.466667pt;}
.y14a{bottom:372.398667pt;}
.y10{bottom:384.133333pt;}
.yd3{bottom:385.666667pt;}
.y7f{bottom:386.000000pt;}
.y174{bottom:386.065333pt;}
.y173{bottom:386.398667pt;}
.y118{bottom:387.598667pt;}
.yec{bottom:388.065333pt;}
.yb1{bottom:388.398667pt;}
.y43{bottom:388.800000pt;}
.y149{bottom:390.000000pt;}
.yf{bottom:399.800000pt;}
.y7e{bottom:403.000000pt;}
.y7d{bottom:403.598667pt;}
.y117{bottom:404.865333pt;}
.yb0{bottom:405.666667pt;}
.y42{bottom:406.333333pt;}
.yaf{bottom:406.666667pt;}
.y148{bottom:407.598667pt;}
.ye{bottom:415.465333pt;}
.y7{bottom:416.132000pt;}
.yd2{bottom:420.265333pt;}
.y7c{bottom:420.532000pt;}
.y7b{bottom:420.865333pt;}
.y172{bottom:421.265333pt;}
.y116{bottom:422.198667pt;}
.y41{bottom:423.598667pt;}
.y147{bottom:424.865333pt;}
.y1d8{bottom:429.733333pt;}
.y1d7{bottom:431.066667pt;}
.yd1{bottom:437.865333pt;}
.y7a{bottom:438.132000pt;}
.y115{bottom:439.732000pt;}
.y114{bottom:440.065333pt;}
.y40{bottom:440.598667pt;}
.yeb{bottom:440.865333pt;}
.yae{bottom:441.198667pt;}
.y1d3{bottom:441.600000pt;}
.y146{bottom:442.198667pt;}
.y1ad{bottom:448.732000pt;}
.yd{bottom:450.333333pt;}
.y79{bottom:455.132000pt;}
.y78{bottom:455.465333pt;}
.y113{bottom:456.732000pt;}
.y112{bottom:457.065333pt;}
.y111{bottom:457.333333pt;}
.yad{bottom:457.865333pt;}
.y3f{bottom:458.465333pt;}
.y145{bottom:459.732000pt;}
.yc{bottom:466.000000pt;}
.y77{bottom:472.732000pt;}
.y76{bottom:473.065333pt;}
.y110{bottom:474.000000pt;}
.y10f{bottom:474.333333pt;}
.y10e{bottom:474.666667pt;}
.yac{bottom:475.465333pt;}
.y3e{bottom:475.732000pt;}
.y144{bottom:477.065333pt;}
.yb{bottom:481.732000pt;}
.y75{bottom:490.000000pt;}
.y74{bottom:490.333333pt;}
.y171{bottom:490.398667pt;}
.y10d{bottom:491.666667pt;}
.y1a8{bottom:492.065333pt;}
.y10c{bottom:492.265333pt;}
.y1a9{bottom:492.398667pt;}
.yab{bottom:492.732000pt;}
.y1d9{bottom:492.800000pt;}
.y3d{bottom:493.065333pt;}
.y143{bottom:494.333333pt;}
.ya{bottom:497.065333pt;}
.y73{bottom:507.598667pt;}
.y170{bottom:507.666667pt;}
.y10b{bottom:509.198667pt;}
.y1a7{bottom:509.666667pt;}
.yea{bottom:510.000000pt;}
.yaa{bottom:510.333333pt;}
.y3c{bottom:510.666667pt;}
.y142{bottom:511.932000pt;}
.y9{bottom:512.732000pt;}
.yd0{bottom:524.532000pt;}
.y72{bottom:524.598667pt;}
.y71{bottom:524.865333pt;}
.y16f{bottom:524.932000pt;}
.y1a6{bottom:526.932000pt;}
.ye9{bottom:527.265333pt;}
.ya9{bottom:527.598667pt;}
.y3b{bottom:527.932000pt;}
.y8{bottom:528.398667pt;}
.y141{bottom:529.198667pt;}
.ycf{bottom:541.865333pt;}
.y70{bottom:542.132000pt;}
.y6f{bottom:542.198667pt;}
.y16e{bottom:542.532000pt;}
.y10a{bottom:544.065333pt;}
.y6{bottom:544.132000pt;}
.y1a4{bottom:544.265333pt;}
.y1a5{bottom:544.532000pt;}
.ya8{bottom:544.865333pt;}
.y3a{bottom:545.265333pt;}
.y140{bottom:546.465333pt;}
.y1ea{bottom:555.200000pt;}
.y1e9{bottom:555.533333pt;}
.yce{bottom:559.132000pt;}
.y6e{bottom:559.465333pt;}
.y1a3{bottom:561.865333pt;}
.ya7{bottom:562.465333pt;}
.ye8{bottom:562.532000pt;}
.y39{bottom:562.798667pt;}
.y13f{bottom:564.065333pt;}
.ycd{bottom:576.465333pt;}
.y6d{bottom:576.732000pt;}
.y16d{bottom:577.065333pt;}
.y16c{bottom:577.398667pt;}
.y1a2{bottom:579.132000pt;}
.ya6{bottom:579.732000pt;}
.y38{bottom:580.065333pt;}
.y13e{bottom:581.333333pt;}
.ycc{bottom:594.000000pt;}
.y6c{bottom:594.333333pt;}
.y109{bottom:596.265333pt;}
.y1a0{bottom:596.398667pt;}
.y1a1{bottom:596.732000pt;}
.ya5{bottom:597.065333pt;}
.y37{bottom:597.666667pt;}
.y13d{bottom:598.932000pt;}
.ycb{bottom:611.265333pt;}
.y6b{bottom:611.598667pt;}
.y108{bottom:613.265333pt;}
.y19d{bottom:613.666667pt;}
.y19f{bottom:614.000000pt;}
.ya4{bottom:614.666667pt;}
.y36{bottom:615.000000pt;}
.y13c{bottom:616.265333pt;}
.y19e{bottom:616.798667pt;}
.yca{bottom:628.532000pt;}
.y6a{bottom:628.865333pt;}
.y16b{bottom:629.265333pt;}
.y107{bottom:630.798667pt;}
.y19c{bottom:631.265333pt;}
.ye7{bottom:631.598667pt;}
.y35{bottom:632.532000pt;}
.y13b{bottom:633.532000pt;}
.y1d6{bottom:633.933333pt;}
.y5{bottom:636.932000pt;}
.y69{bottom:646.465333pt;}
.y16a{bottom:646.532000pt;}
.y106{bottom:648.065333pt;}
.y19b{bottom:648.865333pt;}
.ye6{bottom:649.198667pt;}
.ya3{bottom:649.532000pt;}
.y34{bottom:649.865333pt;}
.y13a{bottom:651.132000pt;}
.y4{bottom:653.865333pt;}
.yc9{bottom:663.465333pt;}
.y68{bottom:663.732000pt;}
.y169{bottom:663.798667pt;}
.y105{bottom:665.398667pt;}
.y19a{bottom:666.132000pt;}
.y199{bottom:666.198667pt;}
.ye5{bottom:666.465333pt;}
.ya2{bottom:666.798667pt;}
.y33{bottom:667.132000pt;}
.y139{bottom:668.065333pt;}
.y138{bottom:668.398667pt;}
.yc8{bottom:680.732000pt;}
.y67{bottom:681.065333pt;}
.y168{bottom:681.398667pt;}
.y104{bottom:682.933333pt;}
.y197{bottom:683.465333pt;}
.y198{bottom:683.798667pt;}
.ya1{bottom:684.398667pt;}
.y32{bottom:684.732000pt;}
.y137{bottom:685.666667pt;}
.y1e1{bottom:686.733333pt;}
.y3{bottom:687.732000pt;}
.yc7{bottom:698.000000pt;}
.y66{bottom:698.666667pt;}
.y103{bottom:700.266667pt;}
.y195{bottom:700.732000pt;}
.y196{bottom:701.333333pt;}
.ya0{bottom:701.666667pt;}
.y31{bottom:702.000000pt;}
.y136{bottom:703.000000pt;}
.y1e2{bottom:711.066667pt;}
.yc6{bottom:715.600000pt;}
.y65{bottom:715.933333pt;}
.y167{bottom:716.000000pt;}
.y102{bottom:717.532000pt;}
.y194{bottom:718.333333pt;}
.y9f{bottom:719.000000pt;}
.y30{bottom:719.600000pt;}
.y9e{bottom:719.666667pt;}
.y135{bottom:720.600000pt;}
.y2{bottom:720.732000pt;}
.y1e3{bottom:725.466667pt;}
.y1e6{bottom:727.333333pt;}
.yc5{bottom:732.865333pt;}
.y166{bottom:733.266667pt;}
.y101{bottom:734.798667pt;}
.y192{bottom:735.266667pt;}
.y193{bottom:735.933333pt;}
.y1df{bottom:736.666667pt;}
.y2f{bottom:736.865333pt;}
.y134{bottom:737.865333pt;}
.y1{bottom:739.000000pt;}
.y64{bottom:750.133333pt;}
.y165{bottom:750.600000pt;}
.y100{bottom:752.133333pt;}
.y190{bottom:752.600000pt;}
.y191{bottom:753.198667pt;}
.y9d{bottom:753.865333pt;}
.y9c{bottom:754.198667pt;}
.y2e{bottom:754.466667pt;}
.y133{bottom:755.133333pt;}
.y1e0{bottom:763.198667pt;}
.yc4{bottom:767.732000pt;}
.yc3{bottom:767.800000pt;}
.y164{bottom:768.133333pt;}
.y1e4{bottom:768.666667pt;}
.yff{bottom:769.666667pt;}
.y18f{bottom:770.466667pt;}
.y9b{bottom:771.466667pt;}
.y2d{bottom:771.800000pt;}
.y132{bottom:772.732000pt;}
.y163{bottom:785.466667pt;}
.yfe{bottom:786.933333pt;}
.y18e{bottom:787.466667pt;}
.y9a{bottom:788.732000pt;}
.y2c{bottom:789.333333pt;}
.y131{bottom:790.000000pt;}
.y1db{bottom:796.800000pt;}
.y1dc{bottom:801.266667pt;}
.y63{bottom:802.333333pt;}
.y162{bottom:802.666667pt;}
.yfd{bottom:804.266667pt;}
.y18d{bottom:804.732000pt;}
.ye4{bottom:806.000000pt;}
.y99{bottom:806.333333pt;}
.y2b{bottom:806.666667pt;}
.y130{bottom:807.600000pt;}
.y1e7{bottom:819.200000pt;}
.yc2{bottom:819.600000pt;}
.y62{bottom:819.933333pt;}
.y161{bottom:820.266667pt;}
.yfc{bottom:821.865333pt;}
.y18c{bottom:822.666667pt;}
.y98{bottom:823.600000pt;}
.y2a{bottom:824.266667pt;}
.y12f{bottom:825.198667pt;}
.yc1{bottom:836.865333pt;}
.y61{bottom:837.198667pt;}
.y160{bottom:837.600000pt;}
.yfb{bottom:838.865333pt;}
.y1dd{bottom:839.066667pt;}
.y18b{bottom:839.600000pt;}
.y97{bottom:840.865333pt;}
.ye3{bottom:840.933333pt;}
.y29{bottom:841.532000pt;}
.y12e{bottom:842.466667pt;}
.yc0{bottom:854.133333pt;}
.y60{bottom:854.466667pt;}
.y15f{bottom:854.865333pt;}
.yfa{bottom:856.398667pt;}
.y18a{bottom:857.198667pt;}
.y96{bottom:858.466667pt;}
.y28{bottom:858.800000pt;}
.y12d{bottom:860.065333pt;}
.ybf{bottom:871.732000pt;}
.y5f{bottom:872.065333pt;}
.y15e{bottom:872.133333pt;}
.yf9{bottom:873.666667pt;}
.y189{bottom:874.865333pt;}
.ye2{bottom:876.065333pt;}
.y27{bottom:876.398667pt;}
.y12c{bottom:877.666667pt;}
.y1c1{bottom:877.732000pt;}
.y1e5{bottom:877.733333pt;}
.y1de{bottom:883.533333pt;}
.ybe{bottom:889.065333pt;}
.y5e{bottom:889.333333pt;}
.y15d{bottom:889.732000pt;}
.y187{bottom:892.133333pt;}
.y188{bottom:892.398667pt;}
.y26{bottom:893.398667pt;}
.ye1{bottom:894.000000pt;}
.y12b{bottom:895.266667pt;}
.y1c0{bottom:901.398667pt;}
.ybd{bottom:906.333333pt;}
.y5d{bottom:906.666667pt;}
.y15c{bottom:907.000000pt;}
.yf7{bottom:908.266667pt;}
.yf8{bottom:908.532000pt;}
.y186{bottom:910.065333pt;}
.y25{bottom:910.666667pt;}
.y95{bottom:911.000000pt;}
.y12a{bottom:912.865333pt;}
.y1ac{bottom:948.933333pt;}
.ybb{bottom:949.532000pt;}
.yba{bottom:949.865333pt;}
.y5b{bottom:950.133333pt;}
.ybc{bottom:950.198667pt;}
.y5c{bottom:950.466667pt;}
.y15a{bottom:950.532000pt;}
.y15b{bottom:950.933333pt;}
.yf6{bottom:951.466667pt;}
.yf5{bottom:951.800000pt;}
.y184{bottom:953.266667pt;}
.y22{bottom:954.133333pt;}
.y23{bottom:954.198667pt;}
.y185{bottom:954.532000pt;}
.ye0{bottom:954.800000pt;}
.ydf{bottom:954.865333pt;}
.y94{bottom:955.133333pt;}
.y24{bottom:955.198667pt;}
.y128{bottom:956.065333pt;}
.y127{bottom:956.133333pt;}
.y1c4{bottom:956.466667pt;}
.y129{bottom:956.800000pt;}
.h11{height:26.171875pt;}
.h14{height:31.406250pt;}
.h15{height:32.250000pt;}
.hf{height:35.493533pt;}
.hd{height:36.640625pt;}
.ha{height:37.385333pt;}
.h1c{height:38.937500pt;}
.h3{height:41.875000pt;}
.h5{height:47.109375pt;}
.h6{height:48.375000pt;}
.h9{height:52.317708pt;}
.h2{height:52.343750pt;}
.h7{height:53.750000pt;}
.h1d{height:55.625000pt;}
.he{height:57.549479pt;}
.h8{height:57.578125pt;}
.hb{height:58.021333pt;}
.h10{height:59.125000pt;}
.h4{height:62.812500pt;}
.h1{height:64.500000pt;}
.h1e{height:67.549083pt;}
.h13{height:68.013021pt;}
.h1b{height:68.046875pt;}
.h18{height:72.312500pt;}
.h1a{height:83.750000pt;}
.h19{height:86.000000pt;}
.h16{height:141.328125pt;}
.h17{height:145.125000pt;}
.h0{height:1090.666667pt;}
.h12{height:1092.000000pt;}
.hc{height:1094.666667pt;}
.h1f{height:1108.000000pt;}
.w5{width:253.642667pt;}
.w1{width:253.645333pt;}
.w3{width:335.345333pt;}
.w0{width:741.333333pt;}
.w4{width:742.666667pt;}
.w2{width:744.000000pt;}
.w6{width:746.666667pt;}
.w7{width:749.333333pt;}
.x0{left:0.000000pt;}
.x1e{left:3.330667pt;}
.x1f{left:8.462667pt;}
.x11{left:56.693115pt;}
.x8{left:65.266667pt;}
.x23{left:66.533333pt;}
.x3a{left:67.866667pt;}
.x53{left:68.800000pt;}
.x6e{left:74.266667pt;}
.x5f{left:75.866667pt;}
.x15{left:76.800000pt;}
.x12{left:77.733333pt;}
.x1c{left:78.733333pt;}
.x2e{left:79.666667pt;}
.x24{left:81.266667pt;}
.x3f{left:82.266667pt;}
.xe{left:83.866667pt;}
.x25{left:85.466667pt;}
.x3c{left:86.398667pt;}
.x1{left:87.333333pt;}
.x55{left:88.333333pt;}
.x59{left:90.833333pt;}
.x13{left:91.866667pt;}
.x41{left:93.732000pt;}
.x2c{left:94.653333pt;}
.x16{left:95.666667pt;}
.x1b{left:96.933333pt;}
.x2f{left:98.533333pt;}
.xf{left:100.800000pt;}
.x26{left:102.733333pt;}
.x28{left:104.333333pt;}
.x29{left:105.933333pt;}
.x60{left:107.866667pt;}
.x3b{left:110.066667pt;}
.x3d{left:111.066667pt;}
.x19{left:113.600000pt;}
.x35{left:114.533333pt;}
.x20{left:115.533333pt;}
.x36{left:117.133333pt;}
.x52{left:118.066667pt;}
.x33{left:121.933333pt;}
.x8f{left:123.801333pt;}
.xd{left:125.133333pt;}
.x66{left:132.800000pt;}
.x27{left:150.733333pt;}
.xc{left:152.000000pt;}
.x5a{left:154.533333pt;}
.x67{left:158.400000pt;}
.x61{left:160.933333pt;}
.x39{left:162.533333pt;}
.x3e{left:163.533333pt;}
.x30{left:171.533333pt;}
.x34{left:175.066667pt;}
.x8d{left:179.866667pt;}
.x9{left:180.798667pt;}
.x2a{left:183.066667pt;}
.x1a{left:187.533333pt;}
.x6c{left:196.132000pt;}
.x56{left:200.666667pt;}
.x8c{left:208.000000pt;}
.x54{left:214.400000pt;}
.x8e{left:234.866667pt;}
.x46{left:236.800000pt;}
.x17{left:241.266667pt;}
.x2{left:242.533333pt;}
.x14{left:246.733333pt;}
.x42{left:249.266667pt;}
.x2d{left:250.266667pt;}
.x63{left:254.400000pt;}
.x57{left:255.333333pt;}
.x90{left:258.533333pt;}
.x6d{left:262.400000pt;}
.x64{left:264.000000pt;}
.x31{left:269.733333pt;}
.x48{left:279.666667pt;}
.x6{left:285.466667pt;}
.x4{left:292.466667pt;}
.x18{left:298.866667pt;}
.x8b{left:307.866667pt;}
.x47{left:319.333333pt;}
.x5d{left:320.666667pt;}
.x69{left:323.200000pt;}
.x6a{left:327.333333pt;}
.x43{left:329.600000pt;}
.x7{left:330.866667pt;}
.xa{left:344.333333pt;}
.x32{left:346.265333pt;}
.x62{left:349.733333pt;}
.xb{left:350.733333pt;}
.x1d{left:351.961589pt;}
.x3{left:355.200000pt;}
.x8a{left:356.801333pt;}
.x49{left:360.932000pt;}
.x5c{left:373.733333pt;}
.x7d{left:379.200000pt;}
.x7e{left:381.133333pt;}
.x80{left:382.733333pt;}
.x7f{left:384.932000pt;}
.x81{left:385.933333pt;}
.x93{left:397.734667pt;}
.x44{left:401.265333pt;}
.x92{left:404.134667pt;}
.x91{left:405.068000pt;}
.x4d{left:420.466667pt;}
.x5{left:431.066667pt;}
.x83{left:440.333333pt;}
.x82{left:443.201333pt;}
.x45{left:448.933333pt;}
.x84{left:454.068000pt;}
.x4e{left:455.066667pt;}
.x89{left:472.333333pt;}
.x78{left:484.466667pt;}
.x79{left:492.800000pt;}
.x95{left:496.666667pt;}
.x4f{left:511.066667pt;}
.x7a{left:513.933333pt;}
.x10{left:515.200000pt;}
.x70{left:516.800000pt;}
.x72{left:517.733333pt;}
.x76{left:519.333333pt;}
.x77{left:522.266667pt;}
.x71{left:530.533333pt;}
.x85{left:539.201333pt;}
.x68{left:542.066667pt;}
.x6b{left:544.000000pt;}
.x65{left:545.266667pt;}
.x75{left:550.066667pt;}
.x86{left:553.333333pt;}
.x74{left:556.133333pt;}
.x73{left:563.533333pt;}
.x50{left:564.466667pt;}
.x87{left:566.666667pt;}
.x7c{left:571.200000pt;}
.x2b{left:572.800000pt;}
.x40{left:573.733333pt;}
.x58{left:575.333333pt;}
.x94{left:578.534667pt;}
.x7b{left:584.000000pt;}
.x5e{left:601.933333pt;}
.x4a{left:602.866667pt;}
.x21{left:616.333333pt;}
.x37{left:617.266667pt;}
.x4c{left:618.533333pt;}
.x6f{left:619.533333pt;}
.x5b{left:626.866667pt;}
.x88{left:629.134667pt;}
.x4b{left:640.000000pt;}
.x22{left:652.133333pt;}
.x38{left:653.133333pt;}
.x96{left:656.666667pt;}
.x51{left:663.066667pt;}
.x97{left:673.934667pt;}
}




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