
    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_7bfbaac3a86d48d8bde2f0c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_4545c3595c18062ffe66a9c2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.989000;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_af23189bdb1e316cc32b18ca.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_b499b55cfd45a88d6c59987e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.712000;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_8613a433fd4b0a5dd2c44f56.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000488;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_35fc89a46b90909c467e90cc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006348;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_a7a616c47bd0e0690dad06cf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.206055;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_c65703f135144acb0092437d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000488;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_973ecdf016ca79d23fafd668.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006348;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_fc0b6fde78b1900808dcef53.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.206055;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_121797accd03bca0f8232725.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000488;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_843267b5f054f1aae2b2f5d4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006348;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_026de5abd17c478973f4344a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.206055;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_900920781f6133c58b5dd97f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;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_9cbc0eb5cd81eaba1d7213bd.woff2')format("woff");}.fff{font-family:fff;line-height:1.006348;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_86e6c511c3a4b4348a6b47a4.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.206055;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_bb292a53fb712b2aea569b4c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.388000;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_af5e94c66611cd6a4c449f45.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.726000;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;}
.ma{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.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m21{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m5{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.lsa{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.000435px;}
.ls1{letter-spacing:0.000600px;}
.ls29{letter-spacing:0.002460px;}
.ls28{letter-spacing:0.003040px;}
.ls21{letter-spacing:0.144720px;}
.ls26{letter-spacing:3.507900px;}
.ls0{letter-spacing:8.367300px;}
.ls9{letter-spacing:11.954850px;}
.ls13{letter-spacing:12.612652px;}
.ls2d{letter-spacing:13.342479px;}
.ls20{letter-spacing:13.389734px;}
.ls25{letter-spacing:13.448400px;}
.ls27{letter-spacing:13.454400px;}
.ls2b{letter-spacing:13.583767px;}
.ls2c{letter-spacing:13.687178px;}
.ls1d{letter-spacing:14.286368px;}
.ls12{letter-spacing:14.645022px;}
.ls17{letter-spacing:14.704798px;}
.lsb{letter-spacing:14.824349px;}
.lsc{letter-spacing:14.884124px;}
.ls8{letter-spacing:14.943900px;}
.ls2a{letter-spacing:14.979812px;}
.ls1c{letter-spacing:15.003676px;}
.ls22{letter-spacing:15.063451px;}
.lsd{letter-spacing:15.123227px;}
.ls11{letter-spacing:15.183002px;}
.ls10{letter-spacing:15.242778px;}
.ls24{letter-spacing:15.302554px;}
.ls15{letter-spacing:15.661207px;}
.lse{letter-spacing:15.720983px;}
.ls1e{letter-spacing:15.900310px;}
.ls23{letter-spacing:16.557841px;}
.lsf{letter-spacing:17.155597px;}
.ls19{letter-spacing:17.693578px;}
.ls1a{letter-spacing:19.187968px;}
.ls18{letter-spacing:19.785724px;}
.ls14{letter-spacing:20.024826px;}
.ls5{letter-spacing:20.084602px;}
.ls7{letter-spacing:20.204153px;}
.ls1b{letter-spacing:20.263928px;}
.ls16{letter-spacing:20.801909px;}
.ls6{letter-spacing:20.861684px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls2{letter-spacing:72.355200px;}
.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;}
}
.ws1a{word-spacing:-14.943900px;}
.ws8f{word-spacing:-13.449600px;}
.ws6a{word-spacing:-12.060000px;}
.ws25{word-spacing:-11.955150px;}
.ws7{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws60{word-spacing:-3.168107px;}
.ws62{word-spacing:-2.988780px;}
.ws4c{word-spacing:-2.929004px;}
.ws31{word-spacing:-2.809453px;}
.wsaf{word-spacing:-2.582323px;}
.ws85{word-spacing:-2.391024px;}
.ws3c{word-spacing:-2.331248px;}
.ws3a{word-spacing:-2.271473px;}
.ws79{word-spacing:-2.092146px;}
.ws0{word-spacing:-2.092140px;}
.ws72{word-spacing:-1.972595px;}
.ws2{word-spacing:-1.966612px;}
.ws3b{word-spacing:-1.853044px;}
.ws81{word-spacing:-1.793268px;}
.ws5a{word-spacing:-1.673717px;}
.ws47{word-spacing:-1.613941px;}
.ws39{word-spacing:-1.578086px;}
.ws63{word-spacing:-1.554166px;}
.ws38{word-spacing:-1.434614px;}
.ws14{word-spacing:-1.374839px;}
.ws6b{word-spacing:-1.315063px;}
.ws4d{word-spacing:-1.195512px;}
.ws4e{word-spacing:-1.135736px;}
.ws16{word-spacing:-1.075961px;}
.ws7e{word-spacing:-1.016185px;}
.ws32{word-spacing:-0.896634px;}
.ws84{word-spacing:-0.836858px;}
.ws2f{word-spacing:-0.777083px;}
.ws57{word-spacing:-0.717307px;}
.ws15{word-spacing:-0.667632px;}
.ws56{word-spacing:-0.657532px;}
.ws8c{word-spacing:-0.591782px;}
.ws64{word-spacing:-0.537980px;}
.ws46{word-spacing:-0.418429px;}
.ws29{word-spacing:-0.358654px;}
.ws10{word-spacing:-0.298878px;}
.ws13{word-spacing:-0.239102px;}
.ws90{word-spacing:-0.215194px;}
.ws19{word-spacing:-0.179327px;}
.ws88{word-spacing:-0.161395px;}
.wse{word-spacing:-0.119551px;}
.ws89{word-spacing:-0.107597px;}
.ws12{word-spacing:-0.059776px;}
.ws8b{word-spacing:-0.053798px;}
.wsa9{word-spacing:-0.012826px;}
.wsa7{word-spacing:-0.011405px;}
.ws3{word-spacing:0.000000px;}
.ws24{word-spacing:0.001881px;}
.ws96{word-spacing:0.053798px;}
.ws28{word-spacing:0.059776px;}
.ws97{word-spacing:0.107597px;}
.wsd{word-spacing:0.119551px;}
.ws92{word-spacing:0.161395px;}
.ws18{word-spacing:0.179327px;}
.wsa2{word-spacing:0.215194px;}
.ws27{word-spacing:0.239102px;}
.ws91{word-spacing:0.268992px;}
.wsc{word-spacing:0.298878px;}
.ws9a{word-spacing:0.322790px;}
.ws11{word-spacing:0.358654px;}
.ws1{word-spacing:0.417541px;}
.ws7b{word-spacing:0.418429px;}
.ws5{word-spacing:0.422252px;}
.ws7a{word-spacing:0.478205px;}
.ws87{word-spacing:0.597756px;}
.ws3f{word-spacing:0.657532px;}
.ws2e{word-spacing:0.717307px;}
.ws26{word-spacing:0.777083px;}
.wsaa{word-spacing:0.806976px;}
.ws2d{word-spacing:0.836858px;}
.ws66{word-spacing:0.896634px;}
.ws5e{word-spacing:0.956410px;}
.ws23{word-spacing:1.016185px;}
.ws9e{word-spacing:1.129766px;}
.ws4f{word-spacing:1.135736px;}
.ws9b{word-spacing:1.183565px;}
.ws2b{word-spacing:1.195512px;}
.ws35{word-spacing:1.255288px;}
.ws1e{word-spacing:1.315063px;}
.wsa6{word-spacing:1.344960px;}
.ws6e{word-spacing:1.434614px;}
.wsae{word-spacing:1.452557px;}
.ws68{word-spacing:1.494390px;}
.ws9c{word-spacing:1.506355px;}
.ws36{word-spacing:1.554166px;}
.ws52{word-spacing:1.613941px;}
.ws5f{word-spacing:1.673717px;}
.ws80{word-spacing:1.733492px;}
.ws95{word-spacing:1.775347px;}
.ws44{word-spacing:1.793268px;}
.ws2c{word-spacing:1.853044px;}
.ws82{word-spacing:1.912819px;}
.ws71{word-spacing:1.972595px;}
.ws8a{word-spacing:2.044339px;}
.ws94{word-spacing:2.098138px;}
.ws55{word-spacing:2.151922px;}
.ws99{word-spacing:2.151936px;}
.ws30{word-spacing:2.211697px;}
.ws86{word-spacing:2.271473px;}
.wsb0{word-spacing:2.420928px;}
.wsf{word-spacing:2.450800px;}
.ws6c{word-spacing:2.510575px;}
.ws70{word-spacing:2.630126px;}
.ws50{word-spacing:2.689902px;}
.ws51{word-spacing:2.749678px;}
.ws7c{word-spacing:2.869229px;}
.ws8{word-spacing:2.869236px;}
.wsa4{word-spacing:2.905114px;}
.ws33{word-spacing:2.929004px;}
.ws67{word-spacing:2.988780px;}
.ws3d{word-spacing:3.108331px;}
.wsa5{word-spacing:3.220147px;}
.ws93{word-spacing:3.221213px;}
.wsad{word-spacing:3.221549px;}
.ws74{word-spacing:3.227882px;}
.wsa0{word-spacing:3.227904px;}
.wsa1{word-spacing:3.281702px;}
.wsa{word-spacing:3.287658px;}
.ws7d{word-spacing:3.347434px;}
.ws48{word-spacing:3.407209px;}
.ws9d{word-spacing:3.443098px;}
.ws98{word-spacing:3.496896px;}
.ws2a{word-spacing:3.526760px;}
.ws37{word-spacing:3.586536px;}
.ws43{word-spacing:3.646312px;}
.wsa8{word-spacing:3.658291px;}
.ws65{word-spacing:4.004965px;}
.ws83{word-spacing:4.124516px;}
.ws75{word-spacing:4.244068px;}
.ws17{word-spacing:4.303872px;}
.ws69{word-spacing:4.363619px;}
.ws6f{word-spacing:4.423394px;}
.ws8e{word-spacing:4.519066px;}
.ws6d{word-spacing:4.542946px;}
.ws45{word-spacing:4.662497px;}
.wsb{word-spacing:4.722272px;}
.ws49{word-spacing:4.782048px;}
.ws9f{word-spacing:4.895654px;}
.ws59{word-spacing:4.901599px;}
.ws58{word-spacing:4.961375px;}
.wsab{word-spacing:5.057050px;}
.ws3e{word-spacing:5.080926px;}
.ws1b{word-spacing:5.140702px;}
.wsa3{word-spacing:5.164646px;}
.ws1d{word-spacing:5.200477px;}
.ws22{word-spacing:5.260253px;}
.ws53{word-spacing:5.320028px;}
.ws21{word-spacing:5.618906px;}
.ws76{word-spacing:5.738458px;}
.ws61{word-spacing:5.798233px;}
.ws20{word-spacing:5.858009px;}
.ws1f{word-spacing:5.917784px;}
.ws4a{word-spacing:6.037336px;}
.ws7f{word-spacing:6.156887px;}
.ws77{word-spacing:6.336214px;}
.ws5d{word-spacing:6.694867px;}
.ws5c{word-spacing:6.933970px;}
.ws34{word-spacing:6.993745px;}
.ws4b{word-spacing:7.292623px;}
.ws40{word-spacing:7.890379px;}
.ws1c{word-spacing:7.950155px;}
.ws78{word-spacing:8.129482px;}
.ws5b{word-spacing:8.189257px;}
.ws73{word-spacing:8.488135px;}
.ws42{word-spacing:9.982525px;}
.ws9{word-spacing:10.399160px;}
.ws4{word-spacing:11.297556px;}
.ws8d{word-spacing:12.449411px;}
.ws41{word-spacing:12.732203px;}
.wsac{word-spacing:18.829440px;}
.ws54{word-spacing:20.144377px;}
._4{margin-left:-9.683712px;}
._1b{margin-left:-7.376294px;}
._7{margin-left:-6.300373px;}
._b{margin-left:-5.080926px;}
._2{margin-left:-3.765852px;}
._22{margin-left:-2.628575px;}
._1{margin-left:-1.590026px;}
._1d{width:1.254960px;}
._5{width:2.998813px;}
._20{width:4.063680px;}
._1f{width:5.102608px;}
._1e{width:6.549158px;}
._21{width:7.641690px;}
._23{width:8.661973px;}
._0{width:10.879128px;}
._27{width:12.104640px;}
._1a{width:13.581007px;}
._11{width:14.824386px;}
._25{width:15.840554px;}
._c{width:17.609887px;}
._9{width:18.948865px;}
._8{width:20.981236px;}
._f{width:22.057216px;}
._16{width:24.244979px;}
._e{width:25.320940px;}
._a{width:26.946827px;}
._19{width:28.692288px;}
._14{width:31.023536px;}
._3{width:33.355008px;}
._d{width:34.430746px;}
._10{width:35.841445px;}
._24{width:38.077057px;}
._18{width:39.870325px;}
._17{width:43.636188px;}
._15{width:49.015992px;}
._6{width:54.410267px;}
._12{width:1628.319600px;}
._1c{width:2028.679279px;}
._26{width:2460.201600px;}
._13{width:2484.111600px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fsb{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:48.240000px;}
.fsa{font-size:53.798400px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs1{font-size:59.775600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y132{bottom:-376.623660px;}
.y131{bottom:-355.737540px;}
.y130{bottom:-334.687080px;}
.y12f{bottom:-313.621680px;}
.y12e{bottom:-292.735560px;}
.yfa{bottom:-291.516660px;}
.yd1{bottom:-290.509560px;}
.y12d{bottom:-271.685100px;}
.yf9{bottom:-270.451260px;}
.yd0{bottom:-269.444160px;}
.y12c{bottom:-250.619700px;}
.yf8{bottom:-249.580080px;}
.ycf{bottom:-248.378760px;}
.y12b{bottom:-229.748520px;}
.yf7{bottom:-228.514680px;}
.yce{bottom:-227.507580px;}
.y12a{bottom:-208.683120px;}
.yf6{bottom:-207.449280px;}
.ycd{bottom:-206.442180px;}
.y129{bottom:-187.617720px;}
.yf5{bottom:-186.578100px;}
.ycc{bottom:-185.376780px;}
.y128{bottom:-166.746540px;}
.yf4{bottom:-165.512700px;}
.ycb{bottom:-164.505600px;}
.y15e{bottom:-146.257200px;}
.y127{bottom:-145.681140px;}
.yf3{bottom:-144.462240px;}
.yca{bottom:-143.440200px;}
.y15d{bottom:-125.206740px;}
.y126{bottom:-124.615740px;}
.yf2{bottom:-123.576120px;}
.yc9{bottom:-122.389740px;}
.y15c{bottom:-104.141340px;}
.y125{bottom:-103.744560px;}
.yf1{bottom:-102.510720px;}
.yc8{bottom:-101.503620px;}
.y15b{bottom:-83.255220px;}
.y124{bottom:-82.679160px;}
.yf0{bottom:-81.460260px;}
.yc7{bottom:-80.438220px;}
.y15a{bottom:-62.204760px;}
.y123{bottom:-61.628700px;}
.yef{bottom:-60.574140px;}
.yc6{bottom:-59.387760px;}
.y159{bottom:-23.854500px;}
.y122{bottom:-23.286000px;}
.yee{bottom:-22.050000px;}
.yc5{bottom:-21.037500px;}
.y0{bottom:0.000000px;}
.y158{bottom:2.246400px;}
.y121{bottom:2.822460px;}
.yed{bottom:4.041360px;}
.yc4{bottom:5.063400px;}
.y41{bottom:45.921000px;}
.y40{bottom:99.720000px;}
.y16{bottom:100.260000px;}
.y161{bottom:105.435000px;}
.y16c{bottom:106.395000px;}
.y105{bottom:108.391500px;}
.y1a0{bottom:110.791500px;}
.y74{bottom:116.407500px;}
.y15{bottom:118.147500px;}
.ydb{bottom:118.945500px;}
.y3f{bottom:120.610500px;}
.y160{bottom:126.327000px;}
.y104{bottom:129.283500px;}
.y19f{bottom:129.942000px;}
.y16b{bottom:134.859000px;}
.y9a{bottom:135.774000px;}
.y14{bottom:136.035000px;}
.y73{bottom:137.298000px;}
.yda{bottom:139.837500px;}
.y3e{bottom:141.502500px;}
.y19e{bottom:149.092500px;}
.y103{bottom:150.175500px;}
.y13{bottom:153.924000px;}
.y99{bottom:156.666000px;}
.y72{bottom:158.190000px;}
.yd9{bottom:160.728000px;}
.y15f{bottom:161.955000px;}
.y3d{bottom:162.394500px;}
.y16a{bottom:163.324500px;}
.y19d{bottom:168.243000px;}
.y102{bottom:171.066000px;}
.y12{bottom:171.811500px;}
.y98{bottom:177.556500px;}
.y71{bottom:179.082000px;}
.yd8{bottom:181.620000px;}
.y169{bottom:182.823000px;}
.y3c{bottom:183.285000px;}
.y13f{bottom:184.384500px;}
.y19c{bottom:187.393500px;}
.y11{bottom:189.699000px;}
.y101{bottom:191.958000px;}
.y97{bottom:198.448500px;}
.y70{bottom:199.972500px;}
.yd7{bottom:202.512000px;}
.y3b{bottom:204.177000px;}
.y19b{bottom:206.544000px;}
.y10{bottom:207.586500px;}
.y168{bottom:211.288500px;}
.y100{bottom:212.850000px;}
.y96{bottom:219.340500px;}
.y6f{bottom:220.864500px;}
.yd6{bottom:223.402500px;}
.y3a{bottom:225.069000px;}
.yf{bottom:225.475500px;}
.y19a{bottom:225.694500px;}
.y167{bottom:230.787000px;}
.yff{bottom:233.740500px;}
.y95{bottom:240.232500px;}
.y6e{bottom:241.756500px;}
.yd5{bottom:244.294500px;}
.y199{bottom:244.845000px;}
.y39{bottom:245.961000px;}
.y166{bottom:250.285500px;}
.ye{bottom:252.330000px;}
.yfe{bottom:254.632500px;}
.y94{bottom:261.123000px;}
.y6d{bottom:262.647000px;}
.y198{bottom:263.995500px;}
.yd4{bottom:265.186500px;}
.y38{bottom:266.851500px;}
.y165{bottom:269.785500px;}
.yd{bottom:270.217500px;}
.yfd{bottom:275.524500px;}
.y93{bottom:282.015000px;}
.y197{bottom:283.146000px;}
.y6c{bottom:283.539000px;}
.yd3{bottom:286.077000px;}
.y37{bottom:287.743500px;}
.yc{bottom:288.105000px;}
.y164{bottom:289.284000px;}
.y1c8{bottom:292.737000px;}
.yfc{bottom:296.416500px;}
.y196{bottom:302.296500px;}
.y92{bottom:302.907000px;}
.y6b{bottom:304.431000px;}
.yb{bottom:305.994000px;}
.y36{bottom:308.635500px;}
.y163{bottom:308.782500px;}
.y1c7{bottom:311.887500px;}
.y195{bottom:321.447000px;}
.yd2{bottom:321.705000px;}
.y91{bottom:323.797500px;}
.ya{bottom:323.881500px;}
.y6a{bottom:325.323000px;}
.y35{bottom:329.526000px;}
.y1c6{bottom:331.038000px;}
.yfb{bottom:332.043000px;}
.y194{bottom:340.597500px;}
.y9{bottom:341.769000px;}
.yb2{bottom:344.134500px;}
.y90{bottom:344.689500px;}
.y69{bottom:346.213500px;}
.y34{bottom:350.418000px;}
.ydc{bottom:354.472500px;}
.y8{bottom:359.658000px;}
.y193{bottom:359.748000px;}
.y8f{bottom:365.581500px;}
.y68{bottom:367.105500px;}
.y33{bottom:371.310000px;}
.y1c5{bottom:374.070000px;}
.y7{bottom:377.545500px;}
.y192{bottom:378.898500px;}
.y133{bottom:384.448500px;}
.y8e{bottom:386.472000px;}
.y67{bottom:387.997500px;}
.y32{bottom:392.200500px;}
.y1c4{bottom:393.220500px;}
.y191{bottom:398.049000px;}
.y6{bottom:401.410500px;}
.y112{bottom:406.878000px;}
.y8d{bottom:407.364000px;}
.y66{bottom:408.888000px;}
.y1c3{bottom:412.371000px;}
.y190{bottom:417.199500px;}
.y31{bottom:417.576000px;}
.y5{bottom:419.299500px;}
.y8c{bottom:428.256000px;}
.y65{bottom:429.780000px;}
.y1c2{bottom:431.521500px;}
.y157{bottom:435.147840px;}
.y18f{bottom:436.350000px;}
.y4{bottom:437.187000px;}
.y120{bottom:439.324440px;}
.y8b{bottom:449.146500px;}
.y64{bottom:450.672000px;}
.y3{bottom:455.074500px;}
.y18e{bottom:455.502000px;}
.y156{bottom:456.198300px;}
.y11f{bottom:460.374900px;}
.yc3{bottom:468.561960px;}
.y1c1{bottom:469.822500px;}
.y8a{bottom:470.038500px;}
.y63{bottom:471.562500px;}
.yec{bottom:472.051800px;}
.y18d{bottom:474.652500px;}
.y155{bottom:477.263700px;}
.y2{bottom:478.941000px;}
.y11e{bottom:481.261020px;}
.y1c0{bottom:488.973000px;}
.yc2{bottom:489.612420px;}
.y89{bottom:490.930500px;}
.y62{bottom:492.454500px;}
.yeb{bottom:492.922980px;}
.y18c{bottom:493.803000px;}
.y30{bottom:496.788000px;}
.y1{bottom:496.828500px;}
.y154{bottom:498.134880px;}
.y11d{bottom:502.311480px;}
.y1bf{bottom:508.123500px;}
.yc1{bottom:510.498540px;}
.y88{bottom:511.822500px;}
.y18b{bottom:512.953500px;}
.y61{bottom:513.346500px;}
.yea{bottom:513.988380px;}
.y2f{bottom:517.678500px;}
.y153{bottom:519.200280px;}
.y11c{bottom:523.376880px;}
.y1be{bottom:527.274000px;}
.yc0{bottom:531.563940px;}
.y18a{bottom:532.104000px;}
.y87{bottom:532.713000px;}
.y60{bottom:534.237000px;}
.ye9{bottom:535.038840px;}
.y152{bottom:540.265680px;}
.y11b{bottom:544.263000px;}
.y1bd{bottom:546.424500px;}
.y189{bottom:551.254500px;}
.ybf{bottom:552.614400px;}
.y86{bottom:553.605000px;}
.y5f{bottom:555.129000px;}
.ye8{bottom:555.924960px;}
.y2e{bottom:556.503000px;}
.y151{bottom:561.136860px;}
.y11a{bottom:565.313460px;}
.y1bc{bottom:565.575000px;}
.y188{bottom:570.405000px;}
.ybe{bottom:573.500520px;}
.y85{bottom:574.497000px;}
.y5e{bottom:576.021000px;}
.ye7{bottom:576.990360px;}
.y2d{bottom:577.395000px;}
.y150{bottom:582.202260px;}
.y1bb{bottom:584.725500px;}
.y119{bottom:586.378860px;}
.y187{bottom:589.555500px;}
.ybd{bottom:594.550980px;}
.y84{bottom:595.387500px;}
.y5d{bottom:596.913000px;}
.ye6{bottom:598.040820px;}
.y2c{bottom:598.287000px;}
.y14f{bottom:603.267660px;}
.y1ba{bottom:603.876000px;}
.y118{bottom:607.264980px;}
.y186{bottom:608.706000px;}
.ybc{bottom:615.616380px;}
.y83{bottom:616.279500px;}
.y5c{bottom:617.803500px;}
.ye5{bottom:618.926940px;}
.y2b{bottom:619.177500px;}
.y1b9{bottom:623.026500px;}
.y14e{bottom:624.138840px;}
.y185{bottom:627.856500px;}
.y117{bottom:628.315440px;}
.ybb{bottom:636.502500px;}
.y82{bottom:637.171500px;}
.y5b{bottom:638.695500px;}
.ye4{bottom:639.992340px;}
.y2a{bottom:640.069500px;}
.y13e{bottom:640.653000px;}
.y1b8{bottom:642.177000px;}
.y14d{bottom:645.204240px;}
.y184{bottom:647.007000px;}
.y116{bottom:649.380840px;}
.yba{bottom:657.552960px;}
.y81{bottom:658.062000px;}
.y5a{bottom:659.587500px;}
.y29{bottom:660.961500px;}
.ye3{bottom:661.042800px;}
.y1b7{bottom:661.327500px;}
.y13d{bottom:661.545000px;}
.y183{bottom:666.157500px;}
.y14c{bottom:670.587300px;}
.y115{bottom:674.763900px;}
.yb9{bottom:678.618360px;}
.y80{bottom:678.954000px;}
.y59{bottom:680.478000px;}
.y28{bottom:681.852000px;}
.ye2{bottom:681.928920px;}
.y13c{bottom:682.435500px;}
.y182{bottom:685.308000px;}
.yb8{bottom:699.504480px;}
.y1b6{bottom:699.628500px;}
.y7f{bottom:699.846000px;}
.y58{bottom:701.370000px;}
.y27{bottom:702.744000px;}
.ye1{bottom:702.979380px;}
.y13b{bottom:703.327500px;}
.y181{bottom:704.458500px;}
.y14b{bottom:709.640460px;}
.y1b5{bottom:718.779000px;}
.yb7{bottom:720.554940px;}
.y7e{bottom:720.736500px;}
.y57{bottom:722.262000px;}
.y180{bottom:723.609000px;}
.y26{bottom:723.636000px;}
.ye0{bottom:724.044780px;}
.y13a{bottom:724.219500px;}
.y14a{bottom:730.705860px;}
.y114{bottom:731.095440px;}
.y1b4{bottom:737.929500px;}
.y113{bottom:740.634900px;}
.yb6{bottom:741.620340px;}
.y7d{bottom:741.628500px;}
.y17f{bottom:742.759500px;}
.y56{bottom:743.152500px;}
.y25{bottom:744.526500px;}
.ydf{bottom:744.930900px;}
.y139{bottom:745.110000px;}
.y149{bottom:751.756320px;}
.y1b3{bottom:757.081500px;}
.y17e{bottom:761.910000px;}
.y7c{bottom:762.520500px;}
.y55{bottom:764.044500px;}
.y24{bottom:765.418500px;}
.y138{bottom:766.002000px;}
.yb5{bottom:767.003400px;}
.y148{bottom:772.642440px;}
.y1b2{bottom:776.232000px;}
.y17d{bottom:781.060500px;}
.y7b{bottom:783.411000px;}
.y54{bottom:784.936500px;}
.y23{bottom:786.310500px;}
.y137{bottom:786.894000px;}
.y147{bottom:793.707840px;}
.y1b1{bottom:795.382500px;}
.y17c{bottom:800.211000px;}
.yde{bottom:801.262440px;}
.y7a{bottom:804.303000px;}
.y53{bottom:805.827000px;}
.y22{bottom:807.202500px;}
.y136{bottom:807.784500px;}
.y162{bottom:808.786500px;}
.ydd{bottom:810.801900px;}
.y1b0{bottom:814.533000px;}
.y146{bottom:814.758300px;}
.yb1{bottom:818.695500px;}
.y17b{bottom:819.361500px;}
.yb4{bottom:823.334940px;}
.y79{bottom:825.195000px;}
.y52{bottom:826.719000px;}
.y21{bottom:828.093000px;}
.y135{bottom:828.676500px;}
.yb3{bottom:832.874400px;}
.y1af{bottom:833.683500px;}
.y145{bottom:835.644420px;}
.y17a{bottom:838.513500px;}
.yb0{bottom:839.587500px;}
.y78{bottom:846.087000px;}
.y51{bottom:847.611000px;}
.y20{bottom:848.985000px;}
.y111{bottom:849.568500px;}
.y1ae{bottom:852.834000px;}
.y134{bottom:854.052000px;}
.y144{bottom:856.694880px;}
.y179{bottom:857.664000px;}
.yaf{bottom:860.479500px;}
.y77{bottom:866.977500px;}
.y50{bottom:868.503000px;}
.y110{bottom:870.460500px;}
.y1ad{bottom:871.984500px;}
.y178{bottom:876.814500px;}
.y143{bottom:877.760280px;}
.yae{bottom:881.370000px;}
.y76{bottom:887.869500px;}
.y1f{bottom:888.406500px;}
.y4f{bottom:889.393500px;}
.y1ac{bottom:891.135000px;}
.y10f{bottom:891.351000px;}
.y177{bottom:895.965000px;}
.y142{bottom:898.646400px;}
.yad{bottom:902.262000px;}
.y1e{bottom:904.545000px;}
.ya2{bottom:908.761500px;}
.y4e{bottom:910.285500px;}
.y10e{bottom:912.243000px;}
.y75{bottom:913.243500px;}
.y176{bottom:915.115500px;}
.yac{bottom:923.154000px;}
.y1d{bottom:925.024500px;}
.y1ab{bottom:929.436000px;}
.ya1{bottom:929.652000px;}
.y4d{bottom:931.177500px;}
.y10d{bottom:933.135000px;}
.y175{bottom:934.266000px;}
.y1c{bottom:936.825000px;}
.yab{bottom:944.044500px;}
.y1aa{bottom:948.586500px;}
.ya0{bottom:950.544000px;}
.y4c{bottom:952.068000px;}
.y174{bottom:953.416500px;}
.y10c{bottom:954.025500px;}
.y141{bottom:954.977940px;}
.y1b{bottom:957.304500px;}
.y140{bottom:964.517400px;}
.yaa{bottom:964.936500px;}
.y1a9{bottom:967.737000px;}
.y9f{bottom:971.436000px;}
.y173{bottom:972.567000px;}
.y4b{bottom:972.960000px;}
.y10b{bottom:974.917500px;}
.ya9{bottom:985.828500px;}
.y1a8{bottom:986.887500px;}
.y172{bottom:991.717500px;}
.y9e{bottom:992.326500px;}
.y4a{bottom:993.852000px;}
.y10a{bottom:995.809500px;}
.y1a{bottom:1001.382000px;}
.y1a7{bottom:1006.038000px;}
.ya8{bottom:1006.719000px;}
.y171{bottom:1010.868000px;}
.y9d{bottom:1013.218500px;}
.y49{bottom:1014.742500px;}
.y109{bottom:1016.700000px;}
.y1a6{bottom:1025.188500px;}
.ya7{bottom:1027.611000px;}
.y170{bottom:1030.018500px;}
.y9c{bottom:1034.110500px;}
.y48{bottom:1035.634500px;}
.y108{bottom:1037.592000px;}
.y19{bottom:1040.206500px;}
.y1a5{bottom:1044.339000px;}
.ya6{bottom:1048.503000px;}
.y16f{bottom:1049.169000px;}
.y47{bottom:1056.526500px;}
.y107{bottom:1058.484000px;}
.y9b{bottom:1059.484500px;}
.y1a4{bottom:1063.489500px;}
.ya5{bottom:1069.393500px;}
.y18{bottom:1071.543000px;}
.y16e{bottom:1072.803000px;}
.y46{bottom:1077.417000px;}
.y1a3{bottom:1082.640000px;}
.y106{bottom:1083.858000px;}
.ya4{bottom:1090.285500px;}
.y45{bottom:1098.309000px;}
.y1a2{bottom:1101.790500px;}
.y17{bottom:1102.881000px;}
.y16d{bottom:1111.627500px;}
.ya3{bottom:1115.661000px;}
.y44{bottom:1119.201000px;}
.y1a1{bottom:1120.941000px;}
.y43{bottom:1140.091500px;}
.y42{bottom:1200.196500px;}
.h6{height:32.565965px;}
.h2{height:37.993262px;}
.hc{height:43.010859px;}
.h7{height:43.421105px;}
.h3{height:43.815515px;}
.hb{height:44.612578px;}
.hf{height:48.848947px;}
.he{height:49.939453px;}
.h9{height:51.861658px;}
.h8{height:54.276245px;}
.h5{height:54.541601px;}
.hd{height:55.266328px;}
.h4{height:77.792486px;}
.h11{height:420.646500px;}
.h12{height:432.628500px;}
.ha{height:450.921000px;}
.h10{height:452.499000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:534.796500px;}
.w3{width:570.747000px;}
.w2{width:579.418500px;}
.w5{width:588.402000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xa{left:-192.740820px;}
.xe{left:-191.164320px;}
.x0{left:0.000000px;}
.xb{left:2.916840px;}
.x10{left:4.493340px;}
.xc{left:34.783860px;}
.xf{left:36.360360px;}
.x1{left:53.574000px;}
.x14{left:85.848000px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x6{left:254.173500px;}
.x3{left:269.914500px;}
.x5{left:281.479500px;}
.x9{left:379.312500px;}
.x8{left:509.115000px;}
.x7{left:514.404000px;}
.x12{left:530.760660px;}
.x11{left:569.165580px;}
.xd{left:575.328000px;}
.x13{left:587.466360px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.lsa{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.000387pt;}
.ls1{letter-spacing:0.000533pt;}
.ls29{letter-spacing:0.002187pt;}
.ls28{letter-spacing:0.002703pt;}
.ls21{letter-spacing:0.128640pt;}
.ls26{letter-spacing:3.118133pt;}
.ls0{letter-spacing:7.437600pt;}
.ls9{letter-spacing:10.626533pt;}
.ls13{letter-spacing:11.211246pt;}
.ls2d{letter-spacing:11.859982pt;}
.ls20{letter-spacing:11.901986pt;}
.ls25{letter-spacing:11.954133pt;}
.ls27{letter-spacing:11.959467pt;}
.ls2b{letter-spacing:12.074460pt;}
.ls2c{letter-spacing:12.166381pt;}
.ls1d{letter-spacing:12.698994pt;}
.ls12{letter-spacing:13.017797pt;}
.ls17{letter-spacing:13.070931pt;}
.lsb{letter-spacing:13.177199pt;}
.lsc{letter-spacing:13.230333pt;}
.ls8{letter-spacing:13.283467pt;}
.ls2a{letter-spacing:13.315388pt;}
.ls1c{letter-spacing:13.336601pt;}
.ls22{letter-spacing:13.389734pt;}
.lsd{letter-spacing:13.442868pt;}
.ls11{letter-spacing:13.496002pt;}
.ls10{letter-spacing:13.549136pt;}
.ls24{letter-spacing:13.602270pt;}
.ls15{letter-spacing:13.921073pt;}
.lse{letter-spacing:13.974207pt;}
.ls1e{letter-spacing:14.133609pt;}
.ls23{letter-spacing:14.718081pt;}
.lsf{letter-spacing:15.249420pt;}
.ls19{letter-spacing:15.727625pt;}
.ls1a{letter-spacing:17.055971pt;}
.ls18{letter-spacing:17.587310pt;}
.ls14{letter-spacing:17.799845pt;}
.ls5{letter-spacing:17.852979pt;}
.ls7{letter-spacing:17.959247pt;}
.ls1b{letter-spacing:18.012381pt;}
.ls16{letter-spacing:18.490586pt;}
.ls6{letter-spacing:18.543719pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls2{letter-spacing:64.315733pt;}
.ws1a{word-spacing:-13.283467pt;}
.ws8f{word-spacing:-11.955200pt;}
.ws6a{word-spacing:-10.720000pt;}
.ws25{word-spacing:-10.626800pt;}
.ws7{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws60{word-spacing:-2.816095pt;}
.ws62{word-spacing:-2.656693pt;}
.ws4c{word-spacing:-2.603559pt;}
.ws31{word-spacing:-2.497292pt;}
.wsaf{word-spacing:-2.295398pt;}
.ws85{word-spacing:-2.125355pt;}
.ws3c{word-spacing:-2.072221pt;}
.ws3a{word-spacing:-2.019087pt;}
.ws79{word-spacing:-1.859685pt;}
.ws0{word-spacing:-1.859680pt;}
.ws72{word-spacing:-1.753418pt;}
.ws2{word-spacing:-1.748099pt;}
.ws3b{word-spacing:-1.647150pt;}
.ws81{word-spacing:-1.594016pt;}
.ws5a{word-spacing:-1.487748pt;}
.ws47{word-spacing:-1.434614pt;}
.ws39{word-spacing:-1.402743pt;}
.ws63{word-spacing:-1.381481pt;}
.ws38{word-spacing:-1.275213pt;}
.ws14{word-spacing:-1.222079pt;}
.ws6b{word-spacing:-1.168945pt;}
.ws4d{word-spacing:-1.062677pt;}
.ws4e{word-spacing:-1.009543pt;}
.ws16{word-spacing:-0.956410pt;}
.ws7e{word-spacing:-0.903276pt;}
.ws32{word-spacing:-0.797008pt;}
.ws84{word-spacing:-0.743874pt;}
.ws2f{word-spacing:-0.690740pt;}
.ws57{word-spacing:-0.637606pt;}
.ws15{word-spacing:-0.593450pt;}
.ws56{word-spacing:-0.584473pt;}
.ws8c{word-spacing:-0.526029pt;}
.ws64{word-spacing:-0.478205pt;}
.ws46{word-spacing:-0.371937pt;}
.ws29{word-spacing:-0.318803pt;}
.ws10{word-spacing:-0.265669pt;}
.ws13{word-spacing:-0.212535pt;}
.ws90{word-spacing:-0.191283pt;}
.ws19{word-spacing:-0.159402pt;}
.ws88{word-spacing:-0.143462pt;}
.wse{word-spacing:-0.106268pt;}
.ws89{word-spacing:-0.095642pt;}
.ws12{word-spacing:-0.053134pt;}
.ws8b{word-spacing:-0.047821pt;}
.wsa9{word-spacing:-0.011401pt;}
.wsa7{word-spacing:-0.010138pt;}
.ws3{word-spacing:0.000000pt;}
.ws24{word-spacing:0.001672pt;}
.ws96{word-spacing:0.047821pt;}
.ws28{word-spacing:0.053134pt;}
.ws97{word-spacing:0.095642pt;}
.wsd{word-spacing:0.106268pt;}
.ws92{word-spacing:0.143462pt;}
.ws18{word-spacing:0.159402pt;}
.wsa2{word-spacing:0.191283pt;}
.ws27{word-spacing:0.212535pt;}
.ws91{word-spacing:0.239104pt;}
.wsc{word-spacing:0.265669pt;}
.ws9a{word-spacing:0.286925pt;}
.ws11{word-spacing:0.318803pt;}
.ws1{word-spacing:0.371148pt;}
.ws7b{word-spacing:0.371937pt;}
.ws5{word-spacing:0.375335pt;}
.ws7a{word-spacing:0.425071pt;}
.ws87{word-spacing:0.531339pt;}
.ws3f{word-spacing:0.584473pt;}
.ws2e{word-spacing:0.637606pt;}
.ws26{word-spacing:0.690740pt;}
.wsaa{word-spacing:0.717312pt;}
.ws2d{word-spacing:0.743874pt;}
.ws66{word-spacing:0.797008pt;}
.ws5e{word-spacing:0.850142pt;}
.ws23{word-spacing:0.903276pt;}
.ws9e{word-spacing:1.004237pt;}
.ws4f{word-spacing:1.009543pt;}
.ws9b{word-spacing:1.052058pt;}
.ws2b{word-spacing:1.062677pt;}
.ws35{word-spacing:1.115811pt;}
.ws1e{word-spacing:1.168945pt;}
.wsa6{word-spacing:1.195520pt;}
.ws6e{word-spacing:1.275213pt;}
.wsae{word-spacing:1.291162pt;}
.ws68{word-spacing:1.328347pt;}
.ws9c{word-spacing:1.338982pt;}
.ws36{word-spacing:1.381481pt;}
.ws52{word-spacing:1.434614pt;}
.ws5f{word-spacing:1.487748pt;}
.ws80{word-spacing:1.540882pt;}
.ws95{word-spacing:1.578086pt;}
.ws44{word-spacing:1.594016pt;}
.ws2c{word-spacing:1.647150pt;}
.ws82{word-spacing:1.700284pt;}
.ws71{word-spacing:1.753418pt;}
.ws8a{word-spacing:1.817190pt;}
.ws94{word-spacing:1.865011pt;}
.ws55{word-spacing:1.912819pt;}
.ws99{word-spacing:1.912832pt;}
.ws30{word-spacing:1.965953pt;}
.ws86{word-spacing:2.019087pt;}
.wsb0{word-spacing:2.151936pt;}
.wsf{word-spacing:2.178489pt;}
.ws6c{word-spacing:2.231622pt;}
.ws70{word-spacing:2.337890pt;}
.ws50{word-spacing:2.391024pt;}
.ws51{word-spacing:2.444158pt;}
.ws7c{word-spacing:2.550426pt;}
.ws8{word-spacing:2.550432pt;}
.wsa4{word-spacing:2.582323pt;}
.ws33{word-spacing:2.603559pt;}
.ws67{word-spacing:2.656693pt;}
.ws3d{word-spacing:2.762961pt;}
.wsa5{word-spacing:2.862353pt;}
.ws93{word-spacing:2.863300pt;}
.wsad{word-spacing:2.863599pt;}
.ws74{word-spacing:2.869229pt;}
.wsa0{word-spacing:2.869248pt;}
.wsa1{word-spacing:2.917069pt;}
.wsa{word-spacing:2.922363pt;}
.ws7d{word-spacing:2.975497pt;}
.ws48{word-spacing:3.028630pt;}
.ws9d{word-spacing:3.060531pt;}
.ws98{word-spacing:3.108352pt;}
.ws2a{word-spacing:3.134898pt;}
.ws37{word-spacing:3.188032pt;}
.ws43{word-spacing:3.241166pt;}
.wsa8{word-spacing:3.251814pt;}
.ws65{word-spacing:3.559969pt;}
.ws83{word-spacing:3.666237pt;}
.ws75{word-spacing:3.772505pt;}
.ws17{word-spacing:3.825664pt;}
.ws69{word-spacing:3.878772pt;}
.ws6f{word-spacing:3.931906pt;}
.ws8e{word-spacing:4.016947pt;}
.ws6d{word-spacing:4.038174pt;}
.ws45{word-spacing:4.144442pt;}
.wsb{word-spacing:4.197575pt;}
.ws49{word-spacing:4.250709pt;}
.ws9f{word-spacing:4.351693pt;}
.ws59{word-spacing:4.356977pt;}
.ws58{word-spacing:4.410111pt;}
.wsab{word-spacing:4.495155pt;}
.ws3e{word-spacing:4.516379pt;}
.ws1b{word-spacing:4.569513pt;}
.wsa3{word-spacing:4.590797pt;}
.ws1d{word-spacing:4.622646pt;}
.ws22{word-spacing:4.675780pt;}
.ws53{word-spacing:4.728914pt;}
.ws21{word-spacing:4.994583pt;}
.ws76{word-spacing:5.100851pt;}
.ws61{word-spacing:5.153985pt;}
.ws20{word-spacing:5.207119pt;}
.ws1f{word-spacing:5.260253pt;}
.ws4a{word-spacing:5.366521pt;}
.ws7f{word-spacing:5.472788pt;}
.ws77{word-spacing:5.632190pt;}
.ws5d{word-spacing:5.950993pt;}
.ws5c{word-spacing:6.163529pt;}
.ws34{word-spacing:6.216662pt;}
.ws4b{word-spacing:6.482332pt;}
.ws40{word-spacing:7.013670pt;}
.ws1c{word-spacing:7.066804pt;}
.ws78{word-spacing:7.226206pt;}
.ws5b{word-spacing:7.279340pt;}
.ws73{word-spacing:7.545009pt;}
.ws42{word-spacing:8.873356pt;}
.ws9{word-spacing:9.243697pt;}
.ws4{word-spacing:10.042272pt;}
.ws8d{word-spacing:11.066143pt;}
.ws41{word-spacing:11.317514pt;}
.wsac{word-spacing:16.737280pt;}
.ws54{word-spacing:17.906113pt;}
._4{margin-left:-8.607744pt;}
._1b{margin-left:-6.556706pt;}
._7{margin-left:-5.600331pt;}
._b{margin-left:-4.516379pt;}
._2{margin-left:-3.347424pt;}
._22{margin-left:-2.336511pt;}
._1{margin-left:-1.413357pt;}
._1d{width:1.115520pt;}
._5{width:2.665612pt;}
._20{width:3.612160pt;}
._1f{width:4.535651pt;}
._1e{width:5.821474pt;}
._21{width:6.792614pt;}
._23{width:7.699532pt;}
._0{width:9.670336pt;}
._27{width:10.759680pt;}
._1a{width:12.072006pt;}
._11{width:13.177232pt;}
._25{width:14.080492pt;}
._c{width:15.653233pt;}
._9{width:16.843436pt;}
._8{width:18.649987pt;}
._f{width:19.606414pt;}
._16{width:21.551092pt;}
._e{width:22.507502pt;}
._a{width:23.952735pt;}
._19{width:25.504256pt;}
._14{width:27.576477pt;}
._3{width:29.648896pt;}
._d{width:30.605107pt;}
._10{width:31.859062pt;}
._24{width:33.846273pt;}
._18{width:35.440289pt;}
._17{width:38.787723pt;}
._15{width:43.569771pt;}
._6{width:48.364682pt;}
._12{width:1447.395200pt;}
._1c{width:1803.270470pt;}
._26{width:2186.845867pt;}
._13{width:2208.099200pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fsb{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:42.880000pt;}
.fsa{font-size:47.820800pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs1{font-size:53.133867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y132{bottom:-334.776587pt;}
.y131{bottom:-316.211147pt;}
.y130{bottom:-297.499627pt;}
.y12f{bottom:-278.774827pt;}
.y12e{bottom:-260.209387pt;}
.yfa{bottom:-259.125920pt;}
.yd1{bottom:-258.230720pt;}
.y12d{bottom:-241.497867pt;}
.yf9{bottom:-240.401120pt;}
.yd0{bottom:-239.505920pt;}
.y12c{bottom:-222.773067pt;}
.yf8{bottom:-221.848960pt;}
.ycf{bottom:-220.781120pt;}
.y12b{bottom:-204.220907pt;}
.yf7{bottom:-203.124160pt;}
.yce{bottom:-202.228960pt;}
.y12a{bottom:-185.496107pt;}
.yf6{bottom:-184.399360pt;}
.ycd{bottom:-183.504160pt;}
.y129{bottom:-166.771307pt;}
.yf5{bottom:-165.847200pt;}
.ycc{bottom:-164.779360pt;}
.y128{bottom:-148.219147pt;}
.yf4{bottom:-147.122400pt;}
.ycb{bottom:-146.227200pt;}
.y15e{bottom:-130.006400pt;}
.y127{bottom:-129.494347pt;}
.yf3{bottom:-128.410880pt;}
.yca{bottom:-127.502400pt;}
.y15d{bottom:-111.294880pt;}
.y126{bottom:-110.769547pt;}
.yf2{bottom:-109.845440pt;}
.yc9{bottom:-108.790880pt;}
.y15c{bottom:-92.570080pt;}
.y125{bottom:-92.217387pt;}
.yf1{bottom:-91.120640pt;}
.yc8{bottom:-90.225440pt;}
.y15b{bottom:-74.004640pt;}
.y124{bottom:-73.492587pt;}
.yf0{bottom:-72.409120pt;}
.yc7{bottom:-71.500640pt;}
.y15a{bottom:-55.293120pt;}
.y123{bottom:-54.781067pt;}
.yef{bottom:-53.843680pt;}
.yc6{bottom:-52.789120pt;}
.y159{bottom:-21.204000pt;}
.y122{bottom:-20.698667pt;}
.yee{bottom:-19.600000pt;}
.yc5{bottom:-18.700000pt;}
.y0{bottom:0.000000pt;}
.y158{bottom:1.996800pt;}
.y121{bottom:2.508853pt;}
.yed{bottom:3.592320pt;}
.yc4{bottom:4.500800pt;}
.y41{bottom:40.818667pt;}
.y40{bottom:88.640000pt;}
.y16{bottom:89.120000pt;}
.y161{bottom:93.720000pt;}
.y16c{bottom:94.573333pt;}
.y105{bottom:96.348000pt;}
.y1a0{bottom:98.481333pt;}
.y74{bottom:103.473333pt;}
.y15{bottom:105.020000pt;}
.ydb{bottom:105.729333pt;}
.y3f{bottom:107.209333pt;}
.y160{bottom:112.290667pt;}
.y104{bottom:114.918667pt;}
.y19f{bottom:115.504000pt;}
.y16b{bottom:119.874667pt;}
.y9a{bottom:120.688000pt;}
.y14{bottom:120.920000pt;}
.y73{bottom:122.042667pt;}
.yda{bottom:124.300000pt;}
.y3e{bottom:125.780000pt;}
.y19e{bottom:132.526667pt;}
.y103{bottom:133.489333pt;}
.y13{bottom:136.821333pt;}
.y99{bottom:139.258667pt;}
.y72{bottom:140.613333pt;}
.yd9{bottom:142.869333pt;}
.y15f{bottom:143.960000pt;}
.y3d{bottom:144.350667pt;}
.y16a{bottom:145.177333pt;}
.y19d{bottom:149.549333pt;}
.y102{bottom:152.058667pt;}
.y12{bottom:152.721333pt;}
.y98{bottom:157.828000pt;}
.y71{bottom:159.184000pt;}
.yd8{bottom:161.440000pt;}
.y169{bottom:162.509333pt;}
.y3c{bottom:162.920000pt;}
.y13f{bottom:163.897333pt;}
.y19c{bottom:166.572000pt;}
.y11{bottom:168.621333pt;}
.y101{bottom:170.629333pt;}
.y97{bottom:176.398667pt;}
.y70{bottom:177.753333pt;}
.yd7{bottom:180.010667pt;}
.y3b{bottom:181.490667pt;}
.y19b{bottom:183.594667pt;}
.y10{bottom:184.521333pt;}
.y168{bottom:187.812000pt;}
.y100{bottom:189.200000pt;}
.y96{bottom:194.969333pt;}
.y6f{bottom:196.324000pt;}
.yd6{bottom:198.580000pt;}
.y3a{bottom:200.061333pt;}
.yf{bottom:200.422667pt;}
.y19a{bottom:200.617333pt;}
.y167{bottom:205.144000pt;}
.yff{bottom:207.769333pt;}
.y95{bottom:213.540000pt;}
.y6e{bottom:214.894667pt;}
.yd5{bottom:217.150667pt;}
.y199{bottom:217.640000pt;}
.y39{bottom:218.632000pt;}
.y166{bottom:222.476000pt;}
.ye{bottom:224.293333pt;}
.yfe{bottom:226.340000pt;}
.y94{bottom:232.109333pt;}
.y6d{bottom:233.464000pt;}
.y198{bottom:234.662667pt;}
.yd4{bottom:235.721333pt;}
.y38{bottom:237.201333pt;}
.y165{bottom:239.809333pt;}
.yd{bottom:240.193333pt;}
.yfd{bottom:244.910667pt;}
.y93{bottom:250.680000pt;}
.y197{bottom:251.685333pt;}
.y6c{bottom:252.034667pt;}
.yd3{bottom:254.290667pt;}
.y37{bottom:255.772000pt;}
.yc{bottom:256.093333pt;}
.y164{bottom:257.141333pt;}
.y1c8{bottom:260.210667pt;}
.yfc{bottom:263.481333pt;}
.y196{bottom:268.708000pt;}
.y92{bottom:269.250667pt;}
.y6b{bottom:270.605333pt;}
.yb{bottom:271.994667pt;}
.y36{bottom:274.342667pt;}
.y163{bottom:274.473333pt;}
.y1c7{bottom:277.233333pt;}
.y195{bottom:285.730667pt;}
.yd2{bottom:285.960000pt;}
.y91{bottom:287.820000pt;}
.ya{bottom:287.894667pt;}
.y6a{bottom:289.176000pt;}
.y35{bottom:292.912000pt;}
.y1c6{bottom:294.256000pt;}
.yfb{bottom:295.149333pt;}
.y194{bottom:302.753333pt;}
.y9{bottom:303.794667pt;}
.yb2{bottom:305.897333pt;}
.y90{bottom:306.390667pt;}
.y69{bottom:307.745333pt;}
.y34{bottom:311.482667pt;}
.ydc{bottom:315.086667pt;}
.y8{bottom:319.696000pt;}
.y193{bottom:319.776000pt;}
.y8f{bottom:324.961333pt;}
.y68{bottom:326.316000pt;}
.y33{bottom:330.053333pt;}
.y1c5{bottom:332.506667pt;}
.y7{bottom:335.596000pt;}
.y192{bottom:336.798667pt;}
.y133{bottom:341.732000pt;}
.y8e{bottom:343.530667pt;}
.y67{bottom:344.886667pt;}
.y32{bottom:348.622667pt;}
.y1c4{bottom:349.529333pt;}
.y191{bottom:353.821333pt;}
.y6{bottom:356.809333pt;}
.y112{bottom:361.669333pt;}
.y8d{bottom:362.101333pt;}
.y66{bottom:363.456000pt;}
.y1c3{bottom:366.552000pt;}
.y190{bottom:370.844000pt;}
.y31{bottom:371.178667pt;}
.y5{bottom:372.710667pt;}
.y8c{bottom:380.672000pt;}
.y65{bottom:382.026667pt;}
.y1c2{bottom:383.574667pt;}
.y157{bottom:386.798080pt;}
.y18f{bottom:387.866667pt;}
.y4{bottom:388.610667pt;}
.y120{bottom:390.510613pt;}
.y8b{bottom:399.241333pt;}
.y64{bottom:400.597333pt;}
.y3{bottom:404.510667pt;}
.y18e{bottom:404.890667pt;}
.y156{bottom:405.509600pt;}
.y11f{bottom:409.222133pt;}
.yc3{bottom:416.499520pt;}
.y1c1{bottom:417.620000pt;}
.y8a{bottom:417.812000pt;}
.y63{bottom:419.166667pt;}
.yec{bottom:419.601600pt;}
.y18d{bottom:421.913333pt;}
.y155{bottom:424.234400pt;}
.y2{bottom:425.725333pt;}
.y11e{bottom:427.787573pt;}
.y1c0{bottom:434.642667pt;}
.yc2{bottom:435.211040pt;}
.y89{bottom:436.382667pt;}
.y62{bottom:437.737333pt;}
.yeb{bottom:438.153760pt;}
.y18c{bottom:438.936000pt;}
.y30{bottom:441.589333pt;}
.y1{bottom:441.625333pt;}
.y154{bottom:442.786560pt;}
.y11d{bottom:446.499093pt;}
.y1bf{bottom:451.665333pt;}
.yc1{bottom:453.776480pt;}
.y88{bottom:454.953333pt;}
.y18b{bottom:455.958667pt;}
.y61{bottom:456.308000pt;}
.yea{bottom:456.878560pt;}
.y2f{bottom:460.158667pt;}
.y153{bottom:461.511360pt;}
.y11c{bottom:465.223893pt;}
.y1be{bottom:468.688000pt;}
.yc0{bottom:472.501280pt;}
.y18a{bottom:472.981333pt;}
.y87{bottom:473.522667pt;}
.y60{bottom:474.877333pt;}
.ye9{bottom:475.590080pt;}
.y152{bottom:480.236160pt;}
.y11b{bottom:483.789333pt;}
.y1bd{bottom:485.710667pt;}
.y189{bottom:490.004000pt;}
.ybf{bottom:491.212800pt;}
.y86{bottom:492.093333pt;}
.y5f{bottom:493.448000pt;}
.ye8{bottom:494.155520pt;}
.y2e{bottom:494.669333pt;}
.y151{bottom:498.788320pt;}
.y11a{bottom:502.500853pt;}
.y1bc{bottom:502.733333pt;}
.y188{bottom:507.026667pt;}
.ybe{bottom:509.778240pt;}
.y85{bottom:510.664000pt;}
.y5e{bottom:512.018667pt;}
.ye7{bottom:512.880320pt;}
.y2d{bottom:513.240000pt;}
.y150{bottom:517.513120pt;}
.y1bb{bottom:519.756000pt;}
.y119{bottom:521.225653pt;}
.y187{bottom:524.049333pt;}
.ybd{bottom:528.489760pt;}
.y84{bottom:529.233333pt;}
.y5d{bottom:530.589333pt;}
.ye6{bottom:531.591840pt;}
.y2c{bottom:531.810667pt;}
.y14f{bottom:536.237920pt;}
.y1ba{bottom:536.778667pt;}
.y118{bottom:539.791093pt;}
.y186{bottom:541.072000pt;}
.ybc{bottom:547.214560pt;}
.y83{bottom:547.804000pt;}
.y5c{bottom:549.158667pt;}
.ye5{bottom:550.157280pt;}
.y2b{bottom:550.380000pt;}
.y1b9{bottom:553.801333pt;}
.y14e{bottom:554.790080pt;}
.y185{bottom:558.094667pt;}
.y117{bottom:558.502613pt;}
.ybb{bottom:565.780000pt;}
.y82{bottom:566.374667pt;}
.y5b{bottom:567.729333pt;}
.ye4{bottom:568.882080pt;}
.y2a{bottom:568.950667pt;}
.y13e{bottom:569.469333pt;}
.y1b8{bottom:570.824000pt;}
.y14d{bottom:573.514880pt;}
.y184{bottom:575.117333pt;}
.y116{bottom:577.227413pt;}
.yba{bottom:584.491520pt;}
.y81{bottom:584.944000pt;}
.y5a{bottom:586.300000pt;}
.y29{bottom:587.521333pt;}
.ye3{bottom:587.593600pt;}
.y1b7{bottom:587.846667pt;}
.y13d{bottom:588.040000pt;}
.y183{bottom:592.140000pt;}
.y14c{bottom:596.077600pt;}
.y115{bottom:599.790133pt;}
.yb9{bottom:603.216320pt;}
.y80{bottom:603.514667pt;}
.y59{bottom:604.869333pt;}
.y28{bottom:606.090667pt;}
.ye2{bottom:606.159040pt;}
.y13c{bottom:606.609333pt;}
.y182{bottom:609.162667pt;}
.yb8{bottom:621.781760pt;}
.y1b6{bottom:621.892000pt;}
.y7f{bottom:622.085333pt;}
.y58{bottom:623.440000pt;}
.y27{bottom:624.661333pt;}
.ye1{bottom:624.870560pt;}
.y13b{bottom:625.180000pt;}
.y181{bottom:626.185333pt;}
.y14b{bottom:630.791520pt;}
.y1b5{bottom:638.914667pt;}
.yb7{bottom:640.493280pt;}
.y7e{bottom:640.654667pt;}
.y57{bottom:642.010667pt;}
.y180{bottom:643.208000pt;}
.y26{bottom:643.232000pt;}
.ye0{bottom:643.595360pt;}
.y13a{bottom:643.750667pt;}
.y14a{bottom:649.516320pt;}
.y114{bottom:649.862613pt;}
.y1b4{bottom:655.937333pt;}
.y113{bottom:658.342133pt;}
.yb6{bottom:659.218080pt;}
.y7d{bottom:659.225333pt;}
.y17f{bottom:660.230667pt;}
.y56{bottom:660.580000pt;}
.y25{bottom:661.801333pt;}
.ydf{bottom:662.160800pt;}
.y139{bottom:662.320000pt;}
.y149{bottom:668.227840pt;}
.y1b3{bottom:672.961333pt;}
.y17e{bottom:677.253333pt;}
.y7c{bottom:677.796000pt;}
.y55{bottom:679.150667pt;}
.y24{bottom:680.372000pt;}
.y138{bottom:680.890667pt;}
.yb5{bottom:681.780800pt;}
.y148{bottom:686.793280pt;}
.y1b2{bottom:689.984000pt;}
.y17d{bottom:694.276000pt;}
.y7b{bottom:696.365333pt;}
.y54{bottom:697.721333pt;}
.y23{bottom:698.942667pt;}
.y137{bottom:699.461333pt;}
.y147{bottom:705.518080pt;}
.y1b1{bottom:707.006667pt;}
.y17c{bottom:711.298667pt;}
.yde{bottom:712.233280pt;}
.y7a{bottom:714.936000pt;}
.y53{bottom:716.290667pt;}
.y22{bottom:717.513333pt;}
.y136{bottom:718.030667pt;}
.y162{bottom:718.921333pt;}
.ydd{bottom:720.712800pt;}
.y1b0{bottom:724.029333pt;}
.y146{bottom:724.229600pt;}
.yb1{bottom:727.729333pt;}
.y17b{bottom:728.321333pt;}
.yb4{bottom:731.853280pt;}
.y79{bottom:733.506667pt;}
.y52{bottom:734.861333pt;}
.y21{bottom:736.082667pt;}
.y135{bottom:736.601333pt;}
.yb3{bottom:740.332800pt;}
.y1af{bottom:741.052000pt;}
.y145{bottom:742.795040pt;}
.y17a{bottom:745.345333pt;}
.yb0{bottom:746.300000pt;}
.y78{bottom:752.077333pt;}
.y51{bottom:753.432000pt;}
.y20{bottom:754.653333pt;}
.y111{bottom:755.172000pt;}
.y1ae{bottom:758.074667pt;}
.y134{bottom:759.157333pt;}
.y144{bottom:761.506560pt;}
.y179{bottom:762.368000pt;}
.yaf{bottom:764.870667pt;}
.y77{bottom:770.646667pt;}
.y50{bottom:772.002667pt;}
.y110{bottom:773.742667pt;}
.y1ad{bottom:775.097333pt;}
.y178{bottom:779.390667pt;}
.y143{bottom:780.231360pt;}
.yae{bottom:783.440000pt;}
.y76{bottom:789.217333pt;}
.y1f{bottom:789.694667pt;}
.y4f{bottom:790.572000pt;}
.y1ac{bottom:792.120000pt;}
.y10f{bottom:792.312000pt;}
.y177{bottom:796.413333pt;}
.y142{bottom:798.796800pt;}
.yad{bottom:802.010667pt;}
.y1e{bottom:804.040000pt;}
.ya2{bottom:807.788000pt;}
.y4e{bottom:809.142667pt;}
.y10e{bottom:810.882667pt;}
.y75{bottom:811.772000pt;}
.y176{bottom:813.436000pt;}
.yac{bottom:820.581333pt;}
.y1d{bottom:822.244000pt;}
.y1ab{bottom:826.165333pt;}
.ya1{bottom:826.357333pt;}
.y4d{bottom:827.713333pt;}
.y10d{bottom:829.453333pt;}
.y175{bottom:830.458667pt;}
.y1c{bottom:832.733333pt;}
.yab{bottom:839.150667pt;}
.y1aa{bottom:843.188000pt;}
.ya0{bottom:844.928000pt;}
.y4c{bottom:846.282667pt;}
.y174{bottom:847.481333pt;}
.y10c{bottom:848.022667pt;}
.y141{bottom:848.869280pt;}
.y1b{bottom:850.937333pt;}
.y140{bottom:857.348800pt;}
.yaa{bottom:857.721333pt;}
.y1a9{bottom:860.210667pt;}
.y9f{bottom:863.498667pt;}
.y173{bottom:864.504000pt;}
.y4b{bottom:864.853333pt;}
.y10b{bottom:866.593333pt;}
.ya9{bottom:876.292000pt;}
.y1a8{bottom:877.233333pt;}
.y172{bottom:881.526667pt;}
.y9e{bottom:882.068000pt;}
.y4a{bottom:883.424000pt;}
.y10a{bottom:885.164000pt;}
.y1a{bottom:890.117333pt;}
.y1a7{bottom:894.256000pt;}
.ya8{bottom:894.861333pt;}
.y171{bottom:898.549333pt;}
.y9d{bottom:900.638667pt;}
.y49{bottom:901.993333pt;}
.y109{bottom:903.733333pt;}
.y1a6{bottom:911.278667pt;}
.ya7{bottom:913.432000pt;}
.y170{bottom:915.572000pt;}
.y9c{bottom:919.209333pt;}
.y48{bottom:920.564000pt;}
.y108{bottom:922.304000pt;}
.y19{bottom:924.628000pt;}
.y1a5{bottom:928.301333pt;}
.ya6{bottom:932.002667pt;}
.y16f{bottom:932.594667pt;}
.y47{bottom:939.134667pt;}
.y107{bottom:940.874667pt;}
.y9b{bottom:941.764000pt;}
.y1a4{bottom:945.324000pt;}
.ya5{bottom:950.572000pt;}
.y18{bottom:952.482667pt;}
.y16e{bottom:953.602667pt;}
.y46{bottom:957.704000pt;}
.y1a3{bottom:962.346667pt;}
.y106{bottom:963.429333pt;}
.ya4{bottom:969.142667pt;}
.y45{bottom:976.274667pt;}
.y1a2{bottom:979.369333pt;}
.y17{bottom:980.338667pt;}
.y16d{bottom:988.113333pt;}
.ya3{bottom:991.698667pt;}
.y44{bottom:994.845333pt;}
.y1a1{bottom:996.392000pt;}
.y43{bottom:1013.414667pt;}
.y42{bottom:1066.841333pt;}
.h6{height:28.947524pt;}
.h2{height:33.771789pt;}
.hc{height:38.231875pt;}
.h7{height:38.596538pt;}
.h3{height:38.947124pt;}
.hb{height:39.655625pt;}
.hf{height:43.421286pt;}
.he{height:44.390625pt;}
.h9{height:46.099251pt;}
.h8{height:48.245551pt;}
.h5{height:48.481423pt;}
.hd{height:49.125625pt;}
.h4{height:69.148877pt;}
.h11{height:373.908000pt;}
.h12{height:384.558667pt;}
.ha{height:400.818667pt;}
.h10{height:402.221333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:475.374667pt;}
.w3{width:507.330667pt;}
.w2{width:515.038667pt;}
.w5{width:523.024000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xa{left:-171.325173pt;}
.xe{left:-169.923840pt;}
.x0{left:0.000000pt;}
.xb{left:2.592747pt;}
.x10{left:3.994080pt;}
.xc{left:30.918987pt;}
.xf{left:32.320320pt;}
.x1{left:47.621333pt;}
.x14{left:76.309333pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x6{left:225.932000pt;}
.x3{left:239.924000pt;}
.x5{left:250.204000pt;}
.x9{left:337.166667pt;}
.x8{left:452.546667pt;}
.x7{left:457.248000pt;}
.x12{left:471.787253pt;}
.x11{left:505.924960pt;}
.xd{left:511.402667pt;}
.x13{left:522.192320pt;}
}




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