
    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_ba6cc9fac3fc55253ef88cb6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_aedcff82cb490ee5de61f437.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.770000;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_537f4e3a42469a2c931924ad.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.956000;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_5e2349ca3d14f5f8b267b2b4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.149414;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_e64ec27c9bdc52383e0300de.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005000;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_3e1548efe902c24d1601f2db.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005000;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_da98a01416339a35f067208b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.149414;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_d40e77604afabd4a4c626096.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.010254;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_fdcce160bf09f00e1e3bc50d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_3e1548efe902c24d1601f2db.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005000;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_124d1f0d5fb685f5c87ef8f0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.005000;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_3e1548efe902c24d1601f2db.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005000;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_ef084ed38e4229d7918ca751.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.005000;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_e4b8d13e4638f1220e8f9fe1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.149414;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_0c1a41dea1129d20c8aa5acb.woff2')format("woff");}.fff{font-family:fff;line-height:1.149414;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_7fff5594a8fd1c006d5672b1.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.010254;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_3702f12be7f0eb7dd4fbcf1d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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_3e1548efe902c24d1601f2db.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.005000;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_3e1548efe902c24d1601f2db.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.005000;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_159d3cd7ee6a0a7756c78cfb.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.005000;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_b4e70be3e6e1be898ac140b0.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.005000;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_356623c785d9d72c6c242457.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.149414;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_f0fca799019f3a94934c81e5.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.010254;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_ea7299706e0c3d2bf1201ef7.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000000;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_3e2d080b0b5106d5b2cd7ed4.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.149414;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_ea256a6e9daa48059cec8482.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.005000;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_1d548f0a303610f7f8ee3e40.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.005000;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_689e1eb70cbb9f6bcf7a60cb.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.149414;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_50f93ab6bea977c00ee52930.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.010254;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_f5dc66deae612d8ccf7827c3.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.149414;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_8abd33c7448972dc8b0762ad.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.000000;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_db97aa288e6ff21f9a3fd69b.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.005000;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_b6a70a741909b668840072b0.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.149414;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_7ed1cce4733c4dd90c95f204.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.010254;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_1f8fbef7e661e7fcdb55f3a8.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.005000;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_b991b88be6028394c3423bd0.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.010254;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_442a3b846c1ce2915934c717.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.149414;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_08c03d5fd78739c32ac91214.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.149414;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_e9f9330a29320d1d81a918fb.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.005000;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;}
.m9{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);}
.m5{transform:matrix(0.239582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239582,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.mb{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);}
.m4{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);}
.m8{transform:matrix(0.249166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249166,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251561,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m7{transform:matrix(0.253958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253958,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.258656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258656,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.258749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258749,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.288849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288849,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v4{vertical-align:-1.701000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.982000px;}
.v1{vertical-align:21.954000px;}
.v3{vertical-align:103.748400px;}
.v5{vertical-align:114.466800px;}
.ls6{letter-spacing:-0.540000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.001962px;}
.ls2{letter-spacing:0.002562px;}
.ls1{letter-spacing:48.483600px;}
.ls4{letter-spacing:330.266468px;}
.ls5{letter-spacing:517.848000px;}
.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;}
}
.ws3{word-spacing:-32.760000px;}
.ws7{word-spacing:-17.940000px;}
.ws1{word-spacing:-17.160000px;}
.ws4{word-spacing:-14.040000px;}
.wsc{word-spacing:-13.500000px;}
.ws0{word-spacing:-10.004280px;}
.wse{word-spacing:-0.252000px;}
.wsa{word-spacing:-0.216000px;}
.ws6{word-spacing:-0.162000px;}
.ws8{word-spacing:-0.108000px;}
.ws5{word-spacing:-0.054000px;}
.wsd{word-spacing:-0.030000px;}
.ws2{word-spacing:0.000000px;}
.wsb{word-spacing:0.540000px;}
.ws9{word-spacing:646.857000px;}
._b{margin-left:-12.120600px;}
._a{margin-left:-9.322800px;}
._5{margin-left:-5.972400px;}
._f{margin-left:-4.865400px;}
._0{margin-left:-3.840000px;}
._1{margin-left:-2.040000px;}
._2{margin-left:-1.020000px;}
._6{width:1.014000px;}
._7{width:6.240000px;}
._d{width:7.266000px;}
._9{width:8.371800px;}
._8{width:10.252200px;}
._c{width:12.210000px;}
._e{width:31.080000px;}
._4{width:170.688000px;}
._3{width:181.608000px;}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(112,111,111);}
.fc4{color:transparent;}
.fc0{color:rgb(243,146,0);}
.fsb{font-size:31.482000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:69.000000px;}
.fs9{font-size:90.715800px;}
.fsa{font-size:98.962800px;}
.fsd{font-size:98.964000px;}
.fs1{font-size:102.000000px;}
.fs5{font-size:108.000000px;}
.fs6{font-size:126.000000px;}
.fs0{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y12{bottom:4.137000px;}
.y94{bottom:49.565250px;}
.y11{bottom:49.566150px;}
.y93{bottom:53.467500px;}
.y10{bottom:53.468550px;}
.y3f{bottom:166.634550px;}
.y79{bottom:166.634700px;}
.y61{bottom:170.666700px;}
.yde{bottom:175.606500px;}
.ybc{bottom:182.834850px;}
.y3e{bottom:185.534550px;}
.y78{bottom:185.534700px;}
.y60{bottom:189.566700px;}
.ydd{bottom:194.506500px;}
.ybb{bottom:201.734850px;}
.y3d{bottom:204.434550px;}
.y77{bottom:204.434700px;}
.y5f{bottom:208.466700px;}
.ydc{bottom:213.406500px;}
.yba{bottom:220.634850px;}
.y3c{bottom:223.334550px;}
.y76{bottom:223.334700px;}
.y5e{bottom:227.366700px;}
.ydb{bottom:232.306500px;}
.yb9{bottom:239.534850px;}
.y3b{bottom:242.234550px;}
.y75{bottom:242.234700px;}
.yf{bottom:245.170800px;}
.y5d{bottom:246.266700px;}
.yda{bottom:251.206500px;}
.y1b4{bottom:252.630750px;}
.yb8{bottom:258.434850px;}
.y3a{bottom:261.134550px;}
.y74{bottom:261.134700px;}
.y5c{bottom:265.166700px;}
.ye{bottom:268.811700px;}
.y198{bottom:269.315700px;}
.y1b3{bottom:271.530750px;}
.yb7{bottom:277.334850px;}
.y39{bottom:280.034550px;}
.y73{bottom:280.034700px;}
.y5b{bottom:284.066700px;}
.y197{bottom:287.311200px;}
.y1b2{bottom:290.430750px;}
.y38{bottom:298.934550px;}
.y72{bottom:298.934700px;}
.y5a{bottom:302.966700px;}
.y196{bottom:305.306700px;}
.y116{bottom:308.582550px;}
.y1b1{bottom:309.330750px;}
.y37{bottom:317.834550px;}
.y71{bottom:317.834700px;}
.yd{bottom:318.304650px;}
.y59{bottom:321.866700px;}
.y195{bottom:323.302200px;}
.y1b0{bottom:328.230750px;}
.y161{bottom:328.956750px;}
.ye0{bottom:336.475500px;}
.y36{bottom:336.734550px;}
.y70{bottom:336.734700px;}
.yc{bottom:337.013250px;}
.y58{bottom:340.766700px;}
.y194{bottom:341.297700px;}
.y1af{bottom:347.130750px;}
.y35{bottom:355.634550px;}
.y6f{bottom:355.634700px;}
.yb{bottom:356.572350px;}
.y193{bottom:359.293200px;}
.y57{bottom:359.666700px;}
.y1ae{bottom:366.030750px;}
.yca{bottom:371.646300px;}
.y34{bottom:374.534550px;}
.y6e{bottom:374.534700px;}
.y192{bottom:377.288700px;}
.y56{bottom:378.566700px;}
.yf3{bottom:382.949400px;}
.y1ad{bottom:384.930750px;}
.y11c{bottom:390.855600px;}
.y122{bottom:391.918650px;}
.y33{bottom:393.434550px;}
.y6d{bottom:393.434700px;}
.y191{bottom:395.284200px;}
.y55{bottom:397.466700px;}
.yee{bottom:399.957000px;}
.y1ac{bottom:403.830750px;}
.y11b{bottom:409.755600px;}
.y121{bottom:410.818650px;}
.y45{bottom:412.334550px;}
.y6c{bottom:412.334700px;}
.ya{bottom:412.340700px;}
.y143{bottom:412.823100px;}
.y190{bottom:413.279700px;}
.yeb{bottom:414.580650px;}
.y128{bottom:414.775350px;}
.yed{bottom:414.957000px;}
.y54{bottom:416.366700px;}
.y1ab{bottom:422.730750px;}
.ya7{bottom:428.239950px;}
.y11a{bottom:428.655600px;}
.y120{bottom:429.718650px;}
.yec{bottom:429.957000px;}
.y92{bottom:431.234550px;}
.y32{bottom:431.234700px;}
.y18f{bottom:431.275200px;}
.y133{bottom:431.894850px;}
.y53{bottom:435.266700px;}
.yf1{bottom:440.277600px;}
.y1aa{bottom:441.630750px;}
.y119{bottom:447.555600px;}
.y11f{bottom:448.618650px;}
.y18e{bottom:449.270700px;}
.y44{bottom:450.134550px;}
.y31{bottom:450.134700px;}
.y1a9{bottom:460.530750px;}
.y118{bottom:466.455600px;}
.y18d{bottom:467.266200px;}
.y11e{bottom:467.518650px;}
.y10b{bottom:468.865350px;}
.y43{bottom:469.034550px;}
.y30{bottom:469.034700px;}
.y9{bottom:469.042200px;}
.y96{bottom:472.070700px;}
.ye3{bottom:473.286600px;}
.ybe{bottom:475.011600px;}
.yd8{bottom:475.880250px;}
.yd0{bottom:475.880400px;}
.y1a8{bottom:479.430750px;}
.y18c{bottom:485.261700px;}
.y10a{bottom:487.765350px;}
.y42{bottom:487.934550px;}
.y2f{bottom:487.934700px;}
.y8{bottom:487.940700px;}
.ye4{bottom:492.186600px;}
.y12c{bottom:493.859550px;}
.yd7{bottom:494.780250px;}
.ycf{bottom:494.780400px;}
.y52{bottom:495.620700px;}
.y13d{bottom:496.694400px;}
.y138{bottom:496.694550px;}
.y1a7{bottom:498.330750px;}
.y18b{bottom:503.257200px;}
.y14a{bottom:504.255600px;}
.y14e{bottom:505.318500px;}
.y123{bottom:505.603200px;}
.y10d{bottom:506.665350px;}
.y41{bottom:506.834550px;}
.y2e{bottom:506.834700px;}
.yb5{bottom:510.819150px;}
.yab{bottom:510.865950px;}
.ye5{bottom:511.086600px;}
.yb2{bottom:511.305150px;}
.y12b{bottom:512.759550px;}
.yd6{bottom:513.680250px;}
.yce{bottom:513.680400px;}
.y51{bottom:514.520700px;}
.y13c{bottom:515.594400px;}
.y137{bottom:515.594550px;}
.y1a6{bottom:517.230750px;}
.y18a{bottom:521.252700px;}
.y149{bottom:523.155600px;}
.y14d{bottom:524.218500px;}
.y10e{bottom:525.565350px;}
.y40{bottom:525.734550px;}
.y2d{bottom:525.734700px;}
.y126{bottom:525.780450px;}
.ye6{bottom:528.432750px;}
.yb4{bottom:529.719150px;}
.yaa{bottom:529.765950px;}
.yb1{bottom:530.205150px;}
.y130{bottom:531.659550px;}
.yd5{bottom:532.580250px;}
.ycd{bottom:532.580400px;}
.y50{bottom:533.420700px;}
.y13b{bottom:534.494400px;}
.y136{bottom:534.494550px;}
.y1a5{bottom:536.130750px;}
.y124{bottom:537.025200px;}
.y10f{bottom:537.904350px;}
.y189{bottom:539.248200px;}
.y148{bottom:542.055600px;}
.y14c{bottom:543.118500px;}
.y2c{bottom:544.634550px;}
.y7{bottom:544.634700px;}
.y160{bottom:544.889250px;}
.yb3{bottom:548.619150px;}
.yb0{bottom:549.105150px;}
.yd4{bottom:551.480250px;}
.y4f{bottom:552.320700px;}
.y13a{bottom:553.394400px;}
.y135{bottom:553.394550px;}
.y1a4{bottom:555.030750px;}
.ye7{bottom:557.003700px;}
.y188{bottom:557.243700px;}
.yc4{bottom:559.133850px;}
.y147{bottom:560.955600px;}
.y2b{bottom:563.534550px;}
.y8f{bottom:563.534700px;}
.y9f{bottom:565.950150px;}
.y99{bottom:565.950300px;}
.yaf{bottom:568.005150px;}
.ya2{bottom:568.650150px;}
.y4e{bottom:571.220700px;}
.y1a3{bottom:573.930750px;}
.y15f{bottom:574.763100px;}
.y187{bottom:575.239200px;}
.y13e{bottom:575.300400px;}
.y110{bottom:575.704350px;}
.yc3{bottom:578.033850px;}
.y146{bottom:579.855600px;}
.y2a{bottom:582.434550px;}
.y6b{bottom:582.434700px;}
.y9e{bottom:584.850150px;}
.y98{bottom:584.850300px;}
.yd1{bottom:585.184950px;}
.ya1{bottom:587.550150px;}
.y4d{bottom:590.120700px;}
.y1a2{bottom:592.830750px;}
.y186{bottom:593.234700px;}
.yc2{bottom:596.933850px;}
.y11d{bottom:599.687850px;}
.y29{bottom:601.334550px;}
.y8e{bottom:601.334700px;}
.y12d{bottom:603.164250px;}
.y9d{bottom:603.750150px;}
.y97{bottom:603.750300px;}
.ya0{bottom:606.450150px;}
.y4c{bottom:609.020700px;}
.y185{bottom:611.230200px;}
.y13f{bottom:613.100400px;}
.yc1{bottom:615.833850px;}
.y14f{bottom:619.003200px;}
.ye8{bottom:619.146300px;}
.yac{bottom:619.540950px;}
.y28{bottom:620.234550px;}
.y8d{bottom:620.234700px;}
.y165{bottom:624.862650px;}
.y4b{bottom:627.920700px;}
.y111{bottom:628.769700px;}
.y184{bottom:629.225700px;}
.y1a1{bottom:630.630750px;}
.yc8{bottom:634.733850px;}
.yd2{bottom:638.173950px;}
.y27{bottom:639.134550px;}
.y8c{bottom:639.134700px;}
.y164{bottom:643.762650px;}
.y4a{bottom:646.820700px;}
.y183{bottom:647.221200px;}
.y1a0{bottom:649.530750px;}
.ye9{bottom:650.121900px;}
.y150{bottom:650.425200px;}
.y12e{bottom:656.153250px;}
.yf5{bottom:658.023450px;}
.y26{bottom:658.034550px;}
.y8b{bottom:658.034700px;}
.y169{bottom:662.662650px;}
.y182{bottom:665.216700px;}
.y49{bottom:665.720700px;}
.y140{bottom:666.165750px;}
.y19f{bottom:668.430750px;}
.yc5{bottom:668.438550px;}
.y10c{bottom:669.193650px;}
.y9a{bottom:670.564500px;}
.yad{bottom:672.529950px;}
.yd3{bottom:676.755450px;}
.y25{bottom:676.934550px;}
.y84{bottom:676.934700px;}
.y12a{bottom:676.946700px;}
.yea{bottom:681.503550px;}
.y181{bottom:683.212200px;}
.y48{bottom:684.620700px;}
.y19e{bottom:687.330750px;}
.y12f{bottom:694.734750px;}
.ycc{bottom:695.824200px;}
.y24{bottom:695.834550px;}
.y83{bottom:695.834700px;}
.ye2{bottom:695.835450px;}
.y180{bottom:701.207700px;}
.y47{bottom:703.520700px;}
.y19d{bottom:706.230750px;}
.y139{bottom:706.589700px;}
.yae{bottom:711.111450px;}
.y14b{bottom:713.087850px;}
.y145{bottom:714.724200px;}
.y23{bottom:714.734550px;}
.y82{bottom:714.734700px;}
.ya9{bottom:714.736200px;}
.y109{bottom:715.668000px;}
.y17f{bottom:719.203200px;}
.yc6{bottom:721.427550px;}
.y46{bottom:722.420700px;}
.y9b{bottom:723.553500px;}
.y19c{bottom:725.130750px;}
.yf0{bottom:728.991000px;}
.y22{bottom:733.634550px;}
.y81{bottom:733.634700px;}
.y166{bottom:734.167350px;}
.y108{bottom:734.568000px;}
.ybd{bottom:736.784400px;}
.y17e{bottom:737.198700px;}
.y141{bottom:740.671800px;}
.y19b{bottom:744.030750px;}
.y114{bottom:750.135600px;}
.y21{bottom:752.534550px;}
.y80{bottom:752.534700px;}
.y107{bottom:753.468000px;}
.y17d{bottom:755.194200px;}
.yc7{bottom:760.009050px;}
.y9c{bottom:762.135000px;}
.y19a{bottom:762.930750px;}
.y20{bottom:771.434550px;}
.y7f{bottom:771.434700px;}
.yc0{bottom:771.436050px;}
.y106{bottom:772.368000px;}
.y17c{bottom:773.189700px;}
.ya6{bottom:774.269700px;}
.y199{bottom:781.830750px;}
.y167{bottom:787.156350px;}
.y1f{bottom:790.334550px;}
.y7e{bottom:790.334700px;}
.y17b{bottom:791.185200px;}
.y105{bottom:791.268000px;}
.y5{bottom:808.130550px;}
.y17a{bottom:809.180700px;}
.y1e{bottom:809.234550px;}
.y7d{bottom:809.234700px;}
.y104{bottom:810.168000px;}
.y131{bottom:811.335300px;}
.yc9{bottom:820.590600px;}
.y15e{bottom:822.142650px;}
.ydf{bottom:822.249000px;}
.y168{bottom:825.737850px;}
.y179{bottom:827.176200px;}
.y163{bottom:828.131700px;}
.y1d{bottom:828.134550px;}
.y7c{bottom:828.134700px;}
.y103{bottom:829.068000px;}
.y178{bottom:845.171700px;}
.y91{bottom:847.034550px;}
.ya4{bottom:847.034700px;}
.y102{bottom:847.968000px;}
.y177{bottom:863.167200px;}
.y4{bottom:865.106550px;}
.y1c{bottom:865.934550px;}
.y8a{bottom:865.934700px;}
.y101{bottom:866.868000px;}
.y176{bottom:881.162700px;}
.y7b{bottom:884.834550px;}
.y89{bottom:884.834700px;}
.y100{bottom:885.768000px;}
.y15c{bottom:897.241500px;}
.y175{bottom:899.158200px;}
.y117{bottom:903.727200px;}
.y7a{bottom:903.734550px;}
.y88{bottom:903.734700px;}
.yff{bottom:904.668000px;}
.y15b{bottom:916.141500px;}
.y174{bottom:917.153700px;}
.y125{bottom:921.660000px;}
.y3{bottom:922.082550px;}
.ycb{bottom:922.627200px;}
.y90{bottom:922.634550px;}
.y87{bottom:922.634700px;}
.ye1{bottom:922.638450px;}
.yfe{bottom:923.568000px;}
.y15a{bottom:935.041500px;}
.y173{bottom:935.149200px;}
.yf4{bottom:941.527200px;}
.y1b{bottom:941.534550px;}
.y86{bottom:941.534700px;}
.ya8{bottom:941.539200px;}
.yfd{bottom:942.468000px;}
.yef{bottom:945.874950px;}
.y172{bottom:953.144700px;}
.y159{bottom:953.941500px;}
.y134{bottom:960.433200px;}
.y1a{bottom:960.434550px;}
.y85{bottom:960.434700px;}
.y171{bottom:971.140200px;}
.y158{bottom:972.841500px;}
.y2{bottom:979.058550px;}
.y162{bottom:979.327950px;}
.y19{bottom:979.334550px;}
.y6a{bottom:979.334700px;}
.y129{bottom:979.339200px;}
.yfc{bottom:980.268000px;}
.y170{bottom:989.135700px;}
.y157{bottom:991.741500px;}
.y144{bottom:998.227950px;}
.y18{bottom:998.234550px;}
.y69{bottom:998.234700px;}
.ybf{bottom:998.239050px;}
.yfb{bottom:999.168000px;}
.y16f{bottom:1007.131200px;}
.y17{bottom:1017.134550px;}
.y68{bottom:1017.134700px;}
.yfa{bottom:1018.068000px;}
.y16e{bottom:1025.126700px;}
.y156{bottom:1029.541500px;}
.y1{bottom:1036.034550px;}
.y67{bottom:1036.034700px;}
.yf9{bottom:1036.968000px;}
.y16d{bottom:1043.122200px;}
.y155{bottom:1048.441500px;}
.y16{bottom:1054.934550px;}
.y66{bottom:1054.934700px;}
.yf8{bottom:1055.868000px;}
.y16c{bottom:1061.117700px;}
.y154{bottom:1067.341500px;}
.y15{bottom:1073.834550px;}
.y65{bottom:1073.834700px;}
.yf7{bottom:1074.768000px;}
.y16b{bottom:1079.113200px;}
.y153{bottom:1086.241500px;}
.y14{bottom:1092.734550px;}
.y64{bottom:1092.734700px;}
.y152{bottom:1105.141500px;}
.ya3{bottom:1111.634550px;}
.y63{bottom:1111.634700px;}
.y127{bottom:1122.990750px;}
.ya5{bottom:1123.919700px;}
.y151{bottom:1124.041500px;}
.yb6{bottom:1125.839400px;}
.yf6{bottom:1128.768000px;}
.y6{bottom:1129.265700px;}
.y112{bottom:1130.534550px;}
.y13{bottom:1130.534700px;}
.y16a{bottom:1130.580450px;}
.yf2{bottom:1135.055550px;}
.y15d{bottom:1135.937850px;}
.y115{bottom:1140.927450px;}
.y113{bottom:1141.890600px;}
.yd9{bottom:1144.973400px;}
.y132{bottom:1148.350500px;}
.y95{bottom:1149.434550px;}
.y62{bottom:1149.434700px;}
.y142{bottom:1149.749400px;}
.h9{height:20.661000px;}
.ha{height:32.130000px;}
.h7{height:38.185547px;}
.he{height:41.027344px;}
.hd{height:41.581055px;}
.h15{height:43.640625px;}
.hc{height:49.095703px;}
.h10{height:49.096303px;}
.h4{height:50.160000px;}
.h6{height:51.191280px;}
.h5{height:51.197280px;}
.hf{height:52.785000px;}
.h3{height:77.520000px;}
.h11{height:82.476963px;}
.h8{height:82.620000px;}
.h13{height:89.974968px;}
.h16{height:89.976059px;}
.h12{height:92.736328px;}
.hb{height:96.390000px;}
.h2{height:146.880000px;}
.h14{height:186.225363px;}
.h18{height:207.202528px;}
.h17{height:207.203128px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:841.890000px;}
.w3{width:848.977050px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:42.923700px;}
.xa{left:43.936950px;}
.xb{left:51.023550px;}
.xe{left:68.031450px;}
.xf{left:85.039350px;}
.x66{left:94.164000px;}
.x31{left:95.473950px;}
.x2e{left:96.520500px;}
.xa3{left:99.102300px;}
.x2a{left:101.409450px;}
.x64{left:102.778050px;}
.x18{left:105.456300px;}
.x17{left:122.851050px;}
.x4c{left:124.956000px;}
.x2f{left:126.276150px;}
.xaf{left:127.322850px;}
.x2b{left:129.464100px;}
.x63{left:131.822850px;}
.x1{left:136.063050px;}
.x75{left:145.931400px;}
.x2{left:153.070800px;}
.x90{left:157.422000px;}
.x91{left:159.024000px;}
.x6b{left:160.087050px;}
.x2d{left:161.823000px;}
.x65{left:163.188600px;}
.x1e{left:165.705300px;}
.x46{left:168.265950px;}
.x4d{left:182.639250px;}
.x45{left:185.963850px;}
.x62{left:204.619350px;}
.x9b{left:236.998800px;}
.x16{left:238.110150px;}
.x9d{left:243.074400px;}
.x8c{left:244.227750px;}
.x5{left:246.614100px;}
.xae{left:247.951200px;}
.x33{left:249.092250px;}
.x1d{left:250.155150px;}
.x8a{left:252.253800px;}
.x7a{left:255.119550px;}
.x1b{left:256.179600px;}
.x34{left:257.758800px;}
.x3e{left:260.443350px;}
.x8b{left:261.852300px;}
.x11{left:263.622000px;}
.x50{left:264.634350px;}
.xad{left:266.584350px;}
.x35{left:267.613800px;}
.x1f{left:268.803450px;}
.x47{left:271.275300px;}
.x20{left:274.135950px;}
.xa4{left:276.159150px;}
.x19{left:277.222050px;}
.x5b{left:278.856000px;}
.x68{left:280.029900px;}
.x78{left:284.672850px;}
.x76{left:291.042600px;}
.x3d{left:293.140350px;}
.x13{left:297.065250px;}
.x8e{left:299.002350px;}
.x95{left:300.075600px;}
.x14{left:303.060000px;}
.x96{left:304.071600px;}
.x67{left:305.542500px;}
.x6a{left:310.121700px;}
.xa5{left:312.094950px;}
.x1c{left:313.157850px;}
.xb2{left:314.893800px;}
.x69{left:315.895500px;}
.x21{left:322.507200px;}
.x7{left:329.018250px;}
.x10{left:334.204650px;}
.x4f{left:346.722150px;}
.x5e{left:348.948450px;}
.xc{left:357.163050px;}
.x9c{left:358.985400px;}
.x93{left:363.469950px;}
.x8d{left:369.472950px;}
.x4e{left:370.575000px;}
.xd{left:374.173200px;}
.x6e{left:381.039300px;}
.xa0{left:385.259640px;}
.x9f{left:388.911120px;}
.x80{left:390.085950px;}
.x7f{left:393.807300px;}
.x7d{left:394.833300px;}
.x6f{left:396.399330px;}
.xa9{left:398.099100px;}
.x9e{left:400.897500px;}
.x7e{left:402.028800px;}
.x8{left:404.205600px;}
.xa8{left:405.294600px;}
.x70{left:408.861990px;}
.x82{left:412.227900px;}
.x12{left:416.303100px;}
.xb5{left:419.676900px;}
.x9a{left:421.367400px;}
.x77{left:434.759250px;}
.x52{left:440.485350px;}
.x8f{left:444.113550px;}
.xb4{left:451.664400px;}
.x26{left:453.682950px;}
.x3f{left:458.299950px;}
.x40{left:459.636450px;}
.x51{left:462.422850px;}
.x36{left:463.569300px;}
.x25{left:466.548450px;}
.x2c{left:472.591350px;}
.xb3{left:473.979900px;}
.x30{left:479.416200px;}
.x49{left:482.375250px;}
.x41{left:486.879450px;}
.x24{left:488.917950px;}
.x98{left:490.439100px;}
.x79{left:493.381050px;}
.x97{left:494.583600px;}
.x48{left:508.403250px;}
.x81{left:512.748900px;}
.x22{left:516.868200px;}
.x72{left:525.114000px;}
.x99{left:526.187100px;}
.x71{left:528.500880px;}
.xb0{left:531.421350px;}
.x73{left:532.655100px;}
.xa2{left:533.687010px;}
.x54{left:536.754300px;}
.x85{left:540.208170px;}
.x74{left:542.643750px;}
.xa1{left:544.972200px;}
.x53{left:549.390300px;}
.x3b{left:551.399700px;}
.x6{left:552.753600px;}
.x84{left:556.348770px;}
.x94{left:557.703450px;}
.x32{left:564.141150px;}
.x5c{left:565.863900px;}
.x15{left:569.763750px;}
.x7c{left:575.347050px;}
.x6d{left:578.183100px;}
.x4{left:583.666650px;}
.x7b{left:585.196200px;}
.xa7{left:587.816850px;}
.x3a{left:595.492050px;}
.x56{left:626.151300px;}
.x57{left:628.459800px;}
.x1a{left:638.850600px;}
.x38{left:644.604300px;}
.x39{left:645.832800px;}
.x28{left:650.823450px;}
.x55{left:652.543800px;}
.x37{left:654.121800px;}
.x27{left:655.899450px;}
.x4a{left:659.643750px;}
.x43{left:661.555950px;}
.xb6{left:663.264600px;}
.x42{left:669.898950px;}
.x6c{left:671.811000px;}
.x4b{left:676.032750px;}
.x86{left:677.653050px;}
.xab{left:679.012650px;}
.x29{left:680.131950px;}
.x88{left:681.941550px;}
.xa6{left:683.243400px;}
.xb1{left:687.330150px;}
.xaa{left:697.470450px;}
.x89{left:709.552560px;}
.x23{left:711.101700px;}
.x92{left:718.025850px;}
.x60{left:724.687200px;}
.x83{left:731.253900px;}
.x59{left:737.053800px;}
.x58{left:738.835800px;}
.x5a{left:740.428800px;}
.x61{left:742.471200px;}
.x5f{left:747.931200px;}
.x5d{left:755.501700px;}
.x3c{left:763.786050px;}
.xac{left:799.255050px;}
.x87{left:800.614650px;}
.x44{left:821.611050px;}
.x9{left:837.054750px;}
@media print{
.v4{vertical-align:-1.512000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.984000pt;}
.v1{vertical-align:19.514667pt;}
.v3{vertical-align:92.220800pt;}
.v5{vertical-align:101.748267pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.001744pt;}
.ls2{letter-spacing:0.002277pt;}
.ls1{letter-spacing:43.096533pt;}
.ls4{letter-spacing:293.570194pt;}
.ls5{letter-spacing:460.309333pt;}
.ws3{word-spacing:-29.120000pt;}
.ws7{word-spacing:-15.946667pt;}
.ws1{word-spacing:-15.253333pt;}
.ws4{word-spacing:-12.480000pt;}
.wsc{word-spacing:-12.000000pt;}
.ws0{word-spacing:-8.892693pt;}
.wse{word-spacing:-0.224000pt;}
.wsa{word-spacing:-0.192000pt;}
.ws6{word-spacing:-0.144000pt;}
.ws8{word-spacing:-0.096000pt;}
.ws5{word-spacing:-0.048000pt;}
.wsd{word-spacing:-0.026667pt;}
.ws2{word-spacing:0.000000pt;}
.wsb{word-spacing:0.480000pt;}
.ws9{word-spacing:574.984000pt;}
._b{margin-left:-10.773867pt;}
._a{margin-left:-8.286933pt;}
._5{margin-left:-5.308800pt;}
._f{margin-left:-4.324800pt;}
._0{margin-left:-3.413333pt;}
._1{margin-left:-1.813333pt;}
._2{margin-left:-0.906667pt;}
._6{width:0.901333pt;}
._7{width:5.546667pt;}
._d{width:6.458667pt;}
._9{width:7.441600pt;}
._8{width:9.113067pt;}
._c{width:10.853333pt;}
._e{width:27.626667pt;}
._4{width:151.722667pt;}
._3{width:161.429333pt;}
.fsb{font-size:27.984000pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:61.333333pt;}
.fs9{font-size:80.636267pt;}
.fsa{font-size:87.966933pt;}
.fsd{font-size:87.968000pt;}
.fs1{font-size:90.666667pt;}
.fs5{font-size:96.000000pt;}
.fs6{font-size:112.000000pt;}
.fs0{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:3.677333pt;}
.y94{bottom:44.058000pt;}
.y11{bottom:44.058800pt;}
.y93{bottom:47.526667pt;}
.y10{bottom:47.527600pt;}
.y3f{bottom:148.119600pt;}
.y79{bottom:148.119733pt;}
.y61{bottom:151.703733pt;}
.yde{bottom:156.094667pt;}
.ybc{bottom:162.519867pt;}
.y3e{bottom:164.919600pt;}
.y78{bottom:164.919733pt;}
.y60{bottom:168.503733pt;}
.ydd{bottom:172.894667pt;}
.ybb{bottom:179.319867pt;}
.y3d{bottom:181.719600pt;}
.y77{bottom:181.719733pt;}
.y5f{bottom:185.303733pt;}
.ydc{bottom:189.694667pt;}
.yba{bottom:196.119867pt;}
.y3c{bottom:198.519600pt;}
.y76{bottom:198.519733pt;}
.y5e{bottom:202.103733pt;}
.ydb{bottom:206.494667pt;}
.yb9{bottom:212.919867pt;}
.y3b{bottom:215.319600pt;}
.y75{bottom:215.319733pt;}
.yf{bottom:217.929600pt;}
.y5d{bottom:218.903733pt;}
.yda{bottom:223.294667pt;}
.y1b4{bottom:224.560667pt;}
.yb8{bottom:229.719867pt;}
.y3a{bottom:232.119600pt;}
.y74{bottom:232.119733pt;}
.y5c{bottom:235.703733pt;}
.ye{bottom:238.943733pt;}
.y198{bottom:239.391733pt;}
.y1b3{bottom:241.360667pt;}
.yb7{bottom:246.519867pt;}
.y39{bottom:248.919600pt;}
.y73{bottom:248.919733pt;}
.y5b{bottom:252.503733pt;}
.y197{bottom:255.387733pt;}
.y1b2{bottom:258.160667pt;}
.y38{bottom:265.719600pt;}
.y72{bottom:265.719733pt;}
.y5a{bottom:269.303733pt;}
.y196{bottom:271.383733pt;}
.y116{bottom:274.295600pt;}
.y1b1{bottom:274.960667pt;}
.y37{bottom:282.519600pt;}
.y71{bottom:282.519733pt;}
.yd{bottom:282.937467pt;}
.y59{bottom:286.103733pt;}
.y195{bottom:287.379733pt;}
.y1b0{bottom:291.760667pt;}
.y161{bottom:292.406000pt;}
.ye0{bottom:299.089333pt;}
.y36{bottom:299.319600pt;}
.y70{bottom:299.319733pt;}
.yc{bottom:299.567333pt;}
.y58{bottom:302.903733pt;}
.y194{bottom:303.375733pt;}
.y1af{bottom:308.560667pt;}
.y35{bottom:316.119600pt;}
.y6f{bottom:316.119733pt;}
.yb{bottom:316.953200pt;}
.y193{bottom:319.371733pt;}
.y57{bottom:319.703733pt;}
.y1ae{bottom:325.360667pt;}
.yca{bottom:330.352267pt;}
.y34{bottom:332.919600pt;}
.y6e{bottom:332.919733pt;}
.y192{bottom:335.367733pt;}
.y56{bottom:336.503733pt;}
.yf3{bottom:340.399467pt;}
.y1ad{bottom:342.160667pt;}
.y11c{bottom:347.427200pt;}
.y122{bottom:348.372133pt;}
.y33{bottom:349.719600pt;}
.y6d{bottom:349.719733pt;}
.y191{bottom:351.363733pt;}
.y55{bottom:353.303733pt;}
.yee{bottom:355.517333pt;}
.y1ac{bottom:358.960667pt;}
.y11b{bottom:364.227200pt;}
.y121{bottom:365.172133pt;}
.y45{bottom:366.519600pt;}
.y6c{bottom:366.519733pt;}
.ya{bottom:366.525067pt;}
.y143{bottom:366.953867pt;}
.y190{bottom:367.359733pt;}
.yeb{bottom:368.516133pt;}
.y128{bottom:368.689200pt;}
.yed{bottom:368.850667pt;}
.y54{bottom:370.103733pt;}
.y1ab{bottom:375.760667pt;}
.ya7{bottom:380.657733pt;}
.y11a{bottom:381.027200pt;}
.y120{bottom:381.972133pt;}
.yec{bottom:382.184000pt;}
.y92{bottom:383.319600pt;}
.y32{bottom:383.319733pt;}
.y18f{bottom:383.355733pt;}
.y133{bottom:383.906533pt;}
.y53{bottom:386.903733pt;}
.yf1{bottom:391.357867pt;}
.y1aa{bottom:392.560667pt;}
.y119{bottom:397.827200pt;}
.y11f{bottom:398.772133pt;}
.y18e{bottom:399.351733pt;}
.y44{bottom:400.119600pt;}
.y31{bottom:400.119733pt;}
.y1a9{bottom:409.360667pt;}
.y118{bottom:414.627200pt;}
.y18d{bottom:415.347733pt;}
.y11e{bottom:415.572133pt;}
.y10b{bottom:416.769200pt;}
.y43{bottom:416.919600pt;}
.y30{bottom:416.919733pt;}
.y9{bottom:416.926400pt;}
.y96{bottom:419.618400pt;}
.ye3{bottom:420.699200pt;}
.ybe{bottom:422.232533pt;}
.yd8{bottom:423.004667pt;}
.yd0{bottom:423.004800pt;}
.y1a8{bottom:426.160667pt;}
.y18c{bottom:431.343733pt;}
.y10a{bottom:433.569200pt;}
.y42{bottom:433.719600pt;}
.y2f{bottom:433.719733pt;}
.y8{bottom:433.725067pt;}
.ye4{bottom:437.499200pt;}
.y12c{bottom:438.986267pt;}
.yd7{bottom:439.804667pt;}
.ycf{bottom:439.804800pt;}
.y52{bottom:440.551733pt;}
.y13d{bottom:441.506133pt;}
.y138{bottom:441.506267pt;}
.y1a7{bottom:442.960667pt;}
.y18b{bottom:447.339733pt;}
.y14a{bottom:448.227200pt;}
.y14e{bottom:449.172000pt;}
.y123{bottom:449.425067pt;}
.y10d{bottom:450.369200pt;}
.y41{bottom:450.519600pt;}
.y2e{bottom:450.519733pt;}
.yb5{bottom:454.061467pt;}
.yab{bottom:454.103067pt;}
.ye5{bottom:454.299200pt;}
.yb2{bottom:454.493467pt;}
.y12b{bottom:455.786267pt;}
.yd6{bottom:456.604667pt;}
.yce{bottom:456.604800pt;}
.y51{bottom:457.351733pt;}
.y13c{bottom:458.306133pt;}
.y137{bottom:458.306267pt;}
.y1a6{bottom:459.760667pt;}
.y18a{bottom:463.335733pt;}
.y149{bottom:465.027200pt;}
.y14d{bottom:465.972000pt;}
.y10e{bottom:467.169200pt;}
.y40{bottom:467.319600pt;}
.y2d{bottom:467.319733pt;}
.y126{bottom:467.360400pt;}
.ye6{bottom:469.718000pt;}
.yb4{bottom:470.861467pt;}
.yaa{bottom:470.903067pt;}
.yb1{bottom:471.293467pt;}
.y130{bottom:472.586267pt;}
.yd5{bottom:473.404667pt;}
.ycd{bottom:473.404800pt;}
.y50{bottom:474.151733pt;}
.y13b{bottom:475.106133pt;}
.y136{bottom:475.106267pt;}
.y1a5{bottom:476.560667pt;}
.y124{bottom:477.355733pt;}
.y10f{bottom:478.137200pt;}
.y189{bottom:479.331733pt;}
.y148{bottom:481.827200pt;}
.y14c{bottom:482.772000pt;}
.y2c{bottom:484.119600pt;}
.y7{bottom:484.119733pt;}
.y160{bottom:484.346000pt;}
.yb3{bottom:487.661467pt;}
.yb0{bottom:488.093467pt;}
.yd4{bottom:490.204667pt;}
.y4f{bottom:490.951733pt;}
.y13a{bottom:491.906133pt;}
.y135{bottom:491.906267pt;}
.y1a4{bottom:493.360667pt;}
.ye7{bottom:495.114400pt;}
.y188{bottom:495.327733pt;}
.yc4{bottom:497.007867pt;}
.y147{bottom:498.627200pt;}
.y2b{bottom:500.919600pt;}
.y8f{bottom:500.919733pt;}
.y9f{bottom:503.066800pt;}
.y99{bottom:503.066933pt;}
.yaf{bottom:504.893467pt;}
.ya2{bottom:505.466800pt;}
.y4e{bottom:507.751733pt;}
.y1a3{bottom:510.160667pt;}
.y15f{bottom:510.900533pt;}
.y187{bottom:511.323733pt;}
.y13e{bottom:511.378133pt;}
.y110{bottom:511.737200pt;}
.yc3{bottom:513.807867pt;}
.y146{bottom:515.427200pt;}
.y2a{bottom:517.719600pt;}
.y6b{bottom:517.719733pt;}
.y9e{bottom:519.866800pt;}
.y98{bottom:519.866933pt;}
.yd1{bottom:520.164400pt;}
.ya1{bottom:522.266800pt;}
.y4d{bottom:524.551733pt;}
.y1a2{bottom:526.960667pt;}
.y186{bottom:527.319733pt;}
.yc2{bottom:530.607867pt;}
.y11d{bottom:533.055867pt;}
.y29{bottom:534.519600pt;}
.y8e{bottom:534.519733pt;}
.y12d{bottom:536.146000pt;}
.y9d{bottom:536.666800pt;}
.y97{bottom:536.666933pt;}
.ya0{bottom:539.066800pt;}
.y4c{bottom:541.351733pt;}
.y185{bottom:543.315733pt;}
.y13f{bottom:544.978133pt;}
.yc1{bottom:547.407867pt;}
.y14f{bottom:550.225067pt;}
.ye8{bottom:550.352267pt;}
.yac{bottom:550.703067pt;}
.y28{bottom:551.319600pt;}
.y8d{bottom:551.319733pt;}
.y165{bottom:555.433467pt;}
.y4b{bottom:558.151733pt;}
.y111{bottom:558.906400pt;}
.y184{bottom:559.311733pt;}
.y1a1{bottom:560.560667pt;}
.yc8{bottom:564.207867pt;}
.yd2{bottom:567.265733pt;}
.y27{bottom:568.119600pt;}
.y8c{bottom:568.119733pt;}
.y164{bottom:572.233467pt;}
.y4a{bottom:574.951733pt;}
.y183{bottom:575.307733pt;}
.y1a0{bottom:577.360667pt;}
.ye9{bottom:577.886133pt;}
.y150{bottom:578.155733pt;}
.y12e{bottom:583.247333pt;}
.yf5{bottom:584.909733pt;}
.y26{bottom:584.919600pt;}
.y8b{bottom:584.919733pt;}
.y169{bottom:589.033467pt;}
.y182{bottom:591.303733pt;}
.y49{bottom:591.751733pt;}
.y140{bottom:592.147333pt;}
.y19f{bottom:594.160667pt;}
.yc5{bottom:594.167600pt;}
.y10c{bottom:594.838800pt;}
.y9a{bottom:596.057333pt;}
.yad{bottom:597.804400pt;}
.yd3{bottom:601.560400pt;}
.y25{bottom:601.719600pt;}
.y84{bottom:601.719733pt;}
.y12a{bottom:601.730400pt;}
.yea{bottom:605.780933pt;}
.y181{bottom:607.299733pt;}
.y48{bottom:608.551733pt;}
.y19e{bottom:610.960667pt;}
.y12f{bottom:617.542000pt;}
.ycc{bottom:618.510400pt;}
.y24{bottom:618.519600pt;}
.y83{bottom:618.519733pt;}
.ye2{bottom:618.520400pt;}
.y180{bottom:623.295733pt;}
.y47{bottom:625.351733pt;}
.y19d{bottom:627.760667pt;}
.y139{bottom:628.079733pt;}
.yae{bottom:632.099067pt;}
.y14b{bottom:633.855867pt;}
.y145{bottom:635.310400pt;}
.y23{bottom:635.319600pt;}
.y82{bottom:635.319733pt;}
.ya9{bottom:635.321067pt;}
.y109{bottom:636.149333pt;}
.y17f{bottom:639.291733pt;}
.yc6{bottom:641.268933pt;}
.y46{bottom:642.151733pt;}
.y9b{bottom:643.158667pt;}
.y19c{bottom:644.560667pt;}
.yf0{bottom:647.992000pt;}
.y22{bottom:652.119600pt;}
.y81{bottom:652.119733pt;}
.y166{bottom:652.593200pt;}
.y108{bottom:652.949333pt;}
.ybd{bottom:654.919467pt;}
.y17e{bottom:655.287733pt;}
.y141{bottom:658.374933pt;}
.y19b{bottom:661.360667pt;}
.y114{bottom:666.787200pt;}
.y21{bottom:668.919600pt;}
.y80{bottom:668.919733pt;}
.y107{bottom:669.749333pt;}
.y17d{bottom:671.283733pt;}
.yc7{bottom:675.563600pt;}
.y9c{bottom:677.453333pt;}
.y19a{bottom:678.160667pt;}
.y20{bottom:685.719600pt;}
.y7f{bottom:685.719733pt;}
.yc0{bottom:685.720933pt;}
.y106{bottom:686.549333pt;}
.y17c{bottom:687.279733pt;}
.ya6{bottom:688.239733pt;}
.y199{bottom:694.960667pt;}
.y167{bottom:699.694533pt;}
.y1f{bottom:702.519600pt;}
.y7e{bottom:702.519733pt;}
.y17b{bottom:703.275733pt;}
.y105{bottom:703.349333pt;}
.y5{bottom:718.338267pt;}
.y17a{bottom:719.271733pt;}
.y1e{bottom:719.319600pt;}
.y7d{bottom:719.319733pt;}
.y104{bottom:720.149333pt;}
.y131{bottom:721.186933pt;}
.yc9{bottom:729.413867pt;}
.y15e{bottom:730.793467pt;}
.ydf{bottom:730.888000pt;}
.y168{bottom:733.989200pt;}
.y179{bottom:735.267733pt;}
.y163{bottom:736.117067pt;}
.y1d{bottom:736.119600pt;}
.y7c{bottom:736.119733pt;}
.y103{bottom:736.949333pt;}
.y178{bottom:751.263733pt;}
.y91{bottom:752.919600pt;}
.ya4{bottom:752.919733pt;}
.y102{bottom:753.749333pt;}
.y177{bottom:767.259733pt;}
.y4{bottom:768.983600pt;}
.y1c{bottom:769.719600pt;}
.y8a{bottom:769.719733pt;}
.y101{bottom:770.549333pt;}
.y176{bottom:783.255733pt;}
.y7b{bottom:786.519600pt;}
.y89{bottom:786.519733pt;}
.y100{bottom:787.349333pt;}
.y15c{bottom:797.548000pt;}
.y175{bottom:799.251733pt;}
.y117{bottom:803.313067pt;}
.y7a{bottom:803.319600pt;}
.y88{bottom:803.319733pt;}
.yff{bottom:804.149333pt;}
.y15b{bottom:814.348000pt;}
.y174{bottom:815.247733pt;}
.y125{bottom:819.253333pt;}
.y3{bottom:819.628933pt;}
.ycb{bottom:820.113067pt;}
.y90{bottom:820.119600pt;}
.y87{bottom:820.119733pt;}
.ye1{bottom:820.123067pt;}
.yfe{bottom:820.949333pt;}
.y15a{bottom:831.148000pt;}
.y173{bottom:831.243733pt;}
.yf4{bottom:836.913067pt;}
.y1b{bottom:836.919600pt;}
.y86{bottom:836.919733pt;}
.ya8{bottom:836.923733pt;}
.yfd{bottom:837.749333pt;}
.yef{bottom:840.777733pt;}
.y172{bottom:847.239733pt;}
.y159{bottom:847.948000pt;}
.y134{bottom:853.718400pt;}
.y1a{bottom:853.719600pt;}
.y85{bottom:853.719733pt;}
.y171{bottom:863.235733pt;}
.y158{bottom:864.748000pt;}
.y2{bottom:870.274267pt;}
.y162{bottom:870.513733pt;}
.y19{bottom:870.519600pt;}
.y6a{bottom:870.519733pt;}
.y129{bottom:870.523733pt;}
.yfc{bottom:871.349333pt;}
.y170{bottom:879.231733pt;}
.y157{bottom:881.548000pt;}
.y144{bottom:887.313733pt;}
.y18{bottom:887.319600pt;}
.y69{bottom:887.319733pt;}
.ybf{bottom:887.323600pt;}
.yfb{bottom:888.149333pt;}
.y16f{bottom:895.227733pt;}
.y17{bottom:904.119600pt;}
.y68{bottom:904.119733pt;}
.yfa{bottom:904.949333pt;}
.y16e{bottom:911.223733pt;}
.y156{bottom:915.148000pt;}
.y1{bottom:920.919600pt;}
.y67{bottom:920.919733pt;}
.yf9{bottom:921.749333pt;}
.y16d{bottom:927.219733pt;}
.y155{bottom:931.948000pt;}
.y16{bottom:937.719600pt;}
.y66{bottom:937.719733pt;}
.yf8{bottom:938.549333pt;}
.y16c{bottom:943.215733pt;}
.y154{bottom:948.748000pt;}
.y15{bottom:954.519600pt;}
.y65{bottom:954.519733pt;}
.yf7{bottom:955.349333pt;}
.y16b{bottom:959.211733pt;}
.y153{bottom:965.548000pt;}
.y14{bottom:971.319600pt;}
.y64{bottom:971.319733pt;}
.y152{bottom:982.348000pt;}
.ya3{bottom:988.119600pt;}
.y63{bottom:988.119733pt;}
.y127{bottom:998.214000pt;}
.ya5{bottom:999.039733pt;}
.y151{bottom:999.148000pt;}
.yb6{bottom:1000.746133pt;}
.yf6{bottom:1003.349333pt;}
.y6{bottom:1003.791733pt;}
.y112{bottom:1004.919600pt;}
.y13{bottom:1004.919733pt;}
.y16a{bottom:1004.960400pt;}
.yf2{bottom:1008.938267pt;}
.y15d{bottom:1009.722533pt;}
.y115{bottom:1014.157733pt;}
.y113{bottom:1015.013867pt;}
.yd9{bottom:1017.754133pt;}
.y132{bottom:1020.756000pt;}
.y95{bottom:1021.719600pt;}
.y62{bottom:1021.719733pt;}
.y142{bottom:1021.999467pt;}
.h9{height:18.365333pt;}
.ha{height:28.560000pt;}
.h7{height:33.942708pt;}
.he{height:36.468750pt;}
.hd{height:36.960938pt;}
.h15{height:38.791667pt;}
.hc{height:43.640625pt;}
.h10{height:43.641158pt;}
.h4{height:44.586667pt;}
.h6{height:45.503360pt;}
.h5{height:45.508693pt;}
.hf{height:46.920000pt;}
.h3{height:68.906667pt;}
.h11{height:73.312856pt;}
.h8{height:73.440000pt;}
.h13{height:79.977749pt;}
.h16{height:79.978719pt;}
.h12{height:82.432292pt;}
.hb{height:85.680000pt;}
.h2{height:130.560000pt;}
.h14{height:165.533656pt;}
.h18{height:184.180025pt;}
.h17{height:184.180558pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:748.346667pt;}
.w3{width:754.646267pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:38.154400pt;}
.xa{left:39.055067pt;}
.xb{left:45.354267pt;}
.xe{left:60.472400pt;}
.xf{left:75.590533pt;}
.x66{left:83.701333pt;}
.x31{left:84.865733pt;}
.x2e{left:85.796000pt;}
.xa3{left:88.090933pt;}
.x2a{left:90.141733pt;}
.x64{left:91.358267pt;}
.x18{left:93.738933pt;}
.x17{left:109.200933pt;}
.x4c{left:111.072000pt;}
.x2f{left:112.245467pt;}
.xaf{left:113.175867pt;}
.x2b{left:115.079200pt;}
.x63{left:117.175867pt;}
.x1{left:120.944933pt;}
.x75{left:129.716800pt;}
.x2{left:136.062933pt;}
.x90{left:139.930667pt;}
.x91{left:141.354667pt;}
.x6b{left:142.299600pt;}
.x2d{left:143.842667pt;}
.x65{left:145.056533pt;}
.x1e{left:147.293600pt;}
.x46{left:149.569733pt;}
.x4d{left:162.346000pt;}
.x45{left:165.301200pt;}
.x62{left:181.883867pt;}
.x9b{left:210.665600pt;}
.x16{left:211.653467pt;}
.x9d{left:216.066133pt;}
.x8c{left:217.091333pt;}
.x5{left:219.212533pt;}
.xae{left:220.401067pt;}
.x33{left:221.415333pt;}
.x1d{left:222.360133pt;}
.x8a{left:224.225600pt;}
.x7a{left:226.772933pt;}
.x1b{left:227.715200pt;}
.x34{left:229.118933pt;}
.x3e{left:231.505200pt;}
.x8b{left:232.757600pt;}
.x11{left:234.330667pt;}
.x50{left:235.230533pt;}
.xad{left:236.963867pt;}
.x35{left:237.878933pt;}
.x1f{left:238.936400pt;}
.x47{left:241.133600pt;}
.x20{left:243.676400pt;}
.xa4{left:245.474800pt;}
.x19{left:246.419600pt;}
.x5b{left:247.872000pt;}
.x68{left:248.915467pt;}
.x78{left:253.042533pt;}
.x76{left:258.704533pt;}
.x3d{left:260.569200pt;}
.x13{left:264.058000pt;}
.x8e{left:265.779867pt;}
.x95{left:266.733867pt;}
.x14{left:269.386667pt;}
.x96{left:270.285867pt;}
.x67{left:271.593333pt;}
.x6a{left:275.663733pt;}
.xa5{left:277.417733pt;}
.x1c{left:278.362533pt;}
.xb2{left:279.905600pt;}
.x69{left:280.796000pt;}
.x21{left:286.673067pt;}
.x7{left:292.460667pt;}
.x10{left:297.070800pt;}
.x4f{left:308.197467pt;}
.x5e{left:310.176400pt;}
.xc{left:317.478267pt;}
.x9c{left:319.098133pt;}
.x93{left:323.084400pt;}
.x8d{left:328.420400pt;}
.x4e{left:329.400000pt;}
.xd{left:332.598400pt;}
.x6e{left:338.701600pt;}
.xa0{left:342.453013pt;}
.x9f{left:345.698773pt;}
.x80{left:346.743067pt;}
.x7f{left:350.050933pt;}
.x7d{left:350.962933pt;}
.x6f{left:352.354960pt;}
.xa9{left:353.865867pt;}
.x9e{left:356.353333pt;}
.x7e{left:357.358933pt;}
.x8{left:359.293867pt;}
.xa8{left:360.261867pt;}
.x70{left:363.432880pt;}
.x82{left:366.424800pt;}
.x12{left:370.047200pt;}
.xb5{left:373.046133pt;}
.x9a{left:374.548800pt;}
.x77{left:386.452667pt;}
.x52{left:391.542533pt;}
.x8f{left:394.767600pt;}
.xb4{left:401.479467pt;}
.x26{left:403.273733pt;}
.x3f{left:407.377733pt;}
.x40{left:408.565733pt;}
.x51{left:411.042533pt;}
.x36{left:412.061600pt;}
.x25{left:414.709733pt;}
.x2c{left:420.081200pt;}
.xb3{left:421.315467pt;}
.x30{left:426.147733pt;}
.x49{left:428.778000pt;}
.x41{left:432.781733pt;}
.x24{left:434.593733pt;}
.x98{left:435.945867pt;}
.x79{left:438.560933pt;}
.x97{left:439.629867pt;}
.x48{left:451.914000pt;}
.x81{left:455.776800pt;}
.x22{left:459.438400pt;}
.x72{left:466.768000pt;}
.x99{left:467.721867pt;}
.x71{left:469.778560pt;}
.xb0{left:472.374533pt;}
.x73{left:473.471200pt;}
.xa2{left:474.388453pt;}
.x54{left:477.114933pt;}
.x85{left:480.185040pt;}
.x74{left:482.350000pt;}
.xa1{left:484.419733pt;}
.x53{left:488.346933pt;}
.x3b{left:490.133067pt;}
.x6{left:491.336533pt;}
.x84{left:494.532240pt;}
.x94{left:495.736400pt;}
.x32{left:501.458800pt;}
.x5c{left:502.990133pt;}
.x15{left:506.456667pt;}
.x7c{left:511.419600pt;}
.x6d{left:513.940533pt;}
.x4{left:518.814800pt;}
.x7b{left:520.174400pt;}
.xa7{left:522.503867pt;}
.x3a{left:529.326267pt;}
.x56{left:556.578933pt;}
.x57{left:558.630933pt;}
.x1a{left:567.867200pt;}
.x38{left:572.981600pt;}
.x39{left:574.073600pt;}
.x28{left:578.509733pt;}
.x55{left:580.038933pt;}
.x37{left:581.441600pt;}
.x27{left:583.021733pt;}
.x4a{left:586.350000pt;}
.x43{left:588.049733pt;}
.xb6{left:589.568533pt;}
.x42{left:595.465733pt;}
.x6c{left:597.165333pt;}
.x4b{left:600.918000pt;}
.x86{left:602.358267pt;}
.xab{left:603.566800pt;}
.x29{left:604.561733pt;}
.x88{left:606.170267pt;}
.xa6{left:607.327467pt;}
.xb1{left:610.960133pt;}
.xaa{left:619.973733pt;}
.x89{left:630.713387pt;}
.x23{left:632.090400pt;}
.x92{left:638.245200pt;}
.x60{left:644.166400pt;}
.x83{left:650.003467pt;}
.x59{left:655.158933pt;}
.x58{left:656.742933pt;}
.x5a{left:658.158933pt;}
.x61{left:659.974400pt;}
.x5f{left:664.827733pt;}
.x5d{left:671.557067pt;}
.x3c{left:678.920933pt;}
.xac{left:710.448933pt;}
.x87{left:711.657467pt;}
.x44{left:730.320933pt;}
.x9{left:744.048667pt;}
}




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