
    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_7017d1a4ea56781c14fab88e.woff2')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_1f1c91ed10685d6a244c9744.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.058000;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_dc4dbbe63c519e6a6398d653.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.949000;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_a878413b94e3d51176a49a3c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.905000;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_c1cead64fdb70b355c038a39.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.905000;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_7e02b3364eb743f0899c05eb.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_533b9b9158b26d1ee6ee9653.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1178eac6a76c2c526e999ae1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.018000;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_ba4749a8bbfe1e797c40a032.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947000;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_2700615f398a3d1a464520a7.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_188409e34508e988c9c8a3b8.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_f161e025026cd54b0199c849.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.058000;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_52536198b33b1edcc8c4608d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.831000;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_35ae724e5475f8e4121bf5ef.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.930000;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_6be6cad2f405a511f2b4b511.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_c99a64cd99758dcd25ce2f2f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.905000;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_3155bf00bea2d83d9c08fe58.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.949000;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_1815d0e3c35af1d4f20f9bce.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m5{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);}
.m23{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);}
.m8{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);}
.m21{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);}
.m0{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);}
.m13{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);}
.m15{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);}
.m18{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);}
.m17{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);}
.m22{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);}
.m1d{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);}
.m6{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);}
.md{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);}
.mb{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);}
.mf{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);}
.m1c{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);}
.m1b{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);}
.m1a{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);}
.m9{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);}
.m1{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);}
.m20{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);}
.m7{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);}
.m25{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);}
.m3{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);}
.m28{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);}
.m4{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);}
.m19{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);}
.m10{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);}
.m16{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);}
.m11{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);}
.m1e{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);}
.ma{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);}
.m24{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);}
.mc{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);}
.m27{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);}
.m26{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);}
.m12{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);}
.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:-33.624000px;}
.v2{vertical-align:-20.172000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:24.546000px;}
.v1{vertical-align:26.898000px;}
.lsa{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000739px;}
.ls0{letter-spacing:0.001627px;}
.ls12{letter-spacing:0.001639px;}
.ls1c{letter-spacing:0.002184px;}
.ls1b{letter-spacing:0.002539px;}
.ls3{letter-spacing:0.003455px;}
.ls8{letter-spacing:2.243903px;}
.ls7{letter-spacing:2.310587px;}
.ls13{letter-spacing:2.312552px;}
.ls5{letter-spacing:2.315727px;}
.ls14{letter-spacing:2.812917px;}
.ls15{letter-spacing:2.818917px;}
.ls1{letter-spacing:3.087452px;}
.ls1f{letter-spacing:11.447299px;}
.ls9{letter-spacing:13.449720px;}
.ls19{letter-spacing:13.859539px;}
.lsb{letter-spacing:16.221079px;}
.ls11{letter-spacing:16.363639px;}
.ls6{letter-spacing:16.368001px;}
.ls10{letter-spacing:16.372039px;}
.ls16{letter-spacing:16.387639px;}
.ls17{letter-spacing:16.404001px;}
.ls1e{letter-spacing:16.434859px;}
.ls18{letter-spacing:16.485919px;}
.lse{letter-spacing:16.513039px;}
.lsd{letter-spacing:16.519099px;}
.ls1a{letter-spacing:16.568719px;}
.ls1d{letter-spacing:16.624639px;}
.lsc{letter-spacing:16.628839px;}
.ls4{letter-spacing:21.015452px;}
.ls2{letter-spacing:35.861176px;}
.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;}
}
.ws84{word-spacing:-86.077200px;}
.ws1{word-spacing:-77.469480px;}
.ws0{word-spacing:-77.056309px;}
.ws13{word-spacing:-65.454540px;}
.ws4a{word-spacing:-64.557900px;}
.ws52{word-spacing:-59.775840px;}
.ws5c{word-spacing:-52.363620px;}
.ws55{word-spacing:-49.090905px;}
.ws6{word-spacing:-47.820660px;}
.ws7b{word-spacing:-46.381578px;}
.ws70{word-spacing:-46.027397px;}
.ws71{word-spacing:-45.967621px;}
.ws73{word-spacing:-45.728518px;}
.ws30{word-spacing:-44.951432px;}
.ws7d{word-spacing:-44.891656px;}
.ws31{word-spacing:-44.831880px;}
.ws2f{word-spacing:-44.712328px;}
.ws72{word-spacing:-43.759331px;}
.ws60{word-spacing:-43.658178px;}
.ws15{word-spacing:-43.038600px;}
.ws74{word-spacing:-42.605883px;}
.ws2d{word-spacing:-41.305105px;}
.ws2e{word-spacing:-41.245330px;}
.ws9{word-spacing:-40.348710px;}
.ws3{word-spacing:-31.202994px;}
.ws1e{word-spacing:-28.472725px;}
.ws4d{word-spacing:-23.402252px;}
.ws4{word-spacing:-20.801987px;}
.ws88{word-spacing:-17.083635px;}
.ws7f{word-spacing:-17.018180px;}
.ws8e{word-spacing:-16.821817px;}
.ws99{word-spacing:-16.429090px;}
.ws56{word-spacing:-16.363635px;}
.ws3b{word-spacing:-15.905453px;}
.ws92{word-spacing:-15.709090px;}
.ws77{word-spacing:-15.643635px;}
.ws48{word-spacing:-15.512726px;}
.ws5f{word-spacing:-15.185453px;}
.ws59{word-spacing:-14.792726px;}
.ws67{word-spacing:-14.629620px;}
.ws68{word-spacing:-14.596362px;}
.ws3a{word-spacing:-14.465453px;}
.ws78{word-spacing:-14.399999px;}
.ws40{word-spacing:-14.203635px;}
.ws57{word-spacing:-14.138181px;}
.ws94{word-spacing:-14.072726px;}
.ws82{word-spacing:-13.876362px;}
.ws38{word-spacing:-13.810908px;}
.ws6f{word-spacing:-13.614544px;}
.ws3f{word-spacing:-13.549090px;}
.ws6a{word-spacing:-13.483635px;}
.ws18{word-spacing:-13.418181px;}
.ws91{word-spacing:-13.287272px;}
.ws2{word-spacing:-13.269472px;}
.ws8{word-spacing:-13.268183px;}
.ws5{word-spacing:-13.266657px;}
.ws6c{word-spacing:-13.221817px;}
.ws8d{word-spacing:-13.090908px;}
.ws35{word-spacing:-12.959999px;}
.ws69{word-spacing:-12.894544px;}
.ws98{word-spacing:-12.698181px;}
.ws61{word-spacing:-12.632726px;}
.ws83{word-spacing:-12.567272px;}
.ws36{word-spacing:-12.501817px;}
.ws3d{word-spacing:-12.436363px;}
.ws43{word-spacing:-12.370908px;}
.ws1c{word-spacing:-12.305454px;}
.ws34{word-spacing:-12.239999px;}
.ws20{word-spacing:-12.174544px;}
.ws19{word-spacing:-12.109090px;}
.ws5b{word-spacing:-12.082349px;}
.ws7c{word-spacing:-12.058949px;}
.ws39{word-spacing:-12.050160px;}
.ws1d{word-spacing:-12.043635px;}
.ws1f{word-spacing:-11.978181px;}
.ws6b{word-spacing:-11.923020px;}
.ws17{word-spacing:-11.912726px;}
.ws37{word-spacing:-11.847272px;}
.ws1b{word-spacing:-11.781817px;}
.ws3c{word-spacing:-11.716363px;}
.ws42{word-spacing:-11.519999px;}
.ws41{word-spacing:-11.454545px;}
.ws75{word-spacing:-11.323635px;}
.ws90{word-spacing:-11.258181px;}
.ws8b{word-spacing:-11.192726px;}
.ws89{word-spacing:-11.127272px;}
.ws8a{word-spacing:-11.061817px;}
.ws95{word-spacing:-10.996363px;}
.ws49{word-spacing:-10.930908px;}
.ws4c{word-spacing:-10.865454px;}
.ws79{word-spacing:-10.799999px;}
.ws32{word-spacing:-10.734545px;}
.wsd{word-spacing:-10.652059px;}
.ws3e{word-spacing:-10.603635px;}
.wse{word-spacing:-10.598261px;}
.ws6d{word-spacing:-10.538181px;}
.ws6e{word-spacing:-10.472726px;}
.ws4b{word-spacing:-10.407272px;}
.ws58{word-spacing:-10.341817px;}
.ws10{word-spacing:-10.167875px;}
.wsf{word-spacing:-10.114077px;}
.ws80{word-spacing:-10.014545px;}
.wsb{word-spacing:-10.006480px;}
.ws23{word-spacing:-9.956473px;}
.ws21{word-spacing:-9.956201px;}
.ws27{word-spacing:-9.954911px;}
.ws25{word-spacing:-9.953039px;}
.ws12{word-spacing:-9.952682px;}
.ws9a{word-spacing:-9.949090px;}
.ws22{word-spacing:-9.930038px;}
.ws24{word-spacing:-9.928349px;}
.ws14{word-spacing:-9.898884px;}
.ws5d{word-spacing:-9.883636px;}
.ws11{word-spacing:-9.845085px;}
.ws5a{word-spacing:-9.818181px;}
.ws47{word-spacing:-9.752726px;}
.ws16{word-spacing:-9.490908px;}
.ws93{word-spacing:-9.425454px;}
.ws81{word-spacing:-9.359999px;}
.ws46{word-spacing:-9.229090px;}
.ws87{word-spacing:-9.163636px;}
.ws66{word-spacing:-9.098181px;}
.ws7a{word-spacing:-9.032727px;}
.ws97{word-spacing:-8.901817px;}
.wsa{word-spacing:-8.822918px;}
.ws33{word-spacing:-8.705454px;}
.ws76{word-spacing:-8.509090px;}
.ws1a{word-spacing:-8.312727px;}
.ws62{word-spacing:-8.247272px;}
.ws8c{word-spacing:-8.181817px;}
.ws64{word-spacing:-7.658181px;}
.ws65{word-spacing:-7.592727px;}
.ws63{word-spacing:-7.527272px;}
.ws86{word-spacing:-7.134545px;}
.ws5e{word-spacing:-7.069090px;}
.ws2a{word-spacing:-7.049647px;}
.ws28{word-spacing:-6.635114px;}
.ws29{word-spacing:-6.599670px;}
.ws44{word-spacing:-6.545454px;}
.ws45{word-spacing:-6.479999px;}
.wsc{word-spacing:-6.455794px;}
.ws8f{word-spacing:-5.694545px;}
.ws96{word-spacing:-5.563636px;}
.ws26{word-spacing:-5.487425px;}
.ws2b{word-spacing:-4.349782px;}
.ws2c{word-spacing:0.000000px;}
.ws7{word-spacing:4.661821px;}
.ws85{word-spacing:6.087272px;}
.ws50{word-spacing:11.955168px;}
.ws4e{word-spacing:14.344149px;}
.ws4f{word-spacing:40.286863px;}
.ws7e{word-spacing:68.861768px;}
.ws53{word-spacing:70.117060px;}
.ws51{word-spacing:76.034868px;}
.ws54{word-spacing:97.912826px;}
._27{margin-left:-7.322839px;}
._5{margin-left:-5.164635px;}
._0{margin-left:-4.131706px;}
._1{margin-left:-3.120300px;}
._3{margin-left:-1.237360px;}
._4{width:1.237360px;}
._7{width:2.284633px;}
._28{width:4.123636px;}
._8{width:11.943205px;}
._26{width:13.126156px;}
._d{width:14.923635px;}
._39{width:16.437159px;}
._2{width:17.861029px;}
._c{width:19.726027px;}
._b{width:20.981320px;}
._6{width:22.189089px;}
._e{width:24.080997px;}
._10{width:25.854543px;}
._9{width:26.863196px;}
._35{width:28.008267px;}
._29{width:29.192725px;}
._a{width:31.155169px;}
._2a{width:32.729456px;}
._37{width:35.380420px;}
._2b{width:36.654542px;}
._f{width:39.207269px;}
._36{width:40.461672px;}
._11{width:43.038600px;}
._3a{width:44.556605px;}
._38{width:48.632723px;}
._34{width:71.133372px;}
._1e{width:72.149439px;}
._2f{width:73.991817px;}
._30{width:79.987247px;}
._13{width:89.430688px;}
._1d{width:100.258547px;}
._14{width:101.858856px;}
._16{width:114.110938px;}
._15{width:119.433917px;}
._12{width:134.022099px;}
._1a{width:141.906703px;}
._33{width:147.108429px;}
._24{width:150.455789px;}
._18{width:156.076507px;}
._31{width:157.150683px;}
._1b{width:159.303438px;}
._21{width:166.595266px;}
._2c{width:175.089582px;}
._19{width:177.893724px;}
._22{width:191.402240px;}
._17{width:196.482703px;}
._23{width:207.541716px;}
._20{width:228.821916px;}
._32{width:242.808444px;}
._1f{width:245.997906px;}
._25{width:250.580321px;}
._2d{width:274.490744px;}
._2e{width:282.884744px;}
._1c{width:338.809461px;}
.fc5{color:transparent;}
.fc4{color:rgb(140,125,123);}
.fc2{color:rgb(43,78,78);}
.fc3{color:rgb(129,129,129);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:17.399130px;}
.fs8{font-size:26.398680px;}
.fs9{font-size:28.198590px;}
.fs7{font-size:29.887920px;}
.fs3{font-size:35.865480px;}
.fsb{font-size:35.995320px;}
.fs2{font-size:47.820660px;}
.fsd{font-size:52.363620px;}
.fs4{font-size:53.798280px;}
.fsc{font-size:59.775840px;}
.fs5{font-size:65.454540px;}
.fs1{font-size:71.731020px;}
.fs6{font-size:86.077200px;}
.fs0{font-size:103.292640px;}
.y0{bottom:0.000000px;}
.y30{bottom:3.599820px;}
.y32{bottom:9.599520px;}
.y2f{bottom:11.099445px;}
.y31{bottom:17.249137px;}
.y2e{bottom:21.448927px;}
.y33{bottom:49.493565px;}
.y2d{bottom:58.510426px;}
.y2c{bottom:112.921500px;}
.y4c{bottom:113.970000px;}
.yf0{bottom:115.954500px;}
.yd3{bottom:116.532000px;}
.ya9{bottom:116.563500px;}
.y7e{bottom:116.584500px;}
.yff{bottom:128.337000px;}
.y2b{bottom:129.982500px;}
.y179{bottom:132.189000px;}
.yd2{bottom:132.969000px;}
.ya8{bottom:133.002000px;}
.y7d{bottom:133.023000px;}
.y4b{bottom:134.293500px;}
.yef{bottom:136.278000px;}
.y14e{bottom:138.516000px;}
.y2a{bottom:146.467500px;}
.yfe{bottom:148.660500px;}
.ya7{bottom:149.440500px;}
.y178{bottom:152.512500px;}
.y4a{bottom:154.617000px;}
.yee{bottom:156.601500px;}
.y14d{bottom:158.839500px;}
.yd1{bottom:161.635500px;}
.y125{bottom:161.665500px;}
.ya6{bottom:165.879000px;}
.yfd{bottom:168.984000px;}
.y29{bottom:171.573000px;}
.y177{bottom:172.836000px;}
.y49{bottom:174.942000px;}
.yed{bottom:176.925000px;}
.y14c{bottom:179.163000px;}
.yd0{bottom:181.959000px;}
.y124{bottom:181.989000px;}
.y28{bottom:186.756000px;}
.yfc{bottom:189.307500px;}
.y7c{bottom:190.302000px;}
.y176{bottom:193.161000px;}
.y48{bottom:195.265500px;}
.yec{bottom:197.248500px;}
.y27{bottom:198.151500px;}
.y14b{bottom:199.486500px;}
.ycf{bottom:202.282500px;}
.y123{bottom:202.312500px;}
.yfb{bottom:209.631000px;}
.y7b{bottom:210.625500px;}
.y175{bottom:213.484500px;}
.ya5{bottom:213.492000px;}
.yeb{bottom:217.573500px;}
.y14a{bottom:219.810000px;}
.yce{bottom:222.606000px;}
.y122{bottom:222.637500px;}
.yfa{bottom:229.956000px;}
.y79{bottom:230.949000px;}
.y47{bottom:233.521500px;}
.y174{bottom:233.808000px;}
.y7a{bottom:237.085500px;}
.yea{bottom:237.897000px;}
.ycd{bottom:242.931000px;}
.y121{bottom:242.961000px;}
.ya4{bottom:247.266000px;}
.yf9{bottom:250.279500px;}
.y78{bottom:251.272500px;}
.y46{bottom:253.845000px;}
.y173{bottom:254.131500px;}
.y149{bottom:256.281000px;}
.ye9{bottom:258.220500px;}
.ycc{bottom:263.254500px;}
.ya3{bottom:267.589500px;}
.y77{bottom:271.597500px;}
.y120{bottom:273.814500px;}
.y26{bottom:273.886500px;}
.y172{bottom:274.455000px;}
.y45{bottom:276.201000px;}
.yf8{bottom:281.133000px;}
.ycb{bottom:283.578000px;}
.ya2{bottom:287.913000px;}
.ye8{bottom:289.074000px;}
.y76{bottom:291.921000px;}
.y25{bottom:294.210000px;}
.y171{bottom:294.778500px;}
.y44{bottom:296.526000px;}
.y148{bottom:307.749000px;}
.ya1{bottom:308.238000px;}
.y75{bottom:312.244500px;}
.y24{bottom:314.533500px;}
.y170{bottom:315.103500px;}
.y11f{bottom:316.953000px;}
.yca{bottom:317.350500px;}
.y43{bottom:318.882000px;}
.yf7{bottom:324.271500px;}
.ye7{bottom:325.543500px;}
.y147{bottom:328.074000px;}
.y74{bottom:332.568000px;}
.y1a0{bottom:335.034000px;}
.y16f{bottom:335.427000px;}
.y23{bottom:336.889500px;}
.y11e{bottom:337.276500px;}
.ya0{bottom:339.091500px;}
.y42{bottom:339.205500px;}
.yc9{bottom:339.708000px;}
.yf6{bottom:344.595000px;}
.y146{bottom:348.397500px;}
.y73{bottom:352.891500px;}
.y19f{bottom:355.357500px;}
.y16e{bottom:355.750500px;}
.y22{bottom:357.213000px;}
.y11d{bottom:357.601500px;}
.y41{bottom:361.561500px;}
.yc8{bottom:362.064000px;}
.yf5{bottom:364.920000px;}
.y145{bottom:368.721000px;}
.y19e{bottom:375.682500px;}
.y16d{bottom:376.074000px;}
.ye6{bottom:377.013000px;}
.y11c{bottom:377.925000px;}
.y21{bottom:379.570500px;}
.y40{bottom:381.885000px;}
.y9f{bottom:382.230000px;}
.yc7{bottom:384.420000px;}
.y144{bottom:389.044500px;}
.y72{bottom:389.362500px;}
.y19d{bottom:396.006000px;}
.y16c{bottom:396.397500px;}
.ye5{bottom:397.336500px;}
.y11b{bottom:398.248500px;}
.y20{bottom:399.894000px;}
.y3f{bottom:402.210000px;}
.y9e{bottom:402.553500px;}
.yc6{bottom:406.776000px;}
.y143{bottom:409.368000px;}
.y19c{bottom:416.329500px;}
.y16b{bottom:416.722500px;}
.ye4{bottom:417.660000px;}
.y11a{bottom:418.572000px;}
.y9d{bottom:422.877000px;}
.yf4{bottom:423.724500px;}
.yc5{bottom:429.132000px;}
.y142{bottom:429.693000px;}
.y19b{bottom:436.653000px;}
.y16a{bottom:437.046000px;}
.ye3{bottom:437.985000px;}
.y1f{bottom:438.150000px;}
.y3e{bottom:440.466000px;}
.y71{bottom:440.830500px;}
.yf3{bottom:441.657000px;}
.y9c{bottom:443.202000px;}
.y119{bottom:449.425500px;}
.y141{bottom:450.016500px;}
.y19a{bottom:456.976500px;}
.y169{bottom:457.369500px;}
.ye2{bottom:458.308500px;}
.y1e{bottom:458.473500px;}
.y3d{bottom:460.789500px;}
.y70{bottom:461.155500px;}
.yc4{bottom:462.906000px;}
.y9a{bottom:463.525500px;}
.y9b{bottom:469.662000px;}
.y140{bottom:470.340000px;}
.y199{bottom:477.301500px;}
.y168{bottom:477.693000px;}
.ye1{bottom:478.632000px;}
.y1d{bottom:478.797000px;}
.y3c{bottom:481.113000px;}
.y6f{bottom:481.479000px;}
.yc3{bottom:483.229500px;}
.y99{bottom:483.849000px;}
.y13f{bottom:490.663500px;}
.y118{bottom:492.565500px;}
.y198{bottom:497.625000px;}
.y167{bottom:498.016500px;}
.ye0{bottom:498.955500px;}
.y1c{bottom:499.122000px;}
.y3b{bottom:501.438000px;}
.y6e{bottom:501.802500px;}
.y98{bottom:504.172500px;}
.y13e{bottom:510.987000px;}
.y117{bottom:512.889000px;}
.y197{bottom:517.948500px;}
.y166{bottom:518.341500px;}
.ydf{bottom:519.279000px;}
.y1b{bottom:519.445500px;}
.yc2{bottom:519.699000px;}
.y3a{bottom:521.761500px;}
.y6d{bottom:522.126000px;}
.y97{bottom:524.496000px;}
.y13d{bottom:531.312000px;}
.y196{bottom:538.272000px;}
.y165{bottom:538.665000px;}
.yde{bottom:539.604000px;}
.y1a{bottom:539.769000px;}
.y39{bottom:542.085000px;}
.y6c{bottom:542.449500px;}
.y116{bottom:549.358500px;}
.y13c{bottom:551.635500px;}
.y96{bottom:555.351000px;}
.y195{bottom:558.595500px;}
.y164{bottom:558.988500px;}
.y19{bottom:560.092500px;}
.y38{bottom:562.408500px;}
.y6b{bottom:562.774500px;}
.ydd{bottom:570.457500px;}
.yc1{bottom:571.168500px;}
.y13b{bottom:571.959000px;}
.y194{bottom:578.920500px;}
.y163{bottom:579.312000px;}
.y6a{bottom:579.661500px;}
.y18{bottom:580.416000px;}
.y69{bottom:583.098000px;}
.yc0{bottom:591.492000px;}
.y95{bottom:591.820500px;}
.y13a{bottom:592.282500px;}
.y193{bottom:599.244000px;}
.y162{bottom:599.635500px;}
.y17{bottom:600.741000px;}
.y115{bottom:600.828000px;}
.y68{bottom:603.421500px;}
.ybf{bottom:611.817000px;}
.y139{bottom:612.606000px;}
.ydc{bottom:613.596000px;}
.y192{bottom:619.567500px;}
.y161{bottom:619.960500px;}
.y16{bottom:621.064500px;}
.y114{bottom:621.151500px;}
.y37{bottom:621.243000px;}
.y67{bottom:623.745000px;}
.ybe{bottom:632.140500px;}
.ydb{bottom:633.919500px;}
.y36{bottom:639.175500px;}
.y191{bottom:639.891000px;}
.y160{bottom:640.284000px;}
.y15{bottom:641.388000px;}
.y113{bottom:641.475000px;}
.y94{bottom:643.290000px;}
.y66{bottom:644.068500px;}
.y138{bottom:649.077000px;}
.yda{bottom:654.243000px;}
.y35{bottom:657.108000px;}
.y190{bottom:660.214500px;}
.y15f{bottom:660.607500px;}
.y112{bottom:661.798500px;}
.y93{bottom:663.613500px;}
.y65{bottom:664.393500px;}
.ybd{bottom:672.787500px;}
.yd9{bottom:674.568000px;}
.y34{bottom:675.042000px;}
.y14{bottom:677.857500px;}
.y18f{bottom:680.539500px;}
.y15e{bottom:680.931000px;}
.y111{bottom:682.123500px;}
.y64{bottom:684.717000px;}
.ybc{bottom:693.111000px;}
.yd8{bottom:694.891500px;}
.y137{bottom:700.545000px;}
.y18e{bottom:700.863000px;}
.y15d{bottom:701.254500px;}
.y110{bottom:702.447000px;}
.y63{bottom:705.040500px;}
.yd7{bottom:715.215000px;}
.y92{bottom:719.449500px;}
.y136{bottom:720.870000px;}
.y18d{bottom:721.186500px;}
.y15c{bottom:721.579500px;}
.y10f{bottom:722.770500px;}
.y62{bottom:725.364000px;}
.ybb{bottom:733.759500px;}
.yd6{bottom:735.538500px;}
.y91{bottom:737.382000px;}
.y135{bottom:741.193500px;}
.y18c{bottom:741.510000px;}
.y15b{bottom:741.903000px;}
.y61{bottom:745.687500px;}
.y13{bottom:750.619500px;}
.y10e{bottom:753.624000px;}
.yba{bottom:754.083000px;}
.y90{bottom:755.314500px;}
.y134{bottom:761.517000px;}
.y18b{bottom:761.833500px;}
.y15a{bottom:762.226500px;}
.y60{bottom:766.012500px;}
.yd5{bottom:766.392000px;}
.y12{bottom:767.058000px;}
.y8f{bottom:773.248500px;}
.yb9{bottom:774.406500px;}
.y133{bottom:781.840500px;}
.y18a{bottom:782.158500px;}
.y159{bottom:782.550000px;}
.y11{bottom:783.496500px;}
.y5f{bottom:786.336000px;}
.y8e{bottom:791.181000px;}
.y10d{bottom:796.762500px;}
.y132{bottom:802.164000px;}
.y189{bottom:802.482000px;}
.y158{bottom:802.873500px;}
.yb8{bottom:805.260000px;}
.y5e{bottom:806.659500px;}
.y8d{bottom:809.113500px;}
.y10{bottom:811.356000px;}
.yf2{bottom:813.871500px;}
.y10c{bottom:817.087500px;}
.y131{bottom:822.489000px;}
.y188{bottom:822.805500px;}
.yd4{bottom:825.241500px;}
.y5d{bottom:826.983000px;}
.y8c{bottom:827.046000px;}
.yf{bottom:827.794500px;}
.yf1{bottom:831.804000px;}
.y10b{bottom:837.411000px;}
.y157{bottom:839.344500px;}
.y130{bottom:842.812500px;}
.y187{bottom:843.129000px;}
.ye{bottom:844.233000px;}
.y5c{bottom:847.306500px;}
.yb7{bottom:848.400000px;}
.y8b{bottom:853.203000px;}
.y10a{bottom:857.734500px;}
.yd{bottom:860.671500px;}
.y186{bottom:863.452500px;}
.y5b{bottom:867.631500px;}
.yb6{bottom:868.723500px;}
.y8a{bottom:871.135500px;}
.y12f{bottom:873.666000px;}
.yc{bottom:877.110000px;}
.y109{bottom:878.058000px;}
.y185{bottom:883.777500px;}
.y5a{bottom:887.955000px;}
.yb5{bottom:889.047000px;}
.y156{bottom:890.812500px;}
.yb{bottom:893.548500px;}
.y108{bottom:898.381500px;}
.y89{bottom:900.595500px;}
.y184{bottom:904.101000px;}
.y59{bottom:908.278500px;}
.yb4{bottom:909.370500px;}
.ya{bottom:909.987000px;}
.y155{bottom:911.137500px;}
.y88{bottom:918.528000px;}
.y183{bottom:924.424500px;}
.y9{bottom:926.425500px;}
.y58{bottom:928.602000px;}
.y107{bottom:929.236500px;}
.y12e{bottom:929.502000px;}
.yb3{bottom:929.694000px;}
.y154{bottom:931.461000px;}
.y8{bottom:942.862500px;}
.y182{bottom:944.748000px;}
.y12d{bottom:947.434500px;}
.y57{bottom:948.925500px;}
.yb2{bottom:950.019000px;}
.y153{bottom:951.784500px;}
.y7{bottom:959.301000px;}
.y181{bottom:965.071500px;}
.y87{bottom:965.367000px;}
.y56{bottom:969.250500px;}
.yb0{bottom:970.342500px;}
.y106{bottom:972.375000px;}
.y12c{bottom:973.591500px;}
.yb1{bottom:976.479000px;}
.y86{bottom:983.301000px;}
.y180{bottom:985.396500px;}
.y152{bottom:988.254000px;}
.y54{bottom:989.574000px;}
.yaf{bottom:990.666000px;}
.y12b{bottom:991.524000px;}
.y105{bottom:992.698500px;}
.y55{bottom:995.710500px;}
.y6{bottom:1004.433000px;}
.y17f{bottom:1005.720000px;}
.y85{bottom:1009.456500px;}
.y53{bottom:1009.897500px;}
.yae{bottom:1010.989500px;}
.y104{bottom:1013.022000px;}
.y12a{bottom:1017.679500px;}
.y5{bottom:1025.914500px;}
.y17e{bottom:1026.043500px;}
.y84{bottom:1027.389000px;}
.y52{bottom:1030.221000px;}
.yad{bottom:1031.313000px;}
.y103{bottom:1033.345500px;}
.y129{bottom:1035.613500px;}
.y151{bottom:1039.723500px;}
.y4{bottom:1045.341000px;}
.y17d{bottom:1046.367000px;}
.y51{bottom:1050.544500px;}
.yac{bottom:1051.638000px;}
.y83{bottom:1053.546000px;}
.y102{bottom:1053.670500px;}
.y128{bottom:1061.769000px;}
.y17c{bottom:1066.690500px;}
.y50{bottom:1070.869500px;}
.y82{bottom:1071.478500px;}
.y101{bottom:1073.994000px;}
.y3{bottom:1074.669000px;}
.y150{bottom:1076.193000px;}
.y127{bottom:1079.701500px;}
.yab{bottom:1082.491500px;}
.y17b{bottom:1087.015500px;}
.y4f{bottom:1091.193000px;}
.y81{bottom:1097.634000px;}
.y100{bottom:1104.847500px;}
.y17a{bottom:1107.339000px;}
.y126{bottom:1109.161500px;}
.y4e{bottom:1111.516500px;}
.y2{bottom:1113.523500px;}
.yaa{bottom:1125.630000px;}
.y80{bottom:1127.094000px;}
.y14f{bottom:1127.662500px;}
.y7f{bottom:1145.028000px;}
.y1{bottom:1146.400500px;}
.y4d{bottom:1147.986000px;}
.h13{height:13.919304px;}
.hc{height:20.861768px;}
.h11{height:21.118944px;}
.h12{height:22.558872px;}
.hb{height:25.034105px;}
.h4{height:25.500356px;}
.h14{height:26.240588px;}
.h10{height:26.698665px;}
.hf{height:29.409694px;}
.h17{height:36.549807px;}
.h8{height:37.551199px;}
.h5{height:38.250577px;}
.h18{height:41.723536px;}
.h19{height:41.843088px;}
.h15{height:42.321295px;}
.h16{height:42.938168px;}
.h7{height:44.114590px;}
.h6{height:45.687269px;}
.he{height:46.212723px;}
.h1c{height:46.538178px;}
.hd{height:47.073495px;}
.ha{height:53.672723px;}
.h9{height:60.081886px;}
.h1b{height:61.089807px;}
.h3{height:66.110941px;}
.h1a{height:67.484168px;}
.h2{height:72.098263px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:108.144593px;}
.w3{width:892.383975px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:12.599370px;}
.x10{left:19.497465px;}
.xc{left:20.848958px;}
.xf{left:61.346932px;}
.xe{left:71.246437px;}
.x1{left:107.226000px;}
.xa{left:108.579000px;}
.x41{left:113.709000px;}
.x5b{left:115.609500px;}
.x31{left:121.269000px;}
.x7{left:124.363500px;}
.x42{left:128.926500px;}
.x30{left:133.488000px;}
.x8{left:134.983500px;}
.x5c{left:143.050500px;}
.x9{left:148.417500px;}
.x43{left:151.038000px;}
.x4e{left:154.800000px;}
.x11{left:159.874500px;}
.x4f{left:162.409500px;}
.x14{left:165.330000px;}
.x15{left:171.462000px;}
.xb{left:172.576500px;}
.x55{left:173.782500px;}
.x2{left:175.122000px;}
.x29{left:204.117000px;}
.x4a{left:206.485500px;}
.x4b{left:221.704500px;}
.x20{left:224.850000px;}
.x21{left:240.067500px;}
.x32{left:248.187000px;}
.x26{left:252.889500px;}
.x5{left:255.055500px;}
.x27{left:260.497500px;}
.x6{left:262.665000px;}
.x2f{left:277.477500px;}
.x56{left:283.066500px;}
.x2c{left:312.246000px;}
.x49{left:319.512000px;}
.x2d{left:327.463500px;}
.x1a{left:331.522500px;}
.x12{left:333.999000px;}
.x1b{left:339.130500px;}
.x13{left:348.745500px;}
.x50{left:352.921500px;}
.x16{left:354.666000px;}
.x17{left:362.275500px;}
.x44{left:363.847500px;}
.x51{left:368.139000px;}
.x2a{left:369.915000px;}
.x22{left:372.750000px;}
.x45{left:379.065000px;}
.x2b{left:385.134000px;}
.x23{left:387.967500px;}
.x46{left:402.714000px;}
.x1e{left:433.044000px;}
.x33{left:441.427500px;}
.x1f{left:448.261500px;}
.x1c{left:476.524500px;}
.x1d{left:484.134000px;}
.x57{left:503.802000px;}
.x58{left:519.021000px;}
.x59{left:526.717500px;}
.x5a{left:541.936500px;}
.x34{left:545.635500px;}
.x35{left:552.426000px;}
.x28{left:565.362000px;}
.x54{left:568.327500px;}
.x18{left:571.987500px;}
.x19{left:579.597000px;}
.x3f{left:606.105000px;}
.x39{left:611.749500px;}
.x36{left:615.681000px;}
.x3a{left:619.359000px;}
.x40{left:621.324000px;}
.x3{left:625.683000px;}
.x3b{left:627.069000px;}
.x3c{left:634.677000px;}
.x4{left:637.530000px;}
.x3d{left:642.387000px;}
.x3e{left:657.606000px;}
.x52{left:672.694500px;}
.x53{left:687.913500px;}
.x24{left:708.132000px;}
.x25{left:723.351000px;}
.x37{left:752.794500px;}
.x4c{left:758.199000px;}
.x38{left:759.586500px;}
.x47{left:763.921500px;}
.x4d{left:773.418000px;}
.x2e{left:778.122000px;}
.x48{left:779.140500px;}
@media print{
.v3{vertical-align:-29.888000pt;}
.v2{vertical-align:-17.930667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.818667pt;}
.v1{vertical-align:23.909333pt;}
.lsa{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000657pt;}
.ls0{letter-spacing:0.001446pt;}
.ls12{letter-spacing:0.001457pt;}
.ls1c{letter-spacing:0.001941pt;}
.ls1b{letter-spacing:0.002257pt;}
.ls3{letter-spacing:0.003071pt;}
.ls8{letter-spacing:1.994580pt;}
.ls7{letter-spacing:2.053855pt;}
.ls13{letter-spacing:2.055602pt;}
.ls5{letter-spacing:2.058424pt;}
.ls14{letter-spacing:2.500370pt;}
.ls15{letter-spacing:2.505704pt;}
.ls1{letter-spacing:2.744402pt;}
.ls1f{letter-spacing:10.175377pt;}
.ls9{letter-spacing:11.955307pt;}
.ls19{letter-spacing:12.319590pt;}
.lsb{letter-spacing:14.418737pt;}
.ls11{letter-spacing:14.545457pt;}
.ls6{letter-spacing:14.549334pt;}
.ls10{letter-spacing:14.552923pt;}
.ls16{letter-spacing:14.566790pt;}
.ls17{letter-spacing:14.581334pt;}
.ls1e{letter-spacing:14.608763pt;}
.ls18{letter-spacing:14.654150pt;}
.lse{letter-spacing:14.678257pt;}
.lsd{letter-spacing:14.683643pt;}
.ls1a{letter-spacing:14.727750pt;}
.ls1d{letter-spacing:14.777457pt;}
.lsc{letter-spacing:14.781190pt;}
.ls4{letter-spacing:18.680402pt;}
.ls2{letter-spacing:31.876601pt;}
.ws84{word-spacing:-76.513067pt;}
.ws1{word-spacing:-68.861760pt;}
.ws0{word-spacing:-68.494497pt;}
.ws13{word-spacing:-58.181813pt;}
.ws4a{word-spacing:-57.384800pt;}
.ws52{word-spacing:-53.134080pt;}
.ws5c{word-spacing:-46.545440pt;}
.ws55{word-spacing:-43.636360pt;}
.ws6{word-spacing:-42.507253pt;}
.ws7b{word-spacing:-41.228069pt;}
.ws70{word-spacing:-40.913242pt;}
.ws71{word-spacing:-40.860108pt;}
.ws73{word-spacing:-40.647571pt;}
.ws30{word-spacing:-39.956828pt;}
.ws7d{word-spacing:-39.903694pt;}
.ws31{word-spacing:-39.850560pt;}
.ws2f{word-spacing:-39.744292pt;}
.ws72{word-spacing:-38.897183pt;}
.ws60{word-spacing:-38.807269pt;}
.ws15{word-spacing:-38.256533pt;}
.ws74{word-spacing:-37.871896pt;}
.ws2d{word-spacing:-36.715649pt;}
.ws2e{word-spacing:-36.662515pt;}
.ws9{word-spacing:-35.865520pt;}
.ws3{word-spacing:-27.735994pt;}
.ws1e{word-spacing:-25.309089pt;}
.ws4d{word-spacing:-20.802002pt;}
.ws4{word-spacing:-18.490655pt;}
.ws88{word-spacing:-15.185453pt;}
.ws7f{word-spacing:-15.127271pt;}
.ws8e{word-spacing:-14.952726pt;}
.ws99{word-spacing:-14.603635pt;}
.ws56{word-spacing:-14.545453pt;}
.ws3b{word-spacing:-14.138181pt;}
.ws92{word-spacing:-13.963635pt;}
.ws77{word-spacing:-13.905453pt;}
.ws48{word-spacing:-13.789090pt;}
.ws5f{word-spacing:-13.498181pt;}
.ws59{word-spacing:-13.149090pt;}
.ws67{word-spacing:-13.004107pt;}
.ws68{word-spacing:-12.974544pt;}
.ws3a{word-spacing:-12.858181pt;}
.ws78{word-spacing:-12.799999pt;}
.ws40{word-spacing:-12.625453pt;}
.ws57{word-spacing:-12.567272pt;}
.ws94{word-spacing:-12.509090pt;}
.ws82{word-spacing:-12.334544pt;}
.ws38{word-spacing:-12.276363pt;}
.ws6f{word-spacing:-12.101817pt;}
.ws3f{word-spacing:-12.043635pt;}
.ws6a{word-spacing:-11.985454pt;}
.ws18{word-spacing:-11.927272pt;}
.ws91{word-spacing:-11.810908pt;}
.ws2{word-spacing:-11.795086pt;}
.ws8{word-spacing:-11.793941pt;}
.ws5{word-spacing:-11.792584pt;}
.ws6c{word-spacing:-11.752726pt;}
.ws8d{word-spacing:-11.636363pt;}
.ws35{word-spacing:-11.519999pt;}
.ws69{word-spacing:-11.461817pt;}
.ws98{word-spacing:-11.287272pt;}
.ws61{word-spacing:-11.229090pt;}
.ws83{word-spacing:-11.170908pt;}
.ws36{word-spacing:-11.112726pt;}
.ws3d{word-spacing:-11.054545pt;}
.ws43{word-spacing:-10.996363pt;}
.ws1c{word-spacing:-10.938181pt;}
.ws34{word-spacing:-10.879999pt;}
.ws20{word-spacing:-10.821817pt;}
.ws19{word-spacing:-10.763635pt;}
.ws5b{word-spacing:-10.739866pt;}
.ws7c{word-spacing:-10.719066pt;}
.ws39{word-spacing:-10.711253pt;}
.ws1d{word-spacing:-10.705454pt;}
.ws1f{word-spacing:-10.647272pt;}
.ws6b{word-spacing:-10.598240pt;}
.ws17{word-spacing:-10.589090pt;}
.ws37{word-spacing:-10.530908pt;}
.ws1b{word-spacing:-10.472726pt;}
.ws3c{word-spacing:-10.414545pt;}
.ws42{word-spacing:-10.239999pt;}
.ws41{word-spacing:-10.181817pt;}
.ws75{word-spacing:-10.065454pt;}
.ws90{word-spacing:-10.007272pt;}
.ws8b{word-spacing:-9.949090pt;}
.ws89{word-spacing:-9.890908pt;}
.ws8a{word-spacing:-9.832726pt;}
.ws95{word-spacing:-9.774545pt;}
.ws49{word-spacing:-9.716363pt;}
.ws4c{word-spacing:-9.658181pt;}
.ws79{word-spacing:-9.599999pt;}
.ws32{word-spacing:-9.541817pt;}
.wsd{word-spacing:-9.468497pt;}
.ws3e{word-spacing:-9.425454pt;}
.wse{word-spacing:-9.420677pt;}
.ws6d{word-spacing:-9.367272pt;}
.ws6e{word-spacing:-9.309090pt;}
.ws4b{word-spacing:-9.250908pt;}
.ws58{word-spacing:-9.192727pt;}
.ws10{word-spacing:-9.038111pt;}
.wsf{word-spacing:-8.990290pt;}
.ws80{word-spacing:-8.901817pt;}
.wsb{word-spacing:-8.894649pt;}
.ws23{word-spacing:-8.850198pt;}
.ws21{word-spacing:-8.849956pt;}
.ws27{word-spacing:-8.848810pt;}
.ws25{word-spacing:-8.847146pt;}
.ws12{word-spacing:-8.846828pt;}
.ws9a{word-spacing:-8.843636pt;}
.ws22{word-spacing:-8.826700pt;}
.ws24{word-spacing:-8.825199pt;}
.ws14{word-spacing:-8.799008pt;}
.ws5d{word-spacing:-8.785454pt;}
.ws11{word-spacing:-8.751187pt;}
.ws5a{word-spacing:-8.727272pt;}
.ws47{word-spacing:-8.669090pt;}
.ws16{word-spacing:-8.436363pt;}
.ws93{word-spacing:-8.378181pt;}
.ws81{word-spacing:-8.319999pt;}
.ws46{word-spacing:-8.203636pt;}
.ws87{word-spacing:-8.145454pt;}
.ws66{word-spacing:-8.087272pt;}
.ws7a{word-spacing:-8.029090pt;}
.ws97{word-spacing:-7.912727pt;}
.wsa{word-spacing:-7.842594pt;}
.ws33{word-spacing:-7.738181pt;}
.ws76{word-spacing:-7.563636pt;}
.ws1a{word-spacing:-7.389090pt;}
.ws62{word-spacing:-7.330908pt;}
.ws8c{word-spacing:-7.272727pt;}
.ws64{word-spacing:-6.807272pt;}
.ws65{word-spacing:-6.749090pt;}
.ws63{word-spacing:-6.690909pt;}
.ws86{word-spacing:-6.341818pt;}
.ws5e{word-spacing:-6.283636pt;}
.ws2a{word-spacing:-6.266353pt;}
.ws28{word-spacing:-5.897879pt;}
.ws29{word-spacing:-5.866373pt;}
.ws44{word-spacing:-5.818181pt;}
.ws45{word-spacing:-5.760000pt;}
.wsc{word-spacing:-5.738483pt;}
.ws8f{word-spacing:-5.061818pt;}
.ws96{word-spacing:-4.945454pt;}
.ws26{word-spacing:-4.877711pt;}
.ws2b{word-spacing:-3.866473pt;}
.ws2c{word-spacing:0.000000pt;}
.ws7{word-spacing:4.143841pt;}
.ws85{word-spacing:5.410909pt;}
.ws50{word-spacing:10.626816pt;}
.ws4e{word-spacing:12.750354pt;}
.ws4f{word-spacing:35.810545pt;}
.ws7e{word-spacing:61.210460pt;}
.ws53{word-spacing:62.326276pt;}
.ws51{word-spacing:67.586550pt;}
.ws54{word-spacing:87.033623pt;}
._27{margin-left:-6.509190pt;}
._5{margin-left:-4.590787pt;}
._0{margin-left:-3.672627pt;}
._1{margin-left:-2.773600pt;}
._3{margin-left:-1.099876pt;}
._4{width:1.099876pt;}
._7{width:2.030785pt;}
._28{width:3.665454pt;}
._8{width:10.616182pt;}
._26{width:11.667694pt;}
._d{width:13.265453pt;}
._39{width:14.610808pt;}
._2{width:15.876470pt;}
._c{width:17.534246pt;}
._b{width:18.650062pt;}
._6{width:19.723635pt;}
._e{width:21.405331pt;}
._10{width:22.981816pt;}
._9{width:23.878396pt;}
._35{width:24.896238pt;}
._29{width:25.949089pt;}
._a{width:27.693484pt;}
._2a{width:29.092850pt;}
._37{width:31.449262pt;}
._2b{width:32.581815pt;}
._f{width:34.850906pt;}
._36{width:35.965931pt;}
._11{width:38.256533pt;}
._3a{width:39.605871pt;}
._38{width:43.229087pt;}
._34{width:63.229664pt;}
._1e{width:64.132835pt;}
._2f{width:65.770504pt;}
._30{width:71.099775pt;}
._13{width:79.493945pt;}
._1d{width:89.118708pt;}
._14{width:90.541205pt;}
._16{width:101.431945pt;}
._15{width:106.163482pt;}
._12{width:119.130755pt;}
._1a{width:126.139292pt;}
._33{width:130.763048pt;}
._24{width:133.738479pt;}
._18{width:138.734673pt;}
._31{width:139.689496pt;}
._1b{width:141.603056pt;}
._21{width:148.084681pt;}
._2c{width:155.635184pt;}
._19{width:158.127755pt;}
._22{width:170.135324pt;}
._17{width:174.651292pt;}
._23{width:184.481526pt;}
._20{width:203.397258pt;}
._32{width:215.829728pt;}
._1f{width:218.664806pt;}
._25{width:222.738063pt;}
._2d{width:243.991773pt;}
._2e{width:251.453106pt;}
._1c{width:301.163965pt;}
.fsa{font-size:15.465893pt;}
.fs8{font-size:23.465493pt;}
.fs9{font-size:25.065413pt;}
.fs7{font-size:26.567040pt;}
.fs3{font-size:31.880427pt;}
.fsb{font-size:31.995840pt;}
.fs2{font-size:42.507253pt;}
.fsd{font-size:46.545440pt;}
.fs4{font-size:47.820693pt;}
.fsc{font-size:53.134080pt;}
.fs5{font-size:58.181813pt;}
.fs1{font-size:63.760907pt;}
.fs6{font-size:76.513067pt;}
.fs0{font-size:91.815680pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:3.199840pt;}
.y32{bottom:8.532907pt;}
.y2f{bottom:9.866173pt;}
.y31{bottom:15.332567pt;}
.y2e{bottom:19.065713pt;}
.y33{bottom:43.994280pt;}
.y2d{bottom:52.009267pt;}
.y2c{bottom:100.374667pt;}
.y4c{bottom:101.306667pt;}
.yf0{bottom:103.070667pt;}
.yd3{bottom:103.584000pt;}
.ya9{bottom:103.612000pt;}
.y7e{bottom:103.630667pt;}
.yff{bottom:114.077333pt;}
.y2b{bottom:115.540000pt;}
.y179{bottom:117.501333pt;}
.yd2{bottom:118.194667pt;}
.ya8{bottom:118.224000pt;}
.y7d{bottom:118.242667pt;}
.y4b{bottom:119.372000pt;}
.yef{bottom:121.136000pt;}
.y14e{bottom:123.125333pt;}
.y2a{bottom:130.193333pt;}
.yfe{bottom:132.142667pt;}
.ya7{bottom:132.836000pt;}
.y178{bottom:135.566667pt;}
.y4a{bottom:137.437333pt;}
.yee{bottom:139.201333pt;}
.y14d{bottom:141.190667pt;}
.yd1{bottom:143.676000pt;}
.y125{bottom:143.702667pt;}
.ya6{bottom:147.448000pt;}
.yfd{bottom:150.208000pt;}
.y29{bottom:152.509333pt;}
.y177{bottom:153.632000pt;}
.y49{bottom:155.504000pt;}
.yed{bottom:157.266667pt;}
.y14c{bottom:159.256000pt;}
.yd0{bottom:161.741333pt;}
.y124{bottom:161.768000pt;}
.y28{bottom:166.005333pt;}
.yfc{bottom:168.273333pt;}
.y7c{bottom:169.157333pt;}
.y176{bottom:171.698667pt;}
.y48{bottom:173.569333pt;}
.yec{bottom:175.332000pt;}
.y27{bottom:176.134667pt;}
.y14b{bottom:177.321333pt;}
.ycf{bottom:179.806667pt;}
.y123{bottom:179.833333pt;}
.yfb{bottom:186.338667pt;}
.y7b{bottom:187.222667pt;}
.y175{bottom:189.764000pt;}
.ya5{bottom:189.770667pt;}
.yeb{bottom:193.398667pt;}
.y14a{bottom:195.386667pt;}
.yce{bottom:197.872000pt;}
.y122{bottom:197.900000pt;}
.yfa{bottom:204.405333pt;}
.y79{bottom:205.288000pt;}
.y47{bottom:207.574667pt;}
.y174{bottom:207.829333pt;}
.y7a{bottom:210.742667pt;}
.yea{bottom:211.464000pt;}
.ycd{bottom:215.938667pt;}
.y121{bottom:215.965333pt;}
.ya4{bottom:219.792000pt;}
.yf9{bottom:222.470667pt;}
.y78{bottom:223.353333pt;}
.y46{bottom:225.640000pt;}
.y173{bottom:225.894667pt;}
.y149{bottom:227.805333pt;}
.ye9{bottom:229.529333pt;}
.ycc{bottom:234.004000pt;}
.ya3{bottom:237.857333pt;}
.y77{bottom:241.420000pt;}
.y120{bottom:243.390667pt;}
.y26{bottom:243.454667pt;}
.y172{bottom:243.960000pt;}
.y45{bottom:245.512000pt;}
.yf8{bottom:249.896000pt;}
.ycb{bottom:252.069333pt;}
.ya2{bottom:255.922667pt;}
.ye8{bottom:256.954667pt;}
.y76{bottom:259.485333pt;}
.y25{bottom:261.520000pt;}
.y171{bottom:262.025333pt;}
.y44{bottom:263.578667pt;}
.y148{bottom:273.554667pt;}
.ya1{bottom:273.989333pt;}
.y75{bottom:277.550667pt;}
.y24{bottom:279.585333pt;}
.y170{bottom:280.092000pt;}
.y11f{bottom:281.736000pt;}
.yca{bottom:282.089333pt;}
.y43{bottom:283.450667pt;}
.yf7{bottom:288.241333pt;}
.ye7{bottom:289.372000pt;}
.y147{bottom:291.621333pt;}
.y74{bottom:295.616000pt;}
.y1a0{bottom:297.808000pt;}
.y16f{bottom:298.157333pt;}
.y23{bottom:299.457333pt;}
.y11e{bottom:299.801333pt;}
.ya0{bottom:301.414667pt;}
.y42{bottom:301.516000pt;}
.yc9{bottom:301.962667pt;}
.yf6{bottom:306.306667pt;}
.y146{bottom:309.686667pt;}
.y73{bottom:313.681333pt;}
.y19f{bottom:315.873333pt;}
.y16e{bottom:316.222667pt;}
.y22{bottom:317.522667pt;}
.y11d{bottom:317.868000pt;}
.y41{bottom:321.388000pt;}
.yc8{bottom:321.834667pt;}
.yf5{bottom:324.373333pt;}
.y145{bottom:327.752000pt;}
.y19e{bottom:333.940000pt;}
.y16d{bottom:334.288000pt;}
.ye6{bottom:335.122667pt;}
.y11c{bottom:335.933333pt;}
.y21{bottom:337.396000pt;}
.y40{bottom:339.453333pt;}
.y9f{bottom:339.760000pt;}
.yc7{bottom:341.706667pt;}
.y144{bottom:345.817333pt;}
.y72{bottom:346.100000pt;}
.y19d{bottom:352.005333pt;}
.y16c{bottom:352.353333pt;}
.ye5{bottom:353.188000pt;}
.y11b{bottom:353.998667pt;}
.y20{bottom:355.461333pt;}
.y3f{bottom:357.520000pt;}
.y9e{bottom:357.825333pt;}
.yc6{bottom:361.578667pt;}
.y143{bottom:363.882667pt;}
.y19c{bottom:370.070667pt;}
.y16b{bottom:370.420000pt;}
.ye4{bottom:371.253333pt;}
.y11a{bottom:372.064000pt;}
.y9d{bottom:375.890667pt;}
.yf4{bottom:376.644000pt;}
.yc5{bottom:381.450667pt;}
.y142{bottom:381.949333pt;}
.y19b{bottom:388.136000pt;}
.y16a{bottom:388.485333pt;}
.ye3{bottom:389.320000pt;}
.y1f{bottom:389.466667pt;}
.y3e{bottom:391.525333pt;}
.y71{bottom:391.849333pt;}
.yf3{bottom:392.584000pt;}
.y9c{bottom:393.957333pt;}
.y119{bottom:399.489333pt;}
.y141{bottom:400.014667pt;}
.y19a{bottom:406.201333pt;}
.y169{bottom:406.550667pt;}
.ye2{bottom:407.385333pt;}
.y1e{bottom:407.532000pt;}
.y3d{bottom:409.590667pt;}
.y70{bottom:409.916000pt;}
.yc4{bottom:411.472000pt;}
.y9a{bottom:412.022667pt;}
.y9b{bottom:417.477333pt;}
.y140{bottom:418.080000pt;}
.y199{bottom:424.268000pt;}
.y168{bottom:424.616000pt;}
.ye1{bottom:425.450667pt;}
.y1d{bottom:425.597333pt;}
.y3c{bottom:427.656000pt;}
.y6f{bottom:427.981333pt;}
.yc3{bottom:429.537333pt;}
.y99{bottom:430.088000pt;}
.y13f{bottom:436.145333pt;}
.y118{bottom:437.836000pt;}
.y198{bottom:442.333333pt;}
.y167{bottom:442.681333pt;}
.ye0{bottom:443.516000pt;}
.y1c{bottom:443.664000pt;}
.y3b{bottom:445.722667pt;}
.y6e{bottom:446.046667pt;}
.y98{bottom:448.153333pt;}
.y13e{bottom:454.210667pt;}
.y117{bottom:455.901333pt;}
.y197{bottom:460.398667pt;}
.y166{bottom:460.748000pt;}
.ydf{bottom:461.581333pt;}
.y1b{bottom:461.729333pt;}
.yc2{bottom:461.954667pt;}
.y3a{bottom:463.788000pt;}
.y6d{bottom:464.112000pt;}
.y97{bottom:466.218667pt;}
.y13d{bottom:472.277333pt;}
.y196{bottom:478.464000pt;}
.y165{bottom:478.813333pt;}
.yde{bottom:479.648000pt;}
.y1a{bottom:479.794667pt;}
.y39{bottom:481.853333pt;}
.y6c{bottom:482.177333pt;}
.y116{bottom:488.318667pt;}
.y13c{bottom:490.342667pt;}
.y96{bottom:493.645333pt;}
.y195{bottom:496.529333pt;}
.y164{bottom:496.878667pt;}
.y19{bottom:497.860000pt;}
.y38{bottom:499.918667pt;}
.y6b{bottom:500.244000pt;}
.ydd{bottom:507.073333pt;}
.yc1{bottom:507.705333pt;}
.y13b{bottom:508.408000pt;}
.y194{bottom:514.596000pt;}
.y163{bottom:514.944000pt;}
.y6a{bottom:515.254667pt;}
.y18{bottom:515.925333pt;}
.y69{bottom:518.309333pt;}
.yc0{bottom:525.770667pt;}
.y95{bottom:526.062667pt;}
.y13a{bottom:526.473333pt;}
.y193{bottom:532.661333pt;}
.y162{bottom:533.009333pt;}
.y17{bottom:533.992000pt;}
.y115{bottom:534.069333pt;}
.y68{bottom:536.374667pt;}
.ybf{bottom:543.837333pt;}
.y139{bottom:544.538667pt;}
.ydc{bottom:545.418667pt;}
.y192{bottom:550.726667pt;}
.y161{bottom:551.076000pt;}
.y16{bottom:552.057333pt;}
.y114{bottom:552.134667pt;}
.y37{bottom:552.216000pt;}
.y67{bottom:554.440000pt;}
.ybe{bottom:561.902667pt;}
.ydb{bottom:563.484000pt;}
.y36{bottom:568.156000pt;}
.y191{bottom:568.792000pt;}
.y160{bottom:569.141333pt;}
.y15{bottom:570.122667pt;}
.y113{bottom:570.200000pt;}
.y94{bottom:571.813333pt;}
.y66{bottom:572.505333pt;}
.y138{bottom:576.957333pt;}
.yda{bottom:581.549333pt;}
.y35{bottom:584.096000pt;}
.y190{bottom:586.857333pt;}
.y15f{bottom:587.206667pt;}
.y112{bottom:588.265333pt;}
.y93{bottom:589.878667pt;}
.y65{bottom:590.572000pt;}
.ybd{bottom:598.033333pt;}
.yd9{bottom:599.616000pt;}
.y34{bottom:600.037333pt;}
.y14{bottom:602.540000pt;}
.y18f{bottom:604.924000pt;}
.y15e{bottom:605.272000pt;}
.y111{bottom:606.332000pt;}
.y64{bottom:608.637333pt;}
.ybc{bottom:616.098667pt;}
.yd8{bottom:617.681333pt;}
.y137{bottom:622.706667pt;}
.y18e{bottom:622.989333pt;}
.y15d{bottom:623.337333pt;}
.y110{bottom:624.397333pt;}
.y63{bottom:626.702667pt;}
.yd7{bottom:635.746667pt;}
.y92{bottom:639.510667pt;}
.y136{bottom:640.773333pt;}
.y18d{bottom:641.054667pt;}
.y15c{bottom:641.404000pt;}
.y10f{bottom:642.462667pt;}
.y62{bottom:644.768000pt;}
.ybb{bottom:652.230667pt;}
.yd6{bottom:653.812000pt;}
.y91{bottom:655.450667pt;}
.y135{bottom:658.838667pt;}
.y18c{bottom:659.120000pt;}
.y15b{bottom:659.469333pt;}
.y61{bottom:662.833333pt;}
.y13{bottom:667.217333pt;}
.y10e{bottom:669.888000pt;}
.yba{bottom:670.296000pt;}
.y90{bottom:671.390667pt;}
.y134{bottom:676.904000pt;}
.y18b{bottom:677.185333pt;}
.y15a{bottom:677.534667pt;}
.y60{bottom:680.900000pt;}
.yd5{bottom:681.237333pt;}
.y12{bottom:681.829333pt;}
.y8f{bottom:687.332000pt;}
.yb9{bottom:688.361333pt;}
.y133{bottom:694.969333pt;}
.y18a{bottom:695.252000pt;}
.y159{bottom:695.600000pt;}
.y11{bottom:696.441333pt;}
.y5f{bottom:698.965333pt;}
.y8e{bottom:703.272000pt;}
.y10d{bottom:708.233333pt;}
.y132{bottom:713.034667pt;}
.y189{bottom:713.317333pt;}
.y158{bottom:713.665333pt;}
.yb8{bottom:715.786667pt;}
.y5e{bottom:717.030667pt;}
.y8d{bottom:719.212000pt;}
.y10{bottom:721.205333pt;}
.yf2{bottom:723.441333pt;}
.y10c{bottom:726.300000pt;}
.y131{bottom:731.101333pt;}
.y188{bottom:731.382667pt;}
.yd4{bottom:733.548000pt;}
.y5d{bottom:735.096000pt;}
.y8c{bottom:735.152000pt;}
.yf{bottom:735.817333pt;}
.yf1{bottom:739.381333pt;}
.y10b{bottom:744.365333pt;}
.y157{bottom:746.084000pt;}
.y130{bottom:749.166667pt;}
.y187{bottom:749.448000pt;}
.ye{bottom:750.429333pt;}
.y5c{bottom:753.161333pt;}
.yb7{bottom:754.133333pt;}
.y8b{bottom:758.402667pt;}
.y10a{bottom:762.430667pt;}
.yd{bottom:765.041333pt;}
.y186{bottom:767.513333pt;}
.y5b{bottom:771.228000pt;}
.yb6{bottom:772.198667pt;}
.y8a{bottom:774.342667pt;}
.y12f{bottom:776.592000pt;}
.yc{bottom:779.653333pt;}
.y109{bottom:780.496000pt;}
.y185{bottom:785.580000pt;}
.y5a{bottom:789.293333pt;}
.yb5{bottom:790.264000pt;}
.y156{bottom:791.833333pt;}
.yb{bottom:794.265333pt;}
.y108{bottom:798.561333pt;}
.y89{bottom:800.529333pt;}
.y184{bottom:803.645333pt;}
.y59{bottom:807.358667pt;}
.yb4{bottom:808.329333pt;}
.ya{bottom:808.877333pt;}
.y155{bottom:809.900000pt;}
.y88{bottom:816.469333pt;}
.y183{bottom:821.710667pt;}
.y9{bottom:823.489333pt;}
.y58{bottom:825.424000pt;}
.y107{bottom:825.988000pt;}
.y12e{bottom:826.224000pt;}
.yb3{bottom:826.394667pt;}
.y154{bottom:827.965333pt;}
.y8{bottom:838.100000pt;}
.y182{bottom:839.776000pt;}
.y12d{bottom:842.164000pt;}
.y57{bottom:843.489333pt;}
.yb2{bottom:844.461333pt;}
.y153{bottom:846.030667pt;}
.y7{bottom:852.712000pt;}
.y181{bottom:857.841333pt;}
.y87{bottom:858.104000pt;}
.y56{bottom:861.556000pt;}
.yb0{bottom:862.526667pt;}
.y106{bottom:864.333333pt;}
.y12c{bottom:865.414667pt;}
.yb1{bottom:867.981333pt;}
.y86{bottom:874.045333pt;}
.y180{bottom:875.908000pt;}
.y152{bottom:878.448000pt;}
.y54{bottom:879.621333pt;}
.yaf{bottom:880.592000pt;}
.y12b{bottom:881.354667pt;}
.y105{bottom:882.398667pt;}
.y55{bottom:885.076000pt;}
.y6{bottom:892.829333pt;}
.y17f{bottom:893.973333pt;}
.y85{bottom:897.294667pt;}
.y53{bottom:897.686667pt;}
.yae{bottom:898.657333pt;}
.y104{bottom:900.464000pt;}
.y12a{bottom:904.604000pt;}
.y5{bottom:911.924000pt;}
.y17e{bottom:912.038667pt;}
.y84{bottom:913.234667pt;}
.y52{bottom:915.752000pt;}
.yad{bottom:916.722667pt;}
.y103{bottom:918.529333pt;}
.y129{bottom:920.545333pt;}
.y151{bottom:924.198667pt;}
.y4{bottom:929.192000pt;}
.y17d{bottom:930.104000pt;}
.y51{bottom:933.817333pt;}
.yac{bottom:934.789333pt;}
.y83{bottom:936.485333pt;}
.y102{bottom:936.596000pt;}
.y128{bottom:943.794667pt;}
.y17c{bottom:948.169333pt;}
.y50{bottom:951.884000pt;}
.y82{bottom:952.425333pt;}
.y101{bottom:954.661333pt;}
.y3{bottom:955.261333pt;}
.y150{bottom:956.616000pt;}
.y127{bottom:959.734667pt;}
.yab{bottom:962.214667pt;}
.y17b{bottom:966.236000pt;}
.y4f{bottom:969.949333pt;}
.y81{bottom:975.674667pt;}
.y100{bottom:982.086667pt;}
.y17a{bottom:984.301333pt;}
.y126{bottom:985.921333pt;}
.y4e{bottom:988.014667pt;}
.y2{bottom:989.798667pt;}
.yaa{bottom:1000.560000pt;}
.y80{bottom:1001.861333pt;}
.y14f{bottom:1002.366667pt;}
.y7f{bottom:1017.802667pt;}
.y1{bottom:1019.022667pt;}
.y4d{bottom:1020.432000pt;}
.h13{height:12.372715pt;}
.hc{height:18.543794pt;}
.h11{height:18.772395pt;}
.h12{height:20.052331pt;}
.hb{height:22.252538pt;}
.h4{height:22.666983pt;}
.h14{height:23.324967pt;}
.h10{height:23.732147pt;}
.hf{height:26.141950pt;}
.h17{height:32.488717pt;}
.h8{height:33.378844pt;}
.h5{height:34.000513pt;}
.h18{height:37.087588pt;}
.h19{height:37.193856pt;}
.h15{height:37.618929pt;}
.h16{height:38.167261pt;}
.h7{height:39.212969pt;}
.h6{height:40.610906pt;}
.he{height:41.077976pt;}
.h1c{height:41.367269pt;}
.hd{height:41.843107pt;}
.ha{height:47.709087pt;}
.h9{height:53.406121pt;}
.h1b{height:54.302050pt;}
.h3{height:58.765281pt;}
.h1a{height:59.985927pt;}
.h2{height:64.087345pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:96.128527pt;}
.w3{width:793.230200pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:11.199440pt;}
.x10{left:17.331080pt;}
.xc{left:18.532407pt;}
.xf{left:54.530607pt;}
.xe{left:63.330167pt;}
.x1{left:95.312000pt;}
.xa{left:96.514667pt;}
.x41{left:101.074667pt;}
.x5b{left:102.764000pt;}
.x31{left:107.794667pt;}
.x7{left:110.545333pt;}
.x42{left:114.601333pt;}
.x30{left:118.656000pt;}
.x8{left:119.985333pt;}
.x5c{left:127.156000pt;}
.x9{left:131.926667pt;}
.x43{left:134.256000pt;}
.x4e{left:137.600000pt;}
.x11{left:142.110667pt;}
.x4f{left:144.364000pt;}
.x14{left:146.960000pt;}
.x15{left:152.410667pt;}
.xb{left:153.401333pt;}
.x55{left:154.473333pt;}
.x2{left:155.664000pt;}
.x29{left:181.437333pt;}
.x4a{left:183.542667pt;}
.x4b{left:197.070667pt;}
.x20{left:199.866667pt;}
.x21{left:213.393333pt;}
.x32{left:220.610667pt;}
.x26{left:224.790667pt;}
.x5{left:226.716000pt;}
.x27{left:231.553333pt;}
.x6{left:233.480000pt;}
.x2f{left:246.646667pt;}
.x56{left:251.614667pt;}
.x2c{left:277.552000pt;}
.x49{left:284.010667pt;}
.x2d{left:291.078667pt;}
.x1a{left:294.686667pt;}
.x12{left:296.888000pt;}
.x1b{left:301.449333pt;}
.x13{left:309.996000pt;}
.x50{left:313.708000pt;}
.x16{left:315.258667pt;}
.x17{left:322.022667pt;}
.x44{left:323.420000pt;}
.x51{left:327.234667pt;}
.x2a{left:328.813333pt;}
.x22{left:331.333333pt;}
.x45{left:336.946667pt;}
.x2b{left:342.341333pt;}
.x23{left:344.860000pt;}
.x46{left:357.968000pt;}
.x1e{left:384.928000pt;}
.x33{left:392.380000pt;}
.x1f{left:398.454667pt;}
.x1c{left:423.577333pt;}
.x1d{left:430.341333pt;}
.x57{left:447.824000pt;}
.x58{left:461.352000pt;}
.x59{left:468.193333pt;}
.x5a{left:481.721333pt;}
.x34{left:485.009333pt;}
.x35{left:491.045333pt;}
.x28{left:502.544000pt;}
.x54{left:505.180000pt;}
.x18{left:508.433333pt;}
.x19{left:515.197333pt;}
.x3f{left:538.760000pt;}
.x39{left:543.777333pt;}
.x36{left:547.272000pt;}
.x3a{left:550.541333pt;}
.x40{left:552.288000pt;}
.x3{left:556.162667pt;}
.x3b{left:557.394667pt;}
.x3c{left:564.157333pt;}
.x4{left:566.693333pt;}
.x3d{left:571.010667pt;}
.x3e{left:584.538667pt;}
.x52{left:597.950667pt;}
.x53{left:611.478667pt;}
.x24{left:629.450667pt;}
.x25{left:642.978667pt;}
.x37{left:669.150667pt;}
.x4c{left:673.954667pt;}
.x38{left:675.188000pt;}
.x47{left:679.041333pt;}
.x4d{left:687.482667pt;}
.x2e{left:691.664000pt;}
.x48{left:692.569333pt;}
}




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