
    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_2b8fc131adff29b441351c5e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.278809;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_f76d89276b41b7253f2990f1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.143555;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_026639a196a4d3d5ee9d8d37.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.346191;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_76c215798eac75fb97143f20.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.150879;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_48ce6cf6aa8cf5bb0d286e12.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_30e39d8dedb6b754a7fdad4f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fe5cb3a310e5e9ad23e686b1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.143066;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_e42ee1911a4c6774130cd2b3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_860444f876f8973417f5f1c9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_564ac2e984bd056607c48865.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.774902;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_2c02c4746401671b29d1ef97.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.435059;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_beb03aa079a8e32e8a94f62a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3bd4247f6c77df2a272aaa84.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.124512;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_18d5f5209a73e2cd3e0896af.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.951172;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_98604570d590154c0f379a14.woff2')format("woff");}.fff{font-family:fff;line-height:0.937012;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_0c3c141836195a520ccb5bd6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;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_96bbd92da35a9a65108ba5df.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;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_2449bb2678e9e7c53cf6cf7c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.783691;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_a73afbb37ea760f053bb3a0a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.913574;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;}
.md{transform:matrix(-0.004363,-0.178710,0.249981,-0.003119,0,0);-ms-transform:matrix(-0.004363,-0.178710,0.249981,-0.003119,0,0);-webkit-transform:matrix(-0.004363,-0.178710,0.249981,-0.003119,0,0);}
.m11{transform:matrix(0.000000,-0.241923,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.241923,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.241923,0.250000,0.000000,0,0);}
.m13{transform:matrix(0.000000,-0.242031,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.242031,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.242031,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.249894,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249894,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249894,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.249918,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249918,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249918,0.250000,0.000000,0,0);}
.m9{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);}
.m5{transform:matrix(0.245418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245418,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);}
.m4{transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250099,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.258178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258178,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.258232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258232,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.258346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258346,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.258367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258367,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.264397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264397,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.264494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264494,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.349702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349702,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.v10{vertical-align:-264.660000px;}
.ve{vertical-align:-95.340000px;}
.vd{vertical-align:-84.840001px;}
.va{vertical-align:-70.081837px;}
.v1{vertical-align:-57.600000px;}
.v3{vertical-align:-41.040000px;}
.v4{vertical-align:-35.280000px;}
.v8{vertical-align:-33.420000px;}
.vc{vertical-align:-20.160000px;}
.v9{vertical-align:-11.426387px;}
.vf{vertical-align:-2.716694px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:35.280000px;}
.v6{vertical-align:43.200000px;}
.v5{vertical-align:67.800000px;}
.v2{vertical-align:79.200000px;}
.v7{vertical-align:115.680000px;}
.ls2f{letter-spacing:-3.564000px;}
.ls57{letter-spacing:-1.440000px;}
.ls55{letter-spacing:-1.152000px;}
.ls54{letter-spacing:-1.008000px;}
.ls53{letter-spacing:-0.576000px;}
.ls45{letter-spacing:-0.345397px;}
.ls43{letter-spacing:-0.334800px;}
.ls49{letter-spacing:-0.318760px;}
.ls30{letter-spacing:-0.289200px;}
.ls41{letter-spacing:-0.288000px;}
.ls44{letter-spacing:-0.276000px;}
.ls4d{letter-spacing:-0.234600px;}
.ls37{letter-spacing:-0.220800px;}
.ls34{letter-spacing:-0.206400px;}
.ls40{letter-spacing:-0.144000px;}
.ls2e{letter-spacing:-0.132000px;}
.ls38{letter-spacing:-0.130800px;}
.ls3e{letter-spacing:-0.128400px;}
.ls51{letter-spacing:-0.101777px;}
.ls32{letter-spacing:-0.100800px;}
.ls35{letter-spacing:-0.094200px;}
.ls52{letter-spacing:-0.072000px;}
.ls3d{letter-spacing:-0.064200px;}
.ls42{letter-spacing:-0.042480px;}
.ls3f{letter-spacing:-0.030240px;}
.ls4e{letter-spacing:-0.010065px;}
.ls4f{letter-spacing:-0.007549px;}
.ls2d{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.072600px;}
.ls50{letter-spacing:0.091777px;}
.ls1e{letter-spacing:0.120000px;}
.ls23{letter-spacing:0.124560px;}
.ls1f{letter-spacing:0.130320px;}
.ls8{letter-spacing:0.144000px;}
.ls4c{letter-spacing:0.179400px;}
.ls28{letter-spacing:0.216000px;}
.ls3b{letter-spacing:0.220800px;}
.ls36{letter-spacing:0.241800px;}
.ls3a{letter-spacing:0.253200px;}
.ls6{letter-spacing:0.264240px;}
.ls22{letter-spacing:0.270720px;}
.ls5{letter-spacing:0.279360px;}
.ls9{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.293040px;}
.ls2c{letter-spacing:0.332400px;}
.ls0{letter-spacing:0.332640px;}
.ls1{letter-spacing:0.342720px;}
.ls56{letter-spacing:0.399703px;}
.ls58{letter-spacing:0.399808px;}
.ls33{letter-spacing:0.430800px;}
.lsc{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.444240px;}
.ls31{letter-spacing:0.499200px;}
.lsb{letter-spacing:0.576000px;}
.ls3c{letter-spacing:0.654000px;}
.ls16{letter-spacing:0.762354px;}
.ls1b{letter-spacing:0.833486px;}
.ls17{letter-spacing:0.841171px;}
.ls14{letter-spacing:0.851075px;}
.lsa{letter-spacing:0.864000px;}
.ls46{letter-spacing:0.872214px;}
.lsf{letter-spacing:0.881736px;}
.ls15{letter-spacing:0.884021px;}
.ls1a{letter-spacing:0.914667px;}
.ls10{letter-spacing:0.936964px;}
.ls13{letter-spacing:0.960197px;}
.ls4b{letter-spacing:0.965504px;}
.ls18{letter-spacing:0.969445px;}
.ls19{letter-spacing:1.019001px;}
.ls11{letter-spacing:1.048371px;}
.lsd{letter-spacing:1.152000px;}
.ls47{letter-spacing:1.286949px;}
.ls4a{letter-spacing:1.331436px;}
.ls48{letter-spacing:1.340254px;}
.ls12{letter-spacing:1.573128px;}
.ls20{letter-spacing:3.600000px;}
.ls3{letter-spacing:6.321600px;}
.ls4{letter-spacing:17.841600px;}
.ls26{letter-spacing:22.320000px;}
.ls29{letter-spacing:23.976000px;}
.ls2{letter-spacing:32.241600px;}
.ls27{letter-spacing:47.520000px;}
.ls24{letter-spacing:47.988000px;}
.ls1d{letter-spacing:49.080000px;}
.ls25{letter-spacing:50.400000px;}
.ls21{letter-spacing:177.120000px;}
.lse{letter-spacing:180.696000px;}
.ls2a{letter-spacing:2061.155233px;}
.ls2b{letter-spacing:2061.694786px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws36{word-spacing:-144.000000px;}
.ws2{word-spacing:-131.472000px;}
.ws1{word-spacing:-127.908000px;}
.ws49{word-spacing:-116.064000px;}
.ws18{word-spacing:-71.712000px;}
.ws3{word-spacing:-59.731200px;}
.ws3e{word-spacing:-57.888000px;}
.ws11{word-spacing:-57.692400px;}
.ws5{word-spacing:-57.537600px;}
.ws7{word-spacing:-57.469200px;}
.wse{word-spacing:-57.291600px;}
.wsa{word-spacing:-57.280200px;}
.ws10{word-spacing:-57.259200px;}
.wsd{word-spacing:-57.111000px;}
.wsf{word-spacing:-57.038400px;}
.ws12{word-spacing:-56.974200px;}
.ws9{word-spacing:-56.944200px;}
.ws6{word-spacing:-56.937600px;}
.wsc{word-spacing:-56.907600px;}
.ws8{word-spacing:-56.832000px;}
.wsb{word-spacing:-56.817600px;}
.ws4{word-spacing:-56.749200px;}
.ws14{word-spacing:-55.666080px;}
.ws15{word-spacing:-55.632120px;}
.ws13{word-spacing:-55.567920px;}
.ws34{word-spacing:-49.248000px;}
.ws35{word-spacing:-49.104000px;}
.ws17{word-spacing:-48.960000px;}
.ws16{word-spacing:-48.816000px;}
.ws33{word-spacing:-48.672000px;}
.ws41{word-spacing:-48.384000px;}
.ws19{word-spacing:-47.808000px;}
.ws23{word-spacing:-47.664000px;}
.ws1b{word-spacing:-47.520000px;}
.ws42{word-spacing:-46.800000px;}
.ws0{word-spacing:-43.574400px;}
.ws1f{word-spacing:-39.919680px;}
.ws22{word-spacing:-39.643680px;}
.ws21{word-spacing:-39.584880px;}
.ws45{word-spacing:-36.729860px;}
.ws1d{word-spacing:-36.000000px;}
.ws4b{word-spacing:-34.781259px;}
.ws48{word-spacing:-34.772156px;}
.ws1c{word-spacing:-32.558400px;}
.ws32{word-spacing:-31.971720px;}
.ws1a{word-spacing:-31.792320px;}
.ws4a{word-spacing:-30.426994px;}
.ws47{word-spacing:-30.419031px;}
.ws46{word-spacing:-29.736000px;}
.ws39{word-spacing:-28.641600px;}
.ws38{word-spacing:-28.407000px;}
.ws3f{word-spacing:-24.480000px;}
.ws40{word-spacing:-24.408000px;}
.ws3a{word-spacing:-21.060000px;}
.ws2c{word-spacing:-19.738937px;}
.ws37{word-spacing:-19.094400px;}
.ws28{word-spacing:-19.079397px;}
.ws2f{word-spacing:-16.401355px;}
.ws2e{word-spacing:-15.639001px;}
.ws2d{word-spacing:-15.632362px;}
.ws31{word-spacing:-15.611612px;}
.ws27{word-spacing:-15.115014px;}
.ws26{word-spacing:-15.088543px;}
.ws30{word-spacing:-14.063849px;}
.ws3d{word-spacing:-8.805629px;}
.ws3c{word-spacing:-6.295556px;}
.ws20{word-spacing:-0.288000px;}
.ws3b{word-spacing:-0.187167px;}
.ws43{word-spacing:-0.121484px;}
.ws44{word-spacing:-0.121271px;}
.ws4c{word-spacing:0.000000px;}
.ws29{word-spacing:19.609869px;}
.ws2b{word-spacing:248.161579px;}
.ws2a{word-spacing:263.492140px;}
.ws25{word-spacing:268.899149px;}
.ws24{word-spacing:285.510805px;}
.ws1e{word-spacing:321.994275px;}
._b{margin-left:-30.916080px;}
._6{margin-left:-27.982320px;}
._34{margin-left:-25.056000px;}
._18{margin-left:-23.763360px;}
._13{margin-left:-21.858840px;}
._4{margin-left:-20.235840px;}
._32{margin-left:-18.576000px;}
._14{margin-left:-17.020800px;}
._36{margin-left:-15.264000px;}
._35{margin-left:-13.336560px;}
._1e{margin-left:-9.504000px;}
._5{margin-left:-8.264640px;}
._a{margin-left:-7.003440px;}
._9{margin-left:-5.420880px;}
._8{margin-left:-3.521280px;}
._3{margin-left:-2.499120px;}
._0{margin-left:-1.426560px;}
._2{width:1.062000px;}
._2b{width:2.063710px;}
._1{width:3.075840px;}
._c{width:4.220880px;}
._17{width:6.214560px;}
._16{width:7.914960px;}
._15{width:8.915040px;}
._7{width:10.573200px;}
._12{width:11.783760px;}
._37{width:15.984000px;}
._f{width:17.069280px;}
._e{width:18.334320px;}
._d{width:19.418400px;}
._38{width:22.475280px;}
._43{width:23.904000px;}
._44{width:24.910320px;}
._3f{width:25.980240px;}
._3e{width:27.540000px;}
._42{width:28.944000px;}
._11{width:32.278800px;}
._10{width:33.484560px;}
._41{width:41.184000px;}
._33{width:43.344000px;}
._40{width:47.520000px;}
._1f{width:50.112000px;}
._29{width:51.515214px;}
._2c{width:53.347350px;}
._2a{width:56.346215px;}
._20{width:66.816000px;}
._31{width:71.770434px;}
._30{width:73.216811px;}
._3b{width:74.970000px;}
._23{width:76.698000px;}
._2f{width:88.751642px;}
._2e{width:89.962994px;}
._28{width:91.459368px;}
._27{width:92.677471px;}
._39{width:94.176000px;}
._3a{width:95.274000px;}
._26{width:110.143680px;}
._3d{width:111.706560px;}
._3c{width:113.184000px;}
._22{width:125.219760px;}
._21{width:126.339120px;}
._24{width:177.696000px;}
._1c{width:295.585217px;}
._25{width:306.522000px;}
._1b{width:320.282649px;}
._2d{width:339.115680px;}
._1a{width:768.694800px;}
._1d{width:2196.250560px;}
._19{width:3571.631040px;}
.fca{color:transparent;}
.fc8{color:rgb(196,149,0);}
.fc5{color:rgb(159,25,159);}
.fc9{color:rgb(255,0,0);}
.fc4{color:rgb(20,197,11);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(204,102,0);}
.fc2{color:rgb(0,153,153);}
.fc1{color:rgb(0,0,204);}
.fc7{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs22{font-size:22.645884px;}
.fs23{font-size:31.674925px;}
.fs11{font-size:34.279159px;}
.fs12{font-size:34.374379px;}
.fs1a{font-size:35.467501px;}
.fs1b{font-size:35.566022px;}
.fs14{font-size:54.257457px;}
.fsf{font-size:54.275335px;}
.fs13{font-size:54.352646px;}
.fs10{font-size:54.370555px;}
.fs1c{font-size:56.156877px;}
.fs1f{font-size:56.160000px;}
.fs19{font-size:56.231519px;}
.fs17{font-size:56.255398px;}
.fs16{font-size:58.009493px;}
.fse{font-size:62.857044px;}
.fs15{font-size:68.630924px;}
.fs18{font-size:71.003371px;}
.fs24{font-size:72.000000px;}
.fs21{font-size:74.686580px;}
.fs20{font-size:74.700795px;}
.fs1d{font-size:77.133954px;}
.fs1e{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fsc{font-size:108.000000px;}
.fs28{font-size:109.420975px;}
.fs2c{font-size:109.449619px;}
.fs7{font-size:112.320000px;}
.fs2d{font-size:113.053386px;}
.fs29{font-size:113.074075px;}
.fsb{font-size:120.240000px;}
.fs26{font-size:121.271489px;}
.fs25{font-size:121.484246px;}
.fs2b{font-size:125.079699px;}
.fs2f{font-size:125.112441px;}
.fs0{font-size:128.160000px;}
.fsa{font-size:128.715849px;}
.fs2e{font-size:131.922296px;}
.fs2a{font-size:131.946438px;}
.fs8{font-size:144.000000px;}
.fs27{font-size:162.521504px;}
.fs6{font-size:167.760000px;}
.fs5{font-size:175.680000px;}
.fs1{font-size:192.240000px;}
.fs2{font-size:216.000000px;}
.fs4{font-size:264.240000px;}
.fsd{font-size:288.000000px;}
.fs3{font-size:396.000000px;}
.ya3{bottom:-214.696102px;}
.ya4{bottom:-187.523851px;}
.y0{bottom:0.000000px;}
.yc0{bottom:4.827476px;}
.ya8{bottom:5.089264px;}
.y28{bottom:12.974936px;}
.yc2{bottom:13.200727px;}
.y8a{bottom:15.926608px;}
.yc1{bottom:21.136464px;}
.y5f{bottom:24.329241px;}
.y54{bottom:26.496677px;}
.y16{bottom:26.964000px;}
.ya9{bottom:32.260268px;}
.y5c{bottom:41.403164px;}
.yc4{bottom:41.419369px;}
.y106{bottom:43.641839px;}
.y125{bottom:43.650008px;}
.y8b{bottom:43.990669px;}
.y42{bottom:44.860441px;}
.y60{bottom:69.309532px;}
.y4d{bottom:79.992626px;}
.y10f{bottom:92.916000px;}
.yf5{bottom:94.773227px;}
.y115{bottom:94.794781px;}
.y62{bottom:101.246277px;}
.y4f{bottom:116.596420px;}
.y61{bottom:125.275158px;}
.yd4{bottom:125.532000px;}
.yc3{bottom:136.317558px;}
.yf6{bottom:141.028760px;}
.y116{bottom:141.062421px;}
.y10e{bottom:145.116000px;}
.y4e{bottom:149.008112px;}
.y63{bottom:158.807263px;}
.yd3{bottom:168.735000px;}
.y53{bottom:172.329300px;}
.y5e{bottom:175.420673px;}
.y50{bottom:176.060690px;}
.ybf{bottom:179.734265px;}
.ybe{bottom:188.105500px;}
.y64{bottom:196.889099px;}
.y10d{bottom:197.310000px;}
.yf7{bottom:211.699375px;}
.y117{bottom:211.751537px;}
.yd2{bottom:211.935000px;}
.y51{bottom:213.831495px;}
.y65{bottom:228.205426px;}
.y6d{bottom:244.533247px;}
.y6e{bottom:244.897619px;}
.y10c{bottom:249.510000px;}
.y52{bottom:251.716527px;}
.yd1{bottom:255.135000px;}
.y56{bottom:257.856186px;}
.y55{bottom:261.302011px;}
.y57{bottom:269.393035px;}
.y49{bottom:269.516780px;}
.y6b{bottom:270.925624px;}
.y67{bottom:271.418019px;}
.y70{bottom:272.402809px;}
.y58{bottom:274.894932px;}
.y4b{bottom:276.912928px;}
.y46{bottom:277.388871px;}
.y59{bottom:280.244526px;}
.yf8{bottom:282.708502px;}
.y118{bottom:282.775995px;}
.y47{bottom:291.219763px;}
.y45{bottom:292.647591px;}
.yd0{bottom:298.335000px;}
.y69{bottom:299.139862px;}
.y10b{bottom:301.710000px;}
.y5a{bottom:307.306623px;}
.y6f{bottom:312.946620px;}
.y4c{bottom:323.631455px;}
.y48{bottom:335.549057px;}
.y4a{bottom:339.832541px;}
.ycf{bottom:341.535000px;}
.y6c{bottom:346.971121px;}
.ya2{bottom:353.304669px;}
.yf9{bottom:353.388882px;}
.y119{bottom:353.474878px;}
.y10a{bottom:353.910000px;}
.y68{bottom:360.413506px;}
.y6a{bottom:377.184483px;}
.ye5{bottom:380.219228px;}
.ya1{bottom:380.490002px;}
.yce{bottom:384.735000px;}
.y105{bottom:389.215681px;}
.y124{bottom:389.314311px;}
.ye1{bottom:391.281397px;}
.y103{bottom:402.564069px;}
.y122{bottom:402.666193px;}
.y109{bottom:406.110000px;}
.yfa{bottom:424.059497px;}
.y11a{bottom:424.167249px;}
.y66{bottom:436.468851px;}
.y44{bottom:437.191361px;}
.yd5{bottom:476.310000px;}
.yfb{bottom:494.739878px;}
.y11b{bottom:494.866131px;}
.y87{bottom:507.930000px;}
.ydd{bottom:561.240000px;}
.y102{bottom:564.769276px;}
.yfc{bottom:565.423513px;}
.y11c{bottom:565.565013px;}
.ya7{bottom:572.985877px;}
.yec{bottom:585.210000px;}
.y86{bottom:589.710000px;}
.y101{bottom:598.311128px;}
.ya6{bottom:600.166037px;}
.y121{bottom:602.371408px;}
.y89{bottom:602.441848px;}
.ydc{bottom:626.070000px;}
.y88{bottom:630.499155px;}
.y100{bottom:631.862745px;}
.y120{bottom:635.931808px;}
.yfd{bottom:636.094128px;}
.y11d{bottom:636.257384px;}
.yeb{bottom:650.010000px;}
.y85{bottom:654.510000px;}
.yff{bottom:665.411107px;}
.y11f{bottom:669.488952px;}
.ydb{bottom:690.870000px;}
.yfe{bottom:706.774509px;}
.y11e{bottom:706.956267px;}
.yea{bottom:714.810000px;}
.y84{bottom:719.310000px;}
.y98{bottom:724.425000px;}
.y97{bottom:733.245000px;}
.y96{bottom:734.370000px;}
.y92{bottom:736.590000px;}
.y9c{bottom:740.550000px;}
.y94{bottom:742.065000px;}
.y104{bottom:743.906527px;}
.y123{bottom:744.098005px;}
.y95{bottom:749.160000px;}
.yda{bottom:755.670000px;}
.y8f{bottom:762.120000px;}
.y93{bottom:775.800000px;}
.y8e{bottom:777.495000px;}
.ye9{bottom:779.610000px;}
.y9a{bottom:782.925000px;}
.y83{bottom:784.110000px;}
.y8d{bottom:790.050000px;}
.y9d{bottom:819.435000px;}
.yd9{bottom:820.470000px;}
.y91{bottom:823.785000px;}
.y9b{bottom:825.480000px;}
.ye4{bottom:840.922078px;}
.ye8{bottom:844.410000px;}
.y82{bottom:848.910000px;}
.ye0{bottom:850.240795px;}
.y90{bottom:882.285000px;}
.yf3{bottom:884.595000px;}
.yd8{bottom:885.270000px;}
.y9e{bottom:903.675000px;}
.y81{bottom:913.710000px;}
.yf2{bottom:916.995000px;}
.y99{bottom:925.050000px;}
.yf1{bottom:949.395000px;}
.yd7{bottom:950.070000px;}
.yf0{bottom:981.795000px;}
.y80{bottom:989.895000px;}
.yef{bottom:1014.195000px;}
.yd6{bottom:1014.870000px;}
.y9f{bottom:1045.545000px;}
.ye2{bottom:1046.055000px;}
.yde{bottom:1048.611284px;}
.y7f{bottom:1057.755000px;}
.yee{bottom:1090.830000px;}
.y8c{bottom:1105.890000px;}
.ya5{bottom:1110.360000px;}
.yf4{bottom:1118.805000px;}
.yed{bottom:1120.710000px;}
.y7e{bottom:1122.555000px;}
.y7d{bottom:1187.355000px;}
.y7c{bottom:1250.895000px;}
.ya0{bottom:1277.103710px;}
.ye3{bottom:1304.429353px;}
.ydf{bottom:1309.157642px;}
.yaf{bottom:1331.385000px;}
.y7b{bottom:1334.955000px;}
.yb2{bottom:1343.595000px;}
.yad{bottom:1349.025000px;}
.yb6{bottom:1350.690000px;}
.yb4{bottom:1354.065000px;}
.yaa{bottom:1359.510000px;}
.yb5{bottom:1361.010000px;}
.yb7{bottom:1361.595000px;}
.yba{bottom:1369.005000px;}
.yae{bottom:1370.010000px;}
.ycc{bottom:1370.370000px;}
.yab{bottom:1397.010000px;}
.y7a{bottom:1398.675000px;}
.yb8{bottom:1402.095000px;}
.yb1{bottom:1405.830000px;}
.yb9{bottom:1423.440000px;}
.yac{bottom:1431.900000px;}
.yb3{bottom:1434.135000px;}
.yb0{bottom:1451.775000px;}
.ybb{bottom:1457.205000px;}
.y79{bottom:1463.295000px;}
.ybd{bottom:1471.860000px;}
.yca{bottom:1532.775000px;}
.yc9{bottom:1539.510000px;}
.y78{bottom:1541.955000px;}
.ycb{bottom:1544.940000px;}
.yc8{bottom:1548.720000px;}
.yc7{bottom:1557.510000px;}
.ybc{bottom:1569.450000px;}
.yc6{bottom:1573.275000px;}
.y77{bottom:1585.155000px;}
.yc5{bottom:1612.080000px;}
.y76{bottom:1690.995000px;}
.y108{bottom:1771.350000px;}
.y75{bottom:1775.055000px;}
.y114{bottom:1807.485000px;}
.y74{bottom:1857.885000px;}
.y73{bottom:1939.425000px;}
.y72{bottom:2023.485000px;}
.y43{bottom:2047.290000px;}
.y41{bottom:2048.013966px;}
.y5d{bottom:2049.915000px;}
.y5b{bottom:2050.658763px;}
.ye7{bottom:2449.905000px;}
.y107{bottom:2463.450000px;}
.y71{bottom:2479.935000px;}
.ye6{bottom:2494.185000px;}
.y110{bottom:2581.125000px;}
.ycd{bottom:2649.345000px;}
.y26{bottom:2726.535000px;}
.y3a{bottom:2740.755000px;}
.y36{bottom:2741.430000px;}
.y33{bottom:2747.085000px;}
.y3d{bottom:2775.750000px;}
.y35{bottom:2777.430000px;}
.y39{bottom:2782.005000px;}
.y32{bottom:2783.085000px;}
.y3e{bottom:2812.830000px;}
.y3c{bottom:2818.950000px;}
.y34{bottom:2819.850000px;}
.y25{bottom:2826.870000px;}
.y38{bottom:2840.325000px;}
.y126{bottom:2878.275000px;}
.y2a{bottom:2879.385000px;}
.y37{bottom:2881.545000px;}
.y24{bottom:2890.410000px;}
.y127{bottom:2916.180000px;}
.y3b{bottom:2931.555000px;}
.y2c{bottom:2934.210000px;}
.y23{bottom:2956.470000px;}
.y2b{bottom:3005.490000px;}
.y22{bottom:3021.270000px;}
.y1c{bottom:3063.525000px;}
.y21{bottom:3067.890000px;}
.y1b{bottom:3105.465000px;}
.y20{bottom:3110.940000px;}
.y29{bottom:3142.950000px;}
.y1a{bottom:3149.970000px;}
.y1f{bottom:3155.400000px;}
.y19{bottom:3193.170000px;}
.y1e{bottom:3198.600000px;}
.y18{bottom:3236.370000px;}
.y1d{bottom:3241.800000px;}
.y31{bottom:3323.055000px;}
.y27{bottom:3327.360000px;}
.y40{bottom:3353.070000px;}
.y30{bottom:3366.255000px;}
.y3f{bottom:3404.670000px;}
.y2f{bottom:3409.455000px;}
.y2e{bottom:3447.795000px;}
.y2d{bottom:3495.855000px;}
.y113{bottom:3527.640000px;}
.y111{bottom:3591.930000px;}
.y112{bottom:3592.470000px;}
.y15{bottom:3660.915000px;}
.y14{bottom:3711.345000px;}
.y13{bottom:3761.745000px;}
.y12{bottom:3812.145000px;}
.y11{bottom:3862.545000px;}
.y10{bottom:3912.945000px;}
.yf{bottom:3963.345000px;}
.ye{bottom:4013.745000px;}
.yd{bottom:4064.145000px;}
.yc{bottom:4114.545000px;}
.yb{bottom:4169.265000px;}
.y6{bottom:4203.615000px;}
.y17{bottom:4252.215000px;}
.y5{bottom:4277.775000px;}
.y4{bottom:4340.415000px;}
.y3{bottom:4398.015000px;}
.y2{bottom:4455.615000px;}
.y1{bottom:4513.215000px;}
.ya{bottom:4573.335000px;}
.y9{bottom:4652.535000px;}
.y8{bottom:4790.445000px;}
.y7{bottom:4909.245000px;}
.h2b{height:23.618949px;}
.h2c{height:33.035957px;}
.h19{height:56.588832px;}
.h16{height:56.607479px;}
.h18{height:56.688111px;}
.h17{height:56.706790px;}
.h21{height:58.569868px;}
.h20{height:58.647717px;}
.h1e{height:58.672622px;}
.h1c{height:60.502088px;}
.h14{height:65.557933px;}
.h1a{height:71.579909px;}
.h1f{height:74.054297px;}
.h2d{height:76.324219px;}
.h29{height:77.895769px;}
.h27{height:77.910594px;}
.h35{height:79.661462px;}
.h3a{height:79.682315px;}
.h24{height:80.448304px;}
.h3b{height:82.305956px;}
.h36{height:82.321018px;}
.h25{height:89.299336px;}
.h38{height:91.061441px;}
.h3d{height:91.085278px;}
.h30{height:92.137909px;}
.h2f{height:92.299554px;}
.h3c{height:96.043039px;}
.h37{height:96.060615px;}
.h10{height:99.984375px;}
.h3e{height:105.820312px;}
.h33{height:112.640625px;}
.hf{height:114.486328px;}
.h32{height:123.398896px;}
.he{height:127.461445px;}
.hd{height:129.721441px;}
.h22{height:131.062500px;}
.h3{height:135.857109px;}
.hc{height:140.627973px;}
.h2{height:146.185664px;}
.ha{height:152.648438px;}
.h4{height:171.372656px;}
.h28{height:176.571483px;}
.h9{height:177.835430px;}
.h2a{height:178.089052px;}
.h5{height:203.785664px;}
.hb{height:220.448438px;}
.h8{height:228.972656px;}
.h12{height:243.141445px;}
.h7{height:280.109883px;}
.h11{height:299.812500px;}
.h26{height:349.808131px;}
.h6{height:419.783203px;}
.h13{height:461.908863px;}
.h15{height:467.623131px;}
.h1b{height:521.449340px;}
.h1d{height:522.933428px;}
.h23{height:600.577665px;}
.h34{height:807.741831px;}
.h39{height:807.950019px;}
.h2e{height:1365.921210px;}
.h31{height:1370.992215px;}
.h1{height:5017.500000px;}
.h0{height:5017.860000px;}
.w2{width:314.804051px;}
.w9{width:345.516250px;}
.w5{width:533.750287px;}
.w6{width:554.455565px;}
.w3{width:617.014581px;}
.w4{width:635.592743px;}
.wa{width:756.054268px;}
.wb{width:761.413999px;}
.w8{width:828.758699px;}
.w7{width:828.760313px;}
.wd{width:1180.315795px;}
.wc{width:1180.538519px;}
.w1{width:3614.250000px;}
.w0{width:3614.580000px;}
.x5d{left:-43.995284px;}
.x5c{left:-39.940419px;}
.x85{left:-18.870954px;}
.x84{left:-16.637305px;}
.x4b{left:-13.521985px;}
.x86{left:-12.359527px;}
.x88{left:-1.597398px;}
.x0{left:0.000000px;}
.x73{left:1.685422px;}
.x4a{left:2.808481px;}
.x87{left:5.509669px;}
.x42{left:18.091778px;}
.x1d{left:19.798001px;}
.x35{left:21.085025px;}
.xb{left:32.544000px;}
.x9{left:42.048000px;}
.xa7{left:44.748000px;}
.x4e{left:59.358804px;}
.x58{left:64.440000px;}
.x5e{left:69.304399px;}
.x39{left:74.200097px;}
.x59{left:78.120000px;}
.xd{left:83.556000px;}
.x12{left:88.200000px;}
.x38{left:94.815202px;}
.xa8{left:98.748000px;}
.x11{left:102.780000px;}
.xa9{left:105.048000px;}
.x37{left:111.978587px;}
.x4f{left:116.323552px;}
.x3e{left:126.290136px;}
.xe{left:127.656000px;}
.x53{left:130.490848px;}
.xa4{left:143.698780px;}
.x24{left:147.420000px;}
.x25{left:151.560000px;}
.xa0{left:160.526761px;}
.x3d{left:166.092048px;}
.x5a{left:172.080000px;}
.x22{left:176.580000px;}
.x50{left:184.253669px;}
.xf{left:201.090000px;}
.x36{left:213.000000px;}
.x56{left:215.957674px;}
.x34{left:220.141491px;}
.x3a{left:230.908225px;}
.x55{left:232.341689px;}
.x4c{left:244.164190px;}
.x46{left:265.444478px;}
.x43{left:295.105473px;}
.x10{left:300.630000px;}
.x23{left:306.900000px;}
.x51{left:311.375104px;}
.x44{left:315.396830px;}
.x21{left:319.860000px;}
.x26{left:321.765000px;}
.x47{left:330.270177px;}
.x3f{left:353.170559px;}
.x27{left:363.165000px;}
.x3b{left:369.472204px;}
.x2d{left:392.550000px;}
.x54{left:399.176874px;}
.x28{left:416.805000px;}
.x52{left:455.166266px;}
.x45{left:461.359395px;}
.x95{left:475.174966px;}
.x57{left:479.850000px;}
.xa1{left:486.955279px;}
.x8{left:490.785000px;}
.x48{left:493.762722px;}
.x4d{left:521.342712px;}
.x3c{left:526.185093px;}
.x97{left:529.951293px;}
.xad{left:542.085000px;}
.x1{left:565.740000px;}
.x3{left:573.120000px;}
.xa5{left:587.919800px;}
.x99{left:598.049587px;}
.x40{left:601.580200px;}
.x41{left:603.246548px;}
.xa3{left:610.129506px;}
.x98{left:617.531776px;}
.x7{left:646.665000px;}
.x16{left:651.450000px;}
.x32{left:867.240000px;}
.x2{left:918.900000px;}
.x81{left:921.570000px;}
.x70{left:926.640000px;}
.x5b{left:943.080000px;}
.x13{left:956.730000px;}
.x49{left:968.805000px;}
.x14{left:979.050000px;}
.x5f{left:987.585000px;}
.x33{left:991.290000px;}
.xc{left:1017.510000px;}
.x60{left:1031.835000px;}
.x83{left:1037.670000px;}
.xa2{left:1061.070955px;}
.x15{left:1084.530000px;}
.x61{left:1093.350000px;}
.x8f{left:1098.510000px;}
.x5{left:1126.620000px;}
.xa{left:1138.290000px;}
.x7a{left:1149.990000px;}
.x92{left:1176.555000px;}
.x2a{left:1185.300000px;}
.x2b{left:1193.790000px;}
.x63{left:1196.100000px;}
.x29{left:1200.060000px;}
.x74{left:1245.990000px;}
.x62{left:1248.405000px;}
.x8a{left:1272.885000px;}
.x72{left:1275.840000px;}
.x2c{left:1281.270000px;}
.x8b{left:1302.510000px;}
.x8c{left:1324.110000px;}
.x90{left:1331.175000px;}
.x7b{left:1346.865000px;}
.x89{left:1350.720000px;}
.x64{left:1367.490000px;}
.x8d{left:1387.290000px;}
.x75{left:1392.630000px;}
.x65{left:1417.170000px;}
.x76{left:1440.255000px;}
.x66{left:1443.060000px;}
.x4{left:1456.050000px;}
.x77{left:1470.810000px;}
.x8e{left:1489.860000px;}
.x7c{left:1516.935000px;}
.x67{left:1518.270000px;}
.x68{left:1545.810000px;}
.x78{left:1555.170000px;}
.x7d{left:1579.035000px;}
.x69{left:1580.505000px;}
.x6a{left:1607.115000px;}
.x7f{left:1612.770000px;}
.x31{left:1619.250000px;}
.x6b{left:1627.770000px;}
.x82{left:1638.435000px;}
.x71{left:1651.350000px;}
.x79{left:1658.130000px;}
.xaf{left:1669.140000px;}
.x6c{left:1680.630000px;}
.x7e{left:1683.825000px;}
.x30{left:1697.430000px;}
.x6d{left:1700.535000px;}
.x80{left:1705.215000px;}
.x9f{left:1707.930000px;}
.x6f{left:1710.105000px;}
.xac{left:1712.595000px;}
.xab{left:1723.575000px;}
.x6e{left:1727.175000px;}
.x1c{left:1740.750000px;}
.xb0{left:1747.875000px;}
.x6{left:1815.510000px;}
.x9d{left:1846.695000px;}
.x93{left:1853.640000px;}
.x1e{left:1868.250000px;}
.x2e{left:1903.965000px;}
.x1b{left:1935.570000px;}
.x2f{left:1939.065000px;}
.xa6{left:1960.455000px;}
.x1f{left:1995.765000px;}
.x17{left:2274.225000px;}
.x19{left:2288.265000px;}
.x1a{left:2327.325000px;}
.x18{left:2344.425000px;}
.xaa{left:2644.920000px;}
.x91{left:2678.115000px;}
.x96{left:2780.250000px;}
.x94{left:2782.931035px;}
.x9e{left:2784.060000px;}
.x9c{left:2791.185000px;}
.xae{left:2933.820000px;}
.x9a{left:3068.535000px;}
.x9b{left:3174.915000px;}
.x20{left:3222.360000px;}
@media print{
.v10{vertical-align:-235.253333pt;}
.ve{vertical-align:-84.746667pt;}
.vd{vertical-align:-75.413335pt;}
.va{vertical-align:-62.294966pt;}
.v1{vertical-align:-51.200000pt;}
.v3{vertical-align:-36.480000pt;}
.v4{vertical-align:-31.360000pt;}
.v8{vertical-align:-29.706667pt;}
.vc{vertical-align:-17.920000pt;}
.v9{vertical-align:-10.156788pt;}
.vf{vertical-align:-2.414840pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:31.360000pt;}
.v6{vertical-align:38.400000pt;}
.v5{vertical-align:60.266667pt;}
.v2{vertical-align:70.400000pt;}
.v7{vertical-align:102.826667pt;}
.ls2f{letter-spacing:-3.168000pt;}
.ls57{letter-spacing:-1.280000pt;}
.ls55{letter-spacing:-1.024000pt;}
.ls54{letter-spacing:-0.896000pt;}
.ls53{letter-spacing:-0.512000pt;}
.ls45{letter-spacing:-0.307019pt;}
.ls43{letter-spacing:-0.297600pt;}
.ls49{letter-spacing:-0.283342pt;}
.ls30{letter-spacing:-0.257067pt;}
.ls41{letter-spacing:-0.256000pt;}
.ls44{letter-spacing:-0.245333pt;}
.ls4d{letter-spacing:-0.208533pt;}
.ls37{letter-spacing:-0.196267pt;}
.ls34{letter-spacing:-0.183467pt;}
.ls40{letter-spacing:-0.128000pt;}
.ls2e{letter-spacing:-0.117333pt;}
.ls38{letter-spacing:-0.116267pt;}
.ls3e{letter-spacing:-0.114133pt;}
.ls51{letter-spacing:-0.090469pt;}
.ls32{letter-spacing:-0.089600pt;}
.ls35{letter-spacing:-0.083733pt;}
.ls52{letter-spacing:-0.064000pt;}
.ls3d{letter-spacing:-0.057067pt;}
.ls42{letter-spacing:-0.037760pt;}
.ls3f{letter-spacing:-0.026880pt;}
.ls4e{letter-spacing:-0.008947pt;}
.ls4f{letter-spacing:-0.006710pt;}
.ls2d{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.064533pt;}
.ls50{letter-spacing:0.081580pt;}
.ls1e{letter-spacing:0.106667pt;}
.ls23{letter-spacing:0.110720pt;}
.ls1f{letter-spacing:0.115840pt;}
.ls8{letter-spacing:0.128000pt;}
.ls4c{letter-spacing:0.159467pt;}
.ls28{letter-spacing:0.192000pt;}
.ls3b{letter-spacing:0.196267pt;}
.ls36{letter-spacing:0.214933pt;}
.ls3a{letter-spacing:0.225067pt;}
.ls6{letter-spacing:0.234880pt;}
.ls22{letter-spacing:0.240640pt;}
.ls5{letter-spacing:0.248320pt;}
.ls9{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.260480pt;}
.ls2c{letter-spacing:0.295467pt;}
.ls0{letter-spacing:0.295680pt;}
.ls1{letter-spacing:0.304640pt;}
.ls56{letter-spacing:0.355292pt;}
.ls58{letter-spacing:0.355385pt;}
.ls33{letter-spacing:0.382933pt;}
.lsc{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.394880pt;}
.ls31{letter-spacing:0.443733pt;}
.lsb{letter-spacing:0.512000pt;}
.ls3c{letter-spacing:0.581333pt;}
.ls16{letter-spacing:0.677648pt;}
.ls1b{letter-spacing:0.740877pt;}
.ls17{letter-spacing:0.747707pt;}
.ls14{letter-spacing:0.756511pt;}
.lsa{letter-spacing:0.768000pt;}
.ls46{letter-spacing:0.775301pt;}
.lsf{letter-spacing:0.783765pt;}
.ls15{letter-spacing:0.785797pt;}
.ls1a{letter-spacing:0.813038pt;}
.ls10{letter-spacing:0.832857pt;}
.ls13{letter-spacing:0.853509pt;}
.ls4b{letter-spacing:0.858226pt;}
.ls18{letter-spacing:0.861729pt;}
.ls19{letter-spacing:0.905779pt;}
.ls11{letter-spacing:0.931885pt;}
.lsd{letter-spacing:1.024000pt;}
.ls47{letter-spacing:1.143954pt;}
.ls4a{letter-spacing:1.183499pt;}
.ls48{letter-spacing:1.191337pt;}
.ls12{letter-spacing:1.398336pt;}
.ls20{letter-spacing:3.200000pt;}
.ls3{letter-spacing:5.619200pt;}
.ls4{letter-spacing:15.859200pt;}
.ls26{letter-spacing:19.840000pt;}
.ls29{letter-spacing:21.312000pt;}
.ls2{letter-spacing:28.659200pt;}
.ls27{letter-spacing:42.240000pt;}
.ls24{letter-spacing:42.656000pt;}
.ls1d{letter-spacing:43.626667pt;}
.ls25{letter-spacing:44.800000pt;}
.ls21{letter-spacing:157.440000pt;}
.lse{letter-spacing:160.618667pt;}
.ls2a{letter-spacing:1832.137985pt;}
.ls2b{letter-spacing:1832.617588pt;}
.ws36{word-spacing:-128.000000pt;}
.ws2{word-spacing:-116.864000pt;}
.ws1{word-spacing:-113.696000pt;}
.ws49{word-spacing:-103.168000pt;}
.ws18{word-spacing:-63.744000pt;}
.ws3{word-spacing:-53.094400pt;}
.ws3e{word-spacing:-51.456000pt;}
.ws11{word-spacing:-51.282133pt;}
.ws5{word-spacing:-51.144533pt;}
.ws7{word-spacing:-51.083733pt;}
.wse{word-spacing:-50.925867pt;}
.wsa{word-spacing:-50.915733pt;}
.ws10{word-spacing:-50.897067pt;}
.wsd{word-spacing:-50.765333pt;}
.wsf{word-spacing:-50.700800pt;}
.ws12{word-spacing:-50.643733pt;}
.ws9{word-spacing:-50.617067pt;}
.ws6{word-spacing:-50.611200pt;}
.wsc{word-spacing:-50.584533pt;}
.ws8{word-spacing:-50.517333pt;}
.wsb{word-spacing:-50.504533pt;}
.ws4{word-spacing:-50.443733pt;}
.ws14{word-spacing:-49.480960pt;}
.ws15{word-spacing:-49.450773pt;}
.ws13{word-spacing:-49.393707pt;}
.ws34{word-spacing:-43.776000pt;}
.ws35{word-spacing:-43.648000pt;}
.ws17{word-spacing:-43.520000pt;}
.ws16{word-spacing:-43.392000pt;}
.ws33{word-spacing:-43.264000pt;}
.ws41{word-spacing:-43.008000pt;}
.ws19{word-spacing:-42.496000pt;}
.ws23{word-spacing:-42.368000pt;}
.ws1b{word-spacing:-42.240000pt;}
.ws42{word-spacing:-41.600000pt;}
.ws0{word-spacing:-38.732800pt;}
.ws1f{word-spacing:-35.484160pt;}
.ws22{word-spacing:-35.238827pt;}
.ws21{word-spacing:-35.186560pt;}
.ws45{word-spacing:-32.648764pt;}
.ws1d{word-spacing:-32.000000pt;}
.ws4b{word-spacing:-30.916674pt;}
.ws48{word-spacing:-30.908583pt;}
.ws1c{word-spacing:-28.940800pt;}
.ws32{word-spacing:-28.419307pt;}
.ws1a{word-spacing:-28.259840pt;}
.ws4a{word-spacing:-27.046217pt;}
.ws47{word-spacing:-27.039139pt;}
.ws46{word-spacing:-26.432000pt;}
.ws39{word-spacing:-25.459200pt;}
.ws38{word-spacing:-25.250667pt;}
.ws3f{word-spacing:-21.760000pt;}
.ws40{word-spacing:-21.696000pt;}
.ws3a{word-spacing:-18.720000pt;}
.ws2c{word-spacing:-17.545722pt;}
.ws37{word-spacing:-16.972800pt;}
.ws28{word-spacing:-16.959464pt;}
.ws2f{word-spacing:-14.578982pt;}
.ws2e{word-spacing:-13.901334pt;}
.ws2d{word-spacing:-13.895433pt;}
.ws31{word-spacing:-13.876988pt;}
.ws27{word-spacing:-13.435568pt;}
.ws26{word-spacing:-13.412038pt;}
.ws30{word-spacing:-12.501200pt;}
.ws3d{word-spacing:-7.827226pt;}
.ws3c{word-spacing:-5.596049pt;}
.ws20{word-spacing:-0.256000pt;}
.ws3b{word-spacing:-0.166371pt;}
.ws43{word-spacing:-0.107986pt;}
.ws44{word-spacing:-0.107797pt;}
.ws4c{word-spacing:0.000000pt;}
.ws29{word-spacing:17.430995pt;}
.ws2b{word-spacing:220.588070pt;}
.ws2a{word-spacing:234.215236pt;}
.ws25{word-spacing:239.021465pt;}
.ws24{word-spacing:253.787383pt;}
.ws1e{word-spacing:286.217134pt;}
._b{margin-left:-27.480960pt;}
._6{margin-left:-24.873173pt;}
._34{margin-left:-22.272000pt;}
._18{margin-left:-21.122987pt;}
._13{margin-left:-19.430080pt;}
._4{margin-left:-17.987413pt;}
._32{margin-left:-16.512000pt;}
._14{margin-left:-15.129600pt;}
._36{margin-left:-13.568000pt;}
._35{margin-left:-11.854720pt;}
._1e{margin-left:-8.448000pt;}
._5{margin-left:-7.346347pt;}
._a{margin-left:-6.225280pt;}
._9{margin-left:-4.818560pt;}
._8{margin-left:-3.130027pt;}
._3{margin-left:-2.221440pt;}
._0{margin-left:-1.268053pt;}
._2{width:0.944000pt;}
._2b{width:1.834409pt;}
._1{width:2.734080pt;}
._c{width:3.751893pt;}
._17{width:5.524053pt;}
._16{width:7.035520pt;}
._15{width:7.924480pt;}
._7{width:9.398400pt;}
._12{width:10.474453pt;}
._37{width:14.208000pt;}
._f{width:15.172693pt;}
._e{width:16.297173pt;}
._d{width:17.260800pt;}
._38{width:19.978027pt;}
._43{width:21.248000pt;}
._44{width:22.142507pt;}
._3f{width:23.093547pt;}
._3e{width:24.480000pt;}
._42{width:25.728000pt;}
._11{width:28.692267pt;}
._10{width:29.764053pt;}
._41{width:36.608000pt;}
._33{width:38.528000pt;}
._40{width:42.240000pt;}
._1f{width:44.544000pt;}
._29{width:45.791302pt;}
._2c{width:47.419867pt;}
._2a{width:50.085524pt;}
._20{width:59.392000pt;}
._31{width:63.795942pt;}
._30{width:65.081610pt;}
._3b{width:66.640000pt;}
._23{width:68.176000pt;}
._2f{width:78.890349pt;}
._2e{width:79.967106pt;}
._28{width:81.297216pt;}
._27{width:82.379974pt;}
._39{width:83.712000pt;}
._3a{width:84.688000pt;}
._26{width:97.905493pt;}
._3d{width:99.294720pt;}
._3c{width:100.608000pt;}
._22{width:111.306453pt;}
._21{width:112.301440pt;}
._24{width:157.952000pt;}
._1c{width:262.742415pt;}
._25{width:272.464000pt;}
._1b{width:284.695688pt;}
._2d{width:301.436160pt;}
._1a{width:683.284267pt;}
._1d{width:1952.222720pt;}
._19{width:3174.783147pt;}
.fs22{font-size:20.129674pt;}
.fs23{font-size:28.155489pt;}
.fs11{font-size:30.470364pt;}
.fs12{font-size:30.555004pt;}
.fs1a{font-size:31.526668pt;}
.fs1b{font-size:31.614242pt;}
.fs14{font-size:48.228851pt;}
.fsf{font-size:48.244743pt;}
.fs13{font-size:48.313463pt;}
.fs10{font-size:48.329382pt;}
.fs1c{font-size:49.917224pt;}
.fs1f{font-size:49.920000pt;}
.fs19{font-size:49.983572pt;}
.fs17{font-size:50.004798pt;}
.fs16{font-size:51.563994pt;}
.fse{font-size:55.872928pt;}
.fs15{font-size:61.005266pt;}
.fs18{font-size:63.114108pt;}
.fs24{font-size:64.000000pt;}
.fs21{font-size:66.388071pt;}
.fs20{font-size:66.400706pt;}
.fs1d{font-size:68.563515pt;}
.fs1e{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fsc{font-size:96.000000pt;}
.fs28{font-size:97.263089pt;}
.fs2c{font-size:97.288550pt;}
.fs7{font-size:99.840000pt;}
.fs2d{font-size:100.491899pt;}
.fs29{font-size:100.510289pt;}
.fsb{font-size:106.880000pt;}
.fs26{font-size:107.796880pt;}
.fs25{font-size:107.985997pt;}
.fs2b{font-size:111.181954pt;}
.fs2f{font-size:111.211059pt;}
.fs0{font-size:113.920000pt;}
.fsa{font-size:114.414088pt;}
.fs2e{font-size:117.264264pt;}
.fs2a{font-size:117.285723pt;}
.fs8{font-size:128.000000pt;}
.fs27{font-size:144.463559pt;}
.fs6{font-size:149.120000pt;}
.fs5{font-size:156.160000pt;}
.fs1{font-size:170.880000pt;}
.fs2{font-size:192.000000pt;}
.fs4{font-size:234.880000pt;}
.fsd{font-size:256.000000pt;}
.fs3{font-size:352.000000pt;}
.ya3{bottom:-190.840979pt;}
.ya4{bottom:-166.687868pt;}
.y0{bottom:0.000000pt;}
.yc0{bottom:4.291090pt;}
.ya8{bottom:4.523790pt;}
.y28{bottom:11.533276pt;}
.yc2{bottom:11.733979pt;}
.y8a{bottom:14.156985pt;}
.yc1{bottom:18.787968pt;}
.y5f{bottom:21.625992pt;}
.y54{bottom:23.552602pt;}
.y16{bottom:23.968000pt;}
.ya9{bottom:28.675794pt;}
.y5c{bottom:36.802813pt;}
.yc4{bottom:36.817217pt;}
.y106{bottom:38.792746pt;}
.y125{bottom:38.800007pt;}
.y8b{bottom:39.102817pt;}
.y42{bottom:39.875948pt;}
.y60{bottom:61.608473pt;}
.y4d{bottom:71.104556pt;}
.y10f{bottom:82.592000pt;}
.yf5{bottom:84.242869pt;}
.y115{bottom:84.262027pt;}
.y62{bottom:89.996691pt;}
.y4f{bottom:103.641262pt;}
.y61{bottom:111.355696pt;}
.yd4{bottom:111.584000pt;}
.yc3{bottom:121.171162pt;}
.yf6{bottom:125.358898pt;}
.y116{bottom:125.388819pt;}
.y10e{bottom:128.992000pt;}
.y4e{bottom:132.451655pt;}
.y63{bottom:141.162011pt;}
.yd3{bottom:149.986667pt;}
.y53{bottom:153.181600pt;}
.y5e{bottom:155.929487pt;}
.y50{bottom:156.498391pt;}
.ybf{bottom:159.763792pt;}
.ybe{bottom:167.204889pt;}
.y64{bottom:175.012532pt;}
.y10d{bottom:175.386667pt;}
.yf7{bottom:188.177222pt;}
.y117{bottom:188.223588pt;}
.yd2{bottom:188.386667pt;}
.y51{bottom:190.072440pt;}
.y65{bottom:202.849268pt;}
.y6d{bottom:217.362886pt;}
.y6e{bottom:217.686773pt;}
.y10c{bottom:221.786667pt;}
.y52{bottom:223.748024pt;}
.yd1{bottom:226.786667pt;}
.y56{bottom:229.205499pt;}
.y55{bottom:232.268454pt;}
.y57{bottom:239.460476pt;}
.y49{bottom:239.570471pt;}
.y6b{bottom:240.822777pt;}
.y67{bottom:241.260461pt;}
.y70{bottom:242.135830pt;}
.y58{bottom:244.351050pt;}
.y4b{bottom:246.144825pt;}
.y46{bottom:246.567885pt;}
.y59{bottom:249.106246pt;}
.yf8{bottom:251.296446pt;}
.y118{bottom:251.356440pt;}
.y47{bottom:258.862012pt;}
.y45{bottom:260.131192pt;}
.yd0{bottom:265.186667pt;}
.y69{bottom:265.902100pt;}
.y10b{bottom:268.186667pt;}
.y5a{bottom:273.161443pt;}
.y6f{bottom:278.174774pt;}
.y4c{bottom:287.672404pt;}
.y48{bottom:298.265829pt;}
.y4a{bottom:302.073370pt;}
.ycf{bottom:303.586667pt;}
.y6c{bottom:308.418774pt;}
.ya2{bottom:314.048595pt;}
.yf9{bottom:314.123451pt;}
.y119{bottom:314.199891pt;}
.y10a{bottom:314.586667pt;}
.y68{bottom:320.367561pt;}
.y6a{bottom:335.275096pt;}
.ye5{bottom:337.972647pt;}
.ya1{bottom:338.213335pt;}
.yce{bottom:341.986667pt;}
.y105{bottom:345.969494pt;}
.y124{bottom:346.057165pt;}
.ye1{bottom:347.805686pt;}
.y103{bottom:357.834728pt;}
.y122{bottom:357.925505pt;}
.y109{bottom:360.986667pt;}
.yfa{bottom:376.941775pt;}
.y11a{bottom:377.037554pt;}
.y66{bottom:387.972312pt;}
.y44{bottom:388.614543pt;}
.yd5{bottom:423.386667pt;}
.yfb{bottom:439.768780pt;}
.y11b{bottom:439.881005pt;}
.y87{bottom:451.493333pt;}
.ydd{bottom:498.880000pt;}
.y102{bottom:502.017134pt;}
.yfc{bottom:502.598678pt;}
.y11c{bottom:502.724456pt;}
.ya7{bottom:509.320779pt;}
.yec{bottom:520.186667pt;}
.y86{bottom:524.186667pt;}
.y101{bottom:531.832114pt;}
.ya6{bottom:533.480922pt;}
.y121{bottom:535.441252pt;}
.y89{bottom:535.503865pt;}
.ydc{bottom:556.506667pt;}
.y88{bottom:560.443693pt;}
.y100{bottom:561.655773pt;}
.y120{bottom:565.272718pt;}
.yfd{bottom:565.417003pt;}
.y11d{bottom:565.562119pt;}
.yeb{bottom:577.786667pt;}
.y85{bottom:581.786667pt;}
.yff{bottom:591.476539pt;}
.y11f{bottom:595.101291pt;}
.ydb{bottom:614.106667pt;}
.yfe{bottom:628.244008pt;}
.y11e{bottom:628.405571pt;}
.yea{bottom:635.386667pt;}
.y84{bottom:639.386667pt;}
.y98{bottom:643.933333pt;}
.y97{bottom:651.773333pt;}
.y96{bottom:652.773333pt;}
.y92{bottom:654.746667pt;}
.y9c{bottom:658.266667pt;}
.y94{bottom:659.613333pt;}
.y104{bottom:661.250246pt;}
.y123{bottom:661.420449pt;}
.y95{bottom:665.920000pt;}
.yda{bottom:671.706667pt;}
.y8f{bottom:677.440000pt;}
.y93{bottom:689.600000pt;}
.y8e{bottom:691.106667pt;}
.ye9{bottom:692.986667pt;}
.y9a{bottom:695.933333pt;}
.y83{bottom:696.986667pt;}
.y8d{bottom:702.266667pt;}
.y9d{bottom:728.386667pt;}
.yd9{bottom:729.306667pt;}
.y91{bottom:732.253333pt;}
.y9b{bottom:733.760000pt;}
.ye4{bottom:747.486292pt;}
.ye8{bottom:750.586667pt;}
.y82{bottom:754.586667pt;}
.ye0{bottom:755.769596pt;}
.y90{bottom:784.253333pt;}
.yf3{bottom:786.306667pt;}
.yd8{bottom:786.906667pt;}
.y9e{bottom:803.266667pt;}
.y81{bottom:812.186667pt;}
.yf2{bottom:815.106667pt;}
.y99{bottom:822.266667pt;}
.yf1{bottom:843.906667pt;}
.yd7{bottom:844.506667pt;}
.yf0{bottom:872.706667pt;}
.y80{bottom:879.906667pt;}
.yef{bottom:901.506667pt;}
.yd6{bottom:902.106667pt;}
.y9f{bottom:929.373333pt;}
.ye2{bottom:929.826667pt;}
.yde{bottom:932.098919pt;}
.y7f{bottom:940.226667pt;}
.yee{bottom:969.626667pt;}
.y8c{bottom:983.013333pt;}
.ya5{bottom:986.986667pt;}
.yf4{bottom:994.493333pt;}
.yed{bottom:996.186667pt;}
.y7e{bottom:997.826667pt;}
.y7d{bottom:1055.426667pt;}
.y7c{bottom:1111.906667pt;}
.ya0{bottom:1135.203297pt;}
.ye3{bottom:1159.492758pt;}
.ydf{bottom:1163.695682pt;}
.yaf{bottom:1183.453333pt;}
.y7b{bottom:1186.626667pt;}
.yb2{bottom:1194.306667pt;}
.yad{bottom:1199.133333pt;}
.yb6{bottom:1200.613333pt;}
.yb4{bottom:1203.613333pt;}
.yaa{bottom:1208.453333pt;}
.yb5{bottom:1209.786667pt;}
.yb7{bottom:1210.306667pt;}
.yba{bottom:1216.893333pt;}
.yae{bottom:1217.786667pt;}
.ycc{bottom:1218.106667pt;}
.yab{bottom:1241.786667pt;}
.y7a{bottom:1243.266667pt;}
.yb8{bottom:1246.306667pt;}
.yb1{bottom:1249.626667pt;}
.yb9{bottom:1265.280000pt;}
.yac{bottom:1272.800000pt;}
.yb3{bottom:1274.786667pt;}
.yb0{bottom:1290.466667pt;}
.ybb{bottom:1295.293333pt;}
.y79{bottom:1300.706667pt;}
.ybd{bottom:1308.320000pt;}
.yca{bottom:1362.466667pt;}
.yc9{bottom:1368.453333pt;}
.y78{bottom:1370.626667pt;}
.ycb{bottom:1373.280000pt;}
.yc8{bottom:1376.640000pt;}
.yc7{bottom:1384.453333pt;}
.ybc{bottom:1395.066667pt;}
.yc6{bottom:1398.466667pt;}
.y77{bottom:1409.026667pt;}
.yc5{bottom:1432.960000pt;}
.y76{bottom:1503.106667pt;}
.y108{bottom:1574.533333pt;}
.y75{bottom:1577.826667pt;}
.y114{bottom:1606.653333pt;}
.y74{bottom:1651.453333pt;}
.y73{bottom:1723.933333pt;}
.y72{bottom:1798.653333pt;}
.y43{bottom:1819.813333pt;}
.y41{bottom:1820.456859pt;}
.y5d{bottom:1822.146667pt;}
.y5b{bottom:1822.807789pt;}
.ye7{bottom:2177.693333pt;}
.y107{bottom:2189.733333pt;}
.y71{bottom:2204.386667pt;}
.ye6{bottom:2217.053333pt;}
.y110{bottom:2294.333333pt;}
.ycd{bottom:2354.973333pt;}
.y26{bottom:2423.586667pt;}
.y3a{bottom:2436.226667pt;}
.y36{bottom:2436.826667pt;}
.y33{bottom:2441.853333pt;}
.y3d{bottom:2467.333333pt;}
.y35{bottom:2468.826667pt;}
.y39{bottom:2472.893333pt;}
.y32{bottom:2473.853333pt;}
.y3e{bottom:2500.293333pt;}
.y3c{bottom:2505.733333pt;}
.y34{bottom:2506.533333pt;}
.y25{bottom:2512.773333pt;}
.y38{bottom:2524.733333pt;}
.y126{bottom:2558.466667pt;}
.y2a{bottom:2559.453333pt;}
.y37{bottom:2561.373333pt;}
.y24{bottom:2569.253333pt;}
.y127{bottom:2592.160000pt;}
.y3b{bottom:2605.826667pt;}
.y2c{bottom:2608.186667pt;}
.y23{bottom:2627.973333pt;}
.y2b{bottom:2671.546667pt;}
.y22{bottom:2685.573333pt;}
.y1c{bottom:2723.133333pt;}
.y21{bottom:2727.013333pt;}
.y1b{bottom:2760.413333pt;}
.y20{bottom:2765.280000pt;}
.y29{bottom:2793.733333pt;}
.y1a{bottom:2799.973333pt;}
.y1f{bottom:2804.800000pt;}
.y19{bottom:2838.373333pt;}
.y1e{bottom:2843.200000pt;}
.y18{bottom:2876.773333pt;}
.y1d{bottom:2881.600000pt;}
.y31{bottom:2953.826667pt;}
.y27{bottom:2957.653333pt;}
.y40{bottom:2980.506667pt;}
.y30{bottom:2992.226667pt;}
.y3f{bottom:3026.373333pt;}
.y2f{bottom:3030.626667pt;}
.y2e{bottom:3064.706667pt;}
.y2d{bottom:3107.426667pt;}
.y113{bottom:3135.680000pt;}
.y111{bottom:3192.826667pt;}
.y112{bottom:3193.306667pt;}
.y15{bottom:3254.146667pt;}
.y14{bottom:3298.973333pt;}
.y13{bottom:3343.773333pt;}
.y12{bottom:3388.573333pt;}
.y11{bottom:3433.373333pt;}
.y10{bottom:3478.173333pt;}
.yf{bottom:3522.973333pt;}
.ye{bottom:3567.773333pt;}
.yd{bottom:3612.573333pt;}
.yc{bottom:3657.373333pt;}
.yb{bottom:3706.013333pt;}
.y6{bottom:3736.546667pt;}
.y17{bottom:3779.746667pt;}
.y5{bottom:3802.466667pt;}
.y4{bottom:3858.146667pt;}
.y3{bottom:3909.346667pt;}
.y2{bottom:3960.546667pt;}
.y1{bottom:4011.746667pt;}
.ya{bottom:4065.186667pt;}
.y9{bottom:4135.586667pt;}
.y8{bottom:4258.173333pt;}
.y7{bottom:4363.773333pt;}
.h2b{height:20.994621pt;}
.h2c{height:29.365295pt;}
.h19{height:50.301184pt;}
.h16{height:50.317759pt;}
.h18{height:50.389432pt;}
.h17{height:50.406036pt;}
.h21{height:52.062105pt;}
.h20{height:52.131304pt;}
.h1e{height:52.153442pt;}
.h1c{height:53.779634pt;}
.h14{height:58.273718pt;}
.h1a{height:63.626586pt;}
.h1f{height:65.826042pt;}
.h2d{height:67.843750pt;}
.h29{height:69.240684pt;}
.h27{height:69.253862pt;}
.h35{height:70.810188pt;}
.h3a{height:70.828725pt;}
.h24{height:71.509603pt;}
.h3b{height:73.160850pt;}
.h36{height:73.174238pt;}
.h25{height:79.377187pt;}
.h38{height:80.943503pt;}
.h3d{height:80.964692pt;}
.h30{height:81.900364pt;}
.h2f{height:82.044048pt;}
.h3c{height:85.371590pt;}
.h37{height:85.387213pt;}
.h10{height:88.875000pt;}
.h3e{height:94.062500pt;}
.h33{height:100.125000pt;}
.hf{height:101.765625pt;}
.h32{height:109.687908pt;}
.he{height:113.299062pt;}
.hd{height:115.307948pt;}
.h22{height:116.500000pt;}
.h3{height:120.761875pt;}
.hc{height:125.002642pt;}
.h2{height:129.942813pt;}
.ha{height:135.687500pt;}
.h4{height:152.331250pt;}
.h28{height:156.952430pt;}
.h9{height:158.075937pt;}
.h2a{height:158.301379pt;}
.h5{height:181.142813pt;}
.hb{height:195.954167pt;}
.h8{height:203.531250pt;}
.h12{height:216.125729pt;}
.h7{height:248.986562pt;}
.h11{height:266.500000pt;}
.h26{height:310.940561pt;}
.h6{height:373.140625pt;}
.h13{height:410.585656pt;}
.h15{height:415.665006pt;}
.h1b{height:463.510524pt;}
.h1d{height:464.829714pt;}
.h23{height:533.846813pt;}
.h34{height:717.992738pt;}
.h39{height:718.177795pt;}
.h2e{height:1214.152186pt;}
.h31{height:1218.659746pt;}
.h1{height:4460.000000pt;}
.h0{height:4460.320000pt;}
.w2{width:279.825823pt;}
.w9{width:307.125555pt;}
.w5{width:474.444700pt;}
.w6{width:492.849391pt;}
.w3{width:548.457406pt;}
.w4{width:564.971327pt;}
.wa{width:672.048238pt;}
.wb{width:676.812443pt;}
.w8{width:736.674399pt;}
.w7{width:736.675833pt;}
.wd{width:1049.169596pt;}
.wc{width:1049.367573pt;}
.w1{width:3212.666667pt;}
.w0{width:3212.960000pt;}
.x5d{left:-39.106919pt;}
.x5c{left:-35.502595pt;}
.x85{left:-16.774181pt;}
.x84{left:-14.788715pt;}
.x4b{left:-12.019542pt;}
.x86{left:-10.986247pt;}
.x88{left:-1.419909pt;}
.x0{left:0.000000pt;}
.x73{left:1.498153pt;}
.x4a{left:2.496427pt;}
.x87{left:4.897483pt;}
.x42{left:16.081581pt;}
.x1d{left:17.598223pt;}
.x35{left:18.742245pt;}
.xb{left:28.928000pt;}
.x9{left:37.376000pt;}
.xa7{left:39.776000pt;}
.x4e{left:52.763381pt;}
.x58{left:57.280000pt;}
.x5e{left:61.603910pt;}
.x39{left:65.955641pt;}
.x59{left:69.440000pt;}
.xd{left:74.272000pt;}
.x12{left:78.400000pt;}
.x38{left:84.280180pt;}
.xa8{left:87.776000pt;}
.x11{left:91.360000pt;}
.xa9{left:93.376000pt;}
.x37{left:99.536521pt;}
.x4f{left:103.398713pt;}
.x3e{left:112.257898pt;}
.xe{left:113.472000pt;}
.x53{left:115.991865pt;}
.xa4{left:127.732249pt;}
.x24{left:131.040000pt;}
.x25{left:134.720000pt;}
.xa0{left:142.690454pt;}
.x3d{left:147.637376pt;}
.x5a{left:152.960000pt;}
.x22{left:156.960000pt;}
.x50{left:163.781039pt;}
.xf{left:178.746667pt;}
.x36{left:189.333333pt;}
.x56{left:191.962377pt;}
.x34{left:195.681326pt;}
.x3a{left:205.251756pt;}
.x55{left:206.525946pt;}
.x4c{left:217.034835pt;}
.x46{left:235.950647pt;}
.x43{left:262.315976pt;}
.x10{left:267.226667pt;}
.x23{left:272.800000pt;}
.x51{left:276.777871pt;}
.x44{left:280.352738pt;}
.x21{left:284.320000pt;}
.x26{left:286.013333pt;}
.x47{left:293.573490pt;}
.x3f{left:313.929386pt;}
.x27{left:322.813333pt;}
.x3b{left:328.419737pt;}
.x2d{left:348.933333pt;}
.x54{left:354.823888pt;}
.x28{left:370.493333pt;}
.x52{left:404.592236pt;}
.x45{left:410.097240pt;}
.x95{left:422.377747pt;}
.x57{left:426.533333pt;}
.xa1{left:432.849137pt;}
.x8{left:436.253333pt;}
.x48{left:438.900197pt;}
.x4d{left:463.415744pt;}
.x3c{left:467.720083pt;}
.x97{left:471.067816pt;}
.xad{left:481.853333pt;}
.x1{left:502.880000pt;}
.x3{left:509.440000pt;}
.xa5{left:522.595378pt;}
.x99{left:531.599633pt;}
.x40{left:534.737955pt;}
.x41{left:536.219153pt;}
.xa3{left:542.337339pt;}
.x98{left:548.917134pt;}
.x7{left:574.813333pt;}
.x16{left:579.066667pt;}
.x32{left:770.880000pt;}
.x2{left:816.800000pt;}
.x81{left:819.173333pt;}
.x70{left:823.680000pt;}
.x5b{left:838.293333pt;}
.x13{left:850.426667pt;}
.x49{left:861.160000pt;}
.x14{left:870.266667pt;}
.x5f{left:877.853333pt;}
.x33{left:881.146667pt;}
.xc{left:904.453333pt;}
.x60{left:917.186667pt;}
.x83{left:922.373333pt;}
.xa2{left:943.174183pt;}
.x15{left:964.026667pt;}
.x61{left:971.866667pt;}
.x8f{left:976.453333pt;}
.x5{left:1001.440000pt;}
.xa{left:1011.813333pt;}
.x7a{left:1022.213333pt;}
.x92{left:1045.826667pt;}
.x2a{left:1053.600000pt;}
.x2b{left:1061.146667pt;}
.x63{left:1063.200000pt;}
.x29{left:1066.720000pt;}
.x74{left:1107.546667pt;}
.x62{left:1109.693333pt;}
.x8a{left:1131.453333pt;}
.x72{left:1134.080000pt;}
.x2c{left:1138.906667pt;}
.x8b{left:1157.786667pt;}
.x8c{left:1176.986667pt;}
.x90{left:1183.266667pt;}
.x7b{left:1197.213333pt;}
.x89{left:1200.640000pt;}
.x64{left:1215.546667pt;}
.x8d{left:1233.146667pt;}
.x75{left:1237.893333pt;}
.x65{left:1259.706667pt;}
.x76{left:1280.226667pt;}
.x66{left:1282.720000pt;}
.x4{left:1294.266667pt;}
.x77{left:1307.386667pt;}
.x8e{left:1324.320000pt;}
.x7c{left:1348.386667pt;}
.x67{left:1349.573333pt;}
.x68{left:1374.053333pt;}
.x78{left:1382.373333pt;}
.x7d{left:1403.586667pt;}
.x69{left:1404.893333pt;}
.x6a{left:1428.546667pt;}
.x7f{left:1433.573333pt;}
.x31{left:1439.333333pt;}
.x6b{left:1446.906667pt;}
.x82{left:1456.386667pt;}
.x71{left:1467.866667pt;}
.x79{left:1473.893333pt;}
.xaf{left:1483.680000pt;}
.x6c{left:1493.893333pt;}
.x7e{left:1496.733333pt;}
.x30{left:1508.826667pt;}
.x6d{left:1511.586667pt;}
.x80{left:1515.746667pt;}
.x9f{left:1518.160000pt;}
.x6f{left:1520.093333pt;}
.xac{left:1522.306667pt;}
.xab{left:1532.066667pt;}
.x6e{left:1535.266667pt;}
.x1c{left:1547.333333pt;}
.xb0{left:1553.666667pt;}
.x6{left:1613.786667pt;}
.x9d{left:1641.506667pt;}
.x93{left:1647.680000pt;}
.x1e{left:1660.666667pt;}
.x2e{left:1692.413333pt;}
.x1b{left:1720.506667pt;}
.x2f{left:1723.613333pt;}
.xa6{left:1742.626667pt;}
.x1f{left:1774.013333pt;}
.x17{left:2021.533333pt;}
.x19{left:2034.013333pt;}
.x1a{left:2068.733333pt;}
.x18{left:2083.933333pt;}
.xaa{left:2351.040000pt;}
.x91{left:2380.546667pt;}
.x96{left:2471.333333pt;}
.x94{left:2473.716476pt;}
.x9e{left:2474.720000pt;}
.x9c{left:2481.053333pt;}
.xae{left:2607.840000pt;}
.x9a{left:2727.586667pt;}
.x9b{left:2822.146667pt;}
.x20{left:2864.320000pt;}
}




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