
    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_8ecc83756147716aa8f43b28.woff')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_1f8f7aef45f5501071b6916c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.974000;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_58c9bb65d6062b1f1d5f515a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938000;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_a6ea7a38796842c6820f922c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_3505c72804421beb8a5c2b58.woff')format("woff");}.ff5{font-family:ff5;line-height:0.803000;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_814f835638155eda143c7c52.woff')format("woff");}.ff6{font-family:ff6;line-height:0.431000;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_d5ad73cd5fb84ce1fb85f760.woff')format("woff");}.ff7{font-family:ff7;line-height:0.921000;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_1ae6d60f5ede993df43ed4b8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_001af0863d36053349efb886.woff')format("woff");}.ff9{font-family:ff9;line-height:0.968000;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_b485302b3c6cab610e195504.woff')format("woff");}.ffa{font-family:ffa;line-height:0.968000;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_084f3bd34c86fdf21af2d8d7.woff')format("woff");}.ffb{font-family:ffb;line-height:0.974000;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_72f0eae2e3d22bf5ee2149f5.woff')format("woff");}.ffc{font-family:ffc;line-height:0.945000;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_9fdcca400448be73225a0a95.woff')format("woff");}.ffd{font-family:ffd;line-height:0.938000;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_8d718c59048dce167479d3d1.woff')format("woff");}.ffe{font-family:ffe;line-height:0.964000;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_d92ee7bd46968fdd3037273d.woff')format("woff");}.fff{font-family:fff;line-height:0.922000;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;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff12;src:url('chunks/assets/font_633146e524b171d8a39ed28c.woff')format("woff");}.ff12{font-family:ff12;line-height:0.933000;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_c03e2c9a8cc2a8931bea6af7.woff')format("woff");}.ff13{font-family:ff13;line-height:0.964000;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_b637a5520ef84020e0d4c2eb.woff')format("woff");}.ff14{font-family:ff14;line-height:0.699000;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_41c4372a09605609da0a461b.woff')format("woff");}.ff15{font-family:ff15;line-height:0.697000;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_0e36684b7d6d269f9273cd0e.woff')format("woff");}.ff16{font-family:ff16;line-height:0.714000;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_488a546c082890b479e57374.woff')format("woff");}.ff17{font-family:ff17;line-height:0.685000;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_a6e890f894f45ab95dac7612.woff')format("woff");}.ff18{font-family:ff18;line-height:0.635000;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;}
.m15{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m23{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);}
.m6{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);}
.m11{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);}
.m12{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);}
.m2{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);}
.m7{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);}
.mc{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);}
.m1d{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);}
.m13{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);}
.m18{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);}
.m20{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);}
.m1c{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);}
.m19{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);}
.m1f{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);}
.m22{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);}
.md{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);}
.m1b{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);}
.m5{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);}
.m16{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);}
.m3{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);}
.ma{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);}
.m8{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);}
.m17{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);}
.m21{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);}
.mb{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);}
.m1e{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);}
.mf{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);}
.m9{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);}
.m14{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);}
.m10{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);}
.m1{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);}
.me{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);}
.v3{vertical-align:-37.902000px;}
.v2{vertical-align:-22.854000px;}
.v6{vertical-align:-9.822000px;}
.v5{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:23.754000px;}
.v1{vertical-align:26.034000px;}
.lsb{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.404496px;}
.lsf{letter-spacing:1.106496px;}
.ls11{letter-spacing:1.376496px;}
.ls0{letter-spacing:2.984037px;}
.lsd{letter-spacing:2.987421px;}
.ls7{letter-spacing:2.987468px;}
.ls4{letter-spacing:2.987674px;}
.ls5{letter-spacing:2.987808px;}
.ls2{letter-spacing:2.989654px;}
.ls3{letter-spacing:2.990234px;}
.ls10{letter-spacing:2.990496px;}
.ls8{letter-spacing:5.975804px;}
.lsa{letter-spacing:8.966400px;}
.ls18{letter-spacing:10.930918px;}
.ls1f{letter-spacing:13.395802px;}
.ls9{letter-spacing:13.449600px;}
.lsc{letter-spacing:16.101832px;}
.lse{letter-spacing:16.357219px;}
.ls6{letter-spacing:16.363650px;}
.ls1c{letter-spacing:16.435663px;}
.ls1e{letter-spacing:16.437961px;}
.ls26{letter-spacing:21.621543px;}
.ls24{letter-spacing:21.627543px;}
.ls13{letter-spacing:21.665473px;}
.ls12{letter-spacing:21.730927px;}
.ls29{letter-spacing:22.635543px;}
.ls28{letter-spacing:22.641543px;}
.ls22{letter-spacing:24.525543px;}
.ls15{letter-spacing:26.247295px;}
.ls17{letter-spacing:26.312749px;}
.ls1a{letter-spacing:27.294568px;}
.ls20{letter-spacing:27.644915px;}
.ls25{letter-spacing:27.687296px;}
.ls27{letter-spacing:28.734569px;}
.ls19{letter-spacing:29.716388px;}
.ls23{letter-spacing:30.632753px;}
.ls1b{letter-spacing:32.102434px;}
.ls21{letter-spacing:33.774574px;}
.ls16{letter-spacing:35.345484px;}
.ls1{letter-spacing:35.865600px;}
.ls1d{letter-spacing:192.585961px;}
.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;}
}
.ws65{word-spacing:-42.637126px;}
.ws68{word-spacing:-31.771663px;}
.ws66{word-spacing:-31.706208px;}
.ws72{word-spacing:-22.379985px;}
.ws2{word-spacing:-17.932800px;}
.ws22{word-spacing:-16.363650px;}
.ws2f{word-spacing:-13.449600px;}
.ws63{word-spacing:-9.320735px;}
.ws70{word-spacing:-8.966400px;}
.ws8f{word-spacing:-4.843640px;}
.ws49{word-spacing:-4.516367px;}
.ws16{word-spacing:-4.450913px;}
.ws33{word-spacing:-4.423394px;}
.ws6a{word-spacing:-3.992731px;}
.ws38{word-spacing:-3.796367px;}
.ws2e{word-spacing:-3.730912px;}
.ws25{word-spacing:-3.469094px;}
.ws88{word-spacing:-3.403639px;}
.ws6b{word-spacing:-3.076366px;}
.ws6c{word-spacing:-3.010912px;}
.ws34{word-spacing:-2.510575px;}
.ws35{word-spacing:-2.450800px;}
.ws20{word-spacing:-2.160002px;}
.ws12{word-spacing:-2.094547px;}
.ws45{word-spacing:-1.636365px;}
.ws19{word-spacing:-1.112728px;}
.ws5e{word-spacing:-0.916364px;}
.ws5b{word-spacing:-0.850910px;}
.ws95{word-spacing:-0.654546px;}
.ws92{word-spacing:-0.523637px;}
.ws9{word-spacing:-0.484186px;}
.ws5c{word-spacing:-0.458182px;}
.ws53{word-spacing:-0.430387px;}
.ws2c{word-spacing:-0.392728px;}
.ws13{word-spacing:-0.327273px;}
.ws11{word-spacing:-0.261818px;}
.ws51{word-spacing:-0.215194px;}
.ws17{word-spacing:-0.196364px;}
.ws58{word-spacing:-0.179327px;}
.ws1f{word-spacing:-0.130909px;}
.wsb{word-spacing:-0.107597px;}
.ws8a{word-spacing:-0.086077px;}
.wsc{word-spacing:-0.065455px;}
.ws2a{word-spacing:-0.055637px;}
.ws8{word-spacing:-0.053798px;}
.ws91{word-spacing:-0.006431px;}
.ws1{word-spacing:0.000000px;}
.ws30{word-spacing:0.053798px;}
.ws23{word-spacing:0.065455px;}
.ws6{word-spacing:0.107597px;}
.ws3c{word-spacing:0.130909px;}
.ws4c{word-spacing:0.161395px;}
.ws18{word-spacing:0.196364px;}
.wsd{word-spacing:0.215194px;}
.ws10{word-spacing:0.261818px;}
.ws21{word-spacing:0.327273px;}
.ws5a{word-spacing:0.392728px;}
.ws1a{word-spacing:0.589091px;}
.ws8e{word-spacing:0.654546px;}
.ws96{word-spacing:0.785455px;}
.ws44{word-spacing:0.916364px;}
.ws15{word-spacing:1.112728px;}
.ws78{word-spacing:1.178183px;}
.ws27{word-spacing:1.243637px;}
.ws28{word-spacing:1.309092px;}
.ws37{word-spacing:1.374547px;}
.wsa{word-spacing:1.398758px;}
.ws89{word-spacing:1.440001px;}
.ws90{word-spacing:1.636365px;}
.ws97{word-spacing:1.963638px;}
.ws2d{word-spacing:2.356366px;}
.ws59{word-spacing:2.391024px;}
.ws14{word-spacing:2.487275px;}
.ws39{word-spacing:2.552729px;}
.ws7{word-spacing:2.582323px;}
.ws5d{word-spacing:2.618184px;}
.ws4a{word-spacing:2.636122px;}
.ws86{word-spacing:2.814548px;}
.ws2b{word-spacing:2.880002px;}
.ws32{word-spacing:2.929004px;}
.ws8c{word-spacing:2.945457px;}
.ws48{word-spacing:3.076366px;}
.ws40{word-spacing:3.207275px;}
.ws62{word-spacing:3.272730px;}
.ws29{word-spacing:3.338185px;}
.ws7c{word-spacing:3.469094px;}
.ws82{word-spacing:3.600003px;}
.ws5{word-spacing:3.765888px;}
.ws71{word-spacing:3.825638px;}
.ws60{word-spacing:3.927276px;}
.ws5f{word-spacing:3.992731px;}
.ws41{word-spacing:4.189094px;}
.ws8d{word-spacing:4.385458px;}
.ws85{word-spacing:4.450913px;}
.ws1b{word-spacing:4.465267px;}
.ws26{word-spacing:4.581822px;}
.ws36{word-spacing:4.647277px;}
.ws94{word-spacing:5.170913px;}
.ws61{word-spacing:5.236368px;}
.ws93{word-spacing:5.563641px;}
.ws47{word-spacing:7.330915px;}
.ws8b{word-spacing:7.461824px;}
.ws84{word-spacing:7.527279px;}
.ws52{word-spacing:11.889446px;}
.ws4{word-spacing:13.395802px;}
.ws57{word-spacing:14.764573px;}
.ws1c{word-spacing:14.884124px;}
.ws7f{word-spacing:16.036377px;}
.ws3f{word-spacing:16.560014px;}
.ws7d{word-spacing:17.083651px;}
.ws87{word-spacing:17.410924px;}
.ws31{word-spacing:17.813129px;}
.ws1e{word-spacing:17.861069px;}
.ws69{word-spacing:18.065470px;}
.ws67{word-spacing:18.196379px;}
.ws24{word-spacing:18.523652px;}
.ws79{word-spacing:18.589106px;}
.ws7b{word-spacing:18.916379px;}
.ws43{word-spacing:18.981834px;}
.ws7e{word-spacing:19.047289px;}
.ws80{word-spacing:19.243652px;}
.ws7a{word-spacing:19.570925px;}
.ws3{word-spacing:20.874955px;}
.ws81{word-spacing:21.433223px;}
.ws77{word-spacing:21.469109px;}
.ws83{word-spacing:22.058200px;}
.ws76{word-spacing:24.610930px;}
.ws46{word-spacing:25.330930px;}
.ws0{word-spacing:25.719808px;}
.ws64{word-spacing:26.181840px;}
.ws4b{word-spacing:27.060595px;}
.ws42{word-spacing:29.520025px;}
.ws6d{word-spacing:32.017117px;}
.ws6e{word-spacing:32.046797px;}
.ws3d{word-spacing:34.995547px;}
.ws3b{word-spacing:35.051184px;}
.ws3e{word-spacing:35.496278px;}
.wsf{word-spacing:35.793869px;}
.ws6f{word-spacing:39.223944px;}
.ws3a{word-spacing:41.894510px;}
.wse{word-spacing:42.952523px;}
.ws75{word-spacing:58.263667px;}
.ws1d{word-spacing:71.659469px;}
.ws74{word-spacing:71.713267px;}
.ws73{word-spacing:93.501619px;}
.ws4d{word-spacing:107.381606px;}
.ws56{word-spacing:156.642651px;}
.ws55{word-spacing:157.131036px;}
.ws4f{word-spacing:212.503680px;}
.ws54{word-spacing:316.334592px;}
.ws4e{word-spacing:554.769101px;}
.ws50{word-spacing:640.685146px;}
._39{margin-left:-10.930918px;}
._25{margin-left:-7.198200px;}
._9{margin-left:-5.968917px;}
._7{margin-left:-4.465267px;}
._1{margin-left:-2.788895px;}
._3{margin-left:-1.237363px;}
._2{width:1.002797px;}
._b{width:3.012710px;}
._a{width:5.361003px;}
._31{width:7.658210px;}
._c{width:10.472755px;}
._e{width:13.449600px;}
._4{width:15.870528px;}
._28{width:17.095822px;}
._8{width:18.916379px;}
._6{width:20.604787px;}
._2c{width:21.730927px;}
._24{width:23.105474px;}
._5{width:24.370675px;}
._26{width:26.946317px;}
._49{width:28.713576px;}
._0{width:30.161381px;}
._2b{width:31.745481px;}
._23{width:33.447301px;}
._22{width:35.865600px;}
._2d{width:42.211943px;}
._4b{width:45.112368px;}
._27{width:46.565192px;}
._4a{width:54.502118px;}
._11{width:71.282880px;}
._33{width:72.466445px;}
._43{width:75.266256px;}
._d{width:77.254502px;}
._13{width:82.042560px;}
._3f{width:87.529997px;}
._41{width:89.681933px;}
._42{width:92.963635px;}
._44{width:94.147200px;}
._1f{width:100.603008px;}
._40{width:111.468163px;}
._46{width:112.815418px;}
._17{width:125.619264px;}
._32{width:128.954765px;}
._15{width:131.967475px;}
._21{width:134.549798px;}
._3b{width:137.347315px;}
._48{width:142.673357px;}
._45{width:157.844678px;}
._47{width:159.458630px;}
._19{width:160.803418px;}
._38{width:166.742453px;}
._36{width:175.275187px;}
._12{width:185.335488px;}
._3c{width:187.379827px;}
._3d{width:192.159263px;}
._20{width:196.525555px;}
._3a{width:202.012992px;}
._f{width:206.316864px;}
._18{width:211.526687px;}
._1a{width:221.918400px;}
._1b{width:228.159014px;}
._10{width:234.614822px;}
._3e{width:241.178227px;}
._14{width:246.934656px;}
._1c{width:340.382477px;}
._2e{width:342.373018px;}
._1e{width:355.284634px;}
._2a{width:387.132114px;}
._29{width:399.790042px;}
._37{width:411.342566px;}
._16{width:417.690778px;}
._1d{width:433.714079px;}
._34{width:435.498048px;}
._2f{width:467.508096px;}
._30{width:573.114355px;}
._35{width:698.195635px;}
.fc4{color:transparent;}
.fc2{color:rgb(47,79,79);}
.fc5{color:rgb(38,38,38);}
.fc3{color:rgb(38,38,38);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:27.349560px;}
.fs7{font-size:29.887800px;}
.fsb{font-size:31.909248px;}
.fs3{font-size:35.865600px;}
.fsd{font-size:42.977880px;}
.fsa{font-size:45.584640px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs9{font-size:55.636800px;}
.fs8{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs6{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y98{bottom:1.405570px;}
.y6b{bottom:8.925508px;}
.y99{bottom:11.796547px;}
.y6c{bottom:23.980904px;}
.y9a{bottom:25.430623px;}
.y9b{bottom:39.064707px;}
.y6d{bottom:45.619140px;}
.y9c{bottom:52.698787px;}
.y68{bottom:62.585396px;}
.y9d{bottom:66.332871px;}
.y69{bottom:77.640792px;}
.y9e{bottom:96.176681px;}
.y6a{bottom:99.279028px;}
.yea{bottom:112.339500px;}
.y2e{bottom:112.762500px;}
.y65{bottom:116.245284px;}
.y96{bottom:117.186000px;}
.y60{bottom:117.195000px;}
.y95{bottom:127.911000px;}
.y5f{bottom:127.920000px;}
.y2d{bottom:129.804000px;}
.y11d{bottom:131.796000px;}
.ye9{bottom:132.663000px;}
.y66{bottom:136.353274px;}
.y94{bottom:144.349500px;}
.y5e{bottom:144.358500px;}
.ybe{bottom:146.019000px;}
.y2c{bottom:146.242500px;}
.y5d{bottom:150.072000px;}
.y11c{bottom:152.119500px;}
.ye8{bottom:152.986500px;}
.y93{bottom:160.788000px;}
.y2b{bottom:162.727500px;}
.ybd{bottom:166.342500px;}
.y92{bottom:166.501500px;}
.y5c{bottom:166.510500px;}
.y67{bottom:169.526783px;}
.y11b{bottom:172.444500px;}
.ye7{bottom:173.310000px;}
.y91{bottom:182.940000px;}
.y5b{bottom:182.949000px;}
.ybc{bottom:186.667500px;}
.y2a{bottom:188.902500px;}
.y11a{bottom:192.768000px;}
.ye6{bottom:193.633500px;}
.y90{bottom:199.378500px;}
.y29{bottom:204.736500px;}
.ybb{bottom:206.991000px;}
.y5a{bottom:211.707000px;}
.y119{bottom:213.091500px;}
.ye5{bottom:213.958500px;}
.y28{bottom:215.461500px;}
.y8f{bottom:215.817000px;}
.yba{bottom:227.314500px;}
.y59{bottom:232.030500px;}
.y118{bottom:233.415000px;}
.ye4{bottom:234.282000px;}
.y8e{bottom:239.941500px;}
.yb9{bottom:247.638000px;}
.y58{bottom:252.354000px;}
.y27{bottom:252.666000px;}
.y117{bottom:253.738500px;}
.ye3{bottom:254.605500px;}
.y8d{bottom:260.266500px;}
.yb8{bottom:267.961500px;}
.y57{bottom:272.677500px;}
.y26{bottom:272.989500px;}
.y116{bottom:274.063500px;}
.ye2{bottom:274.929000px;}
.y8b{bottom:280.590000px;}
.y8c{bottom:286.528500px;}
.yb7{bottom:288.286500px;}
.y56{bottom:293.002500px;}
.y25{bottom:293.313000px;}
.y115{bottom:294.387000px;}
.ye1{bottom:295.252500px;}
.y8a{bottom:300.913500px;}
.yb6{bottom:308.610000px;}
.y55{bottom:313.326000px;}
.y24{bottom:313.636500px;}
.y114{bottom:314.710500px;}
.y88{bottom:321.237000px;}
.y89{bottom:327.175500px;}
.yb5{bottom:328.933500px;}
.ye0{bottom:331.798500px;}
.y54{bottom:333.649500px;}
.y23{bottom:333.961500px;}
.y113{bottom:335.034000px;}
.y86{bottom:341.560500px;}
.y87{bottom:347.499000px;}
.y53{bottom:353.973000px;}
.y22{bottom:354.285000px;}
.y112{bottom:355.357500px;}
.yb4{bottom:359.836500px;}
.y85{bottom:361.885500px;}
.y52{bottom:374.296500px;}
.y21{bottom:374.608500px;}
.y111{bottom:375.682500px;}
.y84{bottom:382.209000px;}
.ydf{bottom:383.382000px;}
.y51{bottom:394.621500px;}
.y20{bottom:394.932000px;}
.y110{bottom:396.006000px;}
.y83{bottom:402.532500px;}
.yb3{bottom:403.680000px;}
.yde{bottom:403.705500px;}
.y50{bottom:414.945000px;}
.y1f{bottom:415.255500px;}
.y10f{bottom:416.329500px;}
.y82{bottom:422.856000px;}
.yb2{bottom:424.003500px;}
.ydd{bottom:424.029000px;}
.y4f{bottom:435.268500px;}
.y1e{bottom:435.580500px;}
.y10e{bottom:436.653000px;}
.y80{bottom:443.179500px;}
.yb1{bottom:444.327000px;}
.ydc{bottom:444.352500px;}
.y81{bottom:449.118000px;}
.y4e{bottom:455.592000px;}
.y1d{bottom:455.904000px;}
.y10d{bottom:456.976500px;}
.y7f{bottom:463.503000px;}
.yb0{bottom:464.650500px;}
.ydb{bottom:464.677500px;}
.y4d{bottom:475.915500px;}
.y1c{bottom:476.227500px;}
.y10c{bottom:477.301500px;}
.y7e{bottom:483.828000px;}
.yaf{bottom:484.974000px;}
.yda{bottom:485.001000px;}
.y4c{bottom:496.240500px;}
.y1b{bottom:496.551000px;}
.y10b{bottom:497.625000px;}
.y7d{bottom:504.151500px;}
.yae{bottom:505.299000px;}
.yd9{bottom:505.324500px;}
.y4a{bottom:516.564000px;}
.y1a{bottom:516.874500px;}
.y10a{bottom:517.948500px;}
.y4b{bottom:522.502500px;}
.y7c{bottom:524.475000px;}
.yad{bottom:525.622500px;}
.yd8{bottom:525.648000px;}
.y49{bottom:536.887500px;}
.y19{bottom:537.199500px;}
.y109{bottom:538.272000px;}
.y7b{bottom:544.798500px;}
.yab{bottom:545.946000px;}
.yd7{bottom:545.971500px;}
.yac{bottom:551.884500px;}
.y48{bottom:557.211000px;}
.y18{bottom:557.523000px;}
.y108{bottom:558.595500px;}
.yaa{bottom:566.269500px;}
.yd6{bottom:566.296500px;}
.y7a{bottom:575.701500px;}
.y47{bottom:577.534500px;}
.y17{bottom:577.846500px;}
.y107{bottom:578.920500px;}
.ya9{bottom:586.593000px;}
.yd5{bottom:586.620000px;}
.y46{bottom:597.859500px;}
.y16{bottom:598.170000px;}
.y106{bottom:599.244000px;}
.ya8{bottom:606.916500px;}
.yd4{bottom:606.943500px;}
.y79{bottom:612.844500px;}
.y45{bottom:618.183000px;}
.y105{bottom:619.567500px;}
.ya7{bottom:627.241500px;}
.yd3{bottom:627.267000px;}
.y15{bottom:629.073000px;}
.y104{bottom:639.891000px;}
.ya6{bottom:647.565000px;}
.yd2{bottom:647.590500px;}
.y44{bottom:654.727500px;}
.y103{bottom:660.214500px;}
.y78{bottom:664.204500px;}
.y14{bottom:666.216000px;}
.ya5{bottom:667.888500px;}
.yd1{bottom:667.915500px;}
.y102{bottom:680.539500px;}
.y77{bottom:684.528000px;}
.ya4{bottom:688.212000px;}
.y101{bottom:700.863000px;}
.yd0{bottom:704.460000px;}
.y76{bottom:704.851500px;}
.y43{bottom:706.311000px;}
.ya3{bottom:708.535500px;}
.y100{bottom:721.186500px;}
.y75{bottom:725.176500px;}
.y42{bottom:726.634500px;}
.ya2{bottom:728.860500px;}
.y13{bottom:740.370000px;}
.yff{bottom:741.510000px;}
.y73{bottom:745.500000px;}
.y41{bottom:746.959500px;}
.ya1{bottom:749.184000px;}
.y74{bottom:751.438500px;}
.ycf{bottom:756.043500px;}
.y12{bottom:756.808500px;}
.yfe{bottom:761.833500px;}
.y72{bottom:765.823500px;}
.y40{bottom:767.283000px;}
.yce{bottom:776.367000px;}
.yfd{bottom:782.158500px;}
.y11{bottom:784.587000px;}
.y71{bottom:786.147000px;}
.y3f{bottom:787.606500px;}
.ycd{bottom:796.690500px;}
.y10{bottom:801.024000px;}
.yfc{bottom:802.482000px;}
.ya0{bottom:804.648000px;}
.y70{bottom:806.470500px;}
.y3e{bottom:807.930000px;}
.ycc{bottom:817.015500px;}
.yf{bottom:817.462500px;}
.y9f{bottom:822.580500px;}
.yfb{bottom:822.805500px;}
.y6f{bottom:826.795500px;}
.y3d{bottom:828.253500px;}
.ye{bottom:833.901000px;}
.ycb{bottom:837.339000px;}
.yfa{bottom:843.129000px;}
.y97{bottom:844.006500px;}
.y6e{bottom:847.119000px;}
.y3c{bottom:848.578500px;}
.yd{bottom:850.339500px;}
.yca{bottom:857.662500px;}
.yf9{bottom:863.452500px;}
.yc{bottom:866.778000px;}
.y3b{bottom:868.902000px;}
.yc9{bottom:877.986000px;}
.yb{bottom:883.216500px;}
.yf8{bottom:883.777500px;}
.y3a{bottom:889.225500px;}
.yc8{bottom:898.309500px;}
.ya{bottom:899.655000px;}
.yf7{bottom:904.101000px;}
.y64{bottom:910.431000px;}
.y9{bottom:916.093500px;}
.yc7{bottom:918.634500px;}
.y39{bottom:920.128500px;}
.yf6{bottom:924.424500px;}
.yf5{bottom:944.748000px;}
.yf4{bottom:965.071500px;}
.y8{bottom:966.937500px;}
.yc6{bottom:974.019000px;}
.y38{bottom:975.513000px;}
.yf3{bottom:985.396500px;}
.y7{bottom:986.364000px;}
.yc5{bottom:990.457500px;}
.y37{bottom:991.951500px;}
.yf2{bottom:1005.720000px;}
.y6{bottom:1005.792000px;}
.yc4{bottom:1006.896000px;}
.y36{bottom:1008.390000px;}
.yc3{bottom:1023.334500px;}
.y35{bottom:1024.828500px;}
.y5{bottom:1025.218500px;}
.yf1{bottom:1026.043500px;}
.yc2{bottom:1039.771500px;}
.y34{bottom:1041.267000px;}
.yf0{bottom:1046.367000px;}
.y4{bottom:1053.876000px;}
.yc1{bottom:1056.210000px;}
.y33{bottom:1057.705500px;}
.yef{bottom:1066.690500px;}
.y32{bottom:1074.144000px;}
.y3{bottom:1074.798000px;}
.yc0{bottom:1080.865500px;}
.yee{bottom:1087.015500px;}
.y31{bottom:1098.798000px;}
.yed{bottom:1107.339000px;}
.y63{bottom:1109.035500px;}
.ybf{bottom:1109.236500px;}
.y2{bottom:1113.652500px;}
.y62{bottom:1126.968000px;}
.y30{bottom:1127.169000px;}
.yec{bottom:1127.662500px;}
.y61{bottom:1144.900500px;}
.y2f{bottom:1145.101500px;}
.y1{bottom:1146.529500px;}
.yeb{bottom:1147.986000px;}
.hd{height:16.741622px;}
.he{height:21.070899px;}
.h1f{height:21.223259px;}
.h5{height:25.105920px;}
.h11{height:26.397082px;}
.h1d{height:29.643691px;}
.h20{height:33.350835px;}
.h17{height:35.195962px;}
.h14{height:37.551283px;}
.hc{height:37.658880px;}
.h15{height:38.089267px;}
.h7{height:39.595622px;}
.h21{height:39.810550px;}
.h18{height:40.447954px;}
.h1c{height:41.299684px;}
.h12{height:41.723369px;}
.h19{height:42.201574px;}
.h13{height:42.321125px;}
.hb{height:43.592764px;}
.h1a{height:43.994842px;}
.h6{height:45.687311px;}
.h22{height:46.210948px;}
.h10{height:46.212826px;}
.hf{height:47.073600px;}
.ha{height:48.174586px;}
.h9{height:50.068378px;}
.h23{height:57.419702px;}
.h16{height:58.949962px;}
.h4{height:59.508420px;}
.h8{height:60.081886px;}
.h3{height:61.229962px;}
.h2{height:72.098095px;}
.h1e{height:104.514390px;}
.h1b{height:184.617792px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:676.901610px;}
.w2{width:676.931904px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5f{left:2.704677px;}
.x60{left:6.611757px;}
.x5e{left:10.030452px;}
.x3b{left:18.721398px;}
.x5d{left:21.409824px;}
.x61{left:31.299710px;}
.x3c{left:43.289240px;}
.x3a{left:71.657220px;}
.x56{left:106.167000px;}
.x1{left:108.000000px;}
.x39{left:112.513500px;}
.x86{left:115.609500px;}
.x5a{left:116.967000px;}
.x7b{left:120.796500px;}
.x9{left:124.363500px;}
.x62{left:133.249989px;}
.x87{left:143.050500px;}
.x11{left:146.835000px;}
.x63{left:156.326374px;}
.x49{left:170.313000px;}
.x10{left:172.126500px;}
.x2{left:175.122000px;}
.x4a{left:177.883500px;}
.x3e{left:179.992839px;}
.x85{left:187.053000px;}
.x6c{left:189.349500px;}
.x59{left:190.987500px;}
.x4e{left:199.140000px;}
.x3d{left:204.877422px;}
.x2d{left:214.822500px;}
.x73{left:218.673000px;}
.x18{left:222.295500px;}
.x84{left:224.827500px;}
.x7a{left:226.926000px;}
.xa{left:237.502500px;}
.x76{left:238.663500px;}
.xb{left:245.112000px;}
.x64{left:248.997532px;}
.xc{left:252.841500px;}
.x3{left:256.383000px;}
.xd{left:260.449500px;}
.x4{left:263.992500px;}
.x43{left:266.182500px;}
.xe{left:268.179000px;}
.x4f{left:274.431000px;}
.xf{left:275.788500px;}
.x54{left:278.299500px;}
.x25{left:288.612000px;}
.x55{left:289.624500px;}
.x19{left:294.942000px;}
.x81{left:301.747500px;}
.x26{left:303.829500px;}
.x12{left:306.714000px;}
.x1a{left:310.159500px;}
.x2e{left:311.697000px;}
.x2f{left:319.552500px;}
.x13{left:321.931500px;}
.x3f{left:331.754059px;}
.x4b{left:346.888500px;}
.x65{left:357.174512px;}
.x1d{left:360.435000px;}
.x66{left:361.814586px;}
.x37{left:370.674000px;}
.x4c{left:372.537000px;}
.x1e{left:375.652500px;}
.x80{left:377.860500px;}
.x5b{left:378.958500px;}
.x44{left:380.239500px;}
.x1f{left:383.305500px;}
.x38{left:385.893000px;}
.x45{left:388.915500px;}
.x82{left:392.895000px;}
.x20{left:398.524500px;}
.x21{left:406.177500px;}
.x30{left:417.474000px;}
.x22{left:421.395000px;}
.x31{left:425.329500px;}
.x6f{left:426.679500px;}
.x70{left:432.588000px;}
.x41{left:434.391597px;}
.x77{left:444.921000px;}
.x40{left:461.802478px;}
.x1b{left:463.542000px;}
.x67{left:469.014677px;}
.x46{left:470.620500px;}
.x71{left:471.648000px;}
.x52{left:474.661500px;}
.x1c{left:478.761000px;}
.x53{left:480.969000px;}
.x14{left:491.557500px;}
.x15{left:499.165500px;}
.x68{left:503.080067px;}
.x32{left:505.446000px;}
.x50{left:507.091500px;}
.x16{left:513.571500px;}
.x6d{left:516.787500px;}
.x51{left:517.806000px;}
.x78{left:524.881500px;}
.x6e{left:528.654000px;}
.x17{left:530.404500px;}
.x74{left:538.264500px;}
.x79{left:540.099000px;}
.x72{left:545.794500px;}
.x27{left:553.845000px;}
.x7{left:556.000500px;}
.x8{left:568.728000px;}
.x69{left:580.854842px;}
.x5c{left:588.229500px;}
.x28{left:589.452000px;}
.x42{left:591.850898px;}
.x29{left:597.228000px;}
.x33{left:602.320500px;}
.x4d{left:603.460500px;}
.x34{left:610.177500px;}
.x57{left:611.794500px;}
.x58{left:618.100500px;}
.x7c{left:656.745000px;}
.x7d{left:665.418000px;}
.x23{left:672.711000px;}
.x2a{left:677.344500px;}
.x24{left:679.017000px;}
.x83{left:680.299500px;}
.x2b{left:685.120500px;}
.x6a{left:691.605000px;}
.x47{left:705.022500px;}
.x6b{left:706.977000px;}
.x35{left:708.097500px;}
.x48{left:713.698500px;}
.x7e{left:744.102000px;}
.x75{left:750.931500px;}
.x7f{left:753.225000px;}
.x36{left:762.601500px;}
.x5{left:769.594500px;}
.x6{left:777.202500px;}
.x2c{left:783.042000px;}
@media print{
.v3{vertical-align:-33.690667pt;}
.v2{vertical-align:-20.314667pt;}
.v6{vertical-align:-8.730667pt;}
.v5{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.114667pt;}
.v1{vertical-align:23.141333pt;}
.lsb{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.359552pt;}
.lsf{letter-spacing:0.983552pt;}
.ls11{letter-spacing:1.223552pt;}
.ls0{letter-spacing:2.652477pt;}
.lsd{letter-spacing:2.655485pt;}
.ls7{letter-spacing:2.655527pt;}
.ls4{letter-spacing:2.655710pt;}
.ls5{letter-spacing:2.655829pt;}
.ls2{letter-spacing:2.657470pt;}
.ls3{letter-spacing:2.657986pt;}
.ls10{letter-spacing:2.658219pt;}
.ls8{letter-spacing:5.311826pt;}
.lsa{letter-spacing:7.970133pt;}
.ls18{letter-spacing:9.716372pt;}
.ls1f{letter-spacing:11.907379pt;}
.ls9{letter-spacing:11.955200pt;}
.lsc{letter-spacing:14.312739pt;}
.lse{letter-spacing:14.539750pt;}
.ls6{letter-spacing:14.545467pt;}
.ls1c{letter-spacing:14.609478pt;}
.ls1e{letter-spacing:14.611521pt;}
.ls26{letter-spacing:19.219149pt;}
.ls24{letter-spacing:19.224483pt;}
.ls13{letter-spacing:19.258198pt;}
.ls12{letter-spacing:19.316380pt;}
.ls29{letter-spacing:20.120483pt;}
.ls28{letter-spacing:20.125816pt;}
.ls22{letter-spacing:21.800483pt;}
.ls15{letter-spacing:23.330929pt;}
.ls17{letter-spacing:23.389110pt;}
.ls1a{letter-spacing:24.261838pt;}
.ls20{letter-spacing:24.573258pt;}
.ls25{letter-spacing:24.610930pt;}
.ls27{letter-spacing:25.541839pt;}
.ls19{letter-spacing:26.414567pt;}
.ls23{letter-spacing:27.229114pt;}
.ls1b{letter-spacing:28.535497pt;}
.ls21{letter-spacing:30.021843pt;}
.ls16{letter-spacing:31.418208pt;}
.ls1{letter-spacing:31.880533pt;}
.ls1d{letter-spacing:171.187521pt;}
.ws65{word-spacing:-37.899668pt;}
.ws68{word-spacing:-28.241478pt;}
.ws66{word-spacing:-28.183296pt;}
.ws72{word-spacing:-19.893320pt;}
.ws2{word-spacing:-15.940267pt;}
.ws22{word-spacing:-14.545467pt;}
.ws2f{word-spacing:-11.955200pt;}
.ws63{word-spacing:-8.285098pt;}
.ws70{word-spacing:-7.970133pt;}
.ws8f{word-spacing:-4.305458pt;}
.ws49{word-spacing:-4.014549pt;}
.ws16{word-spacing:-3.956367pt;}
.ws33{word-spacing:-3.931906pt;}
.ws6a{word-spacing:-3.549094pt;}
.ws38{word-spacing:-3.374548pt;}
.ws2e{word-spacing:-3.316366pt;}
.ws25{word-spacing:-3.083639pt;}
.ws88{word-spacing:-3.025457pt;}
.ws6b{word-spacing:-2.734548pt;}
.ws6c{word-spacing:-2.676366pt;}
.ws34{word-spacing:-2.231622pt;}
.ws35{word-spacing:-2.178489pt;}
.ws20{word-spacing:-1.920002pt;}
.ws12{word-spacing:-1.861820pt;}
.ws45{word-spacing:-1.454547pt;}
.ws19{word-spacing:-0.989092pt;}
.ws5e{word-spacing:-0.814546pt;}
.ws5b{word-spacing:-0.756364pt;}
.ws95{word-spacing:-0.581819pt;}
.ws92{word-spacing:-0.465455pt;}
.ws9{word-spacing:-0.430387pt;}
.ws5c{word-spacing:-0.407273pt;}
.ws53{word-spacing:-0.382566pt;}
.ws2c{word-spacing:-0.349091pt;}
.ws13{word-spacing:-0.290909pt;}
.ws11{word-spacing:-0.232727pt;}
.ws51{word-spacing:-0.191283pt;}
.ws17{word-spacing:-0.174546pt;}
.ws58{word-spacing:-0.159402pt;}
.ws1f{word-spacing:-0.116364pt;}
.wsb{word-spacing:-0.095642pt;}
.ws8a{word-spacing:-0.076513pt;}
.wsc{word-spacing:-0.058182pt;}
.ws2a{word-spacing:-0.049455pt;}
.ws8{word-spacing:-0.047821pt;}
.ws91{word-spacing:-0.005716pt;}
.ws1{word-spacing:0.000000pt;}
.ws30{word-spacing:0.047821pt;}
.ws23{word-spacing:0.058182pt;}
.ws6{word-spacing:0.095642pt;}
.ws3c{word-spacing:0.116364pt;}
.ws4c{word-spacing:0.143462pt;}
.ws18{word-spacing:0.174546pt;}
.wsd{word-spacing:0.191283pt;}
.ws10{word-spacing:0.232727pt;}
.ws21{word-spacing:0.290909pt;}
.ws5a{word-spacing:0.349091pt;}
.ws1a{word-spacing:0.523637pt;}
.ws8e{word-spacing:0.581819pt;}
.ws96{word-spacing:0.698182pt;}
.ws44{word-spacing:0.814546pt;}
.ws15{word-spacing:0.989092pt;}
.ws78{word-spacing:1.047274pt;}
.ws27{word-spacing:1.105455pt;}
.ws28{word-spacing:1.163637pt;}
.ws37{word-spacing:1.221819pt;}
.wsa{word-spacing:1.243341pt;}
.ws89{word-spacing:1.280001pt;}
.ws90{word-spacing:1.454547pt;}
.ws97{word-spacing:1.745456pt;}
.ws2d{word-spacing:2.094547pt;}
.ws59{word-spacing:2.125355pt;}
.ws14{word-spacing:2.210911pt;}
.ws39{word-spacing:2.269093pt;}
.ws7{word-spacing:2.295398pt;}
.ws5d{word-spacing:2.327275pt;}
.ws4a{word-spacing:2.343219pt;}
.ws86{word-spacing:2.501820pt;}
.ws2b{word-spacing:2.560002pt;}
.ws32{word-spacing:2.603559pt;}
.ws8c{word-spacing:2.618184pt;}
.ws48{word-spacing:2.734548pt;}
.ws40{word-spacing:2.850911pt;}
.ws62{word-spacing:2.909093pt;}
.ws29{word-spacing:2.967275pt;}
.ws7c{word-spacing:3.083639pt;}
.ws82{word-spacing:3.200003pt;}
.ws5{word-spacing:3.347456pt;}
.ws71{word-spacing:3.400567pt;}
.ws60{word-spacing:3.490912pt;}
.ws5f{word-spacing:3.549094pt;}
.ws41{word-spacing:3.723639pt;}
.ws8d{word-spacing:3.898185pt;}
.ws85{word-spacing:3.956367pt;}
.ws1b{word-spacing:3.969126pt;}
.ws26{word-spacing:4.072731pt;}
.ws36{word-spacing:4.130913pt;}
.ws94{word-spacing:4.596367pt;}
.ws61{word-spacing:4.654549pt;}
.ws93{word-spacing:4.945459pt;}
.ws47{word-spacing:6.516369pt;}
.ws8b{word-spacing:6.632733pt;}
.ws84{word-spacing:6.690915pt;}
.ws52{word-spacing:10.568397pt;}
.ws4{word-spacing:11.907379pt;}
.ws57{word-spacing:13.124065pt;}
.ws1c{word-spacing:13.230333pt;}
.ws7f{word-spacing:14.254557pt;}
.ws3f{word-spacing:14.720012pt;}
.ws7d{word-spacing:15.185467pt;}
.ws87{word-spacing:15.476377pt;}
.ws31{word-spacing:15.833892pt;}
.ws1e{word-spacing:15.876506pt;}
.ws69{word-spacing:16.058195pt;}
.ws67{word-spacing:16.174559pt;}
.ws24{word-spacing:16.465468pt;}
.ws79{word-spacing:16.523650pt;}
.ws7b{word-spacing:16.814559pt;}
.ws43{word-spacing:16.872741pt;}
.ws7e{word-spacing:16.930923pt;}
.ws80{word-spacing:17.105469pt;}
.ws7a{word-spacing:17.396378pt;}
.ws3{word-spacing:18.555515pt;}
.ws81{word-spacing:19.051754pt;}
.ws77{word-spacing:19.083652pt;}
.ws83{word-spacing:19.607289pt;}
.ws76{word-spacing:21.876382pt;}
.ws46{word-spacing:22.516382pt;}
.ws0{word-spacing:22.862051pt;}
.ws64{word-spacing:23.272747pt;}
.ws4b{word-spacing:24.053862pt;}
.ws42{word-spacing:26.240022pt;}
.ws6d{word-spacing:28.459660pt;}
.ws6e{word-spacing:28.486042pt;}
.ws3d{word-spacing:31.107153pt;}
.ws3b{word-spacing:31.156608pt;}
.ws3e{word-spacing:31.552247pt;}
.wsf{word-spacing:31.816772pt;}
.ws6f{word-spacing:34.865728pt;}
.ws3a{word-spacing:37.239565pt;}
.wse{word-spacing:38.180020pt;}
.ws75{word-spacing:51.789926pt;}
.ws1d{word-spacing:63.697306pt;}
.ws74{word-spacing:63.745126pt;}
.ws73{word-spacing:83.112550pt;}
.ws4d{word-spacing:95.450317pt;}
.ws56{word-spacing:139.237912pt;}
.ws55{word-spacing:139.672032pt;}
.ws4f{word-spacing:188.892160pt;}
.ws54{word-spacing:281.186304pt;}
.ws4e{word-spacing:493.128090pt;}
.ws50{word-spacing:569.497907pt;}
._39{margin-left:-9.716372pt;}
._25{margin-left:-6.398400pt;}
._9{margin-left:-5.305704pt;}
._7{margin-left:-3.969126pt;}
._1{margin-left:-2.479018pt;}
._3{margin-left:-1.099878pt;}
._2{width:0.891375pt;}
._b{width:2.677965pt;}
._a{width:4.765336pt;}
._31{width:6.807298pt;}
._c{width:9.309116pt;}
._e{width:11.955200pt;}
._4{width:14.107136pt;}
._28{width:15.196286pt;}
._8{width:16.814559pt;}
._6{width:18.315366pt;}
._2c{width:19.316380pt;}
._24{width:20.538199pt;}
._5{width:21.662822pt;}
._26{width:23.952282pt;}
._49{width:25.523179pt;}
._0{width:26.810116pt;}
._2b{width:28.218205pt;}
._23{width:29.730934pt;}
._22{width:31.880533pt;}
._2d{width:37.521727pt;}
._4b{width:40.099883pt;}
._27{width:41.391282pt;}
._4a{width:48.446327pt;}
._11{width:63.362560pt;}
._33{width:64.414618pt;}
._43{width:66.903339pt;}
._d{width:68.670669pt;}
._13{width:72.926720pt;}
._3f{width:77.804442pt;}
._41{width:79.717274pt;}
._42{width:82.634342pt;}
._44{width:83.686400pt;}
._1f{width:89.424896pt;}
._40{width:99.082812pt;}
._46{width:100.280371pt;}
._17{width:111.661568pt;}
._32{width:114.626458pt;}
._15{width:117.304422pt;}
._21{width:119.599821pt;}
._3b{width:122.086502pt;}
._48{width:126.820762pt;}
._45{width:140.306381pt;}
._47{width:141.741005pt;}
._19{width:142.936371pt;}
._38{width:148.215514pt;}
._36{width:155.800166pt;}
._12{width:164.742656pt;}
._3c{width:166.559846pt;}
._3d{width:170.808234pt;}
._20{width:174.689382pt;}
._3a{width:179.567104pt;}
._f{width:183.392768pt;}
._18{width:188.023722pt;}
._1a{width:197.260800pt;}
._1b{width:202.808013pt;}
._10{width:208.546509pt;}
._3e{width:214.380646pt;}
._14{width:219.497472pt;}
._1c{width:302.562202pt;}
._2e{width:304.331571pt;}
._1e{width:315.808563pt;}
._2a{width:344.117434pt;}
._29{width:355.368926pt;}
._37{width:365.637837pt;}
._16{width:371.280691pt;}
._1d{width:385.523626pt;}
._34{width:387.109376pt;}
._2f{width:415.562752pt;}
._30{width:509.434982pt;}
._35{width:620.618342pt;}
.fsc{font-size:24.310720pt;}
.fs7{font-size:26.566933pt;}
.fsb{font-size:28.363776pt;}
.fs3{font-size:31.880533pt;}
.fsd{font-size:38.202560pt;}
.fsa{font-size:40.519680pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs9{font-size:49.454933pt;}
.fs8{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs6{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y98{bottom:1.249396pt;}
.y6b{bottom:7.933785pt;}
.y99{bottom:10.485819pt;}
.y6c{bottom:21.316359pt;}
.y9a{bottom:22.604998pt;}
.y9b{bottom:34.724184pt;}
.y6d{bottom:40.550347pt;}
.y9c{bottom:46.843366pt;}
.y68{bottom:55.631463pt;}
.y9d{bottom:58.962552pt;}
.y69{bottom:69.014037pt;}
.y9e{bottom:85.490383pt;}
.y6a{bottom:88.248025pt;}
.yea{bottom:99.857333pt;}
.y2e{bottom:100.233333pt;}
.y65{bottom:103.329141pt;}
.y96{bottom:104.165333pt;}
.y60{bottom:104.173333pt;}
.y95{bottom:113.698667pt;}
.y5f{bottom:113.706667pt;}
.y2d{bottom:115.381333pt;}
.y11d{bottom:117.152000pt;}
.ye9{bottom:117.922667pt;}
.y66{bottom:121.202910pt;}
.y94{bottom:128.310667pt;}
.y5e{bottom:128.318667pt;}
.ybe{bottom:129.794667pt;}
.y2c{bottom:129.993333pt;}
.y5d{bottom:133.397333pt;}
.y11c{bottom:135.217333pt;}
.ye8{bottom:135.988000pt;}
.y93{bottom:142.922667pt;}
.y2b{bottom:144.646667pt;}
.ybd{bottom:147.860000pt;}
.y92{bottom:148.001333pt;}
.y5c{bottom:148.009333pt;}
.y67{bottom:150.690474pt;}
.y11b{bottom:153.284000pt;}
.ye7{bottom:154.053333pt;}
.y91{bottom:162.613333pt;}
.y5b{bottom:162.621333pt;}
.ybc{bottom:165.926667pt;}
.y2a{bottom:167.913333pt;}
.y11a{bottom:171.349333pt;}
.ye6{bottom:172.118667pt;}
.y90{bottom:177.225333pt;}
.y29{bottom:181.988000pt;}
.ybb{bottom:183.992000pt;}
.y5a{bottom:188.184000pt;}
.y119{bottom:189.414667pt;}
.ye5{bottom:190.185333pt;}
.y28{bottom:191.521333pt;}
.y8f{bottom:191.837333pt;}
.yba{bottom:202.057333pt;}
.y59{bottom:206.249333pt;}
.y118{bottom:207.480000pt;}
.ye4{bottom:208.250667pt;}
.y8e{bottom:213.281333pt;}
.yb9{bottom:220.122667pt;}
.y58{bottom:224.314667pt;}
.y27{bottom:224.592000pt;}
.y117{bottom:225.545333pt;}
.ye3{bottom:226.316000pt;}
.y8d{bottom:231.348000pt;}
.yb8{bottom:238.188000pt;}
.y57{bottom:242.380000pt;}
.y26{bottom:242.657333pt;}
.y116{bottom:243.612000pt;}
.ye2{bottom:244.381333pt;}
.y8b{bottom:249.413333pt;}
.y8c{bottom:254.692000pt;}
.yb7{bottom:256.254667pt;}
.y56{bottom:260.446667pt;}
.y25{bottom:260.722667pt;}
.y115{bottom:261.677333pt;}
.ye1{bottom:262.446667pt;}
.y8a{bottom:267.478667pt;}
.yb6{bottom:274.320000pt;}
.y55{bottom:278.512000pt;}
.y24{bottom:278.788000pt;}
.y114{bottom:279.742667pt;}
.y88{bottom:285.544000pt;}
.y89{bottom:290.822667pt;}
.yb5{bottom:292.385333pt;}
.ye0{bottom:294.932000pt;}
.y54{bottom:296.577333pt;}
.y23{bottom:296.854667pt;}
.y113{bottom:297.808000pt;}
.y86{bottom:303.609333pt;}
.y87{bottom:308.888000pt;}
.y53{bottom:314.642667pt;}
.y22{bottom:314.920000pt;}
.y112{bottom:315.873333pt;}
.yb4{bottom:319.854667pt;}
.y85{bottom:321.676000pt;}
.y52{bottom:332.708000pt;}
.y21{bottom:332.985333pt;}
.y111{bottom:333.940000pt;}
.y84{bottom:339.741333pt;}
.ydf{bottom:340.784000pt;}
.y51{bottom:350.774667pt;}
.y20{bottom:351.050667pt;}
.y110{bottom:352.005333pt;}
.y83{bottom:357.806667pt;}
.yb3{bottom:358.826667pt;}
.yde{bottom:358.849333pt;}
.y50{bottom:368.840000pt;}
.y1f{bottom:369.116000pt;}
.y10f{bottom:370.070667pt;}
.y82{bottom:375.872000pt;}
.yb2{bottom:376.892000pt;}
.ydd{bottom:376.914667pt;}
.y4f{bottom:386.905333pt;}
.y1e{bottom:387.182667pt;}
.y10e{bottom:388.136000pt;}
.y80{bottom:393.937333pt;}
.yb1{bottom:394.957333pt;}
.ydc{bottom:394.980000pt;}
.y81{bottom:399.216000pt;}
.y4e{bottom:404.970667pt;}
.y1d{bottom:405.248000pt;}
.y10d{bottom:406.201333pt;}
.y7f{bottom:412.002667pt;}
.yb0{bottom:413.022667pt;}
.ydb{bottom:413.046667pt;}
.y4d{bottom:423.036000pt;}
.y1c{bottom:423.313333pt;}
.y10c{bottom:424.268000pt;}
.y7e{bottom:430.069333pt;}
.yaf{bottom:431.088000pt;}
.yda{bottom:431.112000pt;}
.y4c{bottom:441.102667pt;}
.y1b{bottom:441.378667pt;}
.y10b{bottom:442.333333pt;}
.y7d{bottom:448.134667pt;}
.yae{bottom:449.154667pt;}
.yd9{bottom:449.177333pt;}
.y4a{bottom:459.168000pt;}
.y1a{bottom:459.444000pt;}
.y10a{bottom:460.398667pt;}
.y4b{bottom:464.446667pt;}
.y7c{bottom:466.200000pt;}
.yad{bottom:467.220000pt;}
.yd8{bottom:467.242667pt;}
.y49{bottom:477.233333pt;}
.y19{bottom:477.510667pt;}
.y109{bottom:478.464000pt;}
.y7b{bottom:484.265333pt;}
.yab{bottom:485.285333pt;}
.yd7{bottom:485.308000pt;}
.yac{bottom:490.564000pt;}
.y48{bottom:495.298667pt;}
.y18{bottom:495.576000pt;}
.y108{bottom:496.529333pt;}
.yaa{bottom:503.350667pt;}
.yd6{bottom:503.374667pt;}
.y7a{bottom:511.734667pt;}
.y47{bottom:513.364000pt;}
.y17{bottom:513.641333pt;}
.y107{bottom:514.596000pt;}
.ya9{bottom:521.416000pt;}
.yd5{bottom:521.440000pt;}
.y46{bottom:531.430667pt;}
.y16{bottom:531.706667pt;}
.y106{bottom:532.661333pt;}
.ya8{bottom:539.481333pt;}
.yd4{bottom:539.505333pt;}
.y79{bottom:544.750667pt;}
.y45{bottom:549.496000pt;}
.y105{bottom:550.726667pt;}
.ya7{bottom:557.548000pt;}
.yd3{bottom:557.570667pt;}
.y15{bottom:559.176000pt;}
.y104{bottom:568.792000pt;}
.ya6{bottom:575.613333pt;}
.yd2{bottom:575.636000pt;}
.y44{bottom:581.980000pt;}
.y103{bottom:586.857333pt;}
.y78{bottom:590.404000pt;}
.y14{bottom:592.192000pt;}
.ya5{bottom:593.678667pt;}
.yd1{bottom:593.702667pt;}
.y102{bottom:604.924000pt;}
.y77{bottom:608.469333pt;}
.ya4{bottom:611.744000pt;}
.y101{bottom:622.989333pt;}
.yd0{bottom:626.186667pt;}
.y76{bottom:626.534667pt;}
.y43{bottom:627.832000pt;}
.ya3{bottom:629.809333pt;}
.y100{bottom:641.054667pt;}
.y75{bottom:644.601333pt;}
.y42{bottom:645.897333pt;}
.ya2{bottom:647.876000pt;}
.y13{bottom:658.106667pt;}
.yff{bottom:659.120000pt;}
.y73{bottom:662.666667pt;}
.y41{bottom:663.964000pt;}
.ya1{bottom:665.941333pt;}
.y74{bottom:667.945333pt;}
.ycf{bottom:672.038667pt;}
.y12{bottom:672.718667pt;}
.yfe{bottom:677.185333pt;}
.y72{bottom:680.732000pt;}
.y40{bottom:682.029333pt;}
.yce{bottom:690.104000pt;}
.yfd{bottom:695.252000pt;}
.y11{bottom:697.410667pt;}
.y71{bottom:698.797333pt;}
.y3f{bottom:700.094667pt;}
.ycd{bottom:708.169333pt;}
.y10{bottom:712.021333pt;}
.yfc{bottom:713.317333pt;}
.ya0{bottom:715.242667pt;}
.y70{bottom:716.862667pt;}
.y3e{bottom:718.160000pt;}
.ycc{bottom:726.236000pt;}
.yf{bottom:726.633333pt;}
.y9f{bottom:731.182667pt;}
.yfb{bottom:731.382667pt;}
.y6f{bottom:734.929333pt;}
.y3d{bottom:736.225333pt;}
.ye{bottom:741.245333pt;}
.ycb{bottom:744.301333pt;}
.yfa{bottom:749.448000pt;}
.y97{bottom:750.228000pt;}
.y6e{bottom:752.994667pt;}
.y3c{bottom:754.292000pt;}
.yd{bottom:755.857333pt;}
.yca{bottom:762.366667pt;}
.yf9{bottom:767.513333pt;}
.yc{bottom:770.469333pt;}
.y3b{bottom:772.357333pt;}
.yc9{bottom:780.432000pt;}
.yb{bottom:785.081333pt;}
.yf8{bottom:785.580000pt;}
.y3a{bottom:790.422667pt;}
.yc8{bottom:798.497333pt;}
.ya{bottom:799.693333pt;}
.yf7{bottom:803.645333pt;}
.y64{bottom:809.272000pt;}
.y9{bottom:814.305333pt;}
.yc7{bottom:816.564000pt;}
.y39{bottom:817.892000pt;}
.yf6{bottom:821.710667pt;}
.yf5{bottom:839.776000pt;}
.yf4{bottom:857.841333pt;}
.y8{bottom:859.500000pt;}
.yc6{bottom:865.794667pt;}
.y38{bottom:867.122667pt;}
.yf3{bottom:875.908000pt;}
.y7{bottom:876.768000pt;}
.yc5{bottom:880.406667pt;}
.y37{bottom:881.734667pt;}
.yf2{bottom:893.973333pt;}
.y6{bottom:894.037333pt;}
.yc4{bottom:895.018667pt;}
.y36{bottom:896.346667pt;}
.yc3{bottom:909.630667pt;}
.y35{bottom:910.958667pt;}
.y5{bottom:911.305333pt;}
.yf1{bottom:912.038667pt;}
.yc2{bottom:924.241333pt;}
.y34{bottom:925.570667pt;}
.yf0{bottom:930.104000pt;}
.y4{bottom:936.778667pt;}
.yc1{bottom:938.853333pt;}
.y33{bottom:940.182667pt;}
.yef{bottom:948.169333pt;}
.y32{bottom:954.794667pt;}
.y3{bottom:955.376000pt;}
.yc0{bottom:960.769333pt;}
.yee{bottom:966.236000pt;}
.y31{bottom:976.709333pt;}
.yed{bottom:984.301333pt;}
.y63{bottom:985.809333pt;}
.ybf{bottom:985.988000pt;}
.y2{bottom:989.913333pt;}
.y62{bottom:1001.749333pt;}
.y30{bottom:1001.928000pt;}
.yec{bottom:1002.366667pt;}
.y61{bottom:1017.689333pt;}
.y2f{bottom:1017.868000pt;}
.y1{bottom:1019.137333pt;}
.yeb{bottom:1020.432000pt;}
.hd{height:14.881442pt;}
.he{height:18.729688pt;}
.h1f{height:18.865119pt;}
.h5{height:22.316373pt;}
.h11{height:23.464073pt;}
.h1d{height:26.349948pt;}
.h20{height:29.645187pt;}
.h17{height:31.285299pt;}
.h14{height:33.378918pt;}
.hc{height:33.474560pt;}
.h15{height:33.857126pt;}
.h7{height:35.196109pt;}
.h21{height:35.387155pt;}
.h18{height:35.953737pt;}
.h1c{height:36.710830pt;}
.h12{height:37.087439pt;}
.h19{height:37.512510pt;}
.h13{height:37.618778pt;}
.hb{height:38.749123pt;}
.h1a{height:39.106526pt;}
.h6{height:40.610943pt;}
.h22{height:41.076398pt;}
.h10{height:41.078067pt;}
.hf{height:41.843200pt;}
.ha{height:42.821854pt;}
.h9{height:44.505225pt;}
.h23{height:51.039735pt;}
.h16{height:52.399966pt;}
.h4{height:52.896373pt;}
.h8{height:53.406121pt;}
.h3{height:54.426633pt;}
.h2{height:64.087196pt;}
.h1e{height:92.901680pt;}
.h1b{height:164.104704pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:601.690320pt;}
.w2{width:601.717248pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5f{left:2.404157pt;}
.x60{left:5.877117pt;}
.x5e{left:8.915957pt;}
.x3b{left:16.641243pt;}
.x5d{left:19.030955pt;}
.x61{left:27.821964pt;}
.x3c{left:38.479324pt;}
.x3a{left:63.695307pt;}
.x56{left:94.370667pt;}
.x1{left:96.000000pt;}
.x39{left:100.012000pt;}
.x86{left:102.764000pt;}
.x5a{left:103.970667pt;}
.x7b{left:107.374667pt;}
.x9{left:110.545333pt;}
.x62{left:118.444435pt;}
.x87{left:127.156000pt;}
.x11{left:130.520000pt;}
.x63{left:138.956777pt;}
.x49{left:151.389333pt;}
.x10{left:153.001333pt;}
.x2{left:155.664000pt;}
.x4a{left:158.118667pt;}
.x3e{left:159.993634pt;}
.x85{left:166.269333pt;}
.x6c{left:168.310667pt;}
.x59{left:169.766667pt;}
.x4e{left:177.013333pt;}
.x3d{left:182.113264pt;}
.x2d{left:190.953333pt;}
.x73{left:194.376000pt;}
.x18{left:197.596000pt;}
.x84{left:199.846667pt;}
.x7a{left:201.712000pt;}
.xa{left:211.113333pt;}
.x76{left:212.145333pt;}
.xb{left:217.877333pt;}
.x64{left:221.331140pt;}
.xc{left:224.748000pt;}
.x3{left:227.896000pt;}
.xd{left:231.510667pt;}
.x4{left:234.660000pt;}
.x43{left:236.606667pt;}
.xe{left:238.381333pt;}
.x4f{left:243.938667pt;}
.xf{left:245.145333pt;}
.x54{left:247.377333pt;}
.x25{left:256.544000pt;}
.x55{left:257.444000pt;}
.x19{left:262.170667pt;}
.x81{left:268.220000pt;}
.x26{left:270.070667pt;}
.x12{left:272.634667pt;}
.x1a{left:275.697333pt;}
.x2e{left:277.064000pt;}
.x2f{left:284.046667pt;}
.x13{left:286.161333pt;}
.x3f{left:294.892497pt;}
.x4b{left:308.345333pt;}
.x65{left:317.488455pt;}
.x1d{left:320.386667pt;}
.x66{left:321.612966pt;}
.x37{left:329.488000pt;}
.x4c{left:331.144000pt;}
.x1e{left:333.913333pt;}
.x80{left:335.876000pt;}
.x5b{left:336.852000pt;}
.x44{left:337.990667pt;}
.x1f{left:340.716000pt;}
.x38{left:343.016000pt;}
.x45{left:345.702667pt;}
.x82{left:349.240000pt;}
.x20{left:354.244000pt;}
.x21{left:361.046667pt;}
.x30{left:371.088000pt;}
.x22{left:374.573333pt;}
.x31{left:378.070667pt;}
.x6f{left:379.270667pt;}
.x70{left:384.522667pt;}
.x41{left:386.125864pt;}
.x77{left:395.485333pt;}
.x40{left:410.491092pt;}
.x1b{left:412.037333pt;}
.x67{left:416.901935pt;}
.x46{left:418.329333pt;}
.x71{left:419.242667pt;}
.x52{left:421.921333pt;}
.x1c{left:425.565333pt;}
.x53{left:427.528000pt;}
.x14{left:436.940000pt;}
.x15{left:443.702667pt;}
.x68{left:447.182282pt;}
.x32{left:449.285333pt;}
.x50{left:450.748000pt;}
.x16{left:456.508000pt;}
.x6d{left:459.366667pt;}
.x51{left:460.272000pt;}
.x78{left:466.561333pt;}
.x6e{left:469.914667pt;}
.x17{left:471.470667pt;}
.x74{left:478.457333pt;}
.x79{left:480.088000pt;}
.x72{left:485.150667pt;}
.x27{left:492.306667pt;}
.x7{left:494.222667pt;}
.x8{left:505.536000pt;}
.x69{left:516.315415pt;}
.x5c{left:522.870667pt;}
.x28{left:523.957333pt;}
.x42{left:526.089687pt;}
.x29{left:530.869333pt;}
.x33{left:535.396000pt;}
.x4d{left:536.409333pt;}
.x34{left:542.380000pt;}
.x57{left:543.817333pt;}
.x58{left:549.422667pt;}
.x7c{left:583.773333pt;}
.x7d{left:591.482667pt;}
.x23{left:597.965333pt;}
.x2a{left:602.084000pt;}
.x24{left:603.570667pt;}
.x83{left:604.710667pt;}
.x2b{left:608.996000pt;}
.x6a{left:614.760000pt;}
.x47{left:626.686667pt;}
.x6b{left:628.424000pt;}
.x35{left:629.420000pt;}
.x48{left:634.398667pt;}
.x7e{left:661.424000pt;}
.x75{left:667.494667pt;}
.x7f{left:669.533333pt;}
.x36{left:677.868000pt;}
.x5{left:684.084000pt;}
.x6{left:690.846667pt;}
.x2c{left:696.037333pt;}
}




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