
    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_d05e45887f4c2594a4209267.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_991654acc41b35e8e34ed359.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_21f8dcc20e7edf4f90c3e667.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_beff3d630886c27f9116520c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_2d5d8e2bb1fab61d123caa23.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_f90dece3c38953e668d57b8c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a4677cb4a5e854453436a6ab.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_24ead5fd2e293691bb606ff2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.968262;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_3ef1e24f252a428a7b49b9a7.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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_a1b2b4f07764eec4b572ffc9.woff')format("woff");}.ffd{font-family:ffd;line-height:0.886719;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_17ec3d482c33cfda55866c95.woff')format("woff");}.ffe{font-family:ffe;line-height:1.040039;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_70bacbf0234753d88e3d7558.woff')format("woff");}.fff{font-family:fff;line-height:0.921387;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_fc58bf5617c4b742616438c7.woff')format("woff");}.ff10{font-family:ff10;line-height:0.933594;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_c1cda44c98097b1f1545cc5f.woff')format("woff");}.ff11{font-family:ff11;line-height:1.402354;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_40b3391e7b9b764779a2f27a.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_71bec7c0b94208c1a476d328.woff')format("woff");}.ff13{font-family:ff13;line-height:3.716797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_24ab73faaf3cfbc3e97329a1.woff')format("woff");}.ff14{font-family:ff14;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_8b5ff3e492a7c2ab95f1d779.woff')format("woff");}.ff15{font-family:ff15;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff16{font-family:ff16;line-height:1.003906;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;}
.m7{transform:matrix(0.152392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152392,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.189618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189618,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.231087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231087,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.238305,0.000000,-0.079427,0.237047,0,0);-ms-transform:matrix(0.238305,0.000000,-0.079427,0.237047,0,0);-webkit-transform:matrix(0.238305,0.000000,-0.079427,0.237047,0,0);}
.m8{transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245918,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,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);}
.m2{transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251327,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254659,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256217,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.257026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257026,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.262992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262992,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v5{vertical-align:-69.120000px;}
.vf{vertical-align:-61.200000px;}
.vd{vertical-align:-56.506297px;}
.v1c{vertical-align:-54.061295px;}
.v1e{vertical-align:-49.372878px;}
.v1f{vertical-align:-44.914482px;}
.v7{vertical-align:-35.280000px;}
.v2{vertical-align:-30.240000px;}
.v16{vertical-align:-26.640000px;}
.v17{vertical-align:-21.600000px;}
.v10{vertical-align:-20.160000px;}
.ve{vertical-align:-16.536088px;}
.v9{vertical-align:-13.680000px;}
.vb{vertical-align:-9.360000px;}
.v12{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v18{vertical-align:2.160000px;}
.vc{vertical-align:9.360000px;}
.va{vertical-align:13.680000px;}
.v1a{vertical-align:15.120000px;}
.v3{vertical-align:27.360000px;}
.v8{vertical-align:29.868078px;}
.v1{vertical-align:33.120000px;}
.v1d{vertical-align:39.826414px;}
.v4{vertical-align:47.520000px;}
.v13{vertical-align:50.400000px;}
.v11{vertical-align:55.440000px;}
.v6{vertical-align:56.880000px;}
.v14{vertical-align:58.320000px;}
.v1b{vertical-align:78.040286px;}
.v15{vertical-align:84.960000px;}
.v19{vertical-align:87.120000px;}
.ls3c{letter-spacing:-1.092303px;}
.lsc{letter-spacing:-0.984000px;}
.ls16{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.414600px;}
.ls34{letter-spacing:-0.372000px;}
.lsa{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.305400px;}
.ls49{letter-spacing:-0.262200px;}
.ls6{letter-spacing:-0.190200px;}
.ls41{letter-spacing:-0.188736px;}
.ls8{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.114000px;}
.ls47{letter-spacing:-0.109200px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.017280px;}
.ls28{letter-spacing:0.025920px;}
.ls42{letter-spacing:0.041751px;}
.ls2{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.078000px;}
.lse{letter-spacing:0.109200px;}
.ls1f{letter-spacing:0.140400px;}
.ls23{letter-spacing:0.149040px;}
.ls48{letter-spacing:0.152400px;}
.ls40{letter-spacing:0.167701px;}
.ls4{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.ls29{letter-spacing:0.262080px;}
.ls46{letter-spacing:0.262200px;}
.ls27{letter-spacing:0.305280px;}
.lsb{letter-spacing:0.305400px;}
.ls1d{letter-spacing:0.338400px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.414600px;}
.ls43{letter-spacing:0.567600px;}
.ls3{letter-spacing:0.576000px;}
.ls1e{letter-spacing:0.590400px;}
.ls25{letter-spacing:1.067760px;}
.ls24{letter-spacing:2.300400px;}
.ls13{letter-spacing:3.934800px;}
.ls14{letter-spacing:3.947760px;}
.ls1a{letter-spacing:3.974400px;}
.ls22{letter-spacing:4.032000px;}
.ls1c{letter-spacing:4.667760px;}
.ls11{letter-spacing:6.785280px;}
.ls1b{letter-spacing:8.486400px;}
.ls20{letter-spacing:20.300400px;}
.ls4a{letter-spacing:39.881280px;}
.ls10{letter-spacing:39.905280px;}
.ls31{letter-spacing:59.306519px;}
.ls2a{letter-spacing:60.683773px;}
.ls12{letter-spacing:73.859112px;}
.ls38{letter-spacing:76.938792px;}
.ls3b{letter-spacing:92.149264px;}
.ls37{letter-spacing:92.404663px;}
.ls36{letter-spacing:92.935668px;}
.ls39{letter-spacing:165.991156px;}
.ls21{letter-spacing:183.454560px;}
.ls33{letter-spacing:184.875650px;}
.ls44{letter-spacing:233.479500px;}
.ls35{letter-spacing:265.428182px;}
.ls3a{letter-spacing:272.113606px;}
.ls3d{letter-spacing:279.130857px;}
.ls3f{letter-spacing:291.428698px;}
.ls26{letter-spacing:347.180400px;}
.ls30{letter-spacing:351.508859px;}
.ls2c{letter-spacing:406.796343px;}
.ls2f{letter-spacing:416.538895px;}
.ls2b{letter-spacing:418.630854px;}
.ls2e{letter-spacing:418.690624px;}
.ls2d{letter-spacing:459.573477px;}
.ls3e{letter-spacing:472.895876px;}
.ls32{letter-spacing:561.474781px;}
.ls19{letter-spacing:563.799111px;}
.ls18{letter-spacing:577.371722px;}
.ls45{letter-spacing:849.185760px;}
.sc_{text-shadow:none;}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-66.240000px;}
.ws8{word-spacing:-44.712000px;}
.ws1e{word-spacing:-27.489600px;}
.wsd{word-spacing:-24.062880px;}
.ws6{word-spacing:-19.457280px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.ws7{word-spacing:-18.000000px;}
.ws17{word-spacing:-17.895460px;}
.ws31{word-spacing:-17.127600px;}
.ws10{word-spacing:-16.974600px;}
.ws9{word-spacing:-16.865400px;}
.ws36{word-spacing:-16.822200px;}
.ws38{word-spacing:-16.712400px;}
.wsf{word-spacing:-16.560000px;}
.ws37{word-spacing:-16.450800px;}
.ws39{word-spacing:-16.297800px;}
.wse{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.912000px;}
.ws5{word-spacing:-15.696000px;}
.wsa{word-spacing:-15.576000px;}
.ws3{word-spacing:-14.650800px;}
.ws16{word-spacing:-10.440000px;}
.wsc{word-spacing:0.000000px;}
.ws27{word-spacing:5.975531px;}
.ws25{word-spacing:8.120179px;}
.ws11{word-spacing:8.141379px;}
.ws19{word-spacing:19.045839px;}
.ws32{word-spacing:25.474897px;}
.ws29{word-spacing:37.183121px;}
.ws2c{word-spacing:37.324412px;}
.ws14{word-spacing:37.365737px;}
.ws30{word-spacing:39.467911px;}
.ws2d{word-spacing:39.914691px;}
.ws2f{word-spacing:39.961484px;}
.ws18{word-spacing:41.278054px;}
.ws24{word-spacing:47.198541px;}
.ws22{word-spacing:57.667694px;}
.ws20{word-spacing:58.995083px;}
.ws12{word-spacing:60.276643px;}
.ws1d{word-spacing:70.551184px;}
.ws13{word-spacing:81.706043px;}
.ws21{word-spacing:86.315845px;}
.ws1b{word-spacing:87.927785px;}
.ws34{word-spacing:96.827663px;}
.ws35{word-spacing:103.974467px;}
.ws15{word-spacing:115.205000px;}
.ws1a{word-spacing:126.803286px;}
.ws1c{word-spacing:135.954234px;}
.ws2a{word-spacing:138.814073px;}
.ws33{word-spacing:203.683906px;}
.ws2e{word-spacing:211.865109px;}
.ws28{word-spacing:225.758482px;}
.ws23{word-spacing:237.571298px;}
.ws26{word-spacing:267.251804px;}
.ws2b{word-spacing:290.464940px;}
.ws1f{word-spacing:595.987992px;}
._65{margin-left:-914.033816px;}
._5f{margin-left:-444.683909px;}
._4d{margin-left:-116.395288px;}
._40{margin-left:-31.701600px;}
._55{margin-left:-30.651840px;}
._57{margin-left:-15.541200px;}
._4a{margin-left:-9.792000px;}
._41{margin-left:-7.952880px;}
._4c{margin-left:-6.683280px;}
._58{margin-left:-5.413440px;}
._4b{margin-left:-3.254400px;}
._12{margin-left:-2.160960px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._2{width:2.340960px;}
._7{width:4.274640px;}
._b{width:5.497920px;}
._6d{width:6.532800px;}
._9{width:7.551360px;}
._a{width:9.339840px;}
._4{width:10.373040px;}
._3{width:11.459520px;}
._6{width:13.319040px;}
._5{width:14.506560px;}
._8{width:15.558240px;}
._d{width:17.951040px;}
._e{width:18.979920px;}
._14{width:20.534400px;}
._c{width:22.057920px;}
._10{width:23.418000px;}
._11{width:24.692880px;}
._22{width:26.355360px;}
._2c{width:27.961440px;}
._26{width:29.741760px;}
._2e{width:31.189920px;}
._2a{width:32.325120px;}
._20{width:34.113600px;}
._21{width:35.341200px;}
._17{width:36.564480px;}
._3b{width:38.021760px;}
._33{width:39.147840px;}
._6c{width:40.309200px;}
._32{width:41.409600px;}
._31{width:42.883440px;}
._1d{width:44.314560px;}
._28{width:45.450960px;}
._2f{width:46.475520px;}
._24{width:47.759040px;}
._25{width:48.901440px;}
._f{width:50.276160px;}
._35{width:51.872640px;}
._13{width:52.961040px;}
._38{width:54.033840px;}
._23{width:55.129680px;}
._68{width:56.658480px;}
._39{width:57.827520px;}
._30{width:59.086080px;}
._19{width:62.133120px;}
._2d{width:63.524160px;}
._46{width:64.613093px;}
._3d{width:66.769920px;}
._3c{width:68.400000px;}
._18{width:69.685200px;}
._56{width:70.779600px;}
._2b{width:71.926800px;}
._34{width:73.086720px;}
._6e{width:74.936160px;}
._67{width:76.012560px;}
._36{width:77.037120px;}
._15{width:78.759360px;}
._16{width:80.150400px;}
._3a{width:82.800000px;}
._1e{width:84.124800px;}
._1f{width:85.159680px;}
._3e{width:88.168320px;}
._27{width:90.218880px;}
._3f{width:92.537280px;}
._59{width:93.663360px;}
._37{width:95.442720px;}
._5a{width:98.374301px;}
._29{width:100.057680px;}
._6a{width:101.347200px;}
._6b{width:103.044480px;}
._71{width:105.189120px;}
._62{width:110.963027px;}
._54{width:113.255185px;}
._53{width:124.135279px;}
._47{width:129.948927px;}
._69{width:131.241600px;}
._5d{width:142.473126px;}
._1c{width:152.893440px;}
._61{width:155.280519px;}
._5b{width:157.128151px;}
._48{width:165.796906px;}
._5e{width:179.861260px;}
._6f{width:186.664320px;}
._1a{width:189.617520px;}
._1b{width:197.647200px;}
._5c{width:200.734523px;}
._66{width:211.003616px;}
._4f{width:216.528740px;}
._4e{width:274.301931px;}
._60{width:281.016196px;}
._45{width:297.841784px;}
._43{width:321.258609px;}
._52{width:328.175393px;}
._44{width:333.027204px;}
._50{width:362.573507px;}
._49{width:380.234318px;}
._51{width:392.503602px;}
._63{width:399.614723px;}
._64{width:406.514950px;}
._70{width:499.159680px;}
._42{width:542.633336px;}
.fc5{color:rgb(0,0,255);}
.fc3{color:rgb(192,0,0);}
.fc2{color:transparent;}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:12.240000px;}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fsc{font-size:36.000000px;}
.fsd{font-size:38.880000px;}
.fs13{font-size:41.334642px;}
.fs23{font-size:41.448095px;}
.fse{font-size:41.750661px;}
.fs11{font-size:41.760000px;}
.fs14{font-size:41.919867px;}
.fs20{font-size:41.922463px;}
.fs17{font-size:41.947888px;}
.fs22{font-size:42.226545px;}
.fs1c{font-size:42.709473px;}
.fs7{font-size:45.360000px;}
.fs6{font-size:48.240000px;}
.fs28{font-size:57.635514px;}
.fs9{font-size:59.760000px;}
.fs27{font-size:63.249858px;}
.fs26{font-size:63.356653px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:69.120000px;}
.fs25{font-size:69.371495px;}
.fs12{font-size:71.581840px;}
.fs24{font-size:71.778314px;}
.fs3{font-size:72.000000px;}
.fsf{font-size:72.274153px;}
.fs15{font-size:72.417639px;}
.fs1f{font-size:72.501598px;}
.fs18{font-size:72.508925px;}
.fs21{font-size:72.872331px;}
.fs1d{font-size:73.743854px;}
.fs19{font-size:76.471006px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fsa{font-size:92.880000px;}
.fs1e{font-size:94.899742px;}
.fs10{font-size:108.408253px;}
.fs1a{font-size:108.688881px;}
.fs16{font-size:108.704160px;}
.fs1b{font-size:115.565443px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y19{bottom:1.260000px;}
.y10{bottom:1.620000px;}
.y3{bottom:3.420000px;}
.y86{bottom:4.704630px;}
.ye9{bottom:4.717543px;}
.y77{bottom:4.738657px;}
.y8a{bottom:4.757862px;}
.yde{bottom:5.262495px;}
.ye3{bottom:6.288421px;}
.y8{bottom:6.660000px;}
.yd8{bottom:6.837726px;}
.ya{bottom:7.380000px;}
.y7a{bottom:7.467019px;}
.y8e{bottom:7.497282px;}
.y79{bottom:7.538752px;}
.y8d{bottom:7.605316px;}
.yce{bottom:7.849186px;}
.y7d{bottom:8.077192px;}
.y90{bottom:8.109927px;}
.y6{bottom:8.460000px;}
.y85{bottom:9.301471px;}
.yea{bottom:9.327001px;}
.y140{bottom:9.360000px;}
.y142{bottom:9.720000px;}
.ycd{bottom:10.428663px;}
.y94{bottom:10.711532px;}
.ye2{bottom:11.004662px;}
.yda{bottom:11.491738px;}
.y7b{bottom:12.205676px;}
.y8b{bottom:12.255143px;}
.ycf{bottom:12.602848px;}
.y97{bottom:13.551093px;}
.ydd{bottom:16.611610px;}
.yfb{bottom:17.401325px;}
.y10e{bottom:18.028569px;}
.y96{bottom:18.188326px;}
.y107{bottom:19.784753px;}
.y102{bottom:19.818159px;}
.y148{bottom:21.780000px;}
.ye{bottom:22.860000px;}
.y78{bottom:23.549670px;}
.y8c{bottom:23.645112px;}
.yd6{bottom:25.704734px;}
.ydc{bottom:25.991167px;}
.y93{bottom:26.275172px;}
.y16{bottom:26.505000px;}
.yd7{bottom:26.992939px;}
.y10d{bottom:27.086086px;}
.yfa{bottom:28.301745px;}
.y7c{bottom:28.575406px;}
.y8f{bottom:28.691216px;}
.y95{bottom:29.581734px;}
.y76{bottom:32.129287px;}
.y5{bottom:33.120000px;}
.y147{bottom:34.020000px;}
.yd9{bottom:38.413143px;}
.ydb{bottom:42.530056px;}
.y15{bottom:55.485000px;}
.y1{bottom:58.680000px;}
.y14{bottom:78.345000px;}
.y3f{bottom:82.440000px;}
.y13{bottom:101.025000px;}
.y12a{bottom:112.860000px;}
.yb2{bottom:115.920000px;}
.y12{bottom:116.145000px;}
.y16c{bottom:117.360000px;}
.y69{bottom:122.580000px;}
.y3b{bottom:127.080000px;}
.y80{bottom:133.200000px;}
.y129{bottom:137.520000px;}
.y105{bottom:139.860000px;}
.yb1{bottom:140.580000px;}
.y16b{bottom:142.020000px;}
.y68{bottom:147.240000px;}
.y3a{bottom:151.740000px;}
.ycb{bottom:156.780000px;}
.y128{bottom:162.180000px;}
.y7f{bottom:163.980000px;}
.y104{bottom:164.520000px;}
.yb0{bottom:165.420000px;}
.y169{bottom:166.680000px;}
.y13d{bottom:167.400000px;}
.y67{bottom:171.900000px;}
.y39{bottom:176.400000px;}
.yca{bottom:181.440000px;}
.y127{bottom:182.880000px;}
.y75{bottom:184.965000px;}
.y103{bottom:189.180000px;}
.y101{bottom:189.240000px;}
.yaf{bottom:190.080000px;}
.y168{bottom:191.340000px;}
.y13c{bottom:192.060000px;}
.y66{bottom:196.560000px;}
.y7e{bottom:196.920000px;}
.y16d{bottom:199.080000px;}
.y38{bottom:201.060000px;}
.yc9{bottom:206.130000px;}
.yae{bottom:214.770000px;}
.y167{bottom:216.030000px;}
.y138{bottom:217.110000px;}
.y6e{bottom:220.890000px;}
.y65{bottom:221.250000px;}
.y37{bottom:225.750000px;}
.yc8{bottom:230.430000px;}
.y74{bottom:238.170000px;}
.yad{bottom:239.430000px;}
.y13b{bottom:240.150000px;}
.y166{bottom:240.690000px;}
.y137{bottom:241.770000px;}
.y100{bottom:243.210000px;}
.y64{bottom:245.910000px;}
.y36{bottom:250.410000px;}
.yc7{bottom:255.090000px;}
.yac{bottom:264.090000px;}
.y73{bottom:264.630000px;}
.y165{bottom:265.350000px;}
.y136{bottom:266.430000px;}
.yff{bottom:267.870000px;}
.y63{bottom:270.750000px;}
.y35{bottom:275.070000px;}
.yc6{bottom:279.750000px;}
.yab{bottom:288.750000px;}
.y164{bottom:290.010000px;}
.y135{bottom:291.090000px;}
.yfe{bottom:292.530000px;}
.y6d{bottom:295.050000px;}
.y62{bottom:295.410000px;}
.y34{bottom:299.730000px;}
.yc5{bottom:300.990000px;}
.yaa{bottom:313.410000px;}
.y163{bottom:314.670000px;}
.y134{bottom:315.750000px;}
.yfd{bottom:317.190000px;}
.y6c{bottom:319.710000px;}
.y61{bottom:320.070000px;}
.y33{bottom:324.390000px;}
.ya9{bottom:338.070000px;}
.y162{bottom:339.330000px;}
.y133{bottom:340.410000px;}
.yfc{bottom:341.850000px;}
.yf9{bottom:341.940000px;}
.y60{bottom:344.730000px;}
.y32{bottom:349.050000px;}
.ya8{bottom:362.730000px;}
.y161{bottom:363.990000px;}
.y132{bottom:365.070000px;}
.y5f{bottom:369.390000px;}
.y31{bottom:373.710000px;}
.ya7{bottom:387.390000px;}
.y160{bottom:388.830000px;}
.y131{bottom:389.730000px;}
.y5e{bottom:394.050000px;}
.yf8{bottom:395.850000px;}
.yc4{bottom:396.030000px;}
.y30{bottom:398.010000px;}
.y3c{bottom:398.370000px;}
.ya6{bottom:412.050000px;}
.y15f{bottom:413.490000px;}
.y130{bottom:414.390000px;}
.y5d{bottom:418.710000px;}
.y2f{bottom:419.790000px;}
.yf7{bottom:420.510000px;}
.yc3{bottom:420.690000px;}
.ya5{bottom:436.710000px;}
.y126{bottom:437.430000px;}
.y15e{bottom:438.150000px;}
.y2e{bottom:438.870000px;}
.y12f{bottom:439.050000px;}
.y5c{bottom:443.415000px;}
.yf6{bottom:445.215000px;}
.yc2{bottom:445.395000px;}
.y2d{bottom:447.915000px;}
.ya4{bottom:461.415000px;}
.y125{bottom:462.495000px;}
.y15d{bottom:462.855000px;}
.y12e{bottom:463.755000px;}
.y13a{bottom:467.715000px;}
.y5b{bottom:468.075000px;}
.y2c{bottom:469.695000px;}
.yf5{bottom:469.875000px;}
.yc1{bottom:470.055000px;}
.ya3{bottom:486.075000px;}
.y124{bottom:487.155000px;}
.y15c{bottom:487.515000px;}
.y12d{bottom:488.415000px;}
.y5a{bottom:492.735000px;}
.y2b{bottom:494.175000px;}
.yf4{bottom:494.535000px;}
.yc0{bottom:494.715000px;}
.y12c{bottom:509.115000px;}
.ya2{bottom:510.735000px;}
.y123{bottom:511.815000px;}
.y15b{bottom:512.175000px;}
.y2a{bottom:515.955000px;}
.y59{bottom:517.395000px;}
.yf3{bottom:518.835000px;}
.ybf{bottom:519.375000px;}
.ya1{bottom:535.395000px;}
.y122{bottom:536.475000px;}
.y15a{bottom:536.835000px;}
.y29{bottom:537.915000px;}
.y72{bottom:541.695000px;}
.y58{bottom:542.055000px;}
.yf2{bottom:543.495000px;}
.ybe{bottom:544.035000px;}
.y28{bottom:559.695000px;}
.ya0{bottom:560.055000px;}
.y121{bottom:561.135000px;}
.y159{bottom:561.495000px;}
.y57{bottom:566.715000px;}
.yf1{bottom:568.515000px;}
.ybd{bottom:568.695000px;}
.y27{bottom:581.475000px;}
.y9f{bottom:584.355000px;}
.y120{bottom:585.795000px;}
.y158{bottom:586.155000px;}
.y71{bottom:591.015000px;}
.y56{bottom:591.375000px;}
.yf0{bottom:593.175000px;}
.ybc{bottom:593.355000px;}
.y26{bottom:603.255000px;}
.y9e{bottom:609.015000px;}
.y11f{bottom:610.455000px;}
.y157{bottom:610.815000px;}
.y70{bottom:615.675000px;}
.y55{bottom:616.035000px;}
.yef{bottom:617.835000px;}
.ybb{bottom:618.015000px;}
.y25{bottom:625.035000px;}
.y9d{bottom:630.255000px;}
.y11e{bottom:635.115000px;}
.y156{bottom:635.475000px;}
.y54{bottom:640.695000px;}
.yee{bottom:642.495000px;}
.yba{bottom:642.855000px;}
.y24{bottom:646.995000px;}
.y11d{bottom:659.775000px;}
.y155{bottom:660.135000px;}
.y53{bottom:665.355000px;}
.yed{bottom:667.155000px;}
.yb9{bottom:668.055000px;}
.y23{bottom:668.775000px;}
.y11c{bottom:684.465000px;}
.y154{bottom:684.825000px;}
.y52{bottom:690.045000px;}
.y22{bottom:690.585000px;}
.yec{bottom:691.845000px;}
.yb8{bottom:693.105000px;}
.y11b{bottom:709.305000px;}
.y153{bottom:709.485000px;}
.y21{bottom:712.365000px;}
.y51{bottom:714.705000px;}
.yeb{bottom:716.505000px;}
.yb7{bottom:718.305000px;}
.y11a{bottom:733.965000px;}
.y152{bottom:734.145000px;}
.y20{bottom:734.325000px;}
.ye8{bottom:737.340000px;}
.y50{bottom:739.365000px;}
.yb6{bottom:743.505000px;}
.ye7{bottom:746.385000px;}
.y1f{bottom:756.105000px;}
.y119{bottom:758.625000px;}
.y151{bottom:758.805000px;}
.y12b{bottom:763.665000px;}
.y4f{bottom:764.025000px;}
.yb5{bottom:768.885000px;}
.ye6{bottom:774.105000px;}
.y1e{bottom:777.885000px;}
.yb4{bottom:779.505000px;}
.y118{bottom:783.285000px;}
.y150{bottom:783.465000px;}
.y6b{bottom:788.325000px;}
.y4e{bottom:788.685000px;}
.yb3{bottom:790.485000px;}
.ye5{bottom:798.765000px;}
.y1d{bottom:799.665000px;}
.y117{bottom:807.945000px;}
.y14f{bottom:808.125000px;}
.y6a{bottom:812.985000px;}
.y4d{bottom:813.345000px;}
.ye1{bottom:819.615000px;}
.y1c{bottom:821.445000px;}
.y9c{bottom:823.065000px;}
.ye4{bottom:830.085000px;}
.y116{bottom:832.605000px;}
.y14e{bottom:832.785000px;}
.y4c{bottom:838.005000px;}
.y1b{bottom:843.405000px;}
.y9b{bottom:847.725000px;}
.y115{bottom:857.265000px;}
.y14d{bottom:857.445000px;}
.ye0{bottom:858.345000px;}
.y4b{bottom:862.665000px;}
.y1a{bottom:864.825000px;}
.y9a{bottom:872.385000px;}
.y18{bottom:880.125000px;}
.y114{bottom:881.925000px;}
.y14c{bottom:882.105000px;}
.ydf{bottom:883.005000px;}
.y11{bottom:887.325000px;}
.y17{bottom:891.291275px;}
.y99{bottom:897.045000px;}
.yd5{bottom:898.140000px;}
.y16a{bottom:906.405000px;}
.y113{bottom:906.585000px;}
.y14b{bottom:906.765000px;}
.y4a{bottom:912.030000px;}
.y92{bottom:923.640000px;}
.y14a{bottom:931.110000px;}
.y112{bottom:931.290000px;}
.y49{bottom:936.690000px;}
.y98{bottom:941.730000px;}
.y111{bottom:955.590000px;}
.y149{bottom:955.770000px;}
.y48{bottom:961.350000px;}
.yd4{bottom:971.070000px;}
.y146{bottom:971.790000px;}
.y89{bottom:976.215000px;}
.y110{bottom:980.250000px;}
.y139{bottom:985.650000px;}
.y47{bottom:986.010000px;}
.y91{bottom:988.350000px;}
.yd3{bottom:995.730000px;}
.y10c{bottom:1005.240000px;}
.y10f{bottom:1005.270000px;}
.y46{bottom:1010.670000px;}
.yd2{bottom:1020.390000px;}
.y145{bottom:1022.010000px;}
.y88{bottom:1026.690000px;}
.yf{bottom:1029.210000px;}
.y45{bottom:1035.330000px;}
.yd{bottom:1035.510000px;}
.yd1{bottom:1045.050000px;}
.y144{bottom:1047.390000px;}
.y84{bottom:1047.540000px;}
.y10b{bottom:1055.310000px;}
.y87{bottom:1056.570000px;}
.y44{bottom:1059.990000px;}
.ycc{bottom:1065.840000px;}
.y143{bottom:1072.770000px;}
.yb{bottom:1076.550000px;}
.yd0{bottom:1077.990000px;}
.y10a{bottom:1079.970000px;}
.y9{bottom:1081.950000px;}
.y83{bottom:1084.290000px;}
.y43{bottom:1084.830000px;}
.y141{bottom:1098.150000px;}
.y109{bottom:1104.630000px;}
.y2{bottom:1106.250000px;}
.y82{bottom:1108.950000px;}
.y6f{bottom:1109.130000px;}
.y42{bottom:1109.490000px;}
.y13f{bottom:1123.530000px;}
.y7{bottom:1128.570000px;}
.y106{bottom:1129.440000px;}
.y108{bottom:1129.470000px;}
.y81{bottom:1133.790000px;}
.y41{bottom:1134.150000px;}
.y4{bottom:1156.860000px;}
.y13e{bottom:1158.480000px;}
.y40{bottom:1158.840000px;}
.y3e{bottom:1175.760000px;}
.y3d{bottom:1189.080000px;}
.hc{height:5.385000px;}
.h10{height:6.285000px;}
.h17{height:7.200000px;}
.h1a{height:12.006914px;}
.hd{height:13.324219px;}
.h18{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h66{height:24.645000px;}
.h65{height:24.690000px;}
.h2c{height:27.149884px;}
.h53{height:27.224404px;}
.h7{height:28.290000px;}
.h4f{height:29.174698px;}
.h1d{height:30.480469px;}
.h43{height:34.050314px;}
.h27{height:38.672365px;}
.h35{height:38.829096px;}
.h3e{height:38.855051px;}
.h2e{height:40.547508px;}
.h54{height:40.658800px;}
.h61{height:40.799690px;}
.h30{height:40.873888px;}
.h25{height:40.955604px;}
.h23{height:40.975990px;}
.he{height:41.025000px;}
.h33{height:41.121588px;}
.h4c{height:41.124135px;}
.h31{height:41.142057px;}
.h3b{height:41.149076px;}
.h39{height:41.169558px;}
.h51{height:41.422426px;}
.h47{height:41.896158px;}
.h45{height:41.917012px;}
.h22{height:43.725535px;}
.h14{height:44.496211px;}
.h5d{height:44.774036px;}
.h56{height:44.774980px;}
.h59{height:44.849635px;}
.h38{height:46.799996px;}
.h2a{height:47.545312px;}
.h67{height:49.305000px;}
.h5{height:52.920000px;}
.h64{height:53.386020px;}
.h9{height:56.084062px;}
.h63{height:56.537963px;}
.h62{height:56.566105px;}
.h60{height:58.586416px;}
.h5c{height:58.685337px;}
.hb{height:60.960938px;}
.h5f{height:62.045393px;}
.h5b{height:62.150154px;}
.h2{height:62.275078px;}
.h49{height:63.150240px;}
.h15{height:63.492188px;}
.h58{height:64.256702px;}
.h19{height:64.978594px;}
.h1c{height:65.010937px;}
.h1e{height:65.499609px;}
.h1b{height:66.757500px;}
.h28{height:66.945346px;}
.h36{height:67.078252px;}
.h4e{height:67.156022px;}
.h57{height:68.050456px;}
.h1f{height:68.084282px;}
.h20{height:68.956875px;}
.h2f{height:70.218710px;}
.h2d{height:70.253662px;}
.h55{height:70.411442px;}
.h3d{height:70.832763px;}
.h26{height:70.897838px;}
.h34{height:71.038592px;}
.h32{height:71.073952px;}
.h4d{height:71.120953px;}
.h3c{height:71.128140px;}
.h3a{height:71.163544px;}
.h6{height:71.324297px;}
.h52{height:71.484626px;}
.h50{height:71.520208px;}
.h46{height:72.375560px;}
.h16{height:72.562500px;}
.h48{height:75.797061px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h13{height:81.736875px;}
.h3f{height:84.139111px;}
.h4a{height:87.902740px;}
.h29{height:100.415261px;}
.h37{height:100.689351px;}
.h24{height:100.801206px;}
.h5e{height:101.804675px;}
.h5a{height:101.976567px;}
.h3{height:103.530000px;}
.h44{height:107.044749px;}
.h4b{height:119.164421px;}
.h12{height:141.862500px;}
.h2b{height:142.053750px;}
.h21{height:150.972187px;}
.h41{height:186.693750px;}
.h40{height:193.173750px;}
.h42{height:229.173750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:20.323907px;}
.w9{width:46.799940px;}
.w17{width:66.585000px;}
.w16{width:86.925000px;}
.w15{width:90.216000px;}
.w18{width:95.061000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w12{width:119.697519px;}
.w11{width:139.119569px;}
.w10{width:148.871546px;}
.wc{width:159.451213px;}
.w13{width:159.677411px;}
.w14{width:173.535000px;}
.wb{width:184.870877px;}
.wa{width:239.254489px;}
.w8{width:246.979291px;}
.we{width:252.901680px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.wd{width:323.996024px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x42{left:1.038647px;}
.x30{left:2.163264px;}
.x25{left:4.401235px;}
.x18{left:8.089500px;}
.x5{left:10.965000px;}
.x4b{left:12.314814px;}
.x20{left:13.384049px;}
.x5b{left:15.690000px;}
.x22{left:17.352842px;}
.x5d{left:18.705000px;}
.x10{left:20.685000px;}
.x4e{left:22.094561px;}
.x2b{left:26.527100px;}
.x5c{left:28.965000px;}
.x27{left:31.025683px;}
.x2a{left:32.063488px;}
.xb{left:34.185000px;}
.x5e{left:35.985000px;}
.x40{left:39.146776px;}
.x28{left:44.914818px;}
.x32{left:47.698839px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.x50{left:63.941371px;}
.x23{left:65.225684px;}
.x41{left:67.297682px;}
.x2d{left:68.322221px;}
.x48{left:69.517771px;}
.x26{left:71.538521px;}
.x4d{left:73.481600px;}
.x21{left:76.732589px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.x13{left:90.163500px;}
.x24{left:92.930862px;}
.xd{left:95.925000px;}
.x36{left:99.738295px;}
.x2e{left:105.312822px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x31{left:118.868440px;}
.x2f{left:127.485120px;}
.x1e{left:135.036000px;}
.x37{left:143.865525px;}
.x38{left:146.437629px;}
.x1d{left:151.230000px;}
.x35{left:155.524629px;}
.x2c{left:158.970000px;}
.x19{left:162.030000px;}
.x15{left:164.548500px;}
.x4{left:168.885000px;}
.x34{left:175.058834px;}
.x14{left:181.108500px;}
.x56{left:188.865000px;}
.x4a{left:197.940000px;}
.x16{left:200.008500px;}
.x6{left:209.010000px;}
.x4c{left:219.990000px;}
.x47{left:221.937651px;}
.x55{left:224.850000px;}
.x45{left:232.150976px;}
.x46{left:247.081599px;}
.x44{left:256.890585px;}
.x43{left:267.555000px;}
.x39{left:292.935000px;}
.x17{left:324.965515px;}
.x12{left:335.578500px;}
.x33{left:347.295000px;}
.x57{left:363.135000px;}
.x49{left:364.755000px;}
.x53{left:436.575000px;}
.x3a{left:439.815000px;}
.xa{left:445.620000px;}
.x58{left:454.080000px;}
.x1a{left:473.505000px;}
.x3b{left:497.625000px;}
.x1f{left:500.505000px;}
.x1c{left:516.705000px;}
.x1b{left:527.505000px;}
.x3f{left:533.985000px;}
.x59{left:541.920000px;}
.x4f{left:593.205000px;}
.x5a{left:609.420000px;}
.x3d{left:625.110000px;}
.x51{left:633.210000px;}
.x3c{left:665.790000px;}
.x29{left:720.510000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
.x52{left:781.710000px;}
.x54{left:795.240000px;}
.x3e{left:802.080000px;}
@media print{
.v5{vertical-align:-61.440000pt;}
.vf{vertical-align:-54.400000pt;}
.vd{vertical-align:-50.227820pt;}
.v1c{vertical-align:-48.054484pt;}
.v1e{vertical-align:-43.887003pt;}
.v1f{vertical-align:-39.923984pt;}
.v7{vertical-align:-31.360000pt;}
.v2{vertical-align:-26.880000pt;}
.v16{vertical-align:-23.680000pt;}
.v17{vertical-align:-19.200000pt;}
.v10{vertical-align:-17.920000pt;}
.ve{vertical-align:-14.698745pt;}
.v9{vertical-align:-12.160000pt;}
.vb{vertical-align:-8.320000pt;}
.v12{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v18{vertical-align:1.920000pt;}
.vc{vertical-align:8.320000pt;}
.va{vertical-align:12.160000pt;}
.v1a{vertical-align:13.440000pt;}
.v3{vertical-align:24.320000pt;}
.v8{vertical-align:26.549403pt;}
.v1{vertical-align:29.440000pt;}
.v1d{vertical-align:35.401257pt;}
.v4{vertical-align:42.240000pt;}
.v13{vertical-align:44.800000pt;}
.v11{vertical-align:49.280000pt;}
.v6{vertical-align:50.560000pt;}
.v14{vertical-align:51.840000pt;}
.v1b{vertical-align:69.369143pt;}
.v15{vertical-align:75.520000pt;}
.v19{vertical-align:77.440000pt;}
.ls3c{letter-spacing:-0.970936pt;}
.lsc{letter-spacing:-0.874667pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.368533pt;}
.ls34{letter-spacing:-0.330667pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.271467pt;}
.ls49{letter-spacing:-0.233067pt;}
.ls6{letter-spacing:-0.169067pt;}
.ls41{letter-spacing:-0.167765pt;}
.ls8{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.101333pt;}
.ls47{letter-spacing:-0.097067pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.015360pt;}
.ls28{letter-spacing:0.023040pt;}
.ls42{letter-spacing:0.037112pt;}
.ls2{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.069333pt;}
.lse{letter-spacing:0.097067pt;}
.ls1f{letter-spacing:0.124800pt;}
.ls23{letter-spacing:0.132480pt;}
.ls48{letter-spacing:0.135467pt;}
.ls40{letter-spacing:0.149068pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.ls29{letter-spacing:0.232960pt;}
.ls46{letter-spacing:0.233067pt;}
.ls27{letter-spacing:0.271360pt;}
.lsb{letter-spacing:0.271467pt;}
.ls1d{letter-spacing:0.300800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.368533pt;}
.ls43{letter-spacing:0.504533pt;}
.ls3{letter-spacing:0.512000pt;}
.ls1e{letter-spacing:0.524800pt;}
.ls25{letter-spacing:0.949120pt;}
.ls24{letter-spacing:2.044800pt;}
.ls13{letter-spacing:3.497600pt;}
.ls14{letter-spacing:3.509120pt;}
.ls1a{letter-spacing:3.532800pt;}
.ls22{letter-spacing:3.584000pt;}
.ls1c{letter-spacing:4.149120pt;}
.ls11{letter-spacing:6.031360pt;}
.ls1b{letter-spacing:7.543467pt;}
.ls20{letter-spacing:18.044800pt;}
.ls4a{letter-spacing:35.450027pt;}
.ls10{letter-spacing:35.471360pt;}
.ls31{letter-spacing:52.716906pt;}
.ls2a{letter-spacing:53.941132pt;}
.ls12{letter-spacing:65.652544pt;}
.ls38{letter-spacing:68.390037pt;}
.ls3b{letter-spacing:81.910457pt;}
.ls37{letter-spacing:82.137478pt;}
.ls36{letter-spacing:82.609483pt;}
.ls39{letter-spacing:147.547695pt;}
.ls21{letter-spacing:163.070720pt;}
.ls33{letter-spacing:164.333911pt;}
.ls44{letter-spacing:207.537334pt;}
.ls35{letter-spacing:235.936162pt;}
.ls3a{letter-spacing:241.878761pt;}
.ls3d{letter-spacing:248.116318pt;}
.ls3f{letter-spacing:259.047732pt;}
.ls26{letter-spacing:308.604800pt;}
.ls30{letter-spacing:312.452319pt;}
.ls2c{letter-spacing:361.596750pt;}
.ls2f{letter-spacing:370.256795pt;}
.ls2b{letter-spacing:372.116314pt;}
.ls2e{letter-spacing:372.169443pt;}
.ls2d{letter-spacing:408.509757pt;}
.ls3e{letter-spacing:420.351890pt;}
.ls32{letter-spacing:499.088694pt;}
.ls19{letter-spacing:501.154766pt;}
.ls18{letter-spacing:513.219309pt;}
.ls45{letter-spacing:754.831787pt;}
.wsb{word-spacing:-58.880000pt;}
.ws8{word-spacing:-39.744000pt;}
.ws1e{word-spacing:-24.435200pt;}
.wsd{word-spacing:-21.389227pt;}
.ws6{word-spacing:-17.295360pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.ws7{word-spacing:-16.000000pt;}
.ws17{word-spacing:-15.907076pt;}
.ws31{word-spacing:-15.224533pt;}
.ws10{word-spacing:-15.088533pt;}
.ws9{word-spacing:-14.991467pt;}
.ws36{word-spacing:-14.953067pt;}
.ws38{word-spacing:-14.855467pt;}
.wsf{word-spacing:-14.720000pt;}
.ws37{word-spacing:-14.622933pt;}
.ws39{word-spacing:-14.486933pt;}
.wse{word-spacing:-14.448533pt;}
.ws4{word-spacing:-14.144000pt;}
.ws5{word-spacing:-13.952000pt;}
.wsa{word-spacing:-13.845333pt;}
.ws3{word-spacing:-13.022933pt;}
.ws16{word-spacing:-9.280000pt;}
.wsc{word-spacing:0.000000pt;}
.ws27{word-spacing:5.311583pt;}
.ws25{word-spacing:7.217937pt;}
.ws11{word-spacing:7.236781pt;}
.ws19{word-spacing:16.929635pt;}
.ws32{word-spacing:22.644353pt;}
.ws29{word-spacing:33.051663pt;}
.ws2c{word-spacing:33.177255pt;}
.ws14{word-spacing:33.213988pt;}
.ws30{word-spacing:35.082588pt;}
.ws2d{word-spacing:35.479725pt;}
.ws2f{word-spacing:35.521319pt;}
.ws18{word-spacing:36.691604pt;}
.ws24{word-spacing:41.954258pt;}
.ws22{word-spacing:51.260172pt;}
.ws20{word-spacing:52.440074pt;}
.ws12{word-spacing:53.579239pt;}
.ws1d{word-spacing:62.712163pt;}
.ws13{word-spacing:72.627594pt;}
.ws21{word-spacing:76.725195pt;}
.ws1b{word-spacing:78.158031pt;}
.ws34{word-spacing:86.069034pt;}
.ws35{word-spacing:92.421748pt;}
.ws15{word-spacing:102.404444pt;}
.ws1a{word-spacing:112.714032pt;}
.ws1c{word-spacing:120.848208pt;}
.ws2a{word-spacing:123.390287pt;}
.ws33{word-spacing:181.052361pt;}
.ws2e{word-spacing:188.324541pt;}
.ws28{word-spacing:200.674206pt;}
.ws23{word-spacing:211.174487pt;}
.ws26{word-spacing:237.557159pt;}
.ws2b{word-spacing:258.191058pt;}
.ws1f{word-spacing:529.767104pt;}
._65{margin-left:-812.474503pt;}
._5f{margin-left:-395.274586pt;}
._4d{margin-left:-103.462479pt;}
._40{margin-left:-28.179200pt;}
._55{margin-left:-27.246080pt;}
._57{margin-left:-13.814400pt;}
._4a{margin-left:-8.704000pt;}
._41{margin-left:-7.069227pt;}
._4c{margin-left:-5.940693pt;}
._58{margin-left:-4.811947pt;}
._4b{margin-left:-2.892800pt;}
._12{margin-left:-1.920853pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._2{width:2.080853pt;}
._7{width:3.799680pt;}
._b{width:4.887040pt;}
._6d{width:5.806933pt;}
._9{width:6.712320pt;}
._a{width:8.302080pt;}
._4{width:9.220480pt;}
._3{width:10.186240pt;}
._6{width:11.839147pt;}
._5{width:12.894720pt;}
._8{width:13.829547pt;}
._d{width:15.956480pt;}
._e{width:16.871040pt;}
._14{width:18.252800pt;}
._c{width:19.607040pt;}
._10{width:20.816000pt;}
._11{width:21.949227pt;}
._22{width:23.426987pt;}
._2c{width:24.854613pt;}
._26{width:26.437120pt;}
._2e{width:27.724373pt;}
._2a{width:28.733440pt;}
._20{width:30.323200pt;}
._21{width:31.414400pt;}
._17{width:32.501760pt;}
._3b{width:33.797120pt;}
._33{width:34.798080pt;}
._6c{width:35.830400pt;}
._32{width:36.808533pt;}
._31{width:38.118613pt;}
._1d{width:39.390720pt;}
._28{width:40.400853pt;}
._2f{width:41.311573pt;}
._24{width:42.452480pt;}
._25{width:43.467947pt;}
._f{width:44.689920pt;}
._35{width:46.109013pt;}
._13{width:47.076480pt;}
._38{width:48.030080pt;}
._23{width:49.004160pt;}
._68{width:50.363093pt;}
._39{width:51.402240pt;}
._30{width:52.520960pt;}
._19{width:55.229440pt;}
._2d{width:56.465920pt;}
._46{width:57.433860pt;}
._3d{width:59.351040pt;}
._3c{width:60.800000pt;}
._18{width:61.942400pt;}
._56{width:62.915200pt;}
._2b{width:63.934933pt;}
._34{width:64.965973pt;}
._6e{width:66.609920pt;}
._67{width:67.566720pt;}
._36{width:68.477440pt;}
._15{width:70.008320pt;}
._16{width:71.244800pt;}
._3a{width:73.600000pt;}
._1e{width:74.777600pt;}
._1f{width:75.697493pt;}
._3e{width:78.371840pt;}
._27{width:80.194560pt;}
._3f{width:82.255360pt;}
._59{width:83.256320pt;}
._37{width:84.837973pt;}
._5a{width:87.443823pt;}
._29{width:88.940160pt;}
._6a{width:90.086400pt;}
._6b{width:91.595093pt;}
._71{width:93.501440pt;}
._62{width:98.633802pt;}
._54{width:100.671276pt;}
._53{width:110.342470pt;}
._47{width:115.510157pt;}
._69{width:116.659200pt;}
._5d{width:126.642779pt;}
._1c{width:135.905280pt;}
._61{width:138.027128pt;}
._5b{width:139.669467pt;}
._48{width:147.375028pt;}
._5e{width:159.876676pt;}
._6f{width:165.923840pt;}
._1a{width:168.548907pt;}
._1b{width:175.686400pt;}
._5c{width:178.430687pt;}
._66{width:187.558770pt;}
._4f{width:192.469991pt;}
._4e{width:243.823939pt;}
._60{width:249.792174pt;}
._45{width:264.748252pt;}
._43{width:285.563208pt;}
._52{width:291.711461pt;}
._44{width:296.024181pt;}
._50{width:322.287562pt;}
._49{width:337.986060pt;}
._51{width:348.892091pt;}
._63{width:355.213087pt;}
._64{width:361.346622pt;}
._70{width:443.697493pt;}
._42{width:482.340743pt;}
.fsb{font-size:10.880000pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fsc{font-size:32.000000pt;}
.fsd{font-size:34.560000pt;}
.fs13{font-size:36.741904pt;}
.fs23{font-size:36.842751pt;}
.fse{font-size:37.111698pt;}
.fs11{font-size:37.120000pt;}
.fs14{font-size:37.262104pt;}
.fs20{font-size:37.264411pt;}
.fs17{font-size:37.287012pt;}
.fs22{font-size:37.534707pt;}
.fs1c{font-size:37.963976pt;}
.fs7{font-size:40.320000pt;}
.fs6{font-size:42.880000pt;}
.fs28{font-size:51.231568pt;}
.fs9{font-size:53.120000pt;}
.fs27{font-size:56.222096pt;}
.fs26{font-size:56.317024pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:61.440000pt;}
.fs25{font-size:61.663551pt;}
.fs12{font-size:63.628303pt;}
.fs24{font-size:63.802946pt;}
.fs3{font-size:64.000000pt;}
.fsf{font-size:64.243691pt;}
.fs15{font-size:64.371234pt;}
.fs1f{font-size:64.445865pt;}
.fs18{font-size:64.452378pt;}
.fs21{font-size:64.775405pt;}
.fs1d{font-size:65.550092pt;}
.fs19{font-size:67.974227pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fsa{font-size:82.560000pt;}
.fs1e{font-size:84.355327pt;}
.fs10{font-size:96.362891pt;}
.fs1a{font-size:96.612339pt;}
.fs16{font-size:96.625920pt;}
.fs1b{font-size:102.724838pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y19{bottom:1.120000pt;}
.y10{bottom:1.440000pt;}
.y3{bottom:3.040000pt;}
.y86{bottom:4.181893pt;}
.ye9{bottom:4.193372pt;}
.y77{bottom:4.212139pt;}
.y8a{bottom:4.229210pt;}
.yde{bottom:4.677774pt;}
.ye3{bottom:5.589708pt;}
.y8{bottom:5.920000pt;}
.yd8{bottom:6.077979pt;}
.ya{bottom:6.560000pt;}
.y7a{bottom:6.637351pt;}
.y8e{bottom:6.664250pt;}
.y79{bottom:6.701113pt;}
.y8d{bottom:6.760281pt;}
.yce{bottom:6.977055pt;}
.y7d{bottom:7.179726pt;}
.y90{bottom:7.208824pt;}
.y6{bottom:7.520000pt;}
.y85{bottom:8.267974pt;}
.yea{bottom:8.290667pt;}
.y140{bottom:8.320000pt;}
.y142{bottom:8.640000pt;}
.ycd{bottom:9.269923pt;}
.y94{bottom:9.521362pt;}
.ye2{bottom:9.781921pt;}
.yda{bottom:10.214878pt;}
.y7b{bottom:10.849490pt;}
.y8b{bottom:10.893461pt;}
.ycf{bottom:11.202531pt;}
.y97{bottom:12.045416pt;}
.ydd{bottom:14.765876pt;}
.yfb{bottom:15.467844pt;}
.y10e{bottom:16.025394pt;}
.y96{bottom:16.167401pt;}
.y107{bottom:17.586447pt;}
.y102{bottom:17.616141pt;}
.y148{bottom:19.360000pt;}
.ye{bottom:20.320000pt;}
.y78{bottom:20.933040pt;}
.y8c{bottom:21.017877pt;}
.yd6{bottom:22.848653pt;}
.ydc{bottom:23.103260pt;}
.y93{bottom:23.355708pt;}
.y16{bottom:23.560000pt;}
.yd7{bottom:23.993724pt;}
.y10d{bottom:24.076521pt;}
.yfa{bottom:25.157107pt;}
.y7c{bottom:25.400361pt;}
.y8f{bottom:25.503303pt;}
.y95{bottom:26.294875pt;}
.y76{bottom:28.559366pt;}
.y5{bottom:29.440000pt;}
.y147{bottom:30.240000pt;}
.yd9{bottom:34.145016pt;}
.ydb{bottom:37.804494pt;}
.y15{bottom:49.320000pt;}
.y1{bottom:52.160000pt;}
.y14{bottom:69.640000pt;}
.y3f{bottom:73.280000pt;}
.y13{bottom:89.800000pt;}
.y12a{bottom:100.320000pt;}
.yb2{bottom:103.040000pt;}
.y12{bottom:103.240000pt;}
.y16c{bottom:104.320000pt;}
.y69{bottom:108.960000pt;}
.y3b{bottom:112.960000pt;}
.y80{bottom:118.400000pt;}
.y129{bottom:122.240000pt;}
.y105{bottom:124.320000pt;}
.yb1{bottom:124.960000pt;}
.y16b{bottom:126.240000pt;}
.y68{bottom:130.880000pt;}
.y3a{bottom:134.880000pt;}
.ycb{bottom:139.360000pt;}
.y128{bottom:144.160000pt;}
.y7f{bottom:145.760000pt;}
.y104{bottom:146.240000pt;}
.yb0{bottom:147.040000pt;}
.y169{bottom:148.160000pt;}
.y13d{bottom:148.800000pt;}
.y67{bottom:152.800000pt;}
.y39{bottom:156.800000pt;}
.yca{bottom:161.280000pt;}
.y127{bottom:162.560000pt;}
.y75{bottom:164.413333pt;}
.y103{bottom:168.160000pt;}
.y101{bottom:168.213333pt;}
.yaf{bottom:168.960000pt;}
.y168{bottom:170.080000pt;}
.y13c{bottom:170.720000pt;}
.y66{bottom:174.720000pt;}
.y7e{bottom:175.040000pt;}
.y16d{bottom:176.960000pt;}
.y38{bottom:178.720000pt;}
.yc9{bottom:183.226667pt;}
.yae{bottom:190.906667pt;}
.y167{bottom:192.026667pt;}
.y138{bottom:192.986667pt;}
.y6e{bottom:196.346667pt;}
.y65{bottom:196.666667pt;}
.y37{bottom:200.666667pt;}
.yc8{bottom:204.826667pt;}
.y74{bottom:211.706667pt;}
.yad{bottom:212.826667pt;}
.y13b{bottom:213.466667pt;}
.y166{bottom:213.946667pt;}
.y137{bottom:214.906667pt;}
.y100{bottom:216.186667pt;}
.y64{bottom:218.586667pt;}
.y36{bottom:222.586667pt;}
.yc7{bottom:226.746667pt;}
.yac{bottom:234.746667pt;}
.y73{bottom:235.226667pt;}
.y165{bottom:235.866667pt;}
.y136{bottom:236.826667pt;}
.yff{bottom:238.106667pt;}
.y63{bottom:240.666667pt;}
.y35{bottom:244.506667pt;}
.yc6{bottom:248.666667pt;}
.yab{bottom:256.666667pt;}
.y164{bottom:257.786667pt;}
.y135{bottom:258.746667pt;}
.yfe{bottom:260.026667pt;}
.y6d{bottom:262.266667pt;}
.y62{bottom:262.586667pt;}
.y34{bottom:266.426667pt;}
.yc5{bottom:267.546667pt;}
.yaa{bottom:278.586667pt;}
.y163{bottom:279.706667pt;}
.y134{bottom:280.666667pt;}
.yfd{bottom:281.946667pt;}
.y6c{bottom:284.186667pt;}
.y61{bottom:284.506667pt;}
.y33{bottom:288.346667pt;}
.ya9{bottom:300.506667pt;}
.y162{bottom:301.626667pt;}
.y133{bottom:302.586667pt;}
.yfc{bottom:303.866667pt;}
.yf9{bottom:303.946667pt;}
.y60{bottom:306.426667pt;}
.y32{bottom:310.266667pt;}
.ya8{bottom:322.426667pt;}
.y161{bottom:323.546667pt;}
.y132{bottom:324.506667pt;}
.y5f{bottom:328.346667pt;}
.y31{bottom:332.186667pt;}
.ya7{bottom:344.346667pt;}
.y160{bottom:345.626667pt;}
.y131{bottom:346.426667pt;}
.y5e{bottom:350.266667pt;}
.yf8{bottom:351.866667pt;}
.yc4{bottom:352.026667pt;}
.y30{bottom:353.786667pt;}
.y3c{bottom:354.106667pt;}
.ya6{bottom:366.266667pt;}
.y15f{bottom:367.546667pt;}
.y130{bottom:368.346667pt;}
.y5d{bottom:372.186667pt;}
.y2f{bottom:373.146667pt;}
.yf7{bottom:373.786667pt;}
.yc3{bottom:373.946667pt;}
.ya5{bottom:388.186667pt;}
.y126{bottom:388.826667pt;}
.y15e{bottom:389.466667pt;}
.y2e{bottom:390.106667pt;}
.y12f{bottom:390.266667pt;}
.y5c{bottom:394.146667pt;}
.yf6{bottom:395.746667pt;}
.yc2{bottom:395.906667pt;}
.y2d{bottom:398.146667pt;}
.ya4{bottom:410.146667pt;}
.y125{bottom:411.106667pt;}
.y15d{bottom:411.426667pt;}
.y12e{bottom:412.226667pt;}
.y13a{bottom:415.746667pt;}
.y5b{bottom:416.066667pt;}
.y2c{bottom:417.506667pt;}
.yf5{bottom:417.666667pt;}
.yc1{bottom:417.826667pt;}
.ya3{bottom:432.066667pt;}
.y124{bottom:433.026667pt;}
.y15c{bottom:433.346667pt;}
.y12d{bottom:434.146667pt;}
.y5a{bottom:437.986667pt;}
.y2b{bottom:439.266667pt;}
.yf4{bottom:439.586667pt;}
.yc0{bottom:439.746667pt;}
.y12c{bottom:452.546667pt;}
.ya2{bottom:453.986667pt;}
.y123{bottom:454.946667pt;}
.y15b{bottom:455.266667pt;}
.y2a{bottom:458.626667pt;}
.y59{bottom:459.906667pt;}
.yf3{bottom:461.186667pt;}
.ybf{bottom:461.666667pt;}
.ya1{bottom:475.906667pt;}
.y122{bottom:476.866667pt;}
.y15a{bottom:477.186667pt;}
.y29{bottom:478.146667pt;}
.y72{bottom:481.506667pt;}
.y58{bottom:481.826667pt;}
.yf2{bottom:483.106667pt;}
.ybe{bottom:483.586667pt;}
.y28{bottom:497.506667pt;}
.ya0{bottom:497.826667pt;}
.y121{bottom:498.786667pt;}
.y159{bottom:499.106667pt;}
.y57{bottom:503.746667pt;}
.yf1{bottom:505.346667pt;}
.ybd{bottom:505.506667pt;}
.y27{bottom:516.866667pt;}
.y9f{bottom:519.426667pt;}
.y120{bottom:520.706667pt;}
.y158{bottom:521.026667pt;}
.y71{bottom:525.346667pt;}
.y56{bottom:525.666667pt;}
.yf0{bottom:527.266667pt;}
.ybc{bottom:527.426667pt;}
.y26{bottom:536.226667pt;}
.y9e{bottom:541.346667pt;}
.y11f{bottom:542.626667pt;}
.y157{bottom:542.946667pt;}
.y70{bottom:547.266667pt;}
.y55{bottom:547.586667pt;}
.yef{bottom:549.186667pt;}
.ybb{bottom:549.346667pt;}
.y25{bottom:555.586667pt;}
.y9d{bottom:560.226667pt;}
.y11e{bottom:564.546667pt;}
.y156{bottom:564.866667pt;}
.y54{bottom:569.506667pt;}
.yee{bottom:571.106667pt;}
.yba{bottom:571.426667pt;}
.y24{bottom:575.106667pt;}
.y11d{bottom:586.466667pt;}
.y155{bottom:586.786667pt;}
.y53{bottom:591.426667pt;}
.yed{bottom:593.026667pt;}
.yb9{bottom:593.826667pt;}
.y23{bottom:594.466667pt;}
.y11c{bottom:608.413333pt;}
.y154{bottom:608.733333pt;}
.y52{bottom:613.373333pt;}
.y22{bottom:613.853333pt;}
.yec{bottom:614.973333pt;}
.yb8{bottom:616.093333pt;}
.y11b{bottom:630.493333pt;}
.y153{bottom:630.653333pt;}
.y21{bottom:633.213333pt;}
.y51{bottom:635.293333pt;}
.yeb{bottom:636.893333pt;}
.yb7{bottom:638.493333pt;}
.y11a{bottom:652.413333pt;}
.y152{bottom:652.573333pt;}
.y20{bottom:652.733333pt;}
.ye8{bottom:655.413333pt;}
.y50{bottom:657.213333pt;}
.yb6{bottom:660.893333pt;}
.ye7{bottom:663.453333pt;}
.y1f{bottom:672.093333pt;}
.y119{bottom:674.333333pt;}
.y151{bottom:674.493333pt;}
.y12b{bottom:678.813333pt;}
.y4f{bottom:679.133333pt;}
.yb5{bottom:683.453333pt;}
.ye6{bottom:688.093333pt;}
.y1e{bottom:691.453333pt;}
.yb4{bottom:692.893333pt;}
.y118{bottom:696.253333pt;}
.y150{bottom:696.413333pt;}
.y6b{bottom:700.733333pt;}
.y4e{bottom:701.053333pt;}
.yb3{bottom:702.653333pt;}
.ye5{bottom:710.013333pt;}
.y1d{bottom:710.813333pt;}
.y117{bottom:718.173333pt;}
.y14f{bottom:718.333333pt;}
.y6a{bottom:722.653333pt;}
.y4d{bottom:722.973333pt;}
.ye1{bottom:728.546667pt;}
.y1c{bottom:730.173333pt;}
.y9c{bottom:731.613333pt;}
.ye4{bottom:737.853333pt;}
.y116{bottom:740.093333pt;}
.y14e{bottom:740.253333pt;}
.y4c{bottom:744.893333pt;}
.y1b{bottom:749.693333pt;}
.y9b{bottom:753.533333pt;}
.y115{bottom:762.013333pt;}
.y14d{bottom:762.173333pt;}
.ye0{bottom:762.973333pt;}
.y4b{bottom:766.813333pt;}
.y1a{bottom:768.733333pt;}
.y9a{bottom:775.453333pt;}
.y18{bottom:782.333333pt;}
.y114{bottom:783.933333pt;}
.y14c{bottom:784.093333pt;}
.ydf{bottom:784.893333pt;}
.y11{bottom:788.733333pt;}
.y17{bottom:792.258911pt;}
.y99{bottom:797.373333pt;}
.yd5{bottom:798.346667pt;}
.y16a{bottom:805.693333pt;}
.y113{bottom:805.853333pt;}
.y14b{bottom:806.013333pt;}
.y4a{bottom:810.693333pt;}
.y92{bottom:821.013333pt;}
.y14a{bottom:827.653333pt;}
.y112{bottom:827.813333pt;}
.y49{bottom:832.613333pt;}
.y98{bottom:837.093333pt;}
.y111{bottom:849.413333pt;}
.y149{bottom:849.573333pt;}
.y48{bottom:854.533333pt;}
.yd4{bottom:863.173333pt;}
.y146{bottom:863.813333pt;}
.y89{bottom:867.746667pt;}
.y110{bottom:871.333333pt;}
.y139{bottom:876.133333pt;}
.y47{bottom:876.453333pt;}
.y91{bottom:878.533333pt;}
.yd3{bottom:885.093333pt;}
.y10c{bottom:893.546667pt;}
.y10f{bottom:893.573333pt;}
.y46{bottom:898.373333pt;}
.yd2{bottom:907.013333pt;}
.y145{bottom:908.453333pt;}
.y88{bottom:912.613333pt;}
.yf{bottom:914.853333pt;}
.y45{bottom:920.293333pt;}
.yd{bottom:920.453333pt;}
.yd1{bottom:928.933333pt;}
.y144{bottom:931.013333pt;}
.y84{bottom:931.146667pt;}
.y10b{bottom:938.053333pt;}
.y87{bottom:939.173333pt;}
.y44{bottom:942.213333pt;}
.ycc{bottom:947.413333pt;}
.y143{bottom:953.573333pt;}
.yb{bottom:956.933333pt;}
.yd0{bottom:958.213333pt;}
.y10a{bottom:959.973333pt;}
.y9{bottom:961.733333pt;}
.y83{bottom:963.813333pt;}
.y43{bottom:964.293333pt;}
.y141{bottom:976.133333pt;}
.y109{bottom:981.893333pt;}
.y2{bottom:983.333333pt;}
.y82{bottom:985.733333pt;}
.y6f{bottom:985.893333pt;}
.y42{bottom:986.213333pt;}
.y13f{bottom:998.693333pt;}
.y7{bottom:1003.173333pt;}
.y106{bottom:1003.946667pt;}
.y108{bottom:1003.973333pt;}
.y81{bottom:1007.813333pt;}
.y41{bottom:1008.133333pt;}
.y4{bottom:1028.320000pt;}
.y13e{bottom:1029.760000pt;}
.y40{bottom:1030.080000pt;}
.y3e{bottom:1045.120000pt;}
.y3d{bottom:1056.960000pt;}
.hc{height:4.786667pt;}
.h10{height:5.586667pt;}
.h17{height:6.400000pt;}
.h1a{height:10.672812pt;}
.hd{height:11.843750pt;}
.h18{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h66{height:21.906667pt;}
.h65{height:21.946667pt;}
.h2c{height:24.133231pt;}
.h53{height:24.199470pt;}
.h7{height:25.146667pt;}
.h4f{height:25.933065pt;}
.h1d{height:27.093750pt;}
.h43{height:30.266946pt;}
.h27{height:34.375435pt;}
.h35{height:34.514752pt;}
.h3e{height:34.537823pt;}
.h2e{height:36.042229pt;}
.h54{height:36.141156pt;}
.h61{height:36.266391pt;}
.h30{height:36.332345pt;}
.h25{height:36.404981pt;}
.h23{height:36.423102pt;}
.he{height:36.466667pt;}
.h33{height:36.552523pt;}
.h4c{height:36.554786pt;}
.h31{height:36.570717pt;}
.h3b{height:36.576956pt;}
.h39{height:36.595163pt;}
.h51{height:36.819935pt;}
.h47{height:37.241029pt;}
.h45{height:37.259566pt;}
.h22{height:38.867142pt;}
.h14{height:39.552188pt;}
.h5d{height:39.799143pt;}
.h56{height:39.799983pt;}
.h59{height:39.866342pt;}
.h38{height:41.599996pt;}
.h2a{height:42.262500pt;}
.h67{height:43.826667pt;}
.h5{height:47.040000pt;}
.h64{height:47.454240pt;}
.h9{height:49.852500pt;}
.h63{height:50.255967pt;}
.h62{height:50.280982pt;}
.h60{height:52.076814pt;}
.h5c{height:52.164744pt;}
.hb{height:54.187500pt;}
.h5f{height:55.151460pt;}
.h5b{height:55.244581pt;}
.h2{height:55.355625pt;}
.h49{height:56.133547pt;}
.h15{height:56.437500pt;}
.h58{height:57.117069pt;}
.h19{height:57.758750pt;}
.h1c{height:57.787500pt;}
.h1e{height:58.221875pt;}
.h1b{height:59.340000pt;}
.h28{height:59.506974pt;}
.h36{height:59.625113pt;}
.h4e{height:59.694241pt;}
.h57{height:60.489294pt;}
.h1f{height:60.519362pt;}
.h20{height:61.295000pt;}
.h2f{height:62.416631pt;}
.h2d{height:62.447699pt;}
.h55{height:62.587948pt;}
.h3d{height:62.962456pt;}
.h26{height:63.020301pt;}
.h34{height:63.145415pt;}
.h32{height:63.176846pt;}
.h4d{height:63.218625pt;}
.h3c{height:63.225013pt;}
.h3a{height:63.256484pt;}
.h6{height:63.399375pt;}
.h52{height:63.541889pt;}
.h50{height:63.573518pt;}
.h46{height:64.333831pt;}
.h16{height:64.500000pt;}
.h48{height:67.375166pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h13{height:72.655000pt;}
.h3f{height:74.790321pt;}
.h4a{height:78.135769pt;}
.h29{height:89.258010pt;}
.h37{height:89.501645pt;}
.h24{height:89.601072pt;}
.h5e{height:90.493044pt;}
.h5a{height:90.645838pt;}
.h3{height:92.026667pt;}
.h44{height:95.150888pt;}
.h4b{height:105.923930pt;}
.h12{height:126.100000pt;}
.h2b{height:126.270000pt;}
.h21{height:134.197500pt;}
.h41{height:165.950000pt;}
.h40{height:171.710000pt;}
.h42{height:203.710000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:18.065695pt;}
.w9{width:41.599946pt;}
.w17{width:59.186667pt;}
.w16{width:77.266667pt;}
.w15{width:80.192000pt;}
.w18{width:84.498667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w12{width:106.397794pt;}
.w11{width:123.661839pt;}
.w10{width:132.330263pt;}
.wc{width:141.734411pt;}
.w13{width:141.935476pt;}
.w14{width:154.253333pt;}
.wb{width:164.329669pt;}
.wa{width:212.670657pt;}
.w8{width:219.537148pt;}
.we{width:224.801494pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.wd{width:287.996466pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x42{left:0.923242pt;}
.x30{left:1.922901pt;}
.x25{left:3.912208pt;}
.x18{left:7.190667pt;}
.x5{left:9.746667pt;}
.x4b{left:10.946501pt;}
.x20{left:11.896932pt;}
.x5b{left:13.946667pt;}
.x22{left:15.424749pt;}
.x5d{left:16.626667pt;}
.x10{left:18.386667pt;}
.x4e{left:19.639610pt;}
.x2b{left:23.579644pt;}
.x5c{left:25.746667pt;}
.x27{left:27.578385pt;}
.x2a{left:28.500878pt;}
.xb{left:30.386667pt;}
.x5e{left:31.986667pt;}
.x40{left:34.797134pt;}
.x28{left:39.924283pt;}
.x32{left:42.398968pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.x50{left:56.836774pt;}
.x23{left:57.978386pt;}
.x41{left:59.820162pt;}
.x2d{left:60.730863pt;}
.x48{left:61.793575pt;}
.x26{left:63.589796pt;}
.x4d{left:65.316978pt;}
.x21{left:68.206746pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.x13{left:80.145333pt;}
.x24{left:82.605211pt;}
.xd{left:85.266667pt;}
.x36{left:88.656262pt;}
.x2e{left:93.611398pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x31{left:105.660836pt;}
.x2f{left:113.320107pt;}
.x1e{left:120.032000pt;}
.x37{left:127.880467pt;}
.x38{left:130.166781pt;}
.x1d{left:134.426667pt;}
.x35{left:138.244115pt;}
.x2c{left:141.306667pt;}
.x19{left:144.026667pt;}
.x15{left:146.265333pt;}
.x4{left:150.120000pt;}
.x34{left:155.607853pt;}
.x14{left:160.985333pt;}
.x56{left:167.880000pt;}
.x4a{left:175.946667pt;}
.x16{left:177.785333pt;}
.x6{left:185.786667pt;}
.x4c{left:195.546667pt;}
.x47{left:197.277912pt;}
.x55{left:199.866667pt;}
.x45{left:206.356423pt;}
.x46{left:219.628088pt;}
.x44{left:228.347186pt;}
.x43{left:237.826667pt;}
.x39{left:260.386667pt;}
.x17{left:288.858236pt;}
.x12{left:298.292000pt;}
.x33{left:308.706667pt;}
.x57{left:322.786667pt;}
.x49{left:324.226667pt;}
.x53{left:388.066667pt;}
.x3a{left:390.946667pt;}
.xa{left:396.106667pt;}
.x58{left:403.626667pt;}
.x1a{left:420.893333pt;}
.x3b{left:442.333333pt;}
.x1f{left:444.893333pt;}
.x1c{left:459.293333pt;}
.x1b{left:468.893333pt;}
.x3f{left:474.653333pt;}
.x59{left:481.706667pt;}
.x4f{left:527.293333pt;}
.x5a{left:541.706667pt;}
.x3d{left:555.653333pt;}
.x51{left:562.853333pt;}
.x3c{left:591.813333pt;}
.x29{left:640.453333pt;}
.x7{left:642.213333pt;}
.x1{left:665.733333pt;}
.x52{left:694.853333pt;}
.x54{left:706.880000pt;}
.x3e{left:712.960000pt;}
}




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