
    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_6cf96a245840cb4ace9a4d99.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_ee2edf8e07167da13c8dae37.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_c2b816f705c56a5a0a2861ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_2dbeae1c1a28a53ef6e92885.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7da6a72dee33105c382e18a8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_67dbb9338a73bf37b36b395f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_802eca900ad2b8cca12b853e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.934082;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_c36f92a3ec3b62541ef66db4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2ec893ebfb29120f2f2c81db.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_0341a12fecf9cf360a9d9836.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.119629;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_df8b2fe5fec3d31b621b6dc2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.127930;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_9cbcd5870c0b5b50835698bb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.104004;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_f968556b6c177eab59c2dbb7.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_8def9b05819a40373cdee505.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6ded87cd722f77854701eba8.woff2')format("woff");}.fff{font-family:fff;line-height:1.172363;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_81dca78b9adbbc2d6227cf89.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.202148;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_003c42857e98f0523383134c.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.068359;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.000000,-0.250003,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250003,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250003,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.249988,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249988,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249988,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.230249,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.230249,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.230249,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.249983,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249983,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249983,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.249928,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249928,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249928,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);}
.m1{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);}
.mc{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,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);}
.m8{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250072,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.271445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271445,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-129.660000px;}
.ve{vertical-align:-84.000000px;}
.vd{vertical-align:-70.800000px;}
.v11{vertical-align:-55.140000px;}
.v10{vertical-align:-41.940000px;}
.va{vertical-align:-26.460000px;}
.v3{vertical-align:-21.540000px;}
.vc{vertical-align:-19.200000px;}
.v1{vertical-align:-2.700000px;}
.v9{vertical-align:-1.500000px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:19.140000px;}
.v4{vertical-align:21.540000px;}
.vb{vertical-align:26.400000px;}
.vf{vertical-align:28.860000px;}
.v6{vertical-align:39.240000px;}
.v5{vertical-align:64.200000px;}
.v2{vertical-align:89.220000px;}
.v8{vertical-align:110.580000px;}
.ls1d{letter-spacing:-0.792000px;}
.ls50{letter-spacing:-0.588000px;}
.ls10{letter-spacing:-0.580200px;}
.lsa{letter-spacing:-0.576000px;}
.ls48{letter-spacing:-0.554400px;}
.ls9{letter-spacing:-0.528000px;}
.ls20{letter-spacing:-0.337200px;}
.ls24{letter-spacing:-0.275598px;}
.ls25{letter-spacing:-0.209433px;}
.ls14{letter-spacing:-0.150000px;}
.ls45{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.131400px;}
.ls4b{letter-spacing:-0.127122px;}
.ls47{letter-spacing:-0.102304px;}
.ls8{letter-spacing:-0.096000px;}
.ls4c{letter-spacing:-0.084000px;}
.ls1f{letter-spacing:-0.079800px;}
.ls11{letter-spacing:-0.075000px;}
.ls13{letter-spacing:-0.065400px;}
.ls36{letter-spacing:-0.051809px;}
.lse{letter-spacing:-0.048000px;}
.lsc{letter-spacing:-0.036000px;}
.lsd{letter-spacing:-0.024000px;}
.ls35{letter-spacing:-0.017080px;}
.ls18{letter-spacing:-0.012000px;}
.lsf{letter-spacing:-0.009300px;}
.ls37{letter-spacing:-0.005850px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.036000px;}
.ls23{letter-spacing:0.048000px;}
.ls32{letter-spacing:0.105000px;}
.ls3a{letter-spacing:0.116925px;}
.ls41{letter-spacing:0.120000px;}
.ls44{letter-spacing:0.126000px;}
.ls42{letter-spacing:0.163257px;}
.ls43{letter-spacing:0.174000px;}
.ls3d{letter-spacing:0.180000px;}
.ls2e{letter-spacing:0.186881px;}
.ls46{letter-spacing:0.240000px;}
.ls33{letter-spacing:0.342300px;}
.ls7{letter-spacing:0.382050px;}
.ls40{letter-spacing:0.420000px;}
.ls6{letter-spacing:0.432000px;}
.ls3c{letter-spacing:0.450000px;}
.ls1e{letter-spacing:0.528000px;}
.ls3f{letter-spacing:0.600000px;}
.ls0{letter-spacing:0.612000px;}
.ls17{letter-spacing:1.068000px;}
.ls2b{letter-spacing:2.667300px;}
.ls2a{letter-spacing:2.784000px;}
.ls4a{letter-spacing:2.787300px;}
.ls2d{letter-spacing:2.904000px;}
.ls1a{letter-spacing:27.343200px;}
.ls16{letter-spacing:28.668000px;}
.ls39{letter-spacing:29.508000px;}
.ls38{letter-spacing:30.000000px;}
.ls3b{letter-spacing:34.926000px;}
.ls3e{letter-spacing:34.986000px;}
.ls27{letter-spacing:37.843200px;}
.ls4e{letter-spacing:40.876350px;}
.ls4f{letter-spacing:41.010000px;}
.ls4d{letter-spacing:49.740000px;}
.ls2f{letter-spacing:64.147500px;}
.ls2c{letter-spacing:64.200000px;}
.ls31{letter-spacing:64.207500px;}
.ls30{letter-spacing:64.260000px;}
.ls3{letter-spacing:65.917500px;}
.ls5{letter-spacing:65.947500px;}
.ls2{letter-spacing:65.970000px;}
.ls4{letter-spacing:66.000000px;}
.ls1c{letter-spacing:70.147500px;}
.ls1b{letter-spacing:70.200000px;}
.ls21{letter-spacing:70.380000px;}
.ls28{letter-spacing:83.347500px;}
.ls29{letter-spacing:83.400000px;}
.ls22{letter-spacing:91.176000px;}
.ls15{letter-spacing:98.436000px;}
.ls34{letter-spacing:136.018886px;}
.ls26{letter-spacing:402.156000px;}
.ls19{letter-spacing:407.712000px;}
.ls49{letter-spacing:479.662260px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(47,85,151),0 0.015em rgb(47,85,151),0.015em 0 rgb(47,85,151),0 -0.015em  rgb(47,85,151);}
.sc3{text-shadow:-0.015em 0 rgb(68,114,196),0 0.015em rgb(68,114,196),0.015em 0 rgb(68,114,196),0 -0.015em  rgb(68,114,196);}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(47,85,151);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(68,114,196);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws19{word-spacing:-108.150000px;}
.ws7{word-spacing:-108.000000px;}
.ws10{word-spacing:-59.508000px;}
.ws33{word-spacing:-59.036250px;}
.ws12{word-spacing:-31.584000px;}
.ws11{word-spacing:-30.348000px;}
.ws32{word-spacing:-30.198000px;}
.wse{word-spacing:-30.065700px;}
.ws6{word-spacing:-30.060000px;}
.ws9{word-spacing:-30.056400px;}
.wsa{word-spacing:-30.024000px;}
.ws5{word-spacing:-30.000000px;}
.wsc{word-spacing:-29.990700px;}
.ws4{word-spacing:-29.988000px;}
.ws36{word-spacing:-29.981700px;}
.ws8{word-spacing:-29.976000px;}
.wsd{word-spacing:-29.934300px;}
.wsf{word-spacing:-29.915700px;}
.ws2b{word-spacing:-29.754000px;}
.ws13{word-spacing:-29.604000px;}
.ws3{word-spacing:-26.729700px;}
.ws2c{word-spacing:-25.620000px;}
.ws2a{word-spacing:-25.470000px;}
.ws2d{word-spacing:-25.020000px;}
.ws2e{word-spacing:-22.684800px;}
.ws2{word-spacing:-21.729900px;}
.ws1{word-spacing:-21.696000px;}
.ws21{word-spacing:-20.057700px;}
.ws1b{word-spacing:-20.016000px;}
.ws22{word-spacing:-19.982700px;}
.ws38{word-spacing:-18.984000px;}
.ws17{word-spacing:-18.839284px;}
.ws37{word-spacing:-18.396000px;}
.ws16{word-spacing:-17.350894px;}
.wsb{word-spacing:-15.725700px;}
.ws18{word-spacing:-14.829824px;}
.ws14{word-spacing:-14.373600px;}
.ws25{word-spacing:-13.932000px;}
.ws24{word-spacing:-12.232050px;}
.ws1e{word-spacing:-12.033645px;}
.ws1d{word-spacing:-12.015576px;}
.ws34{word-spacing:-10.549643px;}
.ws30{word-spacing:-8.634640px;}
.ws2f{word-spacing:-8.621675px;}
.ws27{word-spacing:-7.529044px;}
.ws26{word-spacing:-7.517739px;}
.ws1a{word-spacing:-0.060150px;}
.ws0{word-spacing:0.000000px;}
.ws23{word-spacing:85.507834px;}
.ws31{word-spacing:115.748999px;}
.ws29{word-spacing:131.914212px;}
.ws28{word-spacing:140.714229px;}
.ws20{word-spacing:210.838029px;}
.ws1f{word-spacing:224.903065px;}
.ws35{word-spacing:457.655227px;}
.ws15{word-spacing:651.950875px;}
.ws1c{word-spacing:744.946819px;}
._21{margin-left:-22.333950px;}
._b{margin-left:-11.268000px;}
._d{margin-left:-10.260000px;}
._4{margin-left:-6.840000px;}
._c{margin-left:-5.832000px;}
._7{margin-left:-4.800000px;}
._1{margin-left:-3.672000px;}
._0{margin-left:-1.728000px;}
._3{width:1.056000px;}
._2{width:2.076000px;}
._8{width:3.192000px;}
._9{width:4.494000px;}
._e{width:6.000000px;}
._22{width:7.092000px;}
._1f{width:23.532750px;}
._10{width:33.204000px;}
._1c{width:45.288000px;}
._19{width:64.200000px;}
._1e{width:67.140000px;}
._12{width:70.200000px;}
._f{width:98.386050px;}
._11{width:108.540000px;}
._1b{width:110.051696px;}
._20{width:113.994123px;}
._a{width:128.376000px;}
._1d{width:156.680242px;}
._18{width:250.421488px;}
._16{width:326.784000px;}
._5{width:388.439250px;}
._1a{width:402.156000px;}
._13{width:480.996000px;}
._15{width:707.610397px;}
._17{width:1147.233450px;}
._14{width:1655.770800px;}
._6{width:2221.356000px;}
.fc12{color:rgb(47,85,151);}
.fc10{color:rgb(216,0,60);}
.fc13{color:rgb(112,48,160);}
.fc11{color:rgb(88,165,11);}
.fcf{color:transparent;}
.fce{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc2{color:rgb(137,137,137);}
.fc3{color:rgb(68,114,196);}
.fc4{color:rgb(204,0,0);}
.fcd{color:rgb(96,179,124);}
.fc6{color:rgb(112,173,71);}
.fc5{color:rgb(0,89,166);}
.fc7{color:rgb(255,0,0);}
.fc8{color:rgb(149,79,114);}
.fca{color:rgb(0,112,192);}
.fc9{color:rgb(14,14,153);}
.fcb{color:rgb(0,176,240);}
.fcc{color:rgb(192,0,0);}
.fs2d{font-size:33.264332px;}
.fs2f{font-size:33.265362px;}
.fs2e{font-size:33.314354px;}
.fs32{font-size:38.149003px;}
.fs34{font-size:38.160035px;}
.fs33{font-size:38.206370px;}
.fs35{font-size:46.600177px;}
.fs36{font-size:46.679835px;}
.fs28{font-size:51.239796px;}
.fs2a{font-size:51.243229px;}
.fs29{font-size:51.308116px;}
.fs38{font-size:52.972851px;}
.fs37{font-size:53.051897px;}
.fs23{font-size:53.166268px;}
.fs25{font-size:53.168858px;}
.fs24{font-size:53.246217px;}
.fs2b{font-size:54.000000px;}
.fs11{font-size:54.150000px;}
.fs31{font-size:60.000000px;}
.fs20{font-size:60.150000px;}
.fs18{font-size:63.600000px;}
.fs19{font-size:63.750000px;}
.fs1d{font-size:65.618689px;}
.fs30{font-size:66.000000px;}
.fs1f{font-size:67.200000px;}
.fsd{font-size:72.000000px;}
.fs6{font-size:72.150000px;}
.fs1b{font-size:76.773866px;}
.fs1a{font-size:76.905103px;}
.fs14{font-size:79.200000px;}
.fs27{font-size:81.600000px;}
.fs2c{font-size:81.750000px;}
.fs1c{font-size:83.359663px;}
.fs3a{font-size:84.000000px;}
.fs12{font-size:90.000000px;}
.fs39{font-size:90.150000px;}
.fs9{font-size:96.000000px;}
.fsa{font-size:96.150000px;}
.fsc{font-size:108.000000px;}
.fs10{font-size:108.150000px;}
.fs3{font-size:120.000000px;}
.fs4{font-size:120.150000px;}
.fs2{font-size:132.000000px;}
.fs1{font-size:132.150000px;}
.fs16{font-size:144.000000px;}
.fs17{font-size:144.150000px;}
.fs1e{font-size:162.000000px;}
.fs15{font-size:168.000000px;}
.fs22{font-size:180.000000px;}
.fs26{font-size:180.150000px;}
.fs13{font-size:192.150000px;}
.fse{font-size:198.000000px;}
.fsf{font-size:198.150000px;}
.fs0{font-size:216.000000px;}
.fsb{font-size:240.000000px;}
.fs5{font-size:240.150000px;}
.fs8{font-size:264.000000px;}
.fs7{font-size:264.150000px;}
.fs21{font-size:360.150000px;}
.y0{bottom:0.000000px;}
.y14a{bottom:2.951266px;}
.y15a{bottom:3.312958px;}
.y136{bottom:4.321209px;}
.y121{bottom:4.716999px;}
.y167{bottom:6.607334px;}
.ye5{bottom:12.467483px;}
.y148{bottom:14.093411px;}
.y158{bottom:16.105542px;}
.y11f{bottom:22.525451px;}
.y165{bottom:23.495086px;}
.y13e{bottom:24.948088px;}
.y134{bottom:26.542058px;}
.y152{bottom:28.539822px;}
.y10{bottom:31.387500px;}
.ye3{bottom:38.583311px;}
.y15f{bottom:38.610271px;}
.y115{bottom:39.874443px;}
.y13f{bottom:40.504791px;}
.y88{bottom:42.600000px;}
.y12e{bottom:43.212072px;}
.y14d{bottom:44.745000px;}
.y149{bottom:51.096854px;}
.y140{bottom:56.074520px;}
.y153{bottom:58.270230px;}
.y4a{bottom:61.312500px;}
.yd8{bottom:63.485603px;}
.y116{bottom:64.738668px;}
.y159{bottom:64.752094px;}
.y168{bottom:66.032683px;}
.y141{bottom:71.643728px;}
.y151{bottom:76.534178px;}
.ye8{bottom:81.497933px;}
.y120{bottom:81.667927px;}
.y33{bottom:86.137500px;}
.y142{bottom:87.202515px;}
.y160{bottom:87.939579px;}
.y154{bottom:87.985697px;}
.y117{bottom:89.623712px;}
.yd9{bottom:90.192410px;}
.y12f{bottom:91.514120px;}
.y135{bottom:94.844707px;}
.y13a{bottom:96.300000px;}
.y49{bottom:101.212500px;}
.y143{bottom:102.771724px;}
.y112{bottom:103.703565px;}
.ye7{bottom:108.303168px;}
.yc0{bottom:112.275000px;}
.y118{bottom:114.507924px;}
.y32{bottom:114.937500px;}
.yda{bottom:116.932025px;}
.y155{bottom:117.714909px;}
.y144{bottom:118.340932px;}
.y20{bottom:126.037500px;}
.y76{bottom:127.950000px;}
.y166{bottom:129.635784px;}
.yaf{bottom:133.087500px;}
.y145{bottom:133.894508px;}
.yd7{bottom:134.848815px;}
.ye6{bottom:135.075593px;}
.y36{bottom:136.162500px;}
.y161{bottom:137.286312px;}
.y119{bottom:139.375480px;}
.y130{bottom:139.800511px;}
.y48{bottom:141.150000px;}
.ybf{bottom:141.375000px;}
.y5f{bottom:143.025000px;}
.ydb{bottom:143.634730px;}
.y31{bottom:143.775000px;}
.y99{bottom:145.425000px;}
.y15e{bottom:147.138000px;}
.y156{bottom:147.450097px;}
.y146{bottom:149.463717px;}
.yae{bottom:151.995000px;}
.y1f{bottom:154.845000px;}
.ye4{bottom:162.992244px;}
.y82{bottom:163.350000px;}
.y8f{bottom:163.650000px;}
.y12d{bottom:163.787016px;}
.y11a{bottom:164.259691px;}
.y147{bottom:165.032925px;}
.yf0{bottom:166.395000px;}
.ydc{bottom:170.374346px;}
.yad{bottom:170.880000px;}
.y30{bottom:172.575000px;}
.y75{bottom:173.850000px;}
.y5e{bottom:175.470000px;}
.y6c{bottom:176.550000px;}
.y157{bottom:177.161382px;}
.ybe{bottom:177.975000px;}
.ya5{bottom:180.345000px;}
.y47{bottom:181.050000px;}
.y35{bottom:181.305000px;}
.y150{bottom:181.680000px;}
.y1e{bottom:183.645000px;}
.y162{bottom:186.633045px;}
.y131{bottom:188.101136px;}
.y11b{bottom:189.143903px;}
.y4{bottom:190.305000px;}
.y81{bottom:195.495000px;}
.ydd{bottom:197.086621px;}
.yb3{bottom:201.375000px;}
.y98{bottom:202.425000px;}
.y8e{bottom:205.080000px;}
.y108{bottom:205.275000px;}
.y74{bottom:206.280000px;}
.ybd{bottom:207.405000px;}
.y5d{bottom:207.855000px;}
.y6b{bottom:208.995000px;}
.y2f{bottom:209.475000px;}
.ya4{bottom:209.730000px;}
.yef{bottom:209.955000px;}
.y11c{bottom:214.003130px;}
.ye{bottom:216.795000px;}
.y13{bottom:218.445000px;}
.y46{bottom:220.950000px;}
.yde{bottom:223.826237px;}
.y53{bottom:225.255000px;}
.y80{bottom:227.880000px;}
.yf8{bottom:233.325000px;}
.yb2{bottom:233.775000px;}
.y163{bottom:235.963183px;}
.y132{bottom:236.401761px;}
.y3{bottom:237.120000px;}
.y107{bottom:237.420000px;}
.y8d{bottom:237.495000px;}
.y2e{bottom:238.320000px;}
.ya3{bottom:238.830000px;}
.y11d{bottom:238.887342px;}
.y6a{bottom:241.380000px;}
.yee{bottom:242.370000px;}
.yd6{bottom:243.300000px;}
.ybc{bottom:244.020000px;}
.y79{bottom:246.780000px;}
.y5c{bottom:247.770000px;}
.ydf{bottom:250.538511px;}
.y73{bottom:252.195000px;}
.yc9{bottom:259.470000px;}
.y97{bottom:259.755000px;}
.y7f{bottom:260.280000px;}
.y128{bottom:260.580000px;}
.y45{bottom:260.895000px;}
.y11e{bottom:263.771554px;}
.y139{bottom:265.530000px;}
.yb1{bottom:266.175000px;}
.y2d{bottom:267.720000px;}
.yd{bottom:267.795000px;}
.y52{bottom:268.155000px;}
.y4c{bottom:269.745000px;}
.y113{bottom:270.908692px;}
.y69{bottom:273.780000px;}
.yed{bottom:274.800000px;}
.y19{bottom:275.250000px;}
.yd5{bottom:275.700000px;}
.y114{bottom:277.004824px;}
.ye0{bottom:277.278127px;}
.ya8{bottom:278.070000px;}
.y40{bottom:278.700000px;}
.y8c{bottom:278.880000px;}
.y111{bottom:281.025000px;}
.y127{bottom:282.195000px;}
.ya2{bottom:282.975000px;}
.y72{bottom:284.595000px;}
.y133{bottom:284.702386px;}
.y164{bottom:285.309916px;}
.y5b{bottom:287.700000px;}
.ybb{bottom:288.120000px;}
.y41{bottom:288.975000px;}
.yc8{bottom:291.870000px;}
.y138{bottom:292.350000px;}
.y78{bottom:293.025000px;}
.yb0{bottom:298.620000px;}
.y44{bottom:300.780000px;}
.y96{bottom:301.770000px;}
.ye1{bottom:303.976731px;}
.y18{bottom:304.050000px;}
.y1d{bottom:305.625000px;}
.y2c{bottom:305.820000px;}
.y68{bottom:306.225000px;}
.y7e{bottom:306.525000px;}
.y13d{bottom:307.014306px;}
.yec{bottom:307.200000px;}
.y171{bottom:307.530000px;}
.y14f{bottom:308.100000px;}
.y14c{bottom:309.000000px;}
.y51{bottom:311.100000px;}
.y8b{bottom:311.325000px;}
.y38{bottom:312.705000px;}
.ycd{bottom:316.695000px;}
.yc{bottom:318.825000px;}
.y5a{bottom:320.100000px;}
.y110{bottom:321.225000px;}
.y3f{bottom:321.600000px;}
.yc7{bottom:324.300000px;}
.ya1{bottom:327.075000px;}
.y71{bottom:330.525000px;}
.ye2{bottom:330.716347px;}
.y129{bottom:331.920000px;}
.yba{bottom:332.250000px;}
.y170{bottom:332.730000px;}
.yf6{bottom:332.850000px;}
.y17{bottom:332.880000px;}
.yf5{bottom:334.050000px;}
.y1c{bottom:334.425000px;}
.y2b{bottom:334.650000px;}
.y7d{bottom:338.625000px;}
.y77{bottom:338.925000px;}
.yd4{bottom:339.600000px;}
.y43{bottom:340.725000px;}
.y137{bottom:345.780000px;}
.y2{bottom:347.325000px;}
.y95{bottom:351.600000px;}
.y67{bottom:352.125000px;}
.y59{bottom:352.500000px;}
.y8a{bottom:352.725000px;}
.y10f{bottom:353.355000px;}
.y50{bottom:354.000000px;}
.yfe{bottom:354.225000px;}
.ya0{bottom:356.220000px;}
.yc6{bottom:356.700000px;}
.y106{bottom:357.225000px;}
.y14e{bottom:357.630000px;}
.y16f{bottom:357.945000px;}
.yb9{bottom:361.350000px;}
.yf7{bottom:361.650000px;}
.y16{bottom:361.695000px;}
.yb{bottom:362.325000px;}
.yf4{bottom:362.850000px;}
.y1b{bottom:363.225000px;}
.y2a{bottom:363.450000px;}
.y3e{bottom:364.500000px;}
.y14b{bottom:364.845000px;}
.y7c{bottom:371.025000px;}
.yd3{bottom:372.000000px;}
.y34{bottom:375.870000px;}
.y70{bottom:376.425000px;}
.y42{bottom:380.625000px;}
.y16e{bottom:383.145000px;}
.y66{bottom:384.525000px;}
.y58{bottom:384.945000px;}
.y37{bottom:385.320000px;}
.y9f{bottom:385.620000px;}
.y10e{bottom:385.770000px;}
.ya7{bottom:386.100000px;}
.yc5{bottom:389.100000px;}
.y105{bottom:389.625000px;}
.y15{bottom:390.480000px;}
.y1a{bottom:392.025000px;}
.y89{bottom:394.125000px;}
.y4f{bottom:396.945000px;}
.yb8{bottom:398.250000px;}
.y94{bottom:401.100000px;}
.y29{bottom:401.250000px;}
.yd2{bottom:404.445000px;}
.ya{bottom:405.870000px;}
.y87{bottom:406.155000px;}
.y3d{bottom:407.445000px;}
.yce{bottom:409.275000px;}
.y1{bottom:412.155000px;}
.y65{bottom:416.970000px;}
.y10d{bottom:418.155000px;}
.y104{bottom:422.025000px;}
.y6f{bottom:422.370000px;}
.y57{bottom:424.845000px;}
.yb7{bottom:427.380000px;}
.yf2{bottom:427.575000px;}
.y14{bottom:429.450000px;}
.y9e{bottom:429.705000px;}
.yf3{bottom:429.825000px;}
.y28{bottom:430.050000px;}
.yff{bottom:431.400000px;}
.y126{bottom:435.405000px;}
.yd1{bottom:436.845000px;}
.yac{bottom:437.370000px;}
.y4e{bottom:439.830000px;}
.y3c{bottom:440.130000px;}
.y93{bottom:443.130000px;}
.yfd{bottom:444.300000px;}
.yab{bottom:446.445000px;}
.y86{bottom:447.255000px;}
.y9{bottom:449.370000px;}
.y7b{bottom:449.655000px;}
.yc4{bottom:453.945000px;}
.y103{bottom:454.470000px;}
.y10c{bottom:458.100000px;}
.y64{bottom:462.870000px;}
.y23{bottom:464.175000px;}
.y56{bottom:464.745000px;}
.yaa{bottom:465.345000px;}
.y6e{bottom:468.255000px;}
.yd0{bottom:469.245000px;}
.y22{bottom:470.670000px;}
.yb6{bottom:471.495000px;}
.yfc{bottom:473.400000px;}
.y9d{bottom:473.850000px;}
.y125{bottom:475.320000px;}
.y27{bottom:477.780000px;}
.y7a{bottom:481.755000px;}
.ycc{bottom:481.950000px;}
.y3b{bottom:482.775000px;}
.ya9{bottom:484.245000px;}
.yc3{bottom:486.330000px;}
.y102{bottom:486.870000px;}
.y10b{bottom:490.500000px;}
.y11{bottom:492.825000px;}
.y92{bottom:492.945000px;}
.y63{bottom:495.255000px;}
.y85{bottom:496.455000px;}
.y55{bottom:497.175000px;}
.y21{bottom:499.470000px;}
.y8{bottom:500.400000px;}
.yea{bottom:502.050000px;}
.yfb{bottom:502.845000px;}
.y9c{bottom:502.950000px;}
.y12c{bottom:508.575000px;}
.y16d{bottom:509.175000px;}
.y26{bottom:510.195000px;}
.y6d{bottom:514.200000px;}
.ycb{bottom:514.350000px;}
.y124{bottom:515.250000px;}
.yb5{bottom:515.625000px;}
.ycf{bottom:516.045000px;}
.yc2{bottom:518.775000px;}
.yf1{bottom:519.225000px;}
.y101{bottom:519.255000px;}
.y10a{bottom:522.900000px;}
.y62{bottom:527.700000px;}
.y84{bottom:528.900000px;}
.y54{bottom:529.575000px;}
.y15b{bottom:529.875000px;}
.yfa{bottom:531.945000px;}
.y13c{bottom:532.800000px;}
.ye9{bottom:534.750000px;}
.y91{bottom:534.945000px;}
.y16c{bottom:536.220000px;}
.ya6{bottom:541.875000px;}
.y25{bottom:542.625000px;}
.y12b{bottom:548.505000px;}
.y4b{bottom:550.050000px;}
.yc1{bottom:551.175000px;}
.y7{bottom:551.400000px;}
.y123{bottom:555.150000px;}
.yeb{bottom:557.745000px;}
.y61{bottom:560.100000px;}
.yca{bottom:561.120000px;}
.y83{bottom:561.300000px;}
.y15c{bottom:565.500000px;}
.y16b{bottom:578.205000px;}
.y90{bottom:584.775000px;}
.y109{bottom:590.745000px;}
.y15d{bottom:591.675000px;}
.y9b{bottom:592.425000px;}
.yf9{bottom:595.875000px;}
.y6{bottom:602.445000px;}
.y13b{bottom:605.175000px;}
.y16a{bottom:605.220000px;}
.y122{bottom:619.845000px;}
.y12a{bottom:622.275000px;}
.y100{bottom:623.880000px;}
.y3a{bottom:626.400000px;}
.y12{bottom:627.495000px;}
.y4d{bottom:628.875000px;}
.yb4{bottom:629.445000px;}
.y24{bottom:632.595000px;}
.y60{bottom:634.245000px;}
.y39{bottom:641.880000px;}
.y5{bottom:645.945000px;}
.y169{bottom:647.250000px;}
.y9a{bottom:657.225000px;}
.yf{bottom:754.320000px;}
.h4a{height:33.085667px;}
.h4b{height:33.135420px;}
.h4c{height:34.061262px;}
.h4d{height:34.111426px;}
.h53{height:37.944101px;}
.h54{height:38.001160px;}
.h56{height:39.061748px;}
.h55{height:39.073044px;}
.h58{height:46.349883px;}
.h59{height:46.429114px;}
.h43{height:52.465749px;}
.h45{height:52.469263px;}
.h44{height:52.535703px;}
.h39{height:52.880707px;}
.h3a{height:52.960226px;}
.h19{height:53.859155px;}
.h5b{height:54.240268px;}
.h5a{height:54.321205px;}
.h14{height:54.421875px;}
.h3b{height:54.440964px;}
.h3c{height:54.520174px;}
.h13{height:54.535254px;}
.h4e{height:56.074219px;}
.h34{height:59.826929px;}
.h23{height:63.258398px;}
.h24{height:65.121680px;}
.h2f{height:65.266245px;}
.h26{height:65.275269px;}
.h33{height:66.839062px;}
.h32{height:68.807812px;}
.h48{height:71.613281px;}
.h7{height:71.762476px;}
.h3f{height:75.093750px;}
.h3e{height:75.250195px;}
.h2c{height:76.361506px;}
.h50{height:76.464844px;}
.h2b{height:76.492039px;}
.h2e{height:78.610741px;}
.h5e{height:83.548828px;}
.h46{height:83.552344px;}
.h47{height:83.705933px;}
.h40{height:85.106250px;}
.h2d{height:85.354108px;}
.h1a{height:89.516602px;}
.h5d{height:89.665796px;}
.h1f{height:91.757812px;}
.h5c{height:92.153320px;}
.h51{height:93.867188px;}
.hc{height:95.484375px;}
.hd{height:95.633569px;}
.h29{height:97.716797px;}
.ha{height:98.296875px;}
.h1e{height:98.437500px;}
.hb{height:98.450464px;}
.h11{height:100.125000px;}
.h12{height:100.281445px;}
.h4f{height:102.037500px;}
.h25{height:104.361680px;}
.h1c{height:107.419922px;}
.h1d{height:107.569116px;}
.h27{height:108.843750px;}
.h28{height:108.994922px;}
.h10{height:110.583984px;}
.h17{height:112.640625px;}
.h18{height:112.797070px;}
.h4{height:125.156250px;}
.h5{height:125.312695px;}
.h3{height:131.291016px;}
.h2{height:131.440210px;}
.h21{height:145.125000px;}
.h22{height:145.276172px;}
.h31{height:154.248047px;}
.h37{height:168.960938px;}
.h41{height:171.386719px;}
.h1b{height:182.955322px;}
.he{height:184.853569px;}
.h49{height:186.017649px;}
.h36{height:187.734375px;}
.h3d{height:187.890820px;}
.h15{height:196.936523px;}
.h16{height:197.085718px;}
.h20{height:202.094531px;}
.h52{height:203.007194px;}
.h30{height:206.064375px;}
.h1{height:214.839844px;}
.hf{height:228.515625px;}
.h6{height:228.658447px;}
.h9{height:251.367188px;}
.h8{height:251.510010px;}
.h57{height:296.520179px;}
.h38{height:297.311365px;}
.h42{height:311.452563px;}
.h35{height:342.916260px;}
.h2a{height:354.833061px;}
.h0{height:810.000000px;}
.w7{width:44.400000px;}
.w1{width:68.400000px;}
.w2{width:68.437500px;}
.w6{width:316.833814px;}
.w8{width:345.879117px;}
.w9{width:456.935350px;}
.w4{width:506.403388px;}
.w5{width:565.212818px;}
.w3{width:662.246211px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x83{left:10.704944px;}
.x89{left:13.298629px;}
.x7a{left:14.604321px;}
.x85{left:15.885000px;}
.x6f{left:17.109980px;}
.x8d{left:18.141997px;}
.x81{left:19.146342px;}
.x30{left:25.185000px;}
.x4f{left:26.504099px;}
.x79{left:29.294046px;}
.x6d{left:30.602077px;}
.x78{left:35.784856px;}
.x4d{left:38.046206px;}
.x82{left:39.555767px;}
.x77{left:42.275665px;}
.x4c{left:48.590848px;}
.x8c{left:55.342052px;}
.x17{left:61.987500px;}
.x6e{left:63.222970px;}
.x9{left:64.837500px;}
.x6c{left:67.500463px;}
.x18{left:72.487500px;}
.x4e{left:77.446116px;}
.x19{left:83.587500px;}
.x91{left:88.650000px;}
.x2e{left:92.625000px;}
.x8e{left:102.401381px;}
.x72{left:104.100000px;}
.x36{left:106.575000px;}
.x3d{left:111.262500px;}
.x43{left:113.925000px;}
.x92{left:118.950000px;}
.x76{left:123.136499px;}
.x58{left:128.850000px;}
.x39{left:133.575000px;}
.x2a{left:136.725000px;}
.x84{left:138.491039px;}
.x16{left:140.925000px;}
.x2b{left:142.612500px;}
.x67{left:145.762500px;}
.x5{left:147.337500px;}
.x29{left:149.850000px;}
.x8a{left:154.277962px;}
.x28{left:158.925000px;}
.x2d{left:161.325000px;}
.x46{left:162.750000px;}
.x44{left:167.925000px;}
.x8f{left:170.400000px;}
.x6a{left:171.405000px;}
.x53{left:172.530000px;}
.x7{left:174.330000px;}
.x6b{left:175.574822px;}
.x1a{left:179.280000px;}
.x14{left:184.500000px;}
.x37{left:187.575000px;}
.x52{left:188.805000px;}
.x47{left:193.050000px;}
.x45{left:194.970000px;}
.x54{left:196.530000px;}
.x8{left:201.345000px;}
.x21{left:206.325000px;}
.x90{left:210.900000px;}
.x57{left:212.145000px;}
.x49{left:216.780000px;}
.x4a{left:218.100000px;}
.x38{left:220.125000px;}
.x70{left:221.353682px;}
.x63{left:226.950000px;}
.x6{left:228.345000px;}
.x69{left:231.075000px;}
.x61{left:236.700000px;}
.x2f{left:238.470000px;}
.x35{left:239.955000px;}
.x25{left:242.100000px;}
.x1c{left:254.145000px;}
.x60{left:255.945000px;}
.x5f{left:269.445000px;}
.x48{left:270.780000px;}
.x4b{left:272.400000px;}
.xc{left:280.155000px;}
.x2c{left:281.595000px;}
.x31{left:287.070000px;}
.x7b{left:291.282173px;}
.x2{left:297.750000px;}
.xe{left:298.905000px;}
.xf{left:300.300000px;}
.x50{left:311.455807px;}
.x32{left:312.570000px;}
.x68{left:317.550000px;}
.x1{left:318.750000px;}
.x86{left:321.825000px;}
.x75{left:327.345000px;}
.x59{left:329.595000px;}
.x1f{left:332.925000px;}
.x7f{left:339.405000px;}
.x24{left:343.500000px;}
.x27{left:345.120000px;}
.x20{left:361.995000px;}
.x22{left:369.705000px;}
.xb{left:374.700000px;}
.x33{left:385.800000px;}
.x87{left:387.825000px;}
.x12{left:409.245000px;}
.x3c{left:430.005000px;}
.x34{left:434.700000px;}
.x3a{left:439.125000px;}
.x5a{left:442.200000px;}
.x3b{left:443.520000px;}
.xd{left:448.275000px;}
.x11{left:450.045000px;}
.x65{left:462.075000px;}
.x55{left:467.880000px;}
.x5b{left:468.900000px;}
.x64{left:471.195000px;}
.x13{left:474.975000px;}
.x1d{left:477.630000px;}
.x71{left:484.155000px;}
.x74{left:505.050000px;}
.x51{left:513.056757px;}
.x93{left:519.495000px;}
.x4{left:532.380000px;}
.x3{left:547.995000px;}
.x7e{left:550.950000px;}
.x3e{left:554.175000px;}
.x1b{left:584.130000px;}
.x66{left:586.230000px;}
.x10{left:595.125000px;}
.x88{left:608.813459px;}
.x5c{left:658.650000px;}
.x62{left:661.950000px;}
.x80{left:663.217587px;}
.x56{left:681.120000px;}
.x8b{left:690.450000px;}
.x7c{left:699.330000px;}
.x1e{left:703.980000px;}
.x7d{left:715.425000px;}
.x73{left:718.620000px;}
.x5e{left:796.425000px;}
.x15{left:803.295000px;}
.x5d{left:809.625000px;}
.x40{left:895.020000px;}
.x41{left:896.820000px;}
.x3f{left:903.405000px;}
.x23{left:922.380000px;}
.x42{left:934.605000px;}
.x26{left:977.205000px;}
.xa{left:986.220000px;}
@media print{
.v7{vertical-align:-115.253333pt;}
.ve{vertical-align:-74.666667pt;}
.vd{vertical-align:-62.933333pt;}
.v11{vertical-align:-49.013333pt;}
.v10{vertical-align:-37.280000pt;}
.va{vertical-align:-23.520000pt;}
.v3{vertical-align:-19.146667pt;}
.vc{vertical-align:-17.066667pt;}
.v1{vertical-align:-2.400000pt;}
.v9{vertical-align:-1.333333pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:17.013333pt;}
.v4{vertical-align:19.146667pt;}
.vb{vertical-align:23.466667pt;}
.vf{vertical-align:25.653333pt;}
.v6{vertical-align:34.880000pt;}
.v5{vertical-align:57.066667pt;}
.v2{vertical-align:79.306667pt;}
.v8{vertical-align:98.293333pt;}
.ls1d{letter-spacing:-0.704000pt;}
.ls50{letter-spacing:-0.522667pt;}
.ls10{letter-spacing:-0.515733pt;}
.lsa{letter-spacing:-0.512000pt;}
.ls48{letter-spacing:-0.492800pt;}
.ls9{letter-spacing:-0.469333pt;}
.ls20{letter-spacing:-0.299733pt;}
.ls24{letter-spacing:-0.244976pt;}
.ls25{letter-spacing:-0.186163pt;}
.ls14{letter-spacing:-0.133333pt;}
.ls45{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.116800pt;}
.ls4b{letter-spacing:-0.112997pt;}
.ls47{letter-spacing:-0.090937pt;}
.ls8{letter-spacing:-0.085333pt;}
.ls4c{letter-spacing:-0.074667pt;}
.ls1f{letter-spacing:-0.070933pt;}
.ls11{letter-spacing:-0.066667pt;}
.ls13{letter-spacing:-0.058133pt;}
.ls36{letter-spacing:-0.046053pt;}
.lse{letter-spacing:-0.042667pt;}
.lsc{letter-spacing:-0.032000pt;}
.lsd{letter-spacing:-0.021333pt;}
.ls35{letter-spacing:-0.015182pt;}
.ls18{letter-spacing:-0.010667pt;}
.lsf{letter-spacing:-0.008267pt;}
.ls37{letter-spacing:-0.005200pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.032000pt;}
.ls23{letter-spacing:0.042667pt;}
.ls32{letter-spacing:0.093333pt;}
.ls3a{letter-spacing:0.103934pt;}
.ls41{letter-spacing:0.106667pt;}
.ls44{letter-spacing:0.112000pt;}
.ls42{letter-spacing:0.145117pt;}
.ls43{letter-spacing:0.154667pt;}
.ls3d{letter-spacing:0.160000pt;}
.ls2e{letter-spacing:0.166117pt;}
.ls46{letter-spacing:0.213333pt;}
.ls33{letter-spacing:0.304267pt;}
.ls7{letter-spacing:0.339600pt;}
.ls40{letter-spacing:0.373333pt;}
.ls6{letter-spacing:0.384000pt;}
.ls3c{letter-spacing:0.400000pt;}
.ls1e{letter-spacing:0.469333pt;}
.ls3f{letter-spacing:0.533333pt;}
.ls0{letter-spacing:0.544000pt;}
.ls17{letter-spacing:0.949333pt;}
.ls2b{letter-spacing:2.370933pt;}
.ls2a{letter-spacing:2.474667pt;}
.ls4a{letter-spacing:2.477600pt;}
.ls2d{letter-spacing:2.581333pt;}
.ls1a{letter-spacing:24.305067pt;}
.ls16{letter-spacing:25.482667pt;}
.ls39{letter-spacing:26.229333pt;}
.ls38{letter-spacing:26.666667pt;}
.ls3b{letter-spacing:31.045333pt;}
.ls3e{letter-spacing:31.098667pt;}
.ls27{letter-spacing:33.638400pt;}
.ls4e{letter-spacing:36.334533pt;}
.ls4f{letter-spacing:36.453333pt;}
.ls4d{letter-spacing:44.213333pt;}
.ls2f{letter-spacing:57.020000pt;}
.ls2c{letter-spacing:57.066667pt;}
.ls31{letter-spacing:57.073333pt;}
.ls30{letter-spacing:57.120000pt;}
.ls3{letter-spacing:58.593333pt;}
.ls5{letter-spacing:58.620000pt;}
.ls2{letter-spacing:58.640000pt;}
.ls4{letter-spacing:58.666667pt;}
.ls1c{letter-spacing:62.353333pt;}
.ls1b{letter-spacing:62.400000pt;}
.ls21{letter-spacing:62.560000pt;}
.ls28{letter-spacing:74.086667pt;}
.ls29{letter-spacing:74.133333pt;}
.ls22{letter-spacing:81.045333pt;}
.ls15{letter-spacing:87.498667pt;}
.ls34{letter-spacing:120.905677pt;}
.ls26{letter-spacing:357.472000pt;}
.ls19{letter-spacing:362.410667pt;}
.ls49{letter-spacing:426.366454pt;}
.ws19{word-spacing:-96.133333pt;}
.ws7{word-spacing:-96.000000pt;}
.ws10{word-spacing:-52.896000pt;}
.ws33{word-spacing:-52.476667pt;}
.ws12{word-spacing:-28.074667pt;}
.ws11{word-spacing:-26.976000pt;}
.ws32{word-spacing:-26.842667pt;}
.wse{word-spacing:-26.725067pt;}
.ws6{word-spacing:-26.720000pt;}
.ws9{word-spacing:-26.716800pt;}
.wsa{word-spacing:-26.688000pt;}
.ws5{word-spacing:-26.666667pt;}
.wsc{word-spacing:-26.658400pt;}
.ws4{word-spacing:-26.656000pt;}
.ws36{word-spacing:-26.650400pt;}
.ws8{word-spacing:-26.645333pt;}
.wsd{word-spacing:-26.608267pt;}
.wsf{word-spacing:-26.591733pt;}
.ws2b{word-spacing:-26.448000pt;}
.ws13{word-spacing:-26.314667pt;}
.ws3{word-spacing:-23.759733pt;}
.ws2c{word-spacing:-22.773333pt;}
.ws2a{word-spacing:-22.640000pt;}
.ws2d{word-spacing:-22.240000pt;}
.ws2e{word-spacing:-20.164267pt;}
.ws2{word-spacing:-19.315467pt;}
.ws1{word-spacing:-19.285333pt;}
.ws21{word-spacing:-17.829067pt;}
.ws1b{word-spacing:-17.792000pt;}
.ws22{word-spacing:-17.762400pt;}
.ws38{word-spacing:-16.874667pt;}
.ws17{word-spacing:-16.746030pt;}
.ws37{word-spacing:-16.352000pt;}
.ws16{word-spacing:-15.423017pt;}
.wsb{word-spacing:-13.978400pt;}
.ws18{word-spacing:-13.182066pt;}
.ws14{word-spacing:-12.776533pt;}
.ws25{word-spacing:-12.384000pt;}
.ws24{word-spacing:-10.872933pt;}
.ws1e{word-spacing:-10.696573pt;}
.ws1d{word-spacing:-10.680512pt;}
.ws34{word-spacing:-9.377460pt;}
.ws30{word-spacing:-7.675235pt;}
.ws2f{word-spacing:-7.663711pt;}
.ws27{word-spacing:-6.692484pt;}
.ws26{word-spacing:-6.682435pt;}
.ws1a{word-spacing:-0.053467pt;}
.ws0{word-spacing:0.000000pt;}
.ws23{word-spacing:76.006963pt;}
.ws31{word-spacing:102.887999pt;}
.ws29{word-spacing:117.257078pt;}
.ws28{word-spacing:125.079315pt;}
.ws20{word-spacing:187.411582pt;}
.ws1f{word-spacing:199.913836pt;}
.ws35{word-spacing:406.804646pt;}
.ws15{word-spacing:579.511889pt;}
.ws1c{word-spacing:662.174950pt;}
._21{margin-left:-19.852400pt;}
._b{margin-left:-10.016000pt;}
._d{margin-left:-9.120000pt;}
._4{margin-left:-6.080000pt;}
._c{margin-left:-5.184000pt;}
._7{margin-left:-4.266667pt;}
._1{margin-left:-3.264000pt;}
._0{margin-left:-1.536000pt;}
._3{width:0.938667pt;}
._2{width:1.845333pt;}
._8{width:2.837333pt;}
._9{width:3.994667pt;}
._e{width:5.333333pt;}
._22{width:6.304000pt;}
._1f{width:20.918000pt;}
._10{width:29.514667pt;}
._1c{width:40.256000pt;}
._19{width:57.066667pt;}
._1e{width:59.680000pt;}
._12{width:62.400000pt;}
._f{width:87.454267pt;}
._11{width:96.480000pt;}
._1b{width:97.823730pt;}
._20{width:101.328109pt;}
._a{width:114.112000pt;}
._1d{width:139.271326pt;}
._18{width:222.596878pt;}
._16{width:290.474667pt;}
._5{width:345.279333pt;}
._1a{width:357.472000pt;}
._13{width:427.552000pt;}
._15{width:628.987020pt;}
._17{width:1019.763067pt;}
._14{width:1471.796267pt;}
._6{width:1974.538667pt;}
.fs2d{font-size:29.568296pt;}
.fs2f{font-size:29.569211pt;}
.fs2e{font-size:29.612759pt;}
.fs32{font-size:33.910225pt;}
.fs34{font-size:33.920031pt;}
.fs33{font-size:33.961218pt;}
.fs35{font-size:41.422380pt;}
.fs36{font-size:41.493187pt;}
.fs28{font-size:45.546486pt;}
.fs2a{font-size:45.549537pt;}
.fs29{font-size:45.607214pt;}
.fs38{font-size:47.086978pt;}
.fs37{font-size:47.157241pt;}
.fs23{font-size:47.258904pt;}
.fs25{font-size:47.261207pt;}
.fs24{font-size:47.329970pt;}
.fs2b{font-size:48.000000pt;}
.fs11{font-size:48.133333pt;}
.fs31{font-size:53.333333pt;}
.fs20{font-size:53.466667pt;}
.fs18{font-size:56.533333pt;}
.fs19{font-size:56.666667pt;}
.fs1d{font-size:58.327724pt;}
.fs30{font-size:58.666667pt;}
.fs1f{font-size:59.733333pt;}
.fsd{font-size:64.000000pt;}
.fs6{font-size:64.133333pt;}
.fs1b{font-size:68.243437pt;}
.fs1a{font-size:68.360092pt;}
.fs14{font-size:70.400000pt;}
.fs27{font-size:72.533333pt;}
.fs2c{font-size:72.666667pt;}
.fs1c{font-size:74.097478pt;}
.fs3a{font-size:74.666667pt;}
.fs12{font-size:80.000000pt;}
.fs39{font-size:80.133333pt;}
.fs9{font-size:85.333333pt;}
.fsa{font-size:85.466667pt;}
.fsc{font-size:96.000000pt;}
.fs10{font-size:96.133333pt;}
.fs3{font-size:106.666667pt;}
.fs4{font-size:106.800000pt;}
.fs2{font-size:117.333333pt;}
.fs1{font-size:117.466667pt;}
.fs16{font-size:128.000000pt;}
.fs17{font-size:128.133333pt;}
.fs1e{font-size:144.000000pt;}
.fs15{font-size:149.333333pt;}
.fs22{font-size:160.000000pt;}
.fs26{font-size:160.133333pt;}
.fs13{font-size:170.800000pt;}
.fse{font-size:176.000000pt;}
.fsf{font-size:176.133333pt;}
.fs0{font-size:192.000000pt;}
.fsb{font-size:213.333333pt;}
.fs5{font-size:213.466667pt;}
.fs8{font-size:234.666667pt;}
.fs7{font-size:234.800000pt;}
.fs21{font-size:320.133333pt;}
.y0{bottom:0.000000pt;}
.y14a{bottom:2.623348pt;}
.y15a{bottom:2.944851pt;}
.y136{bottom:3.841074pt;}
.y121{bottom:4.192888pt;}
.y167{bottom:5.873186pt;}
.ye5{bottom:11.082207pt;}
.y148{bottom:12.527476pt;}
.y158{bottom:14.316037pt;}
.y11f{bottom:20.022623pt;}
.y165{bottom:20.884521pt;}
.y13e{bottom:22.176078pt;}
.y134{bottom:23.592940pt;}
.y152{bottom:25.368731pt;}
.y10{bottom:27.900000pt;}
.ye3{bottom:34.296276pt;}
.y15f{bottom:34.320241pt;}
.y115{bottom:35.443950pt;}
.y13f{bottom:36.004258pt;}
.y88{bottom:37.866667pt;}
.y12e{bottom:38.410730pt;}
.y14d{bottom:39.773333pt;}
.y149{bottom:45.419426pt;}
.y140{bottom:49.844018pt;}
.y153{bottom:51.795760pt;}
.y4a{bottom:54.500000pt;}
.yd8{bottom:56.431647pt;}
.y116{bottom:57.545482pt;}
.y159{bottom:57.557417pt;}
.y168{bottom:58.695718pt;}
.y141{bottom:63.683314pt;}
.y151{bottom:68.030380pt;}
.ye8{bottom:72.442607pt;}
.y120{bottom:72.593713pt;}
.y33{bottom:76.566667pt;}
.y142{bottom:77.513347pt;}
.y160{bottom:78.168515pt;}
.y154{bottom:78.209509pt;}
.y117{bottom:79.665522pt;}
.yd9{bottom:80.171031pt;}
.y12f{bottom:81.345884pt;}
.y135{bottom:84.306406pt;}
.y13a{bottom:85.600000pt;}
.y49{bottom:89.966667pt;}
.y143{bottom:91.352643pt;}
.y112{bottom:92.180947pt;}
.ye7{bottom:96.269482pt;}
.yc0{bottom:99.800000pt;}
.y118{bottom:101.784821pt;}
.y32{bottom:102.166667pt;}
.yda{bottom:103.939578pt;}
.y155{bottom:104.635475pt;}
.y144{bottom:105.191939pt;}
.y20{bottom:112.033333pt;}
.y76{bottom:113.733333pt;}
.y166{bottom:115.231808pt;}
.yaf{bottom:118.300000pt;}
.y145{bottom:119.017341pt;}
.yd7{bottom:119.865613pt;}
.ye6{bottom:120.067194pt;}
.y36{bottom:121.033333pt;}
.y161{bottom:122.032277pt;}
.y119{bottom:123.889315pt;}
.y130{bottom:124.267121pt;}
.y48{bottom:125.466667pt;}
.ybf{bottom:125.666667pt;}
.y5f{bottom:127.133333pt;}
.ydb{bottom:127.675316pt;}
.y31{bottom:127.800000pt;}
.y99{bottom:129.266667pt;}
.y15e{bottom:130.789333pt;}
.y156{bottom:131.066753pt;}
.y146{bottom:132.856637pt;}
.yae{bottom:135.106667pt;}
.y1f{bottom:137.640000pt;}
.ye4{bottom:144.881994pt;}
.y82{bottom:145.200000pt;}
.y8f{bottom:145.466667pt;}
.y12d{bottom:145.588459pt;}
.y11a{bottom:146.008614pt;}
.y147{bottom:146.695933pt;}
.yf0{bottom:147.906667pt;}
.ydc{bottom:151.443863pt;}
.yad{bottom:151.893333pt;}
.y30{bottom:153.400000pt;}
.y75{bottom:154.533333pt;}
.y5e{bottom:155.973333pt;}
.y6c{bottom:156.933333pt;}
.y157{bottom:157.476784pt;}
.ybe{bottom:158.200000pt;}
.ya5{bottom:160.306667pt;}
.y47{bottom:160.933333pt;}
.y35{bottom:161.160000pt;}
.y150{bottom:161.493333pt;}
.y1e{bottom:163.240000pt;}
.y162{bottom:165.896040pt;}
.y131{bottom:167.201010pt;}
.y11b{bottom:168.127914pt;}
.y4{bottom:169.160000pt;}
.y81{bottom:173.773333pt;}
.ydd{bottom:175.188107pt;}
.yb3{bottom:179.000000pt;}
.y98{bottom:179.933333pt;}
.y8e{bottom:182.293333pt;}
.y108{bottom:182.466667pt;}
.y74{bottom:183.360000pt;}
.ybd{bottom:184.360000pt;}
.y5d{bottom:184.760000pt;}
.y6b{bottom:185.773333pt;}
.y2f{bottom:186.200000pt;}
.ya4{bottom:186.426667pt;}
.yef{bottom:186.626667pt;}
.y11c{bottom:190.225005pt;}
.ye{bottom:192.706667pt;}
.y13{bottom:194.173333pt;}
.y46{bottom:196.400000pt;}
.yde{bottom:198.956655pt;}
.y53{bottom:200.226667pt;}
.y80{bottom:202.560000pt;}
.yf8{bottom:207.400000pt;}
.yb2{bottom:207.800000pt;}
.y163{bottom:209.745051pt;}
.y132{bottom:210.134899pt;}
.y3{bottom:210.773333pt;}
.y107{bottom:211.040000pt;}
.y8d{bottom:211.106667pt;}
.y2e{bottom:211.840000pt;}
.ya3{bottom:212.293333pt;}
.y11d{bottom:212.344304pt;}
.y6a{bottom:214.560000pt;}
.yee{bottom:215.440000pt;}
.yd6{bottom:216.266667pt;}
.ybc{bottom:216.906667pt;}
.y79{bottom:219.360000pt;}
.y5c{bottom:220.240000pt;}
.ydf{bottom:222.700899pt;}
.y73{bottom:224.173333pt;}
.yc9{bottom:230.640000pt;}
.y97{bottom:230.893333pt;}
.y7f{bottom:231.360000pt;}
.y128{bottom:231.626667pt;}
.y45{bottom:231.906667pt;}
.y11e{bottom:234.463603pt;}
.y139{bottom:236.026667pt;}
.yb1{bottom:236.600000pt;}
.y2d{bottom:237.973333pt;}
.yd{bottom:238.040000pt;}
.y52{bottom:238.360000pt;}
.y4c{bottom:239.773333pt;}
.y113{bottom:240.807726pt;}
.y69{bottom:243.360000pt;}
.yed{bottom:244.266667pt;}
.y19{bottom:244.666667pt;}
.yd5{bottom:245.066667pt;}
.y114{bottom:246.226510pt;}
.ye0{bottom:246.469446pt;}
.ya8{bottom:247.173333pt;}
.y40{bottom:247.733333pt;}
.y8c{bottom:247.893333pt;}
.y111{bottom:249.800000pt;}
.y127{bottom:250.840000pt;}
.ya2{bottom:251.533333pt;}
.y72{bottom:252.973333pt;}
.y133{bottom:253.068788pt;}
.y164{bottom:253.608814pt;}
.y5b{bottom:255.733333pt;}
.ybb{bottom:256.106667pt;}
.y41{bottom:256.866667pt;}
.yc8{bottom:259.440000pt;}
.y138{bottom:259.866667pt;}
.y78{bottom:260.466667pt;}
.yb0{bottom:265.440000pt;}
.y44{bottom:267.360000pt;}
.y96{bottom:268.240000pt;}
.ye1{bottom:270.201539pt;}
.y18{bottom:270.266667pt;}
.y1d{bottom:271.666667pt;}
.y2c{bottom:271.840000pt;}
.y68{bottom:272.200000pt;}
.y7e{bottom:272.466667pt;}
.y13d{bottom:272.901605pt;}
.yec{bottom:273.066667pt;}
.y171{bottom:273.360000pt;}
.y14f{bottom:273.866667pt;}
.y14c{bottom:274.666667pt;}
.y51{bottom:276.533333pt;}
.y8b{bottom:276.733333pt;}
.y38{bottom:277.960000pt;}
.ycd{bottom:281.506667pt;}
.yc{bottom:283.400000pt;}
.y5a{bottom:284.533333pt;}
.y110{bottom:285.533333pt;}
.y3f{bottom:285.866667pt;}
.yc7{bottom:288.266667pt;}
.ya1{bottom:290.733333pt;}
.y71{bottom:293.800000pt;}
.ye2{bottom:293.970086pt;}
.y129{bottom:295.040000pt;}
.yba{bottom:295.333333pt;}
.y170{bottom:295.760000pt;}
.yf6{bottom:295.866667pt;}
.y17{bottom:295.893333pt;}
.yf5{bottom:296.933333pt;}
.y1c{bottom:297.266667pt;}
.y2b{bottom:297.466667pt;}
.y7d{bottom:301.000000pt;}
.y77{bottom:301.266667pt;}
.yd4{bottom:301.866667pt;}
.y43{bottom:302.866667pt;}
.y137{bottom:307.360000pt;}
.y2{bottom:308.733333pt;}
.y95{bottom:312.533333pt;}
.y67{bottom:313.000000pt;}
.y59{bottom:313.333333pt;}
.y8a{bottom:313.533333pt;}
.y10f{bottom:314.093333pt;}
.y50{bottom:314.666667pt;}
.yfe{bottom:314.866667pt;}
.ya0{bottom:316.640000pt;}
.yc6{bottom:317.066667pt;}
.y106{bottom:317.533333pt;}
.y14e{bottom:317.893333pt;}
.y16f{bottom:318.173333pt;}
.yb9{bottom:321.200000pt;}
.yf7{bottom:321.466667pt;}
.y16{bottom:321.506667pt;}
.yb{bottom:322.066667pt;}
.yf4{bottom:322.533333pt;}
.y1b{bottom:322.866667pt;}
.y2a{bottom:323.066667pt;}
.y3e{bottom:324.000000pt;}
.y14b{bottom:324.306667pt;}
.y7c{bottom:329.800000pt;}
.yd3{bottom:330.666667pt;}
.y34{bottom:334.106667pt;}
.y70{bottom:334.600000pt;}
.y42{bottom:338.333333pt;}
.y16e{bottom:340.573333pt;}
.y66{bottom:341.800000pt;}
.y58{bottom:342.173333pt;}
.y37{bottom:342.506667pt;}
.y9f{bottom:342.773333pt;}
.y10e{bottom:342.906667pt;}
.ya7{bottom:343.200000pt;}
.yc5{bottom:345.866667pt;}
.y105{bottom:346.333333pt;}
.y15{bottom:347.093333pt;}
.y1a{bottom:348.466667pt;}
.y89{bottom:350.333333pt;}
.y4f{bottom:352.840000pt;}
.yb8{bottom:354.000000pt;}
.y94{bottom:356.533333pt;}
.y29{bottom:356.666667pt;}
.yd2{bottom:359.506667pt;}
.ya{bottom:360.773333pt;}
.y87{bottom:361.026667pt;}
.y3d{bottom:362.173333pt;}
.yce{bottom:363.800000pt;}
.y1{bottom:366.360000pt;}
.y65{bottom:370.640000pt;}
.y10d{bottom:371.693333pt;}
.y104{bottom:375.133333pt;}
.y6f{bottom:375.440000pt;}
.y57{bottom:377.640000pt;}
.yb7{bottom:379.893333pt;}
.yf2{bottom:380.066667pt;}
.y14{bottom:381.733333pt;}
.y9e{bottom:381.960000pt;}
.yf3{bottom:382.066667pt;}
.y28{bottom:382.266667pt;}
.yff{bottom:383.466667pt;}
.y126{bottom:387.026667pt;}
.yd1{bottom:388.306667pt;}
.yac{bottom:388.773333pt;}
.y4e{bottom:390.960000pt;}
.y3c{bottom:391.226667pt;}
.y93{bottom:393.893333pt;}
.yfd{bottom:394.933333pt;}
.yab{bottom:396.840000pt;}
.y86{bottom:397.560000pt;}
.y9{bottom:399.440000pt;}
.y7b{bottom:399.693333pt;}
.yc4{bottom:403.506667pt;}
.y103{bottom:403.973333pt;}
.y10c{bottom:407.200000pt;}
.y64{bottom:411.440000pt;}
.y23{bottom:412.600000pt;}
.y56{bottom:413.106667pt;}
.yaa{bottom:413.640000pt;}
.y6e{bottom:416.226667pt;}
.yd0{bottom:417.106667pt;}
.y22{bottom:418.373333pt;}
.yb6{bottom:419.106667pt;}
.yfc{bottom:420.800000pt;}
.y9d{bottom:421.200000pt;}
.y125{bottom:422.506667pt;}
.y27{bottom:424.693333pt;}
.y7a{bottom:428.226667pt;}
.ycc{bottom:428.400000pt;}
.y3b{bottom:429.133333pt;}
.ya9{bottom:430.440000pt;}
.yc3{bottom:432.293333pt;}
.y102{bottom:432.773333pt;}
.y10b{bottom:436.000000pt;}
.y11{bottom:438.066667pt;}
.y92{bottom:438.173333pt;}
.y63{bottom:440.226667pt;}
.y85{bottom:441.293333pt;}
.y55{bottom:441.933333pt;}
.y21{bottom:443.973333pt;}
.y8{bottom:444.800000pt;}
.yea{bottom:446.266667pt;}
.yfb{bottom:446.973333pt;}
.y9c{bottom:447.066667pt;}
.y12c{bottom:452.066667pt;}
.y16d{bottom:452.600000pt;}
.y26{bottom:453.506667pt;}
.y6d{bottom:457.066667pt;}
.ycb{bottom:457.200000pt;}
.y124{bottom:458.000000pt;}
.yb5{bottom:458.333333pt;}
.ycf{bottom:458.706667pt;}
.yc2{bottom:461.133333pt;}
.yf1{bottom:461.533333pt;}
.y101{bottom:461.560000pt;}
.y10a{bottom:464.800000pt;}
.y62{bottom:469.066667pt;}
.y84{bottom:470.133333pt;}
.y54{bottom:470.733333pt;}
.y15b{bottom:471.000000pt;}
.yfa{bottom:472.840000pt;}
.y13c{bottom:473.600000pt;}
.ye9{bottom:475.333333pt;}
.y91{bottom:475.506667pt;}
.y16c{bottom:476.640000pt;}
.ya6{bottom:481.666667pt;}
.y25{bottom:482.333333pt;}
.y12b{bottom:487.560000pt;}
.y4b{bottom:488.933333pt;}
.yc1{bottom:489.933333pt;}
.y7{bottom:490.133333pt;}
.y123{bottom:493.466667pt;}
.yeb{bottom:495.773333pt;}
.y61{bottom:497.866667pt;}
.yca{bottom:498.773333pt;}
.y83{bottom:498.933333pt;}
.y15c{bottom:502.666667pt;}
.y16b{bottom:513.960000pt;}
.y90{bottom:519.800000pt;}
.y109{bottom:525.106667pt;}
.y15d{bottom:525.933333pt;}
.y9b{bottom:526.600000pt;}
.yf9{bottom:529.666667pt;}
.y6{bottom:535.506667pt;}
.y13b{bottom:537.933333pt;}
.y16a{bottom:537.973333pt;}
.y122{bottom:550.973333pt;}
.y12a{bottom:553.133333pt;}
.y100{bottom:554.560000pt;}
.y3a{bottom:556.800000pt;}
.y12{bottom:557.773333pt;}
.y4d{bottom:559.000000pt;}
.yb4{bottom:559.506667pt;}
.y24{bottom:562.306667pt;}
.y60{bottom:563.773333pt;}
.y39{bottom:570.560000pt;}
.y5{bottom:574.173333pt;}
.y169{bottom:575.333333pt;}
.y9a{bottom:584.200000pt;}
.yf{bottom:670.506667pt;}
.h4a{height:29.409481pt;}
.h4b{height:29.453706pt;}
.h4c{height:30.276677pt;}
.h4d{height:30.321268pt;}
.h53{height:33.728090pt;}
.h54{height:33.778809pt;}
.h56{height:34.721553pt;}
.h55{height:34.731595pt;}
.h58{height:41.199896pt;}
.h59{height:41.270323pt;}
.h43{height:46.636221pt;}
.h45{height:46.639345pt;}
.h44{height:46.698403pt;}
.h39{height:47.005072pt;}
.h3a{height:47.075757pt;}
.h19{height:47.874805pt;}
.h5b{height:48.213571pt;}
.h5a{height:48.285515pt;}
.h14{height:48.375000pt;}
.h3b{height:48.391968pt;}
.h3c{height:48.462377pt;}
.h13{height:48.475781pt;}
.h4e{height:49.843750pt;}
.h34{height:53.179492pt;}
.h23{height:56.229687pt;}
.h24{height:57.885937pt;}
.h2f{height:58.014440pt;}
.h26{height:58.022461pt;}
.h33{height:59.412500pt;}
.h32{height:61.162500pt;}
.h48{height:63.656250pt;}
.h7{height:63.788867pt;}
.h3f{height:66.750000pt;}
.h3e{height:66.889063pt;}
.h2c{height:67.876895pt;}
.h50{height:67.968750pt;}
.h2b{height:67.992924pt;}
.h2e{height:69.876214pt;}
.h5e{height:74.265625pt;}
.h46{height:74.268750pt;}
.h47{height:74.405273pt;}
.h40{height:75.650000pt;}
.h2d{height:75.870318pt;}
.h1a{height:79.570312pt;}
.h5d{height:79.702930pt;}
.h1f{height:81.562500pt;}
.h5c{height:81.914062pt;}
.h51{height:83.437500pt;}
.hc{height:84.875000pt;}
.hd{height:85.007617pt;}
.h29{height:86.859375pt;}
.ha{height:87.375000pt;}
.h1e{height:87.500000pt;}
.hb{height:87.511523pt;}
.h11{height:89.000000pt;}
.h12{height:89.139062pt;}
.h4f{height:90.700000pt;}
.h25{height:92.765937pt;}
.h1c{height:95.484375pt;}
.h1d{height:95.616992pt;}
.h27{height:96.750000pt;}
.h28{height:96.884375pt;}
.h10{height:98.296875pt;}
.h17{height:100.125000pt;}
.h18{height:100.264062pt;}
.h4{height:111.250000pt;}
.h5{height:111.389062pt;}
.h3{height:116.703125pt;}
.h2{height:116.835742pt;}
.h21{height:129.000000pt;}
.h22{height:129.134375pt;}
.h31{height:137.109375pt;}
.h37{height:150.187500pt;}
.h41{height:152.343750pt;}
.h1b{height:162.626953pt;}
.he{height:164.314284pt;}
.h49{height:165.349021pt;}
.h36{height:166.875000pt;}
.h3d{height:167.014062pt;}
.h15{height:175.054688pt;}
.h16{height:175.187305pt;}
.h20{height:179.639583pt;}
.h52{height:180.450839pt;}
.h30{height:183.168333pt;}
.h1{height:190.968750pt;}
.hf{height:203.125000pt;}
.h6{height:203.251953pt;}
.h9{height:223.437500pt;}
.h8{height:223.564453pt;}
.h57{height:263.573493pt;}
.h38{height:264.276769pt;}
.h42{height:276.846723pt;}
.h35{height:304.814453pt;}
.h2a{height:315.407165pt;}
.h0{height:720.000000pt;}
.w7{width:39.466667pt;}
.w1{width:60.800000pt;}
.w2{width:60.833333pt;}
.w6{width:281.630057pt;}
.w8{width:307.448104pt;}
.w9{width:406.164756pt;}
.w4{width:450.136345pt;}
.w5{width:502.411394pt;}
.w3{width:588.663299pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x83{left:9.515505pt;}
.x89{left:11.821003pt;}
.x7a{left:12.981619pt;}
.x85{left:14.120000pt;}
.x6f{left:15.208871pt;}
.x8d{left:16.126220pt;}
.x81{left:17.018970pt;}
.x30{left:22.386667pt;}
.x4f{left:23.559199pt;}
.x79{left:26.039152pt;}
.x6d{left:27.201846pt;}
.x78{left:31.808761pt;}
.x4d{left:33.818850pt;}
.x82{left:35.160682pt;}
.x77{left:37.578369pt;}
.x4c{left:43.191865pt;}
.x8c{left:49.192935pt;}
.x17{left:55.100000pt;}
.x6e{left:56.198196pt;}
.x9{left:57.633333pt;}
.x6c{left:60.000412pt;}
.x18{left:64.433333pt;}
.x4e{left:68.840992pt;}
.x19{left:74.300000pt;}
.x91{left:78.800000pt;}
.x2e{left:82.333333pt;}
.x8e{left:91.023450pt;}
.x72{left:92.533333pt;}
.x36{left:94.733333pt;}
.x3d{left:98.900000pt;}
.x43{left:101.266667pt;}
.x92{left:105.733333pt;}
.x76{left:109.454666pt;}
.x58{left:114.533333pt;}
.x39{left:118.733333pt;}
.x2a{left:121.533333pt;}
.x84{left:123.103145pt;}
.x16{left:125.266667pt;}
.x2b{left:126.766667pt;}
.x67{left:129.566667pt;}
.x5{left:130.966667pt;}
.x29{left:133.200000pt;}
.x8a{left:137.135966pt;}
.x28{left:141.266667pt;}
.x2d{left:143.400000pt;}
.x46{left:144.666667pt;}
.x44{left:149.266667pt;}
.x8f{left:151.466667pt;}
.x6a{left:152.360000pt;}
.x53{left:153.360000pt;}
.x7{left:154.960000pt;}
.x6b{left:156.066509pt;}
.x1a{left:159.360000pt;}
.x14{left:164.000000pt;}
.x37{left:166.733333pt;}
.x52{left:167.826667pt;}
.x47{left:171.600000pt;}
.x45{left:173.306667pt;}
.x54{left:174.693333pt;}
.x8{left:178.973333pt;}
.x21{left:183.400000pt;}
.x90{left:187.466667pt;}
.x57{left:188.573333pt;}
.x49{left:192.693333pt;}
.x4a{left:193.866667pt;}
.x38{left:195.666667pt;}
.x70{left:196.758829pt;}
.x63{left:201.733333pt;}
.x6{left:202.973333pt;}
.x69{left:205.400000pt;}
.x61{left:210.400000pt;}
.x2f{left:211.973333pt;}
.x35{left:213.293333pt;}
.x25{left:215.200000pt;}
.x1c{left:225.906667pt;}
.x60{left:227.506667pt;}
.x5f{left:239.506667pt;}
.x48{left:240.693333pt;}
.x4b{left:242.133333pt;}
.xc{left:249.026667pt;}
.x2c{left:250.306667pt;}
.x31{left:255.173333pt;}
.x7b{left:258.917487pt;}
.x2{left:264.666667pt;}
.xe{left:265.693333pt;}
.xf{left:266.933333pt;}
.x50{left:276.849606pt;}
.x32{left:277.840000pt;}
.x68{left:282.266667pt;}
.x1{left:283.333333pt;}
.x86{left:286.066667pt;}
.x75{left:290.973333pt;}
.x59{left:292.973333pt;}
.x1f{left:295.933333pt;}
.x7f{left:301.693333pt;}
.x24{left:305.333333pt;}
.x27{left:306.773333pt;}
.x20{left:321.773333pt;}
.x22{left:328.626667pt;}
.xb{left:333.066667pt;}
.x33{left:342.933333pt;}
.x87{left:344.733333pt;}
.x12{left:363.773333pt;}
.x3c{left:382.226667pt;}
.x34{left:386.400000pt;}
.x3a{left:390.333333pt;}
.x5a{left:393.066667pt;}
.x3b{left:394.240000pt;}
.xd{left:398.466667pt;}
.x11{left:400.040000pt;}
.x65{left:410.733333pt;}
.x55{left:415.893333pt;}
.x5b{left:416.800000pt;}
.x64{left:418.840000pt;}
.x13{left:422.200000pt;}
.x1d{left:424.560000pt;}
.x71{left:430.360000pt;}
.x74{left:448.933333pt;}
.x51{left:456.050451pt;}
.x93{left:461.773333pt;}
.x4{left:473.226667pt;}
.x3{left:487.106667pt;}
.x7e{left:489.733333pt;}
.x3e{left:492.600000pt;}
.x1b{left:519.226667pt;}
.x66{left:521.093333pt;}
.x10{left:529.000000pt;}
.x88{left:541.167519pt;}
.x5c{left:585.466667pt;}
.x62{left:588.400000pt;}
.x80{left:589.526744pt;}
.x56{left:605.440000pt;}
.x8b{left:613.733333pt;}
.x7c{left:621.626667pt;}
.x1e{left:625.760000pt;}
.x7d{left:635.933333pt;}
.x73{left:638.773333pt;}
.x5e{left:707.933333pt;}
.x15{left:714.040000pt;}
.x5d{left:719.666667pt;}
.x40{left:795.573333pt;}
.x41{left:797.173333pt;}
.x3f{left:803.026667pt;}
.x23{left:819.893333pt;}
.x42{left:830.760000pt;}
.x26{left:868.626667pt;}
.xa{left:876.640000pt;}
}




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