
    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_85f36a8e479bb793ca44b863.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.123535;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_5a3aa3a0373ba4604e398a92.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123535;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_ef7e8c0132a0a5a134b16a50.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_004566864c32a5a236802be2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bcb063e5bbd3f92988b853e2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e426ee50a40b9b764640283e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_f8606738e8b70dde6da27428.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8f115e2caec32bd27b08b676.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_01a1a773ea353361c9e30158.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.692871;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_dea02fe32427cdc12f3ca945.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.897000;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_f66a97915dd575f436d1c4d1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.526000;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_ac6f37cad4f30249d7d2a5e4.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7a9644044bb254ce5abf1b88.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.281250;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_ab255997bee8391e33e40b21.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_0a0b3634a5449a31fe6e80ac.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_2f46883924b5a73db0c93f61.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_477fc50063f11c5b17ea4003.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_847eab5240804f6897920993.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_549ffc8e2158d1f1a080ca03.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910156;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_f820948af67a9bb4a5bc0926.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_8118044d1271b8fae6df8daf.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910156;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_dea02fe32427cdc12f3ca945.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.897000;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_39fb1517738186856101a432.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.901000;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_f66a97915dd575f436d1c4d1.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.526000;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_3440f99cfa8f52c1d869ab78.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.680176;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_cb06263149d06e4a3c6fad88.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_2736bb2b41eeefbbe1c52c9c.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_ff01b13584dbe05b48326245.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_979b7680092bae50fb9ba270.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_55b288c39261e8948807a6f1.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_d05a2879ca26c3cfba6960f0.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_78ccb3960bed5daed0a225f8.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff24{font-family:ff24;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;}
.m4{transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-ms-transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);}
.m6{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,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);}
.m1{transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250473,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250474,0.000000,0.000000,0.250000,0,0);}
.m5{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:-33.120000px;}
.v1{vertical-align:-9.360000px;}
.v6{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:5.760000px;}
.v5{vertical-align:9.360000px;}
.v2{vertical-align:33.120000px;}
.v3{vertical-align:36.000000px;}
.ls10{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.078156px;}
.ls27{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.023040px;}
.ls2b{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.072000px;}
.ls28{letter-spacing:0.108000px;}
.ls29{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144000px;}
.ls2c{letter-spacing:0.152400px;}
.ls2a{letter-spacing:0.152640px;}
.ls1{letter-spacing:0.178800px;}
.ls14{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.403056px;}
.ls5{letter-spacing:0.432000px;}
.ls2d{letter-spacing:0.450600px;}
.lse{letter-spacing:0.504000px;}
.ls1c{letter-spacing:0.540000px;}
.lsa{letter-spacing:0.576000px;}
.ls1b{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.792000px;}
.ls22{letter-spacing:0.864000px;}
.ls23{letter-spacing:1.080000px;}
.ls1a{letter-spacing:1.440000px;}
.ls19{letter-spacing:1.512000px;}
.ls26{letter-spacing:2.160000px;}
.ls17{letter-spacing:2.880000px;}
.ls20{letter-spacing:3.600000px;}
.ls21{letter-spacing:4.320000px;}
.ls1f{letter-spacing:5.040000px;}
.ls4{letter-spacing:5.760000px;}
.lsb{letter-spacing:6.480000px;}
.lsc{letter-spacing:7.200000px;}
.ls25{letter-spacing:7.920000px;}
.ls18{letter-spacing:8.640000px;}
.ls1d{letter-spacing:9.360000px;}
.ls12{letter-spacing:68.400000px;}
.ls2{letter-spacing:194.376000px;}
.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;}
}
.wsa{word-spacing:-95.760000px;}
.ws10{word-spacing:-72.792000px;}
.ws4{word-spacing:-72.000000px;}
.ws22{word-spacing:-52.587339px;}
.ws9{word-spacing:-35.999986px;}
.ws23{word-spacing:-23.940000px;}
.ws15{word-spacing:-18.864000px;}
.wsd{word-spacing:-18.792000px;}
.wsf{word-spacing:-18.720000px;}
.ws1e{word-spacing:-18.576000px;}
.ws14{word-spacing:-18.504000px;}
.ws12{word-spacing:-18.432000px;}
.ws8{word-spacing:-18.288000px;}
.ws17{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.144000px;}
.ws11{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws18{word-spacing:-17.928000px;}
.wse{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws21{word-spacing:-16.919993px;}
.ws1f{word-spacing:-15.300000px;}
.ws20{word-spacing:-14.940000px;}
.ws0{word-spacing:-14.118000px;}
.ws16{word-spacing:-13.140000px;}
.wsc{word-spacing:-12.960000px;}
.wsb{word-spacing:-12.780000px;}
.ws1c{word-spacing:-12.510600px;}
.ws19{word-spacing:-12.420000px;}
.ws1a{word-spacing:-12.212400px;}
.ws1b{word-spacing:-12.105360px;}
.ws6{word-spacing:-12.060000px;}
.ws13{word-spacing:-11.700000px;}
.ws1d{word-spacing:-7.560000px;}
.ws1{word-spacing:0.000000px;}
._23{margin-left:-89.426863px;}
._14{margin-left:-9.486240px;}
._2d{margin-left:-6.612480px;}
._2e{margin-left:-5.266800px;}
._2f{margin-left:-3.525840px;}
._11{margin-left:-2.376000px;}
._0{margin-left:-1.013760px;}
._7{width:1.224000px;}
._8{width:2.256000px;}
._d{width:3.965760px;}
._4{width:4.968000px;}
._6{width:6.048000px;}
._5{width:7.200000px;}
._b{width:8.280000px;}
._e{width:10.224000px;}
._12{width:11.952000px;}
._19{width:13.824000px;}
._9{width:14.976000px;}
._16{width:15.996000px;}
._29{width:18.362880px;}
._a{width:19.512000px;}
._10{width:20.597760px;}
._c{width:22.104000px;}
._13{width:23.184000px;}
._22{width:24.264000px;}
._1f{width:25.272000px;}
._20{width:26.640000px;}
._21{width:27.792000px;}
._15{width:29.376000px;}
._3{width:32.333760px;}
._2{width:33.480000px;}
._17{width:34.488000px;}
._18{width:35.496000px;}
._27{width:36.504000px;}
._26{width:38.153280px;}
._1a{width:39.168000px;}
._1b{width:40.176000px;}
._28{width:42.508800px;}
._2a{width:46.008000px;}
._1{width:60.951840px;}
._24{width:67.752000px;}
._25{width:69.353760px;}
._2c{width:107.976000px;}
._1c{width:139.008000px;}
._2b{width:143.976000px;}
._f{width:194.376000px;}
._1e{width:1299.900000px;}
._1d{width:1315.020000px;}
.fc7{color:rgb(153,51,102);}
.fc6{color:rgb(51,153,102);}
.fc5{color:rgb(192,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc8{color:rgb(255,255,255);}
.fc1{color:rgb(193,193,193);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:30.240000px;}
.fs4{font-size:45.360000px;}
.fs5{font-size:48.240000px;}
.fsc{font-size:51.120000px;}
.fsd{font-size:59.760000px;}
.fs2{font-size:60.000000px;}
.fs9{font-size:60.120000px;}
.fs0{font-size:63.360000px;}
.fsf{font-size:67.679973px;}
.fs3{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fsb{font-size:77.760000px;}
.fs12{font-size:84.240000px;}
.fs6{font-size:95.759962px;}
.fsa{font-size:95.760000px;}
.fs10{font-size:95.904000px;}
.fs11{font-size:108.000000px;}
.fs7{font-size:120.239952px;}
.fs8{font-size:143.999942px;}
.y0{bottom:0.000000px;}
.y144{bottom:4.140000px;}
.yd4{bottom:4.500000px;}
.y163{bottom:5.580000px;}
.y174{bottom:5.760000px;}
.y171{bottom:6.300000px;}
.y16d{bottom:6.480000px;}
.y15e{bottom:7.740000px;}
.y142{bottom:8.280000px;}
.y1a8{bottom:8.640000px;}
.y1cd{bottom:8.685000px;}
.y15f{bottom:8.820000px;}
.y18c{bottom:9.180000px;}
.y151{bottom:9.900000px;}
.y1aa{bottom:10.080000px;}
.y153{bottom:12.780000px;}
.y155{bottom:12.825000px;}
.y16f{bottom:16.020000px;}
.y195{bottom:16.065000px;}
.y161{bottom:16.200000px;}
.y176{bottom:16.245000px;}
.y15c{bottom:20.700000px;}
.y1a0{bottom:22.860000px;}
.y18b{bottom:23.040000px;}
.y1a6{bottom:23.940000px;}
.y14e{bottom:24.840000px;}
.yd1{bottom:33.783000px;}
.y1b8{bottom:39.240000px;}
.y1ba{bottom:40.680000px;}
.y150{bottom:45.540000px;}
.yd0{bottom:50.702250px;}
.yd3{bottom:52.920000px;}
.yd2{bottom:57.600000px;}
.y179{bottom:58.680000px;}
.ycf{bottom:67.711650px;}
.yce{bottom:84.721200px;}
.y88{bottom:84.961343px;}
.y1bf{bottom:86.220000px;}
.y1c9{bottom:89.820000px;}
.ycd{bottom:101.730600px;}
.y1c8{bottom:110.520000px;}
.y61{bottom:113.400000px;}
.y117{bottom:115.020000px;}
.y112{bottom:115.380000px;}
.y4b{bottom:115.560000px;}
.ycc{bottom:118.740000px;}
.y1c5{bottom:122.220000px;}
.y1b3{bottom:123.150000px;}
.y7e{bottom:128.340000px;}
.y1c7{bottom:131.265000px;}
.y84{bottom:132.120000px;}
.y1e4{bottom:133.920000px;}
.ycb{bottom:135.659250px;}
.y1b2{bottom:143.850000px;}
.y123{bottom:144.360000px;}
.y60{bottom:144.540000px;}
.y193{bottom:144.570000px;}
.y4a{bottom:146.520000px;}
.y1c6{bottom:151.965000px;}
.yca{bottom:152.668800px;}
.y192{bottom:158.250000px;}
.y83{bottom:158.760000px;}
.y7d{bottom:159.480000px;}
.y1a3{bottom:160.200000px;}
.y1b1{bottom:164.550000px;}
.y10e{bottom:165.240000px;}
.yc9{bottom:169.678200px;}
.y191{bottom:172.110000px;}
.y5f{bottom:175.500000px;}
.y111{bottom:177.480000px;}
.y49{bottom:177.660000px;}
.y17f{bottom:178.740000px;}
.y1b0{bottom:185.250000px;}
.y190{bottom:185.970000px;}
.yc8{bottom:186.687750px;}
.y7c{bottom:190.440000px;}
.y10d{bottom:196.380000px;}
.y13e{bottom:198.180000px;}
.y1a2{bottom:199.980000px;}
.yc7{bottom:203.697150px;}
.y1af{bottom:205.950000px;}
.y122{bottom:206.460000px;}
.y5e{bottom:206.640000px;}
.y48{bottom:208.620000px;}
.y1bd{bottom:213.165000px;}
.yc6{bottom:220.616400px;}
.y19f{bottom:221.430000px;}
.y7b{bottom:221.610000px;}
.y16c{bottom:223.410000px;}
.y1ae{bottom:226.650000px;}
.y10c{bottom:227.370000px;}
.y13d{bottom:229.350000px;}
.y16b{bottom:237.270000px;}
.yc5{bottom:237.625800px;}
.y5d{bottom:237.630000px;}
.yff{bottom:239.610000px;}
.y47{bottom:239.790000px;}
.y1a1{bottom:242.670000px;}
.y1e3{bottom:246.750000px;}
.y1ad{bottom:247.350000px;}
.y16a{bottom:251.130000px;}
.y7a{bottom:252.570000px;}
.yc4{bottom:254.635350px;}
.y1d3{bottom:257.970000px;}
.y10b{bottom:258.510000px;}
.y13c{bottom:260.310000px;}
.y19d{bottom:263.910000px;}
.y169{bottom:264.810000px;}
.y1ac{bottom:268.050000px;}
.y121{bottom:268.590000px;}
.y5c{bottom:268.770000px;}
.yfe{bottom:270.390000px;}
.y46{bottom:270.750000px;}
.yc3{bottom:271.644750px;}
.y1e2{bottom:275.580000px;}
.y168{bottom:278.670000px;}
.y1d2{bottom:278.850000px;}
.y79{bottom:283.710000px;}
.y19e{bottom:285.330000px;}
.yc2{bottom:288.654150px;}
.y10a{bottom:289.470000px;}
.y13b{bottom:291.450000px;}
.y167{bottom:292.530000px;}
.y180{bottom:293.115000px;}
.y5b{bottom:299.730000px;}
.y45{bottom:301.710000px;}
.yc1{bottom:305.573400px;}
.y166{bottom:306.210000px;}
.y19b{bottom:306.570000px;}
.y1d1{bottom:307.830000px;}
.yee{bottom:309.090000px;}
.y78{bottom:314.670000px;}
.y1bc{bottom:317.910000px;}
.y165{bottom:320.070000px;}
.y109{bottom:320.610000px;}
.y13a{bottom:322.410000px;}
.yc0{bottom:322.582950px;}
.y29{bottom:326.595000px;}
.y19c{bottom:327.810000px;}
.y120{bottom:330.690000px;}
.y5a{bottom:330.870000px;}
.y44{bottom:332.850000px;}
.ybf{bottom:339.592350px;}
.yed{bottom:340.590000px;}
.y28{bottom:344.955000px;}
.y77{bottom:345.810000px;}
.y199{bottom:349.230000px;}
.y1d0{bottom:349.950000px;}
.y108{bottom:351.570000px;}
.y139{bottom:353.550000px;}
.ybe{bottom:356.601750px;}
.y59{bottom:361.830000px;}
.y27{bottom:363.495000px;}
.y43{bottom:363.810000px;}
.y19a{bottom:370.470000px;}
.yec{bottom:371.550000px;}
.ybd{bottom:373.611300px;}
.y76{bottom:376.770000px;}
.y26{bottom:381.855000px;}
.y1cf{bottom:381.990000px;}
.y107{bottom:383.430000px;}
.y138{bottom:384.510000px;}
.ybc{bottom:390.620700px;}
.y197{bottom:391.710000px;}
.y11f{bottom:392.790000px;}
.y58{bottom:392.970000px;}
.y42{bottom:394.950000px;}
.y25{bottom:400.395000px;}
.yeb{bottom:402.690000px;}
.ybb{bottom:407.539950px;}
.y75{bottom:407.910000px;}
.y198{bottom:413.130000px;}
.y1ce{bottom:414.030000px;}
.y137{bottom:415.650000px;}
.y106{bottom:416.550000px;}
.y24{bottom:418.935000px;}
.y57{bottom:423.930000px;}
.yba{bottom:424.549500px;}
.y41{bottom:425.910000px;}
.yea{bottom:433.650000px;}
.y82{bottom:433.830000px;}
.y194{bottom:434.370000px;}
.y23{bottom:437.295000px;}
.y74{bottom:438.870000px;}
.yb9{bottom:441.558900px;}
.y1cc{bottom:446.070000px;}
.y136{bottom:446.610000px;}
.y105{bottom:448.815000px;}
.y87{bottom:452.160098px;}
.y8a{bottom:452.161774px;}
.y11e{bottom:454.935000px;}
.y56{bottom:455.115000px;}
.y196{bottom:455.655000px;}
.y22{bottom:455.835000px;}
.yfd{bottom:456.915000px;}
.y40{bottom:457.095000px;}
.yb8{bottom:458.568300px;}
.y81{bottom:464.835000px;}
.y73{bottom:470.055000px;}
.y21{bottom:474.195000px;}
.yb7{bottom:475.577850px;}
.y18e{bottom:477.075000px;}
.y135{bottom:477.615000px;}
.y1cb{bottom:478.155000px;}
.y104{bottom:480.675000px;}
.y86{bottom:481.140175px;}
.y89{bottom:481.141851px;}
.y55{bottom:486.075000px;}
.y114{bottom:487.695000px;}
.y3f{bottom:488.055000px;}
.yb6{bottom:492.497100px;}
.y20{bottom:492.735000px;}
.ye9{bottom:495.795000px;}
.y80{bottom:495.975000px;}
.y18f{bottom:498.315000px;}
.y72{bottom:501.015000px;}
.y134{bottom:508.755000px;}
.yb5{bottom:509.506500px;}
.y1ca{bottom:510.195000px;}
.y1f{bottom:511.275000px;}
.y103{bottom:513.075000px;}
.y11d{bottom:517.035000px;}
.y54{bottom:517.215000px;}
.yfc{bottom:519.015000px;}
.y3e{bottom:519.195000px;}
.y164{bottom:519.555000px;}
.y7f{bottom:522.795000px;}
.yb4{bottom:526.516050px;}
.ye8{bottom:526.935000px;}
.y1e{bottom:529.635000px;}
.y71{bottom:532.155000px;}
.y133{bottom:539.715000px;}
.y18d{bottom:540.975000px;}
.y1c4{bottom:542.235000px;}
.yb3{bottom:543.525450px;}
.y102{bottom:544.755000px;}
.y53{bottom:548.175000px;}
.y1d{bottom:548.205000px;}
.yfb{bottom:549.795000px;}
.y3d{bottom:550.155000px;}
.ye7{bottom:557.895000px;}
.yb2{bottom:560.534850px;}
.y189{bottom:562.215000px;}
.y70{bottom:563.115000px;}
.y1c{bottom:566.565000px;}
.y132{bottom:570.855000px;}
.y1ab{bottom:574.275000px;}
.yb1{bottom:577.454100px;}
.y101{bottom:577.875000px;}
.y11c{bottom:579.135000px;}
.y52{bottom:579.315000px;}
.yfa{bottom:581.115000px;}
.y3c{bottom:581.295000px;}
.y141{bottom:581.835000px;}
.y18a{bottom:583.455000px;}
.y1b{bottom:585.105000px;}
.ye6{bottom:588.675000px;}
.y6f{bottom:594.255000px;}
.yb0{bottom:594.463650px;}
.y131{bottom:601.815000px;}
.y1a{bottom:603.465000px;}
.y1c3{bottom:604.695000px;}
.y187{bottom:604.875000px;}
.y51{bottom:610.275000px;}
.yaf{bottom:611.473050px;}
.y115{bottom:611.895000px;}
.y3b{bottom:612.255000px;}
.ye5{bottom:619.635000px;}
.y19{bottom:622.005000px;}
.y6e{bottom:625.215000px;}
.y188{bottom:626.115000px;}
.yae{bottom:628.482450px;}
.y130{bottom:632.955000px;}
.y1c2{bottom:635.295000px;}
.y18{bottom:640.545000px;}
.y11b{bottom:641.235000px;}
.y50{bottom:641.415000px;}
.y100{bottom:641.955000px;}
.yf9{bottom:642.855000px;}
.y110{bottom:643.215000px;}
.y3a{bottom:643.395000px;}
.yad{bottom:645.492000px;}
.y185{bottom:647.355000px;}
.ye4{bottom:650.775000px;}
.y6d{bottom:656.355000px;}
.y17{bottom:658.905000px;}
.yac{bottom:662.411250px;}
.y12f{bottom:663.915000px;}
.y1c1{bottom:665.715000px;}
.y186{bottom:668.775000px;}
.y4f{bottom:672.375000px;}
.y11a{bottom:673.095000px;}
.yf8{bottom:673.995000px;}
.y39{bottom:674.355000px;}
.y16{bottom:677.445000px;}
.yab{bottom:679.420650px;}
.ye3{bottom:682.125000px;}
.y140{bottom:684.825000px;}
.y6c{bottom:687.345000px;}
.y183{bottom:690.045000px;}
.y12e{bottom:695.085000px;}
.y15{bottom:695.805000px;}
.y1c0{bottom:696.345000px;}
.yaa{bottom:696.430050px;}
.y4e{bottom:704.265000px;}
.y85{bottom:705.165000px;}
.yf7{bottom:705.345000px;}
.y38{bottom:705.525000px;}
.y184{bottom:711.285000px;}
.ya9{bottom:713.439600px;}
.y14{bottom:714.345000px;}
.y6b{bottom:718.485000px;}
.y8b{bottom:719.820079px;}
.y1e0{bottom:720.719712px;}
.y8c{bottom:720.900079px;}
.ye2{bottom:721.365000px;}
.y12d{bottom:726.045000px;}
.y1be{bottom:726.945000px;}
.y15a{bottom:729.285000px;}
.ya8{bottom:730.449000px;}
.y181{bottom:732.705000px;}
.y13{bottom:732.885000px;}
.y119{bottom:736.125000px;}
.y37{bottom:736.485000px;}
.y1e5{bottom:741.030000px;}
.ye1{bottom:744.225000px;}
.ya7{bottom:747.369750px;}
.y6a{bottom:749.445000px;}
.y1df{bottom:749.879700px;}
.y12{bottom:751.245000px;}
.y182{bottom:753.945000px;}
.y12c{bottom:757.185000px;}
.y1b7{bottom:758.805000px;}
.ya6{bottom:764.379300px;}
.y116{bottom:767.085000px;}
.yf6{bottom:767.445000px;}
.y36{bottom:767.625000px;}
.y159{bottom:769.065000px;}
.y11{bottom:769.785000px;}
.y178{bottom:775.185000px;}
.y1de{bottom:779.039688px;}
.y69{bottom:780.585000px;}
.ya5{bottom:781.388700px;}
.y14c{bottom:782.565000px;}
.ye0{bottom:783.465000px;}
.y158{bottom:783.645000px;}
.y1ea{bottom:787.935000px;}
.y10{bottom:788.145000px;}
.y1bb{bottom:789.405000px;}
.y17e{bottom:796.605000px;}
.y118{bottom:798.225000px;}
.ya4{bottom:798.398100px;}
.y35{bottom:798.585000px;}
.y8e{bottom:798.840092px;}
.y8d{bottom:799.200048px;}
.y14b{bottom:805.065000px;}
.ydf{bottom:806.325000px;}
.yf{bottom:806.730000px;}
.y1dd{bottom:808.379677px;}
.y68{bottom:811.545000px;}
.y157{bottom:813.705000px;}
.ya3{bottom:815.407650px;}
.y17c{bottom:817.845000px;}
.y12b{bottom:819.285000px;}
.y1b9{bottom:820.005000px;}
.ye{bottom:825.090000px;}
.y14a{bottom:826.485000px;}
.yf5{bottom:829.545000px;}
.y34{bottom:829.725000px;}
.ya2{bottom:832.326900px;}
.y1dc{bottom:837.359665px;}
.y17d{bottom:839.085000px;}
.y67{bottom:842.685000px;}
.y156{bottom:843.585000px;}
.yd{bottom:843.630000px;}
.y1e9{bottom:845.535000px;}
.yde{bottom:845.565000px;}
.ya1{bottom:849.336300px;}
.y12a{bottom:850.245000px;}
.y1b6{bottom:852.045000px;}
.y149{bottom:856.545000px;}
.y17a{bottom:860.505000px;}
.y33{bottom:860.685000px;}
.yc{bottom:862.170000px;}
.ya0{bottom:866.345700px;}
.y1db{bottom:866.699653px;}
.ydd{bottom:868.425000px;}
.y66{bottom:873.645000px;}
.yb{bottom:880.530000px;}
.y129{bottom:881.385000px;}
.y17b{bottom:881.745000px;}
.y90{bottom:882.000000px;}
.y9f{bottom:883.355250px;}
.y1b5{bottom:883.905000px;}
.y148{bottom:886.605000px;}
.yf4{bottom:891.645000px;}
.y32{bottom:891.825000px;}
.y1da{bottom:895.859642px;}
.ya{bottom:899.070000px;}
.y8f{bottom:900.000000px;}
.y9e{bottom:900.364650px;}
.y175{bottom:902.985000px;}
.y1e8{bottom:903.135000px;}
.y154{bottom:903.705000px;}
.y65{bottom:904.785000px;}
.ydc{bottom:907.665000px;}
.y128{bottom:911.985000px;}
.y1b4{bottom:915.990000px;}
.y147{bottom:916.530000px;}
.y9d{bottom:917.285400px;}
.y9{bottom:917.430000px;}
.y113{bottom:922.470000px;}
.y31{bottom:922.830000px;}
.y177{bottom:924.450000px;}
.y1d9{bottom:925.019630px;}
.y127{bottom:932.910000px;}
.y152{bottom:933.630000px;}
.y9c{bottom:934.294950px;}
.y64{bottom:935.790000px;}
.y8{bottom:935.970000px;}
.ydb{bottom:938.850000px;}
.y172{bottom:945.690000px;}
.y146{bottom:946.590000px;}
.y1a9{bottom:948.030000px;}
.y9b{bottom:951.304350px;}
.y126{bottom:953.610000px;}
.yf3{bottom:953.790000px;}
.y30{bottom:953.970000px;}
.y1d8{bottom:954.179618px;}
.y7{bottom:954.510000px;}
.y1e7{bottom:960.765000px;}
.y63{bottom:961.530000px;}
.y14d{bottom:963.690000px;}
.y173{bottom:966.930000px;}
.y9a{bottom:968.313750px;}
.yda{bottom:969.810000px;}
.y6{bottom:972.870000px;}
.y145{bottom:976.650000px;}
.y1a5{bottom:980.070000px;}
.y1d7{bottom:983.519607px;}
.y2f{bottom:984.930000px;}
.y99{bottom:985.323300px;}
.y62{bottom:985.650000px;}
.y16e{bottom:988.350000px;}
.y5{bottom:991.410000px;}
.yd9{bottom:993.390000px;}
.y98{bottom:1002.244050px;}
.y14f{bottom:1005.090000px;}
.y143{bottom:1006.530000px;}
.y170{bottom:1009.590000px;}
.y4{bottom:1009.770000px;}
.y1a7{bottom:1010.670000px;}
.y1d6{bottom:1013.399595px;}
.y125{bottom:1015.530000px;}
.yf2{bottom:1015.890000px;}
.y2e{bottom:1016.070000px;}
.y1e6{bottom:1018.365000px;}
.y97{bottom:1019.253450px;}
.yd8{bottom:1025.970000px;}
.y3{bottom:1028.310000px;}
.y160{bottom:1030.830000px;}
.y96{bottom:1036.262850px;}
.y1d5{bottom:1043.639583px;}
.y2{bottom:1046.670000px;}
.y2d{bottom:1047.030000px;}
.y1a4{bottom:1047.210000px;}
.y162{bottom:1052.250000px;}
.y95{bottom:1053.272400px;}
.yd7{bottom:1056.930000px;}
.y1eb{bottom:1062.030000px;}
.y1{bottom:1065.240000px;}
.y94{bottom:1070.281800px;}
.y1d4{bottom:1072.439571px;}
.y15b{bottom:1073.490000px;}
.y124{bottom:1077.630000px;}
.yf1{bottom:1077.990000px;}
.y2c{bottom:1078.170000px;}
.y93{bottom:1087.201050px;}
.yd6{bottom:1092.930000px;}
.y1ec{bottom:1094.760000px;}
.y15d{bottom:1099.770000px;}
.y92{bottom:1104.210600px;}
.y13f{bottom:1108.770000px;}
.y2b{bottom:1109.130000px;}
.y91{bottom:1121.220000px;}
.yd5{bottom:1134.330000px;}
.yf0{bottom:1139.730000px;}
.y2a{bottom:1139.910000px;}
.y10f{bottom:1140.090000px;}
.y4d{bottom:1140.270000px;}
.y1ed{bottom:1152.000000px;}
.y1e1{bottom:1170.000000px;}
.yef{bottom:1226.880000px;}
.y4c{bottom:1244.880000px;}
.h23{height:18.900000px;}
.h2b{height:18.936000px;}
.h26{height:19.080000px;}
.h2d{height:19.116000px;}
.h25{height:20.520000px;}
.h28{height:20.556000px;}
.h13{height:20.700000px;}
.h1d{height:20.736000px;}
.h18{height:22.500000px;}
.h20{height:23.400000px;}
.h21{height:25.560000px;}
.h2f{height:29.700000px;}
.h38{height:29.736000px;}
.h30{height:29.880000px;}
.h33{height:29.916000px;}
.h1c{height:32.040000px;}
.h22{height:40.320000px;}
.h27{height:40.356000px;}
.h9{height:44.518359px;}
.h3a{height:46.225422px;}
.h39{height:46.766861px;}
.h16{height:47.344922px;}
.h1f{height:48.616875px;}
.h1e{height:49.680000px;}
.hb{height:49.992188px;}
.h1{height:53.645625px;}
.h31{height:58.651172px;}
.h12{height:58.975137px;}
.h19{height:60.226875px;}
.h2e{height:60.300000px;}
.h1a{height:62.100000px;}
.h7{height:62.578125px;}
.he{height:66.170134px;}
.h8{height:67.837500px;}
.h6{height:70.628906px;}
.h5{height:70.664062px;}
.h4{height:72.562500px;}
.h10{height:73.871970px;}
.hc{height:80.441367px;}
.ha{height:80.464922px;}
.h17{height:80.584922px;}
.h1b{height:81.736875px;}
.h3e{height:82.676953px;}
.hf{height:83.085807px;}
.h15{height:87.519375px;}
.h34{height:90.900000px;}
.h14{height:96.508125px;}
.h3c{height:96.653250px;}
.h11{height:99.503960px;}
.h3d{height:108.843750px;}
.h29{height:125.640000px;}
.h36{height:182.370000px;}
.h37{height:254.010000px;}
.h2c{height:338.655000px;}
.h32{height:403.635000px;}
.h35{height:438.735000px;}
.h24{height:551.595000px;}
.h2a{height:594.285000px;}
.hd{height:918.000000px;}
.h3b{height:1170.000000px;}
.h0{height:1188.000000px;}
.h2{height:1262.880000px;}
.h3{height:1263.000000px;}
.w4{width:9.180000px;}
.w5{width:18.180000px;}
.w16{width:29.520000px;}
.w1e{width:32.220000px;}
.w18{width:41.760000px;}
.w17{width:41.796000px;}
.w19{width:41.940000px;}
.w1a{width:47.700000px;}
.w14{width:51.300000px;}
.w1b{width:53.820000px;}
.w20{width:63.036000px;}
.w1f{width:63.180000px;}
.w6{width:64.836000px;}
.wc{width:90.540000px;}
.w9{width:98.316000px;}
.wd{width:98.460000px;}
.w8{width:98.856000px;}
.wb{width:99.216000px;}
.wa{width:99.360000px;}
.w13{width:102.420000px;}
.w7{width:102.600000px;}
.w10{width:104.796000px;}
.w21{width:104.940000px;}
.w11{width:126.756000px;}
.wf{width:126.900000px;}
.w12{width:126.936000px;}
.w22{width:144.216000px;}
.w1d{width:190.830000px;}
.w1c{width:249.870000px;}
.we{width:254.415000px;}
.w15{width:509.505000px;}
.w23{width:810.000000px;}
.w1{width:892.980000px;}
.w2{width:893.250000px;}
.w0{width:918.000000px;}
.w3{width:1188.000000px;}
.x0{left:0.000000px;}
.x4e{left:4.320000px;}
.x46{left:5.400000px;}
.x47{left:6.480000px;}
.x3{left:7.500000px;}
.x2f{left:8.640000px;}
.x17{left:10.800000px;}
.x44{left:12.060000px;}
.x48{left:13.314000px;}
.x38{left:14.400000px;}
.x31{left:16.740000px;}
.x2a{left:18.000000px;}
.x2e{left:20.880000px;}
.x1d{left:23.040000px;}
.x4f{left:24.120000px;}
.x28{left:25.200000px;}
.xf{left:27.000000px;}
.x19{left:30.780000px;}
.x21{left:32.760000px;}
.x1b{left:33.840000px;}
.x22{left:35.820000px;}
.x27{left:37.800000px;}
.x25{left:39.240000px;}
.x26{left:40.320000px;}
.x5d{left:41.760000px;}
.x24{left:43.020000px;}
.x23{left:45.360000px;}
.x33{left:46.845000px;}
.x56{left:48.060000px;}
.x57{left:50.040000px;}
.x18{left:51.300000px;}
.x55{left:62.460000px;}
.x2c{left:73.305000px;}
.x5b{left:89.568000px;}
.x4a{left:93.414000px;}
.x8{left:97.740828px;}
.x34{left:99.036000px;}
.x2{left:106.236000px;}
.x1{left:112.536000px;}
.x49{left:113.616000px;}
.x7{left:129.059948px;}
.x13{left:133.416000px;}
.x58{left:138.779944px;}
.x45{left:147.636000px;}
.x14{left:150.870000px;}
.x29{left:153.030000px;}
.x4{left:159.330000px;}
.xe{left:173.339931px;}
.x5e{left:200.265000px;}
.x12{left:202.710000px;}
.x5c{left:211.470000px;}
.x54{left:219.270000px;}
.x36{left:236.055000px;}
.x2b{left:252.390000px;}
.x35{left:254.190000px;}
.x39{left:296.715000px;}
.x1a{left:301.575000px;}
.x3a{left:339.195000px;}
.x9{left:351.720721px;}
.x4b{left:364.215000px;}
.x32{left:379.875000px;}
.x3b{left:381.675000px;}
.x1c{left:404.895000px;}
.x3c{left:424.335000px;}
.x50{left:428.115000px;}
.x6{left:429.915000px;}
.x5{left:431.175000px;}
.x11{left:446.475000px;}
.x3d{left:466.815000px;}
.x51{left:491.865000px;}
.x1e{left:503.925000px;}
.x2d{left:507.525000px;}
.x3e{left:509.325000px;}
.x3f{left:551.805000px;}
.x4c{left:555.765000px;}
.x40{left:594.465000px;}
.x1f{left:604.005000px;}
.x16{left:609.225000px;}
.x52{left:619.665000px;}
.x30{left:635.145000px;}
.x41{left:636.945000px;}
.x5a{left:668.190000px;}
.x59{left:678.450000px;}
.x42{left:679.470000px;}
.x53{left:683.430000px;}
.xb{left:694.080843px;}
.xa{left:697.320568px;}
.x20{left:703.950000px;}
.x43{left:721.950000px;}
.x4d{left:747.330000px;}
.x37{left:764.610000px;}
.x15{left:777.210000px;}
.x10{left:786.210000px;}
.xd{left:856.439657px;}
.xc{left:857.519657px;}
@media print{
.v4{vertical-align:-29.440000pt;}
.v1{vertical-align:-8.320000pt;}
.v6{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:5.120000pt;}
.v5{vertical-align:8.320000pt;}
.v2{vertical-align:29.440000pt;}
.v3{vertical-align:32.000000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.069472pt;}
.ls27{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.020480pt;}
.ls2b{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.064000pt;}
.ls28{letter-spacing:0.096000pt;}
.ls29{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128000pt;}
.ls2c{letter-spacing:0.135467pt;}
.ls2a{letter-spacing:0.135680pt;}
.ls1{letter-spacing:0.158933pt;}
.ls14{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.358272pt;}
.ls5{letter-spacing:0.384000pt;}
.ls2d{letter-spacing:0.400533pt;}
.lse{letter-spacing:0.448000pt;}
.ls1c{letter-spacing:0.480000pt;}
.lsa{letter-spacing:0.512000pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.704000pt;}
.ls22{letter-spacing:0.768000pt;}
.ls23{letter-spacing:0.960000pt;}
.ls1a{letter-spacing:1.280000pt;}
.ls19{letter-spacing:1.344000pt;}
.ls26{letter-spacing:1.920000pt;}
.ls17{letter-spacing:2.560000pt;}
.ls20{letter-spacing:3.200000pt;}
.ls21{letter-spacing:3.840000pt;}
.ls1f{letter-spacing:4.480000pt;}
.ls4{letter-spacing:5.120000pt;}
.lsb{letter-spacing:5.760000pt;}
.lsc{letter-spacing:6.400000pt;}
.ls25{letter-spacing:7.040000pt;}
.ls18{letter-spacing:7.680000pt;}
.ls1d{letter-spacing:8.320000pt;}
.ls12{letter-spacing:60.800000pt;}
.ls2{letter-spacing:172.778667pt;}
.wsa{word-spacing:-85.120000pt;}
.ws10{word-spacing:-64.704000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws22{word-spacing:-46.744301pt;}
.ws9{word-spacing:-31.999987pt;}
.ws23{word-spacing:-21.280000pt;}
.ws15{word-spacing:-16.768000pt;}
.wsd{word-spacing:-16.704000pt;}
.wsf{word-spacing:-16.640000pt;}
.ws1e{word-spacing:-16.512000pt;}
.ws14{word-spacing:-16.448000pt;}
.ws12{word-spacing:-16.384000pt;}
.ws8{word-spacing:-16.256000pt;}
.ws17{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws11{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws18{word-spacing:-15.936000pt;}
.wse{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws21{word-spacing:-15.039994pt;}
.ws1f{word-spacing:-13.600000pt;}
.ws20{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.549333pt;}
.ws16{word-spacing:-11.680000pt;}
.wsc{word-spacing:-11.520000pt;}
.wsb{word-spacing:-11.360000pt;}
.ws1c{word-spacing:-11.120533pt;}
.ws19{word-spacing:-11.040000pt;}
.ws1a{word-spacing:-10.855467pt;}
.ws1b{word-spacing:-10.760320pt;}
.ws6{word-spacing:-10.720000pt;}
.ws13{word-spacing:-10.400000pt;}
.ws1d{word-spacing:-6.720000pt;}
.ws1{word-spacing:0.000000pt;}
._23{margin-left:-79.490545pt;}
._14{margin-left:-8.432213pt;}
._2d{margin-left:-5.877760pt;}
._2e{margin-left:-4.681600pt;}
._2f{margin-left:-3.134080pt;}
._11{margin-left:-2.112000pt;}
._0{margin-left:-0.901120pt;}
._7{width:1.088000pt;}
._8{width:2.005333pt;}
._d{width:3.525120pt;}
._4{width:4.416000pt;}
._6{width:5.376000pt;}
._5{width:6.400000pt;}
._b{width:7.360000pt;}
._e{width:9.088000pt;}
._12{width:10.624000pt;}
._19{width:12.288000pt;}
._9{width:13.312000pt;}
._16{width:14.218667pt;}
._29{width:16.322560pt;}
._a{width:17.344000pt;}
._10{width:18.309120pt;}
._c{width:19.648000pt;}
._13{width:20.608000pt;}
._22{width:21.568000pt;}
._1f{width:22.464000pt;}
._20{width:23.680000pt;}
._21{width:24.704000pt;}
._15{width:26.112000pt;}
._3{width:28.741120pt;}
._2{width:29.760000pt;}
._17{width:30.656000pt;}
._18{width:31.552000pt;}
._27{width:32.448000pt;}
._26{width:33.914027pt;}
._1a{width:34.816000pt;}
._1b{width:35.712000pt;}
._28{width:37.785600pt;}
._2a{width:40.896000pt;}
._1{width:54.179413pt;}
._24{width:60.224000pt;}
._25{width:61.647787pt;}
._2c{width:95.978667pt;}
._1c{width:123.562667pt;}
._2b{width:127.978667pt;}
._f{width:172.778667pt;}
._1e{width:1155.466667pt;}
._1d{width:1168.906667pt;}
.fse{font-size:26.880000pt;}
.fs4{font-size:40.320000pt;}
.fs5{font-size:42.880000pt;}
.fsc{font-size:45.440000pt;}
.fsd{font-size:53.120000pt;}
.fs2{font-size:53.333333pt;}
.fs9{font-size:53.440000pt;}
.fs0{font-size:56.320000pt;}
.fsf{font-size:60.159976pt;}
.fs3{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fsb{font-size:69.120000pt;}
.fs12{font-size:74.880000pt;}
.fs6{font-size:85.119966pt;}
.fsa{font-size:85.120000pt;}
.fs10{font-size:85.248000pt;}
.fs11{font-size:96.000000pt;}
.fs7{font-size:106.879957pt;}
.fs8{font-size:127.999949pt;}
.y0{bottom:0.000000pt;}
.y144{bottom:3.680000pt;}
.yd4{bottom:4.000000pt;}
.y163{bottom:4.960000pt;}
.y174{bottom:5.120000pt;}
.y171{bottom:5.600000pt;}
.y16d{bottom:5.760000pt;}
.y15e{bottom:6.880000pt;}
.y142{bottom:7.360000pt;}
.y1a8{bottom:7.680000pt;}
.y1cd{bottom:7.720000pt;}
.y15f{bottom:7.840000pt;}
.y18c{bottom:8.160000pt;}
.y151{bottom:8.800000pt;}
.y1aa{bottom:8.960000pt;}
.y153{bottom:11.360000pt;}
.y155{bottom:11.400000pt;}
.y16f{bottom:14.240000pt;}
.y195{bottom:14.280000pt;}
.y161{bottom:14.400000pt;}
.y176{bottom:14.440000pt;}
.y15c{bottom:18.400000pt;}
.y1a0{bottom:20.320000pt;}
.y18b{bottom:20.480000pt;}
.y1a6{bottom:21.280000pt;}
.y14e{bottom:22.080000pt;}
.yd1{bottom:30.029333pt;}
.y1b8{bottom:34.880000pt;}
.y1ba{bottom:36.160000pt;}
.y150{bottom:40.480000pt;}
.yd0{bottom:45.068667pt;}
.yd3{bottom:47.040000pt;}
.yd2{bottom:51.200000pt;}
.y179{bottom:52.160000pt;}
.ycf{bottom:60.188133pt;}
.yce{bottom:75.307733pt;}
.y88{bottom:75.521194pt;}
.y1bf{bottom:76.640000pt;}
.y1c9{bottom:79.840000pt;}
.ycd{bottom:90.427200pt;}
.y1c8{bottom:98.240000pt;}
.y61{bottom:100.800000pt;}
.y117{bottom:102.240000pt;}
.y112{bottom:102.560000pt;}
.y4b{bottom:102.720000pt;}
.ycc{bottom:105.546667pt;}
.y1c5{bottom:108.640000pt;}
.y1b3{bottom:109.466667pt;}
.y7e{bottom:114.080000pt;}
.y1c7{bottom:116.680000pt;}
.y84{bottom:117.440000pt;}
.y1e4{bottom:119.040000pt;}
.ycb{bottom:120.586000pt;}
.y1b2{bottom:127.866667pt;}
.y123{bottom:128.320000pt;}
.y60{bottom:128.480000pt;}
.y193{bottom:128.506667pt;}
.y4a{bottom:130.240000pt;}
.y1c6{bottom:135.080000pt;}
.yca{bottom:135.705600pt;}
.y192{bottom:140.666667pt;}
.y83{bottom:141.120000pt;}
.y7d{bottom:141.760000pt;}
.y1a3{bottom:142.400000pt;}
.y1b1{bottom:146.266667pt;}
.y10e{bottom:146.880000pt;}
.yc9{bottom:150.825067pt;}
.y191{bottom:152.986667pt;}
.y5f{bottom:156.000000pt;}
.y111{bottom:157.760000pt;}
.y49{bottom:157.920000pt;}
.y17f{bottom:158.880000pt;}
.y1b0{bottom:164.666667pt;}
.y190{bottom:165.306667pt;}
.yc8{bottom:165.944667pt;}
.y7c{bottom:169.280000pt;}
.y10d{bottom:174.560000pt;}
.y13e{bottom:176.160000pt;}
.y1a2{bottom:177.760000pt;}
.yc7{bottom:181.064133pt;}
.y1af{bottom:183.066667pt;}
.y122{bottom:183.520000pt;}
.y5e{bottom:183.680000pt;}
.y48{bottom:185.440000pt;}
.y1bd{bottom:189.480000pt;}
.yc6{bottom:196.103467pt;}
.y19f{bottom:196.826667pt;}
.y7b{bottom:196.986667pt;}
.y16c{bottom:198.586667pt;}
.y1ae{bottom:201.466667pt;}
.y10c{bottom:202.106667pt;}
.y13d{bottom:203.866667pt;}
.y16b{bottom:210.906667pt;}
.yc5{bottom:211.222933pt;}
.y5d{bottom:211.226667pt;}
.yff{bottom:212.986667pt;}
.y47{bottom:213.146667pt;}
.y1a1{bottom:215.706667pt;}
.y1e3{bottom:219.333333pt;}
.y1ad{bottom:219.866667pt;}
.y16a{bottom:223.226667pt;}
.y7a{bottom:224.506667pt;}
.yc4{bottom:226.342533pt;}
.y1d3{bottom:229.306667pt;}
.y10b{bottom:229.786667pt;}
.y13c{bottom:231.386667pt;}
.y19d{bottom:234.586667pt;}
.y169{bottom:235.386667pt;}
.y1ac{bottom:238.266667pt;}
.y121{bottom:238.746667pt;}
.y5c{bottom:238.906667pt;}
.yfe{bottom:240.346667pt;}
.y46{bottom:240.666667pt;}
.yc3{bottom:241.462000pt;}
.y1e2{bottom:244.960000pt;}
.y168{bottom:247.706667pt;}
.y1d2{bottom:247.866667pt;}
.y79{bottom:252.186667pt;}
.y19e{bottom:253.626667pt;}
.yc2{bottom:256.581467pt;}
.y10a{bottom:257.306667pt;}
.y13b{bottom:259.066667pt;}
.y167{bottom:260.026667pt;}
.y180{bottom:260.546667pt;}
.y5b{bottom:266.426667pt;}
.y45{bottom:268.186667pt;}
.yc1{bottom:271.620800pt;}
.y166{bottom:272.186667pt;}
.y19b{bottom:272.506667pt;}
.y1d1{bottom:273.626667pt;}
.yee{bottom:274.746667pt;}
.y78{bottom:279.706667pt;}
.y1bc{bottom:282.586667pt;}
.y165{bottom:284.506667pt;}
.y109{bottom:284.986667pt;}
.y13a{bottom:286.586667pt;}
.yc0{bottom:286.740400pt;}
.y29{bottom:290.306667pt;}
.y19c{bottom:291.386667pt;}
.y120{bottom:293.946667pt;}
.y5a{bottom:294.106667pt;}
.y44{bottom:295.866667pt;}
.ybf{bottom:301.859867pt;}
.yed{bottom:302.746667pt;}
.y28{bottom:306.626667pt;}
.y77{bottom:307.386667pt;}
.y199{bottom:310.426667pt;}
.y1d0{bottom:311.066667pt;}
.y108{bottom:312.506667pt;}
.y139{bottom:314.266667pt;}
.ybe{bottom:316.979333pt;}
.y59{bottom:321.626667pt;}
.y27{bottom:323.106667pt;}
.y43{bottom:323.386667pt;}
.y19a{bottom:329.306667pt;}
.yec{bottom:330.266667pt;}
.ybd{bottom:332.098933pt;}
.y76{bottom:334.906667pt;}
.y26{bottom:339.426667pt;}
.y1cf{bottom:339.546667pt;}
.y107{bottom:340.826667pt;}
.y138{bottom:341.786667pt;}
.ybc{bottom:347.218400pt;}
.y197{bottom:348.186667pt;}
.y11f{bottom:349.146667pt;}
.y58{bottom:349.306667pt;}
.y42{bottom:351.066667pt;}
.y25{bottom:355.906667pt;}
.yeb{bottom:357.946667pt;}
.ybb{bottom:362.257733pt;}
.y75{bottom:362.586667pt;}
.y198{bottom:367.226667pt;}
.y1ce{bottom:368.026667pt;}
.y137{bottom:369.466667pt;}
.y106{bottom:370.266667pt;}
.y24{bottom:372.386667pt;}
.y57{bottom:376.826667pt;}
.yba{bottom:377.377333pt;}
.y41{bottom:378.586667pt;}
.yea{bottom:385.466667pt;}
.y82{bottom:385.626667pt;}
.y194{bottom:386.106667pt;}
.y23{bottom:388.706667pt;}
.y74{bottom:390.106667pt;}
.yb9{bottom:392.496800pt;}
.y1cc{bottom:396.506667pt;}
.y136{bottom:396.986667pt;}
.y105{bottom:398.946667pt;}
.y87{bottom:401.920087pt;}
.y8a{bottom:401.921577pt;}
.y11e{bottom:404.386667pt;}
.y56{bottom:404.546667pt;}
.y196{bottom:405.026667pt;}
.y22{bottom:405.186667pt;}
.yfd{bottom:406.146667pt;}
.y40{bottom:406.306667pt;}
.yb8{bottom:407.616267pt;}
.y81{bottom:413.186667pt;}
.y73{bottom:417.826667pt;}
.y21{bottom:421.506667pt;}
.yb7{bottom:422.735867pt;}
.y18e{bottom:424.066667pt;}
.y135{bottom:424.546667pt;}
.y1cb{bottom:425.026667pt;}
.y104{bottom:427.266667pt;}
.y86{bottom:427.680155pt;}
.y89{bottom:427.681645pt;}
.y55{bottom:432.066667pt;}
.y114{bottom:433.506667pt;}
.y3f{bottom:433.826667pt;}
.yb6{bottom:437.775200pt;}
.y20{bottom:437.986667pt;}
.ye9{bottom:440.706667pt;}
.y80{bottom:440.866667pt;}
.y18f{bottom:442.946667pt;}
.y72{bottom:445.346667pt;}
.y134{bottom:452.226667pt;}
.yb5{bottom:452.894667pt;}
.y1ca{bottom:453.506667pt;}
.y1f{bottom:454.466667pt;}
.y103{bottom:456.066667pt;}
.y11d{bottom:459.586667pt;}
.y54{bottom:459.746667pt;}
.yfc{bottom:461.346667pt;}
.y3e{bottom:461.506667pt;}
.y164{bottom:461.826667pt;}
.y7f{bottom:464.706667pt;}
.yb4{bottom:468.014267pt;}
.ye8{bottom:468.386667pt;}
.y1e{bottom:470.786667pt;}
.y71{bottom:473.026667pt;}
.y133{bottom:479.746667pt;}
.y18d{bottom:480.866667pt;}
.y1c4{bottom:481.986667pt;}
.yb3{bottom:483.133733pt;}
.y102{bottom:484.226667pt;}
.y53{bottom:487.266667pt;}
.y1d{bottom:487.293333pt;}
.yfb{bottom:488.706667pt;}
.y3d{bottom:489.026667pt;}
.ye7{bottom:495.906667pt;}
.yb2{bottom:498.253200pt;}
.y189{bottom:499.746667pt;}
.y70{bottom:500.546667pt;}
.y1c{bottom:503.613333pt;}
.y132{bottom:507.426667pt;}
.y1ab{bottom:510.466667pt;}
.yb1{bottom:513.292533pt;}
.y101{bottom:513.666667pt;}
.y11c{bottom:514.786667pt;}
.y52{bottom:514.946667pt;}
.yfa{bottom:516.546667pt;}
.y3c{bottom:516.706667pt;}
.y141{bottom:517.186667pt;}
.y18a{bottom:518.626667pt;}
.y1b{bottom:520.093333pt;}
.ye6{bottom:523.266667pt;}
.y6f{bottom:528.226667pt;}
.yb0{bottom:528.412133pt;}
.y131{bottom:534.946667pt;}
.y1a{bottom:536.413333pt;}
.y1c3{bottom:537.506667pt;}
.y187{bottom:537.666667pt;}
.y51{bottom:542.466667pt;}
.yaf{bottom:543.531600pt;}
.y115{bottom:543.906667pt;}
.y3b{bottom:544.226667pt;}
.ye5{bottom:550.786667pt;}
.y19{bottom:552.893333pt;}
.y6e{bottom:555.746667pt;}
.y188{bottom:556.546667pt;}
.yae{bottom:558.651067pt;}
.y130{bottom:562.626667pt;}
.y1c2{bottom:564.706667pt;}
.y18{bottom:569.373333pt;}
.y11b{bottom:569.986667pt;}
.y50{bottom:570.146667pt;}
.y100{bottom:570.626667pt;}
.yf9{bottom:571.426667pt;}
.y110{bottom:571.746667pt;}
.y3a{bottom:571.906667pt;}
.yad{bottom:573.770667pt;}
.y185{bottom:575.426667pt;}
.ye4{bottom:578.466667pt;}
.y6d{bottom:583.426667pt;}
.y17{bottom:585.693333pt;}
.yac{bottom:588.810000pt;}
.y12f{bottom:590.146667pt;}
.y1c1{bottom:591.746667pt;}
.y186{bottom:594.466667pt;}
.y4f{bottom:597.666667pt;}
.y11a{bottom:598.306667pt;}
.yf8{bottom:599.106667pt;}
.y39{bottom:599.426667pt;}
.y16{bottom:602.173333pt;}
.yab{bottom:603.929467pt;}
.ye3{bottom:606.333333pt;}
.y140{bottom:608.733333pt;}
.y6c{bottom:610.973333pt;}
.y183{bottom:613.373333pt;}
.y12e{bottom:617.853333pt;}
.y15{bottom:618.493333pt;}
.y1c0{bottom:618.973333pt;}
.yaa{bottom:619.048933pt;}
.y4e{bottom:626.013333pt;}
.y85{bottom:626.813333pt;}
.yf7{bottom:626.973333pt;}
.y38{bottom:627.133333pt;}
.y184{bottom:632.253333pt;}
.ya9{bottom:634.168533pt;}
.y14{bottom:634.973333pt;}
.y6b{bottom:638.653333pt;}
.y8b{bottom:639.840070pt;}
.y1e0{bottom:640.639744pt;}
.y8c{bottom:640.800070pt;}
.ye2{bottom:641.213333pt;}
.y12d{bottom:645.373333pt;}
.y1be{bottom:646.173333pt;}
.y15a{bottom:648.253333pt;}
.ya8{bottom:649.288000pt;}
.y181{bottom:651.293333pt;}
.y13{bottom:651.453333pt;}
.y119{bottom:654.333333pt;}
.y37{bottom:654.653333pt;}
.y1e5{bottom:658.693333pt;}
.ye1{bottom:661.533333pt;}
.ya7{bottom:664.328667pt;}
.y6a{bottom:666.173333pt;}
.y1df{bottom:666.559733pt;}
.y12{bottom:667.773333pt;}
.y182{bottom:670.173333pt;}
.y12c{bottom:673.053333pt;}
.y1b7{bottom:674.493333pt;}
.ya6{bottom:679.448267pt;}
.y116{bottom:681.853333pt;}
.yf6{bottom:682.173333pt;}
.y36{bottom:682.333333pt;}
.y159{bottom:683.613333pt;}
.y11{bottom:684.253333pt;}
.y178{bottom:689.053333pt;}
.y1de{bottom:692.479723pt;}
.y69{bottom:693.853333pt;}
.ya5{bottom:694.567733pt;}
.y14c{bottom:695.613333pt;}
.ye0{bottom:696.413333pt;}
.y158{bottom:696.573333pt;}
.y1ea{bottom:700.386667pt;}
.y10{bottom:700.573333pt;}
.y1bb{bottom:701.693333pt;}
.y17e{bottom:708.093333pt;}
.y118{bottom:709.533333pt;}
.ya4{bottom:709.687200pt;}
.y35{bottom:709.853333pt;}
.y8e{bottom:710.080081pt;}
.y8d{bottom:710.400042pt;}
.y14b{bottom:715.613333pt;}
.ydf{bottom:716.733333pt;}
.yf{bottom:717.093333pt;}
.y1dd{bottom:718.559713pt;}
.y68{bottom:721.373333pt;}
.y157{bottom:723.293333pt;}
.ya3{bottom:724.806800pt;}
.y17c{bottom:726.973333pt;}
.y12b{bottom:728.253333pt;}
.y1b9{bottom:728.893333pt;}
.ye{bottom:733.413333pt;}
.y14a{bottom:734.653333pt;}
.yf5{bottom:737.373333pt;}
.y34{bottom:737.533333pt;}
.ya2{bottom:739.846133pt;}
.y1dc{bottom:744.319702pt;}
.y17d{bottom:745.853333pt;}
.y67{bottom:749.053333pt;}
.y156{bottom:749.853333pt;}
.yd{bottom:749.893333pt;}
.y1e9{bottom:751.586667pt;}
.yde{bottom:751.613333pt;}
.ya1{bottom:754.965600pt;}
.y12a{bottom:755.773333pt;}
.y1b6{bottom:757.373333pt;}
.y149{bottom:761.373333pt;}
.y17a{bottom:764.893333pt;}
.y33{bottom:765.053333pt;}
.yc{bottom:766.373333pt;}
.ya0{bottom:770.085067pt;}
.y1db{bottom:770.399692pt;}
.ydd{bottom:771.933333pt;}
.y66{bottom:776.573333pt;}
.yb{bottom:782.693333pt;}
.y129{bottom:783.453333pt;}
.y17b{bottom:783.773333pt;}
.y90{bottom:784.000000pt;}
.y9f{bottom:785.204667pt;}
.y1b5{bottom:785.693333pt;}
.y148{bottom:788.093333pt;}
.yf4{bottom:792.573333pt;}
.y32{bottom:792.733333pt;}
.y1da{bottom:796.319681pt;}
.ya{bottom:799.173333pt;}
.y8f{bottom:800.000000pt;}
.y9e{bottom:800.324133pt;}
.y175{bottom:802.653333pt;}
.y1e8{bottom:802.786667pt;}
.y154{bottom:803.293333pt;}
.y65{bottom:804.253333pt;}
.ydc{bottom:806.813333pt;}
.y128{bottom:810.653333pt;}
.y1b4{bottom:814.213333pt;}
.y147{bottom:814.693333pt;}
.y9d{bottom:815.364800pt;}
.y9{bottom:815.493333pt;}
.y113{bottom:819.973333pt;}
.y31{bottom:820.293333pt;}
.y177{bottom:821.733333pt;}
.y1d9{bottom:822.239671pt;}
.y127{bottom:829.253333pt;}
.y152{bottom:829.893333pt;}
.y9c{bottom:830.484400pt;}
.y64{bottom:831.813333pt;}
.y8{bottom:831.973333pt;}
.ydb{bottom:834.533333pt;}
.y172{bottom:840.613333pt;}
.y146{bottom:841.413333pt;}
.y1a9{bottom:842.693333pt;}
.y9b{bottom:845.603867pt;}
.y126{bottom:847.653333pt;}
.yf3{bottom:847.813333pt;}
.y30{bottom:847.973333pt;}
.y1d8{bottom:848.159661pt;}
.y7{bottom:848.453333pt;}
.y1e7{bottom:854.013333pt;}
.y63{bottom:854.693333pt;}
.y14d{bottom:856.613333pt;}
.y173{bottom:859.493333pt;}
.y9a{bottom:860.723333pt;}
.yda{bottom:862.053333pt;}
.y6{bottom:864.773333pt;}
.y145{bottom:868.133333pt;}
.y1a5{bottom:871.173333pt;}
.y1d7{bottom:874.239650pt;}
.y2f{bottom:875.493333pt;}
.y99{bottom:875.842933pt;}
.y62{bottom:876.133333pt;}
.y16e{bottom:878.533333pt;}
.y5{bottom:881.253333pt;}
.yd9{bottom:883.013333pt;}
.y98{bottom:890.883600pt;}
.y14f{bottom:893.413333pt;}
.y143{bottom:894.693333pt;}
.y170{bottom:897.413333pt;}
.y4{bottom:897.573333pt;}
.y1a7{bottom:898.373333pt;}
.y1d6{bottom:900.799640pt;}
.y125{bottom:902.693333pt;}
.yf2{bottom:903.013333pt;}
.y2e{bottom:903.173333pt;}
.y1e6{bottom:905.213333pt;}
.y97{bottom:906.003067pt;}
.yd8{bottom:911.973333pt;}
.y3{bottom:914.053333pt;}
.y160{bottom:916.293333pt;}
.y96{bottom:921.122533pt;}
.y1d5{bottom:927.679629pt;}
.y2{bottom:930.373333pt;}
.y2d{bottom:930.693333pt;}
.y1a4{bottom:930.853333pt;}
.y162{bottom:935.333333pt;}
.y95{bottom:936.242133pt;}
.yd7{bottom:939.493333pt;}
.y1eb{bottom:944.026667pt;}
.y1{bottom:946.880000pt;}
.y94{bottom:951.361600pt;}
.y1d4{bottom:953.279619pt;}
.y15b{bottom:954.213333pt;}
.y124{bottom:957.893333pt;}
.yf1{bottom:958.213333pt;}
.y2c{bottom:958.373333pt;}
.y93{bottom:966.400933pt;}
.yd6{bottom:971.493333pt;}
.y1ec{bottom:973.120000pt;}
.y15d{bottom:977.573333pt;}
.y92{bottom:981.520533pt;}
.y13f{bottom:985.573333pt;}
.y2b{bottom:985.893333pt;}
.y91{bottom:996.640000pt;}
.yd5{bottom:1008.293333pt;}
.yf0{bottom:1013.093333pt;}
.y2a{bottom:1013.253333pt;}
.y10f{bottom:1013.413333pt;}
.y4d{bottom:1013.573333pt;}
.y1ed{bottom:1024.000000pt;}
.y1e1{bottom:1040.000000pt;}
.yef{bottom:1090.560000pt;}
.y4c{bottom:1106.560000pt;}
.h23{height:16.800000pt;}
.h2b{height:16.832000pt;}
.h26{height:16.960000pt;}
.h2d{height:16.992000pt;}
.h25{height:18.240000pt;}
.h28{height:18.272000pt;}
.h13{height:18.400000pt;}
.h1d{height:18.432000pt;}
.h18{height:20.000000pt;}
.h20{height:20.800000pt;}
.h21{height:22.720000pt;}
.h2f{height:26.400000pt;}
.h38{height:26.432000pt;}
.h30{height:26.560000pt;}
.h33{height:26.592000pt;}
.h1c{height:28.480000pt;}
.h22{height:35.840000pt;}
.h27{height:35.872000pt;}
.h9{height:39.571875pt;}
.h3a{height:41.089264pt;}
.h39{height:41.570543pt;}
.h16{height:42.084375pt;}
.h1f{height:43.215000pt;}
.h1e{height:44.160000pt;}
.hb{height:44.437500pt;}
.h1{height:47.685000pt;}
.h31{height:52.134375pt;}
.h12{height:52.422344pt;}
.h19{height:53.535000pt;}
.h2e{height:53.600000pt;}
.h1a{height:55.200000pt;}
.h7{height:55.625000pt;}
.he{height:58.817896pt;}
.h8{height:60.300000pt;}
.h6{height:62.781250pt;}
.h5{height:62.812500pt;}
.h4{height:64.500000pt;}
.h10{height:65.663974pt;}
.hc{height:71.503437pt;}
.ha{height:71.524375pt;}
.h17{height:71.631042pt;}
.h1b{height:72.655000pt;}
.h3e{height:73.490625pt;}
.hf{height:73.854050pt;}
.h15{height:77.795000pt;}
.h34{height:80.800000pt;}
.h14{height:85.785000pt;}
.h3c{height:85.914000pt;}
.h11{height:88.447965pt;}
.h3d{height:96.750000pt;}
.h29{height:111.680000pt;}
.h36{height:162.106667pt;}
.h37{height:225.786667pt;}
.h2c{height:301.026667pt;}
.h32{height:358.786667pt;}
.h35{height:389.986667pt;}
.h24{height:490.306667pt;}
.h2a{height:528.253333pt;}
.hd{height:816.000000pt;}
.h3b{height:1040.000000pt;}
.h0{height:1056.000000pt;}
.h2{height:1122.560000pt;}
.h3{height:1122.666667pt;}
.w4{width:8.160000pt;}
.w5{width:16.160000pt;}
.w16{width:26.240000pt;}
.w1e{width:28.640000pt;}
.w18{width:37.120000pt;}
.w17{width:37.152000pt;}
.w19{width:37.280000pt;}
.w1a{width:42.400000pt;}
.w14{width:45.600000pt;}
.w1b{width:47.840000pt;}
.w20{width:56.032000pt;}
.w1f{width:56.160000pt;}
.w6{width:57.632000pt;}
.wc{width:80.480000pt;}
.w9{width:87.392000pt;}
.wd{width:87.520000pt;}
.w8{width:87.872000pt;}
.wb{width:88.192000pt;}
.wa{width:88.320000pt;}
.w13{width:91.040000pt;}
.w7{width:91.200000pt;}
.w10{width:93.152000pt;}
.w21{width:93.280000pt;}
.w11{width:112.672000pt;}
.wf{width:112.800000pt;}
.w12{width:112.832000pt;}
.w22{width:128.192000pt;}
.w1d{width:169.626667pt;}
.w1c{width:222.106667pt;}
.we{width:226.146667pt;}
.w15{width:452.893333pt;}
.w23{width:720.000000pt;}
.w1{width:793.760000pt;}
.w2{width:794.000000pt;}
.w0{width:816.000000pt;}
.w3{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x4e{left:3.840000pt;}
.x46{left:4.800000pt;}
.x47{left:5.760000pt;}
.x3{left:6.666667pt;}
.x2f{left:7.680000pt;}
.x17{left:9.600000pt;}
.x44{left:10.720000pt;}
.x48{left:11.834667pt;}
.x38{left:12.800000pt;}
.x31{left:14.880000pt;}
.x2a{left:16.000000pt;}
.x2e{left:18.560000pt;}
.x1d{left:20.480000pt;}
.x4f{left:21.440000pt;}
.x28{left:22.400000pt;}
.xf{left:24.000000pt;}
.x19{left:27.360000pt;}
.x21{left:29.120000pt;}
.x1b{left:30.080000pt;}
.x22{left:31.840000pt;}
.x27{left:33.600000pt;}
.x25{left:34.880000pt;}
.x26{left:35.840000pt;}
.x5d{left:37.120000pt;}
.x24{left:38.240000pt;}
.x23{left:40.320000pt;}
.x33{left:41.640000pt;}
.x56{left:42.720000pt;}
.x57{left:44.480000pt;}
.x18{left:45.600000pt;}
.x55{left:55.520000pt;}
.x2c{left:65.160000pt;}
.x5b{left:79.616000pt;}
.x4a{left:83.034667pt;}
.x8{left:86.880736pt;}
.x34{left:88.032000pt;}
.x2{left:94.432000pt;}
.x1{left:100.032000pt;}
.x49{left:100.992000pt;}
.x7{left:114.719954pt;}
.x13{left:118.592000pt;}
.x58{left:123.359951pt;}
.x45{left:131.232000pt;}
.x14{left:134.106667pt;}
.x29{left:136.026667pt;}
.x4{left:141.626667pt;}
.xe{left:154.079938pt;}
.x5e{left:178.013333pt;}
.x12{left:180.186667pt;}
.x5c{left:187.973333pt;}
.x54{left:194.906667pt;}
.x36{left:209.826667pt;}
.x2b{left:224.346667pt;}
.x35{left:225.946667pt;}
.x39{left:263.746667pt;}
.x1a{left:268.066667pt;}
.x3a{left:301.506667pt;}
.x9{left:312.640641pt;}
.x4b{left:323.746667pt;}
.x32{left:337.666667pt;}
.x3b{left:339.266667pt;}
.x1c{left:359.906667pt;}
.x3c{left:377.186667pt;}
.x50{left:380.546667pt;}
.x6{left:382.146667pt;}
.x5{left:383.266667pt;}
.x11{left:396.866667pt;}
.x3d{left:414.946667pt;}
.x51{left:437.213333pt;}
.x1e{left:447.933333pt;}
.x2d{left:451.133333pt;}
.x3e{left:452.733333pt;}
.x3f{left:490.493333pt;}
.x4c{left:494.013333pt;}
.x40{left:528.413333pt;}
.x1f{left:536.893333pt;}
.x16{left:541.533333pt;}
.x52{left:550.813333pt;}
.x30{left:564.573333pt;}
.x41{left:566.173333pt;}
.x5a{left:593.946667pt;}
.x59{left:603.066667pt;}
.x42{left:603.973333pt;}
.x53{left:607.493333pt;}
.xb{left:616.960750pt;}
.xa{left:619.840505pt;}
.x20{left:625.733333pt;}
.x43{left:641.733333pt;}
.x4d{left:664.293333pt;}
.x37{left:679.653333pt;}
.x15{left:690.853333pt;}
.x10{left:698.853333pt;}
.xd{left:761.279695pt;}
.xc{left:762.239695pt;}
}




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