
    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_9570503bece90993ffc2ab42.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_637dfd9f75a61a7dab20b673.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_f32613791053ffd2395c71a1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_e5d922cf3aff4420a88786b6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_65cba71fc5d8adaf8b5fc7ca.woff')format("woff");}.ff5{font-family:ff5;line-height:0.931152;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_64fe2c05463ab37171cf49f8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.931152;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_5f4cd5b1c3f8abfc94eb15f2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f099c19d933709762a9f1830.woff')format("woff");}.ff8{font-family:ff8;line-height:0.699219;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_d60668a14a25472e56879af9.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_f54ce12e8de4ab277a13accc.woff')format("woff");}.ffa{font-family:ffa;line-height:0.931152;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_8b5a3026577ff496e01338a3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.952148;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;}
.me{transform:matrix(0.000000,-0.249818,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249818,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249818,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.249967,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249967,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249967,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.249705,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249705,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249705,0.250000,0.000000,0,0);}
.m12{transform:matrix(0.000000,-0.249965,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249965,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249965,0.250000,0.000000,0,0);}
.m14{transform:matrix(0.000000,-0.249966,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249966,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249966,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.249968,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249968,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249968,0.250000,0.000000,0,0);}
.m13{transform:matrix(0.000000,-0.249968,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249968,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249968,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249969,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249969,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249969,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.249967,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249967,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249967,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.076154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076154,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.091985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091985,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.195307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195307,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.236033,0.000000,-0.082391,0.236033,0,0);-ms-transform:matrix(0.236033,0.000000,-0.082391,0.236033,0,0);-webkit-transform:matrix(0.236033,0.000000,-0.082391,0.236033,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);}
.m7{transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-16.362001px;}
.v4{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.000000px;}
.v6{vertical-align:16.356267px;}
.v1{vertical-align:18.179998px;}
.v2{vertical-align:21.816001px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000002px;}
.ls21{letter-spacing:0.000006px;}
.ls11{letter-spacing:0.000007px;}
.ls22{letter-spacing:0.000029px;}
.ls10{letter-spacing:0.000092px;}
.lsa{letter-spacing:0.002983px;}
.ls3{letter-spacing:0.003051px;}
.lsf{letter-spacing:0.005925px;}
.ls2{letter-spacing:0.005941px;}
.ls6{letter-spacing:0.006001px;}
.ls12{letter-spacing:0.006003px;}
.ls1c{letter-spacing:0.006006px;}
.ls1b{letter-spacing:0.006010px;}
.ls1f{letter-spacing:0.006025px;}
.lsb{letter-spacing:0.006065px;}
.lsc{letter-spacing:0.008993px;}
.ls15{letter-spacing:0.009176px;}
.ls13{letter-spacing:0.011975px;}
.lsd{letter-spacing:0.011986px;}
.ls4{letter-spacing:0.011995px;}
.ls9{letter-spacing:0.012006px;}
.ls8{letter-spacing:0.012009px;}
.ls1a{letter-spacing:0.012052px;}
.ls1{letter-spacing:0.012074px;}
.ls1e{letter-spacing:0.017983px;}
.ls7{letter-spacing:0.017985px;}
.ls5{letter-spacing:0.017996px;}
.ls17{letter-spacing:0.018003px;}
.ls14{letter-spacing:0.018010px;}
.lse{letter-spacing:0.018028px;}
.ls19{letter-spacing:0.024005px;}
.ls23{letter-spacing:0.030031px;}
.ls18{letter-spacing:0.036006px;}
.ls20{letter-spacing:0.036017px;}
.ls1d{letter-spacing:0.436379px;}
.ls24{letter-spacing:11.700000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-32.400000px;}
.ws7{word-spacing:-26.640000px;}
.ws10{word-spacing:-18.000000px;}
.ws5{word-spacing:-15.000000px;}
.wsa{word-spacing:-14.520000px;}
.ws1c{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.200000px;}
.ws1{word-spacing:-12.000000px;}
.ws0{word-spacing:-9.750000px;}
.ws8{word-spacing:-9.504000px;}
.ws3{word-spacing:-9.000000px;}
.ws19{word-spacing:-6.995444px;}
.ws1b{word-spacing:-6.980186px;}
.ws17{word-spacing:-6.949869px;}
.ws15{word-spacing:-6.934882px;}
.ws13{word-spacing:-6.919960px;}
.ws4{word-spacing:0.000000px;}
.wsf{word-spacing:65.250538px;}
.wse{word-spacing:65.378237px;}
.wsc{word-spacing:65.519298px;}
.wsd{word-spacing:65.660974px;}
.wsb{word-spacing:66.447333px;}
.ws2{word-spacing:75.600000px;}
.ws12{word-spacing:81.388155px;}
.ws14{word-spacing:81.563661px;}
.ws16{word-spacing:81.739929px;}
.ws1a{word-spacing:82.096502px;}
.ws18{word-spacing:82.275956px;}
.ws9{word-spacing:204.224806px;}
._d{margin-left:-3.360000px;}
._5{margin-left:-2.160000px;}
._4{margin-left:-1.134000px;}
._1{width:1.944000px;}
._2{width:3.132000px;}
._3{width:4.212000px;}
._7{width:5.454000px;}
._9{width:7.380000px;}
._0{width:8.424000px;}
._8{width:9.504000px;}
._c{width:10.956000px;}
._6{width:12.096000px;}
._a{width:13.284000px;}
._15{width:14.796000px;}
._b{width:16.680000px;}
._12{width:31.536000px;}
._11{width:39.042000px;}
._13{width:81.702699px;}
._e{width:93.600000px;}
._f{width:97.800000px;}
._10{width:204.224739px;}
._14{width:282.312000px;}
.fc6{color:rgb(0,114,189);}
.fc5{color:rgb(217,83,25);}
.fc4{color:rgb(238,0,0);}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(31,31,31);}
.fc2{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs26{font-size:27.679839px;}
.fs2a{font-size:27.739528px;}
.fs2f{font-size:27.799477px;}
.fs39{font-size:27.920746px;}
.fs34{font-size:27.981777px;}
.fs25{font-size:28.131972px;}
.fs21{font-size:28.187028px;}
.fs1c{font-size:28.247845px;}
.fs1d{font-size:28.308926px;}
.fs2b{font-size:28.369972px;}
.fs30{font-size:28.431283px;}
.fs3a{font-size:28.555308px;}
.fs35{font-size:28.617727px;}
.fs9{font-size:31.104003px;}
.fs22{font-size:31.257747px;}
.fs1e{font-size:31.318920px;}
.fs19{font-size:31.386494px;}
.fs16{font-size:31.454362px;}
.fs27{font-size:31.522191px;}
.fs2c{font-size:31.590314px;}
.fs36{font-size:31.728120px;}
.fs31{font-size:31.797474px;}
.fs24{font-size:34.383519px;}
.fs23{font-size:34.408589px;}
.fs20{font-size:34.450809px;}
.fs1f{font-size:34.455303px;}
.fs1b{font-size:34.525141px;}
.fs1a{font-size:34.529546px;}
.fs18{font-size:34.599796px;}
.fs17{font-size:34.604062px;}
.fs29{font-size:34.674408px;}
.fs28{font-size:34.678937px;}
.fs2e{font-size:34.749343px;}
.fs3b{font-size:34.754125px;}
.fs2d{font-size:34.754144px;}
.fs38{font-size:34.900929px;}
.fs37{font-size:34.905484px;}
.fs33{font-size:34.977219px;}
.fs32{font-size:34.981672px;}
.fs5{font-size:36.000000px;}
.fs10{font-size:38.401240px;}
.fs3{font-size:39.000000px;}
.fs12{font-size:39.273999px;}
.fs14{font-size:41.999999px;}
.fs7{font-size:43.200002px;}
.fse{font-size:43.637776px;}
.fsd{font-size:47.520002px;}
.fs4{font-size:48.000000px;}
.fsf{font-size:48.001558px;}
.fs11{font-size:48.058339px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:55.297695px;}
.fs2{font-size:60.000000px;}
.fs13{font-size:63.550366px;}
.fsc{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs15{font-size:120.000000px;}
.fsb{font-size:163.069925px;}
.fsa{font-size:196.968985px;}
.y0{bottom:0.000000px;}
.y1b5{bottom:1.875458px;}
.y19f{bottom:1.879135px;}
.y187{bottom:1.883189px;}
.y177{bottom:1.887260px;}
.y1f1{bottom:1.891331px;}
.y203{bottom:1.895418px;}
.y224{bottom:1.903682px;}
.y211{bottom:1.907843px;}
.y136{bottom:2.332764px;}
.y92{bottom:2.398754px;}
.y80{bottom:2.398827px;}
.ye8{bottom:2.398932px;}
.ybd{bottom:2.399085px;}
.y55{bottom:2.399966px;}
.y9c{bottom:2.400021px;}
.y11a{bottom:2.639361px;}
.y108{bottom:2.727359px;}
.yab{bottom:3.230745px;}
.y48{bottom:3.244499px;}
.y89{bottom:3.332278px;}
.y74{bottom:3.332520px;}
.y56{bottom:3.413999px;}
.y5b{bottom:3.995999px;}
.y4a{bottom:4.183499px;}
.y11b{bottom:4.292999px;}
.y94{bottom:4.368000px;}
.y5d{bottom:4.745999px;}
.y91{bottom:4.965600px;}
.y7f{bottom:4.965673px;}
.ye7{bottom:4.965778px;}
.ybb{bottom:4.965931px;}
.y54{bottom:4.966812px;}
.y9b{bottom:4.966867px;}
.y4b{bottom:5.120999px;}
.yfe{bottom:5.225361px;}
.y119{bottom:5.462892px;}
.yff{bottom:5.586000px;}
.yaa{bottom:5.797591px;}
.ya1{bottom:6.068999px;}
.yfd{bottom:8.048892px;}
.y86{bottom:10.349172px;}
.y72{bottom:10.349414px;}
.y81{bottom:10.799414px;}
.ybc{bottom:10.799671px;}
.y9f{bottom:10.800655px;}
.y93{bottom:11.093414px;}
.ye4{bottom:11.982672px;}
.y1b4{bottom:12.086318px;}
.y19e{bottom:12.109978px;}
.y186{bottom:12.136106px;}
.y176{bottom:12.162348px;}
.y9e{bottom:12.648784px;}
.y85{bottom:12.916018px;}
.y71{bottom:12.916260px;}
.y9d{bottom:13.008210px;}
.y76{bottom:13.370999px;}
.y8a{bottom:14.187000px;}
.y7d{bottom:14.549414px;}
.ye3{bottom:14.549518px;}
.yb4{bottom:14.549671px;}
.y1e3{bottom:14.678697px;}
.yf2{bottom:14.693290px;}
.y1f0{bottom:14.710351px;}
.y202{bottom:14.742142px;}
.y223{bottom:14.806447px;}
.y210{bottom:14.838811px;}
.ye9{bottom:15.004498px;}
.y82{bottom:15.470999px;}
.yac{bottom:15.835502px;}
.ya7{bottom:16.213018px;}
.ya0{bottom:16.849078px;}
.y133{bottom:17.099414px;}
.y7c{bottom:17.116260px;}
.yb3{bottom:17.116517px;}
.y135{bottom:17.165039px;}
.yf1{bottom:17.260136px;}
.y2{bottom:18.443999px;}
.y75{bottom:18.750000px;}
.yf4{bottom:18.996543px;}
.y1ae{bottom:19.067218px;}
.y198{bottom:19.104539px;}
.y180{bottom:19.145759px;}
.y170{bottom:19.187159px;}
.ybe{bottom:19.189499px;}
.y132{bottom:19.666260px;}
.y137{bottom:20.120999px;}
.y107{bottom:20.546112px;}
.y32{bottom:20.574003px;}
.yf5{bottom:21.351105px;}
.y1dd{bottom:21.703507px;}
.y1ea{bottom:21.750310px;}
.y1fc{bottom:21.797314px;}
.y21d{bottom:21.892396px;}
.y20a{bottom:21.940250px;}
.yf7{bottom:23.124001px;}
.yee{bottom:24.277031px;}
.y88{bottom:24.899173px;}
.y73{bottom:25.832520px;}
.ye6{bottom:26.532673px;}
.yed{bottom:26.843877px;}
.y87{bottom:27.466020px;}
.ya9{bottom:28.196173px;}
.ye5{bottom:29.099520px;}
.yba{bottom:29.099671px;}
.y7e{bottom:30.032520px;}
.ya8{bottom:30.763020px;}
.y109{bottom:30.819177px;}
.yb5{bottom:31.666517px;}
.y1b6{bottom:32.551164px;}
.y212{bottom:36.766956px;}
.yb7{bottom:36.828423px;}
.yb9{bottom:37.500258px;}
.yb6{bottom:38.676552px;}
.yf0{bottom:38.827032px;}
.y22f{bottom:38.982442px;}
.yf3{bottom:39.760136px;}
.y1a0{bottom:39.950410px;}
.y1aa{bottom:40.995518px;}
.yef{bottom:41.393878px;}
.y225{bottom:41.807890px;}
.y134{bottom:42.832764px;}
.yb8{bottom:43.088578px;}
.y1f2{bottom:43.185398px;}
.y18f{bottom:44.110995px;}
.y188{bottom:45.259324px;}
.y178{bottom:45.357190px;}
.y1a6{bottom:45.725681px;}
.y1bc{bottom:45.792651px;}
.y18c{bottom:45.824339px;}
.y194{bottom:45.923427px;}
.y17c{bottom:47.024330px;}
.y1e8{bottom:47.181601px;}
.y1f8{bottom:47.283340px;}
.y1e4{bottom:47.370267px;}
.y207{bottom:47.385529px;}
.y22b{bottom:47.592234px;}
.y21a{bottom:47.696265px;}
.yf6{bottom:48.606918px;}
.y19d{bottom:49.797140px;}
.y1b3{bottom:49.856158px;}
.y185{bottom:49.904584px;}
.y175{bottom:50.012494px;}
.y1de{bottom:50.870275px;}
.y1eb{bottom:50.979973px;}
.y1fd{bottom:51.090146px;}
.y1e2{bottom:51.270669px;}
.y21e{bottom:51.313011px;}
.y1ef{bottom:51.381230px;}
.y20b{bottom:51.425175px;}
.y201{bottom:51.492270px;}
.y213{bottom:51.593663px;}
.y1af{bottom:51.653416px;}
.y199{bottom:51.676213px;}
.y222{bottom:51.716889px;}
.y181{bottom:51.787711px;}
.y20f{bottom:51.829937px;}
.y171{bottom:51.899693px;}
.y64{bottom:52.746002px;}
.y1b7{bottom:55.024403px;}
.y31{bottom:55.071001px;}
.y230{bottom:56.167570px;}
.y1a1{bottom:60.796280px;}
.y226{bottom:61.723383px;}
.y1ab{bottom:62.803868px;}
.y1f3{bottom:64.620486px;}
.y204{bottom:64.760138px;}
.y214{bottom:66.420369px;}
.y190{bottom:69.034832px;}
.y10a{bottom:69.184061px;}
.y189{bottom:71.372879px;}
.y179{bottom:71.527212px;}
.y1e5{bottom:73.037027px;}
.y231{bottom:73.352707px;}
.y1b8{bottom:77.497641px;}
.y1df{bottom:80.037052px;}
.y1ec{bottom:80.209646px;}
.y1fe{bottom:80.382988px;}
.y21f{bottom:80.733636px;}
.y20c{bottom:80.910111px;}
.y215{bottom:81.247076px;}
.y227{bottom:81.638877px;}
.y1a2{bottom:81.642151px;}
.y1b0{bottom:84.239615px;}
.y19a{bottom:84.247887px;}
.y182{bottom:84.429662px;}
.y172{bottom:84.612228px;}
.y1f4{bottom:86.055575px;}
.y232{bottom:90.537834px;}
.y191{bottom:93.958664px;}
.y216{bottom:96.073782px;}
.y18a{bottom:97.486444px;}
.y17a{bottom:97.697243px;}
.y1e6{bottom:98.703782px;}
.y1b9{bottom:99.970884px;}
.y228{bottom:101.554375px;}
.y1a3{bottom:102.488026px;}
.y1{bottom:104.175015px;}
.y1ac{bottom:106.420582px;}
.y1f5{bottom:107.490663px;}
.y10b{bottom:107.548928px;}
.y205{bottom:107.722962px;}
.y1e0{bottom:109.203820px;}
.y1ed{bottom:109.439309px;}
.y1ff{bottom:109.675819px;}
.y220{bottom:110.154251px;}
.y20d{bottom:110.395036px;}
.y217{bottom:110.900489px;}
.y19b{bottom:116.819561px;}
.y1b1{bottom:116.825813px;}
.y183{bottom:117.071613px;}
.y173{bottom:117.324762px;}
.y192{bottom:118.882501px;}
.y229{bottom:121.469874px;}
.y1ba{bottom:122.444123px;}
.y1a4{bottom:123.333897px;}
.y18b{bottom:123.600004px;}
.y17b{bottom:123.867270px;}
.y1e7{bottom:124.370539px;}
.y233{bottom:124.908092px;}
.y218{bottom:125.727198px;}
.y1ad{bottom:128.228939px;}
.y1f6{bottom:128.925751px;}
.y17e{bottom:131.668077px;}
.y1a8{bottom:132.354016px;}
.y1be{bottom:132.408070px;}
.y18e{bottom:132.639585px;}
.y196{bottom:132.926398px;}
.y1fa{bottom:133.213042px;}
.y209{bottom:133.500930px;}
.y22d{bottom:134.083294px;}
.y21c{bottom:134.376385px;}
.ya6{bottom:136.648456px;}
.y110{bottom:137.731837px;}
.y1e1{bottom:138.370588px;}
.y1ee{bottom:138.668972px;}
.y200{bottom:138.968651px;}
.y221{bottom:139.574866px;}
.y20e{bottom:139.879962px;}
.y219{bottom:140.553904px;}
.y17d{bottom:140.726679px;}
.y1a7{bottom:140.746942px;}
.y1bd{bottom:140.784603px;}
.y18d{bottom:141.050620px;}
.y195{bottom:141.355620px;}
.y22a{bottom:141.385368px;}
.y1f9{bottom:141.660442px;}
.y208{bottom:141.966585px;}
.y234{bottom:142.093222px;}
.y2f{bottom:142.232991px;}
.y22c{bottom:142.585879px;}
.y21b{bottom:142.897556px;}
.y193{bottom:143.806337px;}
.y1a5{bottom:144.179767px;}
.y1bb{bottom:144.917364px;}
.y10c{bottom:145.913811px;}
.y19c{bottom:149.391235px;}
.y1b2{bottom:149.412012px;}
.y184{bottom:149.713564px;}
.y174{bottom:150.037296px;}
.y1f7{bottom:150.360839px;}
.y206{bottom:150.685785px;}
.y1dc{bottom:168.815992px;}
.y2e{bottom:174.155960px;}
.y10d{bottom:184.278687px;}
.y1db{bottom:185.473497px;}
.y2d{bottom:191.404461px;}
.y105{bottom:191.444982px;}
.y115{bottom:195.583302px;}
.ya5{bottom:199.572026px;}
.y1da{bottom:200.765997px;}
.y114{bottom:207.431558px;}
.y2c{bottom:208.652959px;}
.y63{bottom:208.882484px;}
.y13f{bottom:213.283513px;}
.y1d9{bottom:216.058494px;}
.ya4{bottom:216.820496px;}
.y113{bottom:219.279823px;}
.y10e{bottom:222.643566px;}
.y104{bottom:222.697486px;}
.y2b{bottom:225.901485px;}
.y62{bottom:228.382484px;}
.y16e{bottom:230.157017px;}
.y112{bottom:231.128087px;}
.y1d8{bottom:231.350996px;}
.ya2{bottom:234.068998px;}
.ya3{bottom:234.918068px;}
.y13e{bottom:242.531957px;}
.y111{bottom:242.976347px;}
.y14f{bottom:243.118515px;}
.y2a{bottom:243.149986px;}
.y1d7{bottom:245.509495px;}
.y16d{bottom:247.405518px;}
.y61{bottom:247.882484px;}
.y14e{bottom:260.367016px;}
.y29{bottom:260.398487px;}
.y10f{bottom:261.008446px;}
.y1d6{bottom:261.032990px;}
.y16c{bottom:264.654007px;}
.y9a{bottom:266.419463px;}
.y60{bottom:267.382484px;}
.y1d5{bottom:276.556492px;}
.y14d{bottom:277.615514px;}
.y28{bottom:277.646988px;}
.y13d{bottom:277.780492px;}
.y103{bottom:280.712989px;}
.y16b{bottom:281.902508px;}
.y5f{bottom:286.882484px;}
.y1d4{bottom:292.079990px;}
.y14c{bottom:294.863995px;}
.y27{bottom:294.895477px;}
.y16a{bottom:299.151009px;}
.yda{bottom:305.147999px;}
.y5e{bottom:306.382484px;}
.y1d3{bottom:307.603489px;}
.y13c{bottom:309.033026px;}
.y99{bottom:309.810013px;}
.y14b{bottom:312.112493px;}
.y26{bottom:312.143978px;}
.y169{bottom:316.399509px;}
.yd9{bottom:322.396500px;}
.y1d2{bottom:323.126987px;}
.y5c{bottom:325.882484px;}
.y98{bottom:327.058514px;}
.y25{bottom:329.392479px;}
.y168{bottom:333.648010px;}
.y1d1{bottom:338.650486px;}
.yd8{bottom:339.644989px;}
.y102{bottom:341.973003px;}
.y97{bottom:344.307012px;}
.y14a{bottom:345.010511px;}
.y5a{bottom:345.382484px;}
.y24{bottom:346.640980px;}
.y13b{bottom:347.111996px;}
.y167{bottom:350.896511px;}
.y1d0{bottom:354.173985px;}
.yd7{bottom:356.893490px;}
.y101{bottom:359.221501px;}
.y23{bottom:363.889481px;}
.y13a{bottom:364.360494px;}
.y96{bottom:366.055501px;}
.y166{bottom:368.145009px;}
.yd6{bottom:374.141991px;}
.y100{bottom:376.469991px;}
.y22{bottom:381.137981px;}
.y139{bottom:381.608974px;}
.y165{bottom:385.393478px;}
.y1cf{bottom:385.671003px;}
.y59{bottom:385.802982px;}
.yd5{bottom:391.390491px;}
.y95{bottom:392.303990px;}
.y149{bottom:394.735508px;}
.y21{bottom:398.386479px;}
.y138{bottom:398.857472px;}
.y164{bottom:402.641979px;}
.yfc{bottom:407.722474px;}
.yd4{bottom:408.638992px;}
.y20{bottom:415.635006px;}
.y58{bottom:419.650509px;}
.y163{bottom:419.890477px;}
.y90{bottom:423.556483px;}
.yd3{bottom:425.887493px;}
.y131{bottom:430.110008px;}
.y1f{bottom:432.883507px;}
.y1ce{bottom:435.719991px;}
.y57{bottom:436.899007px;}
.y162{bottom:437.138992px;}
.yd2{bottom:443.135991px;}
.y1e{bottom:450.132008px;}
.yfb{bottom:450.145512px;}
.y161{bottom:454.387482px;}
.y8f{bottom:463.543488px;}
.y1cd{bottom:464.968480px;}
.y1d{bottom:467.380508px;}
.yfa{bottom:467.394012px;}
.y53{bottom:468.151495px;}
.y160{bottom:471.635983px;}
.yd1{bottom:472.384480px;}
.y8e{bottom:480.791988px;}
.y1c{bottom:484.629009px;}
.yf9{bottom:484.642513px;}
.y15f{bottom:488.884483px;}
.y8d{bottom:498.040486px;}
.y1cc{bottom:500.216984px;}
.y130{bottom:501.602978px;}
.y1b{bottom:501.877507px;}
.yf8{bottom:501.891011px;}
.y15e{bottom:506.132984px;}
.y52{bottom:506.230511px;}
.yd0{bottom:507.633016px;}
.y1cb{bottom:517.465485px;}
.y12f{bottom:518.851476px;}
.y8c{bottom:519.788976px;}
.y15d{bottom:523.381485px;}
.y51{bottom:523.479009px;}
.yec{bottom:533.143507px;}
.y1ca{bottom:534.713985px;}
.y1a{bottom:534.775480px;}
.y12e{bottom:536.100008px;}
.ycf{bottom:538.885509px;}
.y15c{bottom:540.629986px;}
.y8b{bottom:546.037511px;}
.y12d{bottom:551.187010px;}
.y1c9{bottom:551.962483px;}
.y12c{bottom:553.437010px;}
.y50{bottom:555.481487px;}
.y15b{bottom:557.878484px;}
.y15a{bottom:572.632473px;}
.y4f{bottom:575.356487px;}
.y84{bottom:577.289984px;}
.y1c8{bottom:578.210999px;}
.yce{bottom:578.872501px;}
.y19{bottom:584.500477px;}
.y12b{bottom:584.938498px;}
.y159{bottom:592.507473px;}
.y4e{bottom:595.231487px;}
.y1c7{bottom:595.459499px;}
.ycd{bottom:596.121002px;}
.yeb{bottom:610.643978px;}
.y158{bottom:612.382473px;}
.y1c6{bottom:612.708000px;}
.ycc{bottom:613.369503px;}
.y4d{bottom:615.106487px;}
.y18{bottom:618.024010px;}
.y12a{bottom:619.772986px;}
.yea{bottom:627.892476px;}
.y1c5{bottom:629.956501px;}
.ycb{bottom:630.618001px;}
.y157{bottom:632.257473px;}
.y17{bottom:633.547508px;}
.y4c{bottom:634.981487px;}
.y83{bottom:636.916509px;}
.y1c4{bottom:647.205002px;}
.y16{bottom:649.071007px;}
.y156{bottom:652.132473px;}
.yca{bottom:652.366490px;}
.y49{bottom:654.856489px;}
.y129{bottom:657.852001px;}
.ye2{bottom:659.144980px;}
.y1c3{bottom:664.453503px;}
.y15{bottom:664.594505px;}
.y7b{bottom:668.168982px;}
.y155{bottom:672.007474px;}
.y47{bottom:674.731489px;}
.y128{bottom:675.100499px;}
.yc9{bottom:678.615006px;}
.y14{bottom:680.118004px;}
.y1c2{bottom:681.702001px;}
.y148{bottom:687.408005px;}
.y154{bottom:691.882474px;}
.y127{bottom:692.349014px;}
.y13{bottom:695.641502px;}
.yc8{bottom:696.837009px;}
.y147{bottom:704.656494px;}
.y126{bottom:709.597515px;}
.y12{bottom:711.165001px;}
.y46{bottom:713.650486px;}
.y1c1{bottom:714.600019px;}
.yc7{bottom:715.317006px;}
.ye1{bottom:720.405004px;}
.y146{bottom:721.904995px;}
.y11{bottom:726.688499px;}
.y125{bottom:726.846013px;}
.y7a{bottom:730.361996px;}
.y153{bottom:730.801517px;}
.ye0{bottom:737.653496px;}
.y145{bottom:739.153496px;}
.y10{bottom:742.211998px;}
.y124{bottom:744.094502px;}
.yc6{bottom:746.569499px;}
.y45{bottom:747.498001px;}
.y79{bottom:747.610494px;}
.ydf{bottom:754.901997px;}
.y144{bottom:756.401997px;}
.yf{bottom:757.735497px;}
.y152{bottom:764.324993px;}
.y44{bottom:764.746502px;}
.y78{bottom:764.858997px;}
.yde{bottom:772.150497px;}
.ye{bottom:773.258995px;}
.y143{bottom:773.650497px;}
.y123{bottom:775.346991px;}
.y43{bottom:781.995000px;}
.y77{bottom:782.107495px;}
.yc5{bottom:786.556492px;}
.yd{bottom:788.782494px;}
.y151{bottom:789.172505px;}
.ydd{bottom:789.398998px;}
.y142{bottom:790.898998px;}
.y1c0{bottom:803.176495px;}
.y1a9{bottom:803.353649px;}
.y22e{bottom:803.353652px;}
.y197{bottom:803.353654px;}
.yc4{bottom:803.804990px;}
.yc{bottom:804.305992px;}
.ydc{bottom:806.647496px;}
.y141{bottom:808.147496px;}
.y122{bottom:810.181502px;}
.y42{bottom:811.243489px;}
.y70{bottom:813.359985px;}
.yb{bottom:819.829491px;}
.yc3{bottom:825.553502px;}
.y248{bottom:826.069485px;}
.ya{bottom:835.352995px;}
.ydb{bottom:841.571995px;}
.y247{bottom:841.593003px;}
.y140{bottom:843.071995px;}
.y41{bottom:847.141508px;}
.y121{bottom:848.260494px;}
.y9{bottom:850.876493px;}
.yc2{bottom:851.802006px;}
.y246{bottom:857.116505px;}
.y106{bottom:863.682884px;}
.y120{bottom:865.508995px;}
.y8{bottom:866.399998px;}
.yc1{bottom:869.050504px;}
.y6f{bottom:871.352989px;}
.y245{bottom:872.640003px;}
.y7{bottom:881.923496px;}
.y11f{bottom:882.757496px;}
.yc0{bottom:886.299007px;}
.y6e{bottom:888.601490px;}
.y244{bottom:889.297482px;}
.y40{bottom:897.190498px;}
.y11e{bottom:900.005994px;}
.ybf{bottom:903.547505px;}
.y6d{bottom:905.849988px;}
.y243{bottom:905.954985px;}
.y3f{bottom:914.438999px;}
.y11d{bottom:917.254498px;}
.y242{bottom:920.113483px;}
.y6c{bottom:927.598500px;}
.y3e{bottom:931.687500px;}
.y11c{bottom:934.502995px;}
.y241{bottom:935.636993px;}
.y3d{bottom:948.935998px;}
.y240{bottom:951.160492px;}
.yb2{bottom:952.048502px;}
.y6b{bottom:953.846992px;}
.y150{bottom:963.920995px;}
.y6{bottom:965.216997px;}
.y118{bottom:965.755491px;}
.y3c{bottom:966.184505px;}
.y23f{bottom:966.684002px;}
.y6a{bottom:971.095493px;}
.y1bf{bottom:977.924995px;}
.y16f{bottom:978.102161px;}
.y1fb{bottom:978.102164px;}
.y1e9{bottom:978.102166px;}
.y17f{bottom:978.102169px;}
.y23e{bottom:982.207500px;}
.y3b{bottom:983.432994px;}
.y69{bottom:988.343991px;}
.y5{bottom:994.420491px;}
.y23d{bottom:998.864991px;}
.y3a{bottom:1000.681495px;}
.y117{bottom:1002.347991px;}
.y23c{bottom:1015.522493px;}
.y39{bottom:1017.929996px;}
.y68{bottom:1019.596491px;}
.yb1{bottom:1021.678494px;}
.y23b{bottom:1029.680992px;}
.y4{bottom:1034.444996px;}
.y38{bottom:1035.178496px;}
.yb0{bottom:1038.926994px;}
.y116{bottom:1040.426994px;}
.y23a{bottom:1045.204496px;}
.y37{bottom:1052.426997px;}
.yaf{bottom:1056.175492px;}
.y67{bottom:1057.675495px;}
.y3{bottom:1060.544998px;}
.y239{bottom:1060.727995px;}
.y36{bottom:1069.675498px;}
.y66{bottom:1074.923996px;}
.y238{bottom:1076.251496px;}
.yae{bottom:1077.923996px;}
.y35{bottom:1086.923996px;}
.y237{bottom:1091.774995px;}
.y65{bottom:1092.172494px;}
.yad{bottom:1104.172495px;}
.y34{bottom:1104.172497px;}
.y236{bottom:1107.298496px;}
.y33{bottom:1121.420995px;}
.y30{bottom:1122.449993px;}
.y235{bottom:1122.821995px;}
.h62{height:12.703613px;}
.h25{height:13.065915px;}
.h1d{height:13.065988px;}
.h44{height:13.066092px;}
.h3d{height:13.066245px;}
.h10{height:13.067126px;}
.h27{height:13.067181px;}
.h32{height:13.897905px;}
.h59{height:14.332521px;}
.h51{height:16.918521px;}
.hc{height:17.248499px;}
.he{height:17.586000px;}
.h23{height:18.147778px;}
.h17{height:18.148019px;}
.h2a{height:18.481011px;}
.h12{height:18.750000px;}
.hd{height:19.125000px;}
.h58{height:19.344000px;}
.h24{height:19.494000px;}
.h77{height:19.546776px;}
.h73{height:19.585030px;}
.h6d{height:19.627287px;}
.h6e{height:19.669728px;}
.h7d{height:19.712144px;}
.h82{height:19.754744px;}
.h1c{height:19.781173px;}
.h43{height:19.781278px;}
.h3b{height:19.781430px;}
.h26{height:19.782367px;}
.h8a{height:19.840920px;}
.h86{height:19.884290px;}
.h31{height:20.613091px;}
.h20{height:21.016333px;}
.h15{height:21.016574px;}
.h1e{height:21.466574px;}
.h3c{height:21.466831px;}
.h74{height:21.718639px;}
.h70{height:21.761144px;}
.h6a{height:21.808096px;}
.h66{height:21.855253px;}
.h7a{height:21.902382px;}
.h4f{height:21.930000px;}
.h7f{height:21.949715px;}
.h2b{height:22.006689px;}
.h87{height:22.045466px;}
.h83{height:22.093655px;}
.h40{height:22.649833px;}
.h28{height:22.897501px;}
.h76{height:23.890502px;}
.h75{height:23.907921px;}
.h72{height:23.937256px;}
.h71{height:23.940379px;}
.h6c{height:23.988904px;}
.h6b{height:23.991965px;}
.h68{height:24.040776px;}
.h67{height:24.043741px;}
.h7b{height:24.095765px;}
.h8b{height:24.148008px;}
.h80{height:24.148021px;}
.h88{height:24.253176px;}
.h84{height:24.306113px;}
.h5{height:25.013672px;}
.h1a{height:25.216574px;}
.h35{height:25.216831px;}
.h4a{height:25.360451px;}
.h57{height:27.288525px;}
.h1f{height:27.731518px;}
.h14{height:27.731760px;}
.h5d{height:27.766574px;}
.h3f{height:29.365018px;}
.h18{height:29.417160px;}
.h5f{height:29.715820px;}
.h54{height:30.320584px;}
.h11{height:30.564845px;}
.h2e{height:31.028518px;}
.h1{height:31.047000px;}
.h19{height:31.931760px;}
.h34{height:31.932017px;}
.h49{height:32.075636px;}
.h56{height:33.392098px;}
.h52{height:33.621330px;}
.h5c{height:34.481760px;}
.h46{height:34.944191px;}
.h22{height:35.566334px;}
.h79{height:35.588890px;}
.h7c{height:35.665634px;}
.h81{height:35.742712px;}
.h89{height:35.898631px;}
.h85{height:35.977102px;}
.h78{height:36.624023px;}
.h42{height:37.199834px;}
.h6{height:37.494141px;}
.h16{height:37.500000px;}
.h2{height:37.520508px;}
.h30{height:38.863334px;}
.h29{height:39.124199px;}
.h21{height:39.133501px;}
.h3a{height:39.766832px;}
.hb{height:40.664062px;}
.h41{height:40.766999px;}
.h45{height:41.659376px;}
.h8{height:41.689453px;}
.h1b{height:41.699999px;}
.h3e{height:41.953125px;}
.h2f{height:42.430501px;}
.hf{height:42.451172px;}
.h38{height:44.508778px;}
.h5a{height:44.963125px;}
.h64{height:45.278137px;}
.h2d{height:45.278143px;}
.h33{height:45.278146px;}
.ha{height:45.278149px;}
.h63{height:45.278160px;}
.h60{height:46.233539px;}
.h36{height:46.482017px;}
.h50{height:46.696289px;}
.h39{height:48.167418px;}
.h55{height:48.501001px;}
.h7{height:48.796875px;}
.h37{height:49.136999px;}
.h48{height:49.494192px;}
.h5b{height:50.689453px;}
.h5e{height:51.000000px;}
.h4b{height:54.575636px;}
.h4{height:55.167563px;}
.h47{height:56.209378px;}
.h3{height:56.929688px;}
.h4c{height:57.007502px;}
.h9{height:69.450002px;}
.h61{height:84.902344px;}
.h4e{height:115.375157px;}
.h13{height:116.250000px;}
.h4d{height:139.359404px;}
.h69{height:157.322826px;}
.h6f{height:157.322829px;}
.h7e{height:157.322831px;}
.h65{height:157.322834px;}
.h2c{height:249.733568px;}
.h53{height:271.742111px;}
.h0{height:1263.000000px;}
.w36{width:24.873093px;}
.w45{width:24.880869px;}
.w39{width:26.399523px;}
.w3a{width:30.773523px;}
.w88{width:31.099949px;}
.w8c{width:31.566242px;}
.w48{width:31.988521px;}
.w34{width:32.747762px;}
.w17{width:32.826602px;}
.w3d{width:33.048002px;}
.w57{width:33.534001px;}
.w26{width:33.554522px;}
.w8a{width:33.586349px;}
.w38{width:33.702481px;}
.w86{width:33.796350px;}
.w2a{width:33.923881px;}
.w65{width:34.053482px;}
.wb{width:34.282441px;}
.w1f{width:34.388281px;}
.w18{width:34.503841px;}
.w1b{width:34.545961px;}
.w21{width:34.582681px;}
.w78{width:34.853761px;}
.w4d{width:34.994162px;}
.w62{width:35.144282px;}
.w37{width:35.162640px;}
.w9{width:35.173442px;}
.w44{width:35.263083px;}
.w74{width:35.310601px;}
.w83{width:35.368922px;}
.w4f{width:35.405643px;}
.w51{width:35.447760px;}
.w89{width:35.617047px;}
.w81{width:35.652963px;}
.w76{width:35.985601px;}
.w7f{width:36.043922px;}
.w8b{width:36.117363px;}
.w7d{width:36.135721px;}
.w1e{width:36.545039px;}
.w3b{width:36.634679px;}
.w43{width:36.666002px;}
.w20{width:36.687603px;}
.w85{width:37.551602px;}
.w35{width:37.620721px;}
.w5f{width:39.245039px;}
.w31{width:39.740763px;}
.w2d{width:39.861722px;}
.w29{width:40.525924px;}
.w3e{width:40.752723px;}
.w6b{width:41.090763px;}
.w4b{width:41.570279px;}
.w4a{width:42.741003px;}
.w6d{width:42.762603px;}
.wc{width:43.304762px;}
.w59{width:43.405204px;}
.w5a{width:43.907999px;}
.w56{width:43.964642px;}
.w3c{width:44.275684px;}
.w66{width:44.331001px;}
.w5e{width:44.926500px;}
.w54{width:45.087843px;}
.w6a{width:45.592501px;}
.w1d{width:45.852483px;}
.w1c{width:45.900001px;}
.w7e{width:46.522499px;}
.w47{width:46.808999px;}
.w80{width:47.027999px;}
.w33{width:47.116499px;}
.w2e{width:47.307000px;}
.w50{width:47.541000px;}
.w30{width:47.614500px;}
.w2c{width:47.650500px;}
.w84{width:47.754001px;}
.w1a{width:47.952001px;}
.w22{width:47.980499px;}
.w5b{width:48.039001px;}
.w58{width:48.142502px;}
.w70{width:48.246842px;}
.w5c{width:48.280500px;}
.w7c{width:48.328503px;}
.w73{width:48.603001px;}
.w23{width:48.625500px;}
.w46{width:48.836998px;}
.w41{width:48.852001px;}
.w3f{width:48.866999px;}
.w61{width:48.875999px;}
.w8{width:48.976501px;}
.w64{width:48.988501px;}
.w25{width:49.057503px;}
.w49{width:49.174501px;}
.w16{width:49.232998px;}
.w68{width:49.495502px;}
.w6f{width:49.518002px;}
.w67{width:49.770000px;}
.w6c{width:49.819496px;}
.w75{width:49.906500px;}
.w77{width:49.995003px;}
.w79{width:50.188499px;}
.w52{width:50.391003px;}
.w60{width:50.519163px;}
.wa{width:50.881496px;}
.w2b{width:50.925001px;}
.w63{width:52.001999px;}
.w7b{width:52.050001px;}
.w55{width:52.250999px;}
.w82{width:53.254498px;}
.w19{width:54.207001px;}
.w5d{width:54.506996px;}
.wd{width:55.050001px;}
.w40{width:55.970999px;}
.w24{width:56.082001px;}
.w4c{width:57.319496px;}
.w32{width:57.333000px;}
.w8d{width:57.787502px;}
.w6e{width:58.392364px;}
.w69{width:58.987501px;}
.w15{width:60.000000px;}
.w87{width:60.930004px;}
.w28{width:61.581001px;}
.w4e{width:62.550001px;}
.w42{width:67.667999px;}
.w2f{width:67.830002px;}
.w14{width:68.774998px;}
.w12{width:70.875000px;}
.w27{width:75.973497px;}
.w53{width:77.937000px;}
.w13{width:82.500000px;}
.w72{width:84.162003px;}
.w7a{width:88.611002px;}
.w10{width:109.575005px;}
.w6{width:110.399998px;}
.w4{width:113.475002px;}
.w11{width:132.524998px;}
.w8f{width:173.924995px;}
.w7{width:180.750000px;}
.w5{width:188.024998px;}
.w8e{width:194.849991px;}
.w93{width:218.963745px;}
.w92{width:219.261015px;}
.w91{width:219.733470px;}
.w90{width:220.207665px;}
.w94{width:220.684135px;}
.w98{width:221.162610px;}
.w95{width:221.162727px;}
.w97{width:222.125793px;}
.w96{width:222.610634px;}
.we{width:242.099991px;}
.wf{width:282.150009px;}
.w71{width:341.496505px;}
.w3{width:691.500000px;}
.w2{width:893.024929px;}
.w0{width:893.024963px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa5{left:8.056897px;}
.x8c{left:11.547473px;}
.xa2{left:14.051353px;}
.x5c{left:15.804721px;}
.x89{left:17.008645px;}
.x8b{left:20.831467px;}
.x14{left:21.951001px;}
.xa4{left:23.124329px;}
.x8a{left:26.292641px;}
.xd{left:29.400001px;}
.x12{left:30.487500px;}
.xa{left:32.475000px;}
.xa3{left:51.216783px;}
.xa6{left:52.363631px;}
.xa0{left:56.428215px;}
.xa8{left:57.450608px;}
.xaf{left:59.338102px;}
.xb0{left:71.724784px;}
.x8d{left:81.015778px;}
.xa1{left:85.251903px;}
.x1f{left:89.245500px;}
.x9{left:104.924995px;}
.x7{left:106.350002px;}
.x1d{left:111.704999px;}
.xae{left:113.512502px;}
.x9f{left:115.762502px;}
.xa9{left:117.187502px;}
.x8{left:127.650002px;}
.x1{left:131.850002px;}
.x23{left:133.350002px;}
.x2{left:137.707503px;}
.xad{left:138.750003px;}
.xac{left:141.348003px;}
.x65{left:143.776501px;}
.x6{left:148.875003px;}
.xc{left:150.187503px;}
.x88{left:162.457925px;}
.x76{left:163.695002px;}
.x9c{left:167.580002px;}
.x98{left:173.698503px;}
.x99{left:181.902002px;}
.x1c{left:184.387505px;}
.x9b{left:190.918505px;}
.xab{left:192.793505px;}
.x24{left:197.382001px;}
.x79{left:199.575004px;}
.xb1{left:200.927653px;}
.xb3{left:202.681681px;}
.x9d{left:205.387505px;}
.x25{left:215.476501px;}
.x7a{left:217.413005px;}
.x54{left:219.079507px;}
.xb4{left:220.808549px;}
.x26{left:229.013548px;}
.x90{left:234.555007px;}
.x55{left:237.174007px;}
.x49{left:239.760000px;}
.x7c{left:243.211292px;}
.x28{left:244.509389px;}
.x27{left:247.108048px;}
.x8e{left:250.564504px;}
.x91{left:253.032199px;}
.x56{left:254.429494px;}
.x7e{left:256.045291px;}
.x4a{left:257.854500px;}
.x7d{left:259.613791px;}
.x29{left:262.344611px;}
.xe{left:263.662505px;}
.x68{left:265.053005px;}
.x7b{left:268.406819px;}
.x4b{left:269.907703px;}
.x57{left:271.916493px;}
.x3c{left:273.862500px;}
.x2a{left:276.854335px;}
.x4{left:280.401000px;}
.x7f{left:282.655214px;}
.x4c{left:284.417426px;}
.x74{left:285.588002px;}
.x58{left:286.846953px;}
.x77{left:289.254006px;}
.x2b{left:291.111299px;}
.x11{left:293.103006px;}
.x36{left:294.263997px;}
.x96{left:295.758001px;}
.x86{left:297.682505px;}
.x5a{left:299.220874px;}
.x2c{left:300.639524px;}
.x59{left:301.777413px;}
.x75{left:303.682503px;}
.x43{left:305.214002px;}
.x3d{left:306.563787px;}
.x69{left:308.144731px;}
.x8f{left:309.433135px;}
.x13{left:310.941006px;}
.x15{left:312.315172px;}
.x2d{left:315.149247px;}
.x5b{left:316.878873px;}
.x5{left:318.001513px;}
.x78{left:319.119439px;}
.x9a{left:320.236147px;}
.x95{left:321.815148px;}
.x44{left:323.308502px;}
.x6e{left:324.574012px;}
.x16{left:326.824893px;}
.xb{left:328.792500px;}
.x4d{left:330.491426px;}
.x92{left:332.544290px;}
.x1b{left:333.670498px;}
.x37{left:335.878280px;}
.x45{left:337.942828px;}
.x6a{left:341.461372px;}
.x3e{left:343.231288px;}
.x17{left:344.662894px;}
.x66{left:347.807744px;}
.x3f{left:349.654711px;}
.x39{left:350.766620px;}
.x47{left:352.313850px;}
.x38{left:353.365279px;}
.x87{left:354.370673px;}
.x46{left:355.861828px;}
.x5d{left:356.995562px;}
.x4e{left:358.149392px;}
.x18{left:359.655778px;}
.x97{left:361.105985px;}
.x71{left:362.537544px;}
.x72{left:364.969527px;}
.x6f{left:366.080955px;}
.x3a{left:367.173620px;}
.x48{left:368.825849px;}
.x5e{left:369.990712px;}
.x6b{left:372.142432px;}
.x67{left:373.496745px;}
.x4f{left:375.984620px;}
.x19{left:377.493779px;}
.x70{left:379.194911px;}
.x2e{left:380.646943px;}
.x40{left:382.427037px;}
.x3b{left:385.092619px;}
.x84{left:387.234952px;}
.x6c{left:388.523185px;}
.x41{left:390.732536px;}
.x5f{left:392.707756px;}
.x2f{left:395.156667px;}
.x73{left:398.384190px;}
.x85{left:403.195501px;}
.x42{left:405.494035px;}
.x50{left:407.307844px;}
.x3{left:410.347484px;}
.x6d{left:412.197692px;}
.x30{left:413.251167px;}
.x51{left:419.512802px;}
.x80{left:420.942657px;}
.x52{left:422.151059px;}
.x60{left:423.937726px;}
.x1e{left:426.487495px;}
.x31{left:428.349889px;}
.x81{left:431.420978px;}
.x93{left:436.116193px;}
.x53{left:439.638058px;}
.x94{left:444.405744px;}
.x32{left:446.444389px;}
.x82{left:448.140859px;}
.x33{left:449.332700px;}
.xf{left:451.687503px;}
.x61{left:453.601603px;}
.x63{left:457.592896px;}
.x62{left:459.433604px;}
.x64{left:462.074899px;}
.x34{left:463.842412px;}
.x83{left:470.999587px;}
.x35{left:481.936912px;}
.x20{left:497.362495px;}
.x9e{left:513.712509px;}
.xaa{left:554.662502px;}
.xa7{left:556.762493px;}
.xb2{left:558.412502px;}
.xb5{left:560.587521px;}
.x10{left:562.087512px;}
.x21{left:579.862495px;}
.x1a{left:596.549984px;}
.x22{left:648.637505px;}
@media print{
.v3{vertical-align:-14.544001pt;}
.v4{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.000000pt;}
.v6{vertical-align:14.538904pt;}
.v1{vertical-align:16.159999pt;}
.v2{vertical-align:19.392001pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000002pt;}
.ls21{letter-spacing:0.000005pt;}
.ls11{letter-spacing:0.000007pt;}
.ls22{letter-spacing:0.000025pt;}
.ls10{letter-spacing:0.000081pt;}
.lsa{letter-spacing:0.002651pt;}
.ls3{letter-spacing:0.002712pt;}
.lsf{letter-spacing:0.005267pt;}
.ls2{letter-spacing:0.005281pt;}
.ls6{letter-spacing:0.005335pt;}
.ls12{letter-spacing:0.005336pt;}
.ls1c{letter-spacing:0.005339pt;}
.ls1b{letter-spacing:0.005342pt;}
.ls1f{letter-spacing:0.005356pt;}
.lsb{letter-spacing:0.005391pt;}
.lsc{letter-spacing:0.007993pt;}
.ls15{letter-spacing:0.008156pt;}
.ls13{letter-spacing:0.010645pt;}
.lsd{letter-spacing:0.010654pt;}
.ls4{letter-spacing:0.010662pt;}
.ls9{letter-spacing:0.010672pt;}
.ls8{letter-spacing:0.010675pt;}
.ls1a{letter-spacing:0.010713pt;}
.ls1{letter-spacing:0.010732pt;}
.ls1e{letter-spacing:0.015985pt;}
.ls7{letter-spacing:0.015986pt;}
.ls5{letter-spacing:0.015996pt;}
.ls17{letter-spacing:0.016003pt;}
.ls14{letter-spacing:0.016009pt;}
.lse{letter-spacing:0.016025pt;}
.ls19{letter-spacing:0.021338pt;}
.ls23{letter-spacing:0.026694pt;}
.ls18{letter-spacing:0.032005pt;}
.ls20{letter-spacing:0.032015pt;}
.ls1d{letter-spacing:0.387893pt;}
.ls24{letter-spacing:10.400000pt;}
.ws11{word-spacing:-28.800000pt;}
.ws7{word-spacing:-23.680000pt;}
.ws10{word-spacing:-16.000000pt;}
.ws5{word-spacing:-13.333333pt;}
.wsa{word-spacing:-12.906667pt;}
.ws1c{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.733333pt;}
.ws1{word-spacing:-10.666667pt;}
.ws0{word-spacing:-8.666667pt;}
.ws8{word-spacing:-8.448000pt;}
.ws3{word-spacing:-8.000000pt;}
.ws19{word-spacing:-6.218173pt;}
.ws1b{word-spacing:-6.204610pt;}
.ws17{word-spacing:-6.177661pt;}
.ws15{word-spacing:-6.164340pt;}
.ws13{word-spacing:-6.151075pt;}
.ws4{word-spacing:0.000000pt;}
.wsf{word-spacing:58.000479pt;}
.wse{word-spacing:58.113988pt;}
.wsc{word-spacing:58.239376pt;}
.wsd{word-spacing:58.365310pt;}
.wsb{word-spacing:59.064296pt;}
.ws2{word-spacing:67.200000pt;}
.ws12{word-spacing:72.345027pt;}
.ws14{word-spacing:72.501032pt;}
.ws16{word-spacing:72.657715pt;}
.ws1a{word-spacing:72.974668pt;}
.ws18{word-spacing:73.134183pt;}
.ws9{word-spacing:181.533160pt;}
._d{margin-left:-2.986667pt;}
._5{margin-left:-1.920000pt;}
._4{margin-left:-1.008000pt;}
._1{width:1.728000pt;}
._2{width:2.784000pt;}
._3{width:3.744000pt;}
._7{width:4.848000pt;}
._9{width:6.560000pt;}
._0{width:7.488000pt;}
._8{width:8.448000pt;}
._c{width:9.738667pt;}
._6{width:10.752000pt;}
._a{width:11.808000pt;}
._15{width:13.152000pt;}
._b{width:14.826667pt;}
._12{width:28.032000pt;}
._11{width:34.704000pt;}
._13{width:72.624621pt;}
._e{width:83.200000pt;}
._f{width:86.933333pt;}
._10{width:181.533101pt;}
._14{width:250.944000pt;}
.fs26{font-size:24.604302pt;}
.fs2a{font-size:24.657359pt;}
.fs2f{font-size:24.710646pt;}
.fs39{font-size:24.818441pt;}
.fs34{font-size:24.872691pt;}
.fs25{font-size:25.006198pt;}
.fs21{font-size:25.055136pt;}
.fs1c{font-size:25.109195pt;}
.fs1d{font-size:25.163490pt;}
.fs2b{font-size:25.217753pt;}
.fs30{font-size:25.272251pt;}
.fs3a{font-size:25.382496pt;}
.fs35{font-size:25.437979pt;}
.fs9{font-size:27.648002pt;}
.fs22{font-size:27.784664pt;}
.fs1e{font-size:27.839040pt;}
.fs19{font-size:27.899106pt;}
.fs16{font-size:27.959433pt;}
.fs27{font-size:28.019725pt;}
.fs2c{font-size:28.080279pt;}
.fs36{font-size:28.202773pt;}
.fs31{font-size:28.264421pt;}
.fs24{font-size:30.563128pt;}
.fs23{font-size:30.585413pt;}
.fs20{font-size:30.622941pt;}
.fs1f{font-size:30.626936pt;}
.fs1b{font-size:30.689014pt;}
.fs1a{font-size:30.692930pt;}
.fs18{font-size:30.755374pt;}
.fs17{font-size:30.759167pt;}
.fs29{font-size:30.821696pt;}
.fs28{font-size:30.825722pt;}
.fs2e{font-size:30.888305pt;}
.fs3b{font-size:30.892556pt;}
.fs2d{font-size:30.892572pt;}
.fs38{font-size:31.023048pt;}
.fs37{font-size:31.027097pt;}
.fs33{font-size:31.090861pt;}
.fs32{font-size:31.094820pt;}
.fs5{font-size:32.000000pt;}
.fs10{font-size:34.134435pt;}
.fs3{font-size:34.666667pt;}
.fs12{font-size:34.910221pt;}
.fs14{font-size:37.333333pt;}
.fs7{font-size:38.400002pt;}
.fse{font-size:38.789134pt;}
.fsd{font-size:42.240002pt;}
.fs4{font-size:42.666667pt;}
.fsf{font-size:42.668051pt;}
.fs11{font-size:42.718524pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:49.153507pt;}
.fs2{font-size:53.333333pt;}
.fs13{font-size:56.489214pt;}
.fsc{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs15{font-size:106.666667pt;}
.fsb{font-size:144.951045pt;}
.fsa{font-size:175.083542pt;}
.y0{bottom:0.000000pt;}
.y1b5{bottom:1.667074pt;}
.y19f{bottom:1.670342pt;}
.y187{bottom:1.673946pt;}
.y177{bottom:1.677565pt;}
.y1f1{bottom:1.681183pt;}
.y203{bottom:1.684816pt;}
.y224{bottom:1.692162pt;}
.y211{bottom:1.695860pt;}
.y136{bottom:2.073568pt;}
.y92{bottom:2.132226pt;}
.y80{bottom:2.132291pt;}
.ye8{bottom:2.132384pt;}
.ybd{bottom:2.132520pt;}
.y55{bottom:2.133303pt;}
.y9c{bottom:2.133352pt;}
.y11a{bottom:2.346099pt;}
.y108{bottom:2.424319pt;}
.yab{bottom:2.871773pt;}
.y48{bottom:2.883999pt;}
.y89{bottom:2.962025pt;}
.y74{bottom:2.962240pt;}
.y56{bottom:3.034665pt;}
.y5b{bottom:3.551999pt;}
.y4a{bottom:3.718666pt;}
.y11b{bottom:3.815999pt;}
.y94{bottom:3.882666pt;}
.y5d{bottom:4.218666pt;}
.y91{bottom:4.413867pt;}
.y7f{bottom:4.413932pt;}
.ye7{bottom:4.414025pt;}
.ybb{bottom:4.414161pt;}
.y54{bottom:4.414944pt;}
.y9b{bottom:4.414993pt;}
.y4b{bottom:4.551999pt;}
.yfe{bottom:4.644765pt;}
.y119{bottom:4.855904pt;}
.yff{bottom:4.965333pt;}
.yaa{bottom:5.153414pt;}
.ya1{bottom:5.394666pt;}
.yfd{bottom:7.154570pt;}
.y86{bottom:9.199264pt;}
.y72{bottom:9.199479pt;}
.y81{bottom:9.599479pt;}
.ybc{bottom:9.599707pt;}
.y9f{bottom:9.600582pt;}
.y93{bottom:9.860812pt;}
.ye4{bottom:10.651264pt;}
.y1b4{bottom:10.743394pt;}
.y19e{bottom:10.764425pt;}
.y186{bottom:10.787650pt;}
.y176{bottom:10.810976pt;}
.y9e{bottom:11.243364pt;}
.y85{bottom:11.480905pt;}
.y71{bottom:11.481120pt;}
.y9d{bottom:11.562853pt;}
.y76{bottom:11.885333pt;}
.y8a{bottom:12.610667pt;}
.y7d{bottom:12.932812pt;}
.ye3{bottom:12.932905pt;}
.yb4{bottom:12.933041pt;}
.y1e3{bottom:13.047731pt;}
.yf2{bottom:13.060703pt;}
.y1f0{bottom:13.075868pt;}
.y202{bottom:13.104126pt;}
.y223{bottom:13.161286pt;}
.y210{bottom:13.190055pt;}
.ye9{bottom:13.337331pt;}
.y82{bottom:13.751999pt;}
.yac{bottom:14.076001pt;}
.ya7{bottom:14.411572pt;}
.ya0{bottom:14.976958pt;}
.y133{bottom:15.199479pt;}
.y7c{bottom:15.214453pt;}
.yb3{bottom:15.214682pt;}
.y135{bottom:15.257813pt;}
.yf1{bottom:15.342343pt;}
.y2{bottom:16.394666pt;}
.y75{bottom:16.666667pt;}
.yf4{bottom:16.885816pt;}
.y1ae{bottom:16.948638pt;}
.y198{bottom:16.981812pt;}
.y180{bottom:17.018453pt;}
.y170{bottom:17.055252pt;}
.ybe{bottom:17.057332pt;}
.y132{bottom:17.481120pt;}
.y137{bottom:17.885333pt;}
.y107{bottom:18.263210pt;}
.y32{bottom:18.288002pt;}
.yf5{bottom:18.978760pt;}
.y1dd{bottom:19.292007pt;}
.y1ea{bottom:19.333609pt;}
.y1fc{bottom:19.375391pt;}
.y21d{bottom:19.459908pt;}
.y20a{bottom:19.502444pt;}
.yf7{bottom:20.554667pt;}
.yee{bottom:21.579583pt;}
.y88{bottom:22.132599pt;}
.y73{bottom:22.962240pt;}
.ye6{bottom:23.584599pt;}
.yed{bottom:23.861224pt;}
.y87{bottom:24.414240pt;}
.ya9{bottom:25.063265pt;}
.ye5{bottom:25.866240pt;}
.yba{bottom:25.866375pt;}
.y7e{bottom:26.695573pt;}
.ya8{bottom:27.344906pt;}
.y109{bottom:27.394824pt;}
.yb5{bottom:28.148015pt;}
.y1b6{bottom:28.934368pt;}
.y212{bottom:32.681739pt;}
.yb7{bottom:32.736376pt;}
.yb9{bottom:33.333562pt;}
.yb6{bottom:34.379157pt;}
.yf0{bottom:34.512917pt;}
.y22f{bottom:34.651060pt;}
.yf3{bottom:35.342343pt;}
.y1a0{bottom:35.511475pt;}
.y1aa{bottom:36.440460pt;}
.yef{bottom:36.794558pt;}
.y225{bottom:37.162569pt;}
.y134{bottom:38.073568pt;}
.yb8{bottom:38.300958pt;}
.y1f2{bottom:38.387020pt;}
.y18f{bottom:39.209774pt;}
.y188{bottom:40.230510pt;}
.y178{bottom:40.317502pt;}
.y1a6{bottom:40.645050pt;}
.y1bc{bottom:40.704579pt;}
.y18c{bottom:40.732746pt;}
.y194{bottom:40.820824pt;}
.y17c{bottom:41.799404pt;}
.y1e8{bottom:41.939201pt;}
.y1f8{bottom:42.029636pt;}
.y1e4{bottom:42.106904pt;}
.y207{bottom:42.120471pt;}
.y22b{bottom:42.304208pt;}
.y21a{bottom:42.396680pt;}
.yf6{bottom:43.206149pt;}
.y19d{bottom:44.264125pt;}
.y1b3{bottom:44.316585pt;}
.y185{bottom:44.359630pt;}
.y175{bottom:44.455550pt;}
.y1de{bottom:45.218022pt;}
.y1eb{bottom:45.315532pt;}
.y1fd{bottom:45.413463pt;}
.y1e2{bottom:45.573928pt;}
.y21e{bottom:45.611566pt;}
.y1ef{bottom:45.672204pt;}
.y20b{bottom:45.711267pt;}
.y201{bottom:45.770907pt;}
.y213{bottom:45.861034pt;}
.y1af{bottom:45.914148pt;}
.y199{bottom:45.934412pt;}
.y222{bottom:45.970568pt;}
.y181{bottom:46.033520pt;}
.y20f{bottom:46.071055pt;}
.y171{bottom:46.133060pt;}
.y64{bottom:46.885335pt;}
.y1b7{bottom:48.910580pt;}
.y31{bottom:48.952001pt;}
.y230{bottom:49.926728pt;}
.y1a1{bottom:54.041138pt;}
.y226{bottom:54.865230pt;}
.y1ab{bottom:55.825660pt;}
.y1f3{bottom:57.440432pt;}
.y204{bottom:57.564567pt;}
.y214{bottom:59.040328pt;}
.y190{bottom:61.364295pt;}
.y10a{bottom:61.496943pt;}
.y189{bottom:63.442559pt;}
.y179{bottom:63.579744pt;}
.y1e5{bottom:64.921802pt;}
.y231{bottom:65.202406pt;}
.y1b8{bottom:68.886792pt;}
.y1df{bottom:71.144046pt;}
.y1ec{bottom:71.297463pt;}
.y1fe{bottom:71.451544pt;}
.y21f{bottom:71.763232pt;}
.y20c{bottom:71.920098pt;}
.y215{bottom:72.219623pt;}
.y227{bottom:72.567891pt;}
.y1a2{bottom:72.570801pt;}
.y1b0{bottom:74.879658pt;}
.y19a{bottom:74.887011pt;}
.y182{bottom:75.048588pt;}
.y172{bottom:75.210869pt;}
.y1f4{bottom:76.493844pt;}
.y232{bottom:80.478075pt;}
.y191{bottom:83.518812pt;}
.y216{bottom:85.398918pt;}
.y18a{bottom:86.654617pt;}
.y17a{bottom:86.841994pt;}
.y1e6{bottom:87.736695pt;}
.y1b9{bottom:88.863008pt;}
.y228{bottom:90.270556pt;}
.y1a3{bottom:91.100468pt;}
.y1{bottom:92.600014pt;}
.y1ac{bottom:94.596073pt;}
.y1f5{bottom:95.547256pt;}
.y10b{bottom:95.599047pt;}
.y205{bottom:95.753744pt;}
.y1e0{bottom:97.070062pt;}
.y1ed{bottom:97.279386pt;}
.y1ff{bottom:97.489617pt;}
.y220{bottom:97.914890pt;}
.y20d{bottom:98.128921pt;}
.y217{bottom:98.578212pt;}
.y19b{bottom:103.839610pt;}
.y1b1{bottom:103.845167pt;}
.y183{bottom:104.063656pt;}
.y173{bottom:104.288677pt;}
.y192{bottom:105.673334pt;}
.y229{bottom:107.973221pt;}
.y1ba{bottom:108.839220pt;}
.y1a4{bottom:109.630130pt;}
.y18b{bottom:109.866670pt;}
.y17b{bottom:110.104240pt;}
.y1e7{bottom:110.551590pt;}
.y233{bottom:111.029415pt;}
.y218{bottom:111.757509pt;}
.y1ad{bottom:113.981279pt;}
.y1f6{bottom:114.600668pt;}
.y17e{bottom:117.038291pt;}
.y1a8{bottom:117.648014pt;}
.y1be{bottom:117.696062pt;}
.y18e{bottom:117.901854pt;}
.y196{bottom:118.156798pt;}
.y1fa{bottom:118.411593pt;}
.y209{bottom:118.667494pt;}
.y22d{bottom:119.185150pt;}
.y21c{bottom:119.445676pt;}
.ya6{bottom:121.465294pt;}
.y110{bottom:122.428299pt;}
.y1e1{bottom:122.996078pt;}
.y1ee{bottom:123.261309pt;}
.y200{bottom:123.527690pt;}
.y221{bottom:124.066548pt;}
.y20e{bottom:124.337744pt;}
.y219{bottom:124.936804pt;}
.y17d{bottom:125.090382pt;}
.y1a7{bottom:125.108393pt;}
.y1bd{bottom:125.141869pt;}
.y18d{bottom:125.378329pt;}
.y195{bottom:125.649440pt;}
.y22a{bottom:125.675882pt;}
.y1f9{bottom:125.920393pt;}
.y208{bottom:126.192520pt;}
.y234{bottom:126.305086pt;}
.y2f{bottom:126.429325pt;}
.y22c{bottom:126.743003pt;}
.y21b{bottom:127.020049pt;}
.y193{bottom:127.827855pt;}
.y1a5{bottom:128.159793pt;}
.y1bb{bottom:128.815434pt;}
.y10c{bottom:129.701166pt;}
.y19c{bottom:132.792209pt;}
.y1b2{bottom:132.810677pt;}
.y184{bottom:133.078724pt;}
.y174{bottom:133.366486pt;}
.y1f7{bottom:133.654080pt;}
.y206{bottom:133.942920pt;}
.y1dc{bottom:150.058660pt;}
.y2e{bottom:154.805298pt;}
.y10d{bottom:163.803277pt;}
.y1db{bottom:164.865331pt;}
.y2d{bottom:170.137299pt;}
.y105{bottom:170.173317pt;}
.y115{bottom:173.851824pt;}
.ya5{bottom:177.397357pt;}
.y1da{bottom:178.458664pt;}
.y114{bottom:184.383607pt;}
.y2c{bottom:185.469297pt;}
.y63{bottom:185.673320pt;}
.y13f{bottom:189.585345pt;}
.y1d9{bottom:192.051994pt;}
.ya4{bottom:192.729329pt;}
.y113{bottom:194.915398pt;}
.y10e{bottom:197.905392pt;}
.y104{bottom:197.953321pt;}
.y2b{bottom:200.801320pt;}
.y62{bottom:203.006653pt;}
.y16e{bottom:204.584015pt;}
.y112{bottom:205.447188pt;}
.y1d8{bottom:205.645330pt;}
.ya2{bottom:208.061331pt;}
.ya3{bottom:208.816060pt;}
.y13e{bottom:215.583961pt;}
.y111{bottom:215.978975pt;}
.y14f{bottom:216.105347pt;}
.y2a{bottom:216.133321pt;}
.y1d7{bottom:218.230662pt;}
.y16d{bottom:219.916016pt;}
.y61{bottom:220.339986pt;}
.y14e{bottom:231.437347pt;}
.y29{bottom:231.465322pt;}
.y10f{bottom:232.007508pt;}
.y1d6{bottom:232.029325pt;}
.y16c{bottom:235.248006pt;}
.y9a{bottom:236.817300pt;}
.y60{bottom:237.673320pt;}
.y1d5{bottom:245.827993pt;}
.y14d{bottom:246.769346pt;}
.y28{bottom:246.797323pt;}
.y13d{bottom:246.915993pt;}
.y103{bottom:249.522657pt;}
.y16b{bottom:250.580007pt;}
.y5f{bottom:255.006653pt;}
.y1d4{bottom:259.626658pt;}
.y14c{bottom:262.101329pt;}
.y27{bottom:262.129313pt;}
.y16a{bottom:265.912008pt;}
.yda{bottom:271.242666pt;}
.y5e{bottom:272.339986pt;}
.y1d3{bottom:273.425323pt;}
.y13c{bottom:274.696023pt;}
.y99{bottom:275.386678pt;}
.y14b{bottom:277.433327pt;}
.y26{bottom:277.461314pt;}
.y169{bottom:281.244008pt;}
.yd9{bottom:286.574666pt;}
.y1d2{bottom:287.223989pt;}
.y5c{bottom:289.673320pt;}
.y98{bottom:290.718679pt;}
.y25{bottom:292.793315pt;}
.y168{bottom:296.576009pt;}
.y1d1{bottom:301.022654pt;}
.yd8{bottom:301.906657pt;}
.y102{bottom:303.976003pt;}
.y97{bottom:306.050677pt;}
.y14a{bottom:306.676010pt;}
.y5a{bottom:307.006653pt;}
.y24{bottom:308.125315pt;}
.y13b{bottom:308.543996pt;}
.y167{bottom:311.908010pt;}
.y1d0{bottom:314.821320pt;}
.yd7{bottom:317.238658pt;}
.y101{bottom:319.308001pt;}
.y23{bottom:323.457316pt;}
.y13a{bottom:323.875994pt;}
.y96{bottom:325.382668pt;}
.y166{bottom:327.240008pt;}
.yd6{bottom:332.570658pt;}
.y100{bottom:334.639992pt;}
.y22{bottom:338.789317pt;}
.y139{bottom:339.207977pt;}
.y165{bottom:342.571981pt;}
.y1cf{bottom:342.818670pt;}
.y59{bottom:342.935984pt;}
.yd5{bottom:347.902659pt;}
.y95{bottom:348.714658pt;}
.y149{bottom:350.876007pt;}
.y21{bottom:354.121315pt;}
.y138{bottom:354.539975pt;}
.y164{bottom:357.903982pt;}
.yfc{bottom:362.419977pt;}
.yd4{bottom:363.234660pt;}
.y20{bottom:369.453339pt;}
.y58{bottom:373.022675pt;}
.y163{bottom:373.235980pt;}
.y90{bottom:376.494652pt;}
.yd3{bottom:378.566661pt;}
.y131{bottom:382.320007pt;}
.y1f{bottom:384.785339pt;}
.y1ce{bottom:387.306658pt;}
.y57{bottom:388.354673pt;}
.y162{bottom:388.567993pt;}
.yd2{bottom:393.898659pt;}
.y1e{bottom:400.117340pt;}
.yfb{bottom:400.129344pt;}
.y161{bottom:403.899984pt;}
.y8f{bottom:412.038656pt;}
.y1cd{bottom:413.305316pt;}
.y1d{bottom:415.449341pt;}
.yfa{bottom:415.461344pt;}
.y53{bottom:416.134663pt;}
.y160{bottom:419.231984pt;}
.yd1{bottom:419.897316pt;}
.y8e{bottom:427.370656pt;}
.y1c{bottom:430.781342pt;}
.yf9{bottom:430.793345pt;}
.y15f{bottom:434.563985pt;}
.y8d{bottom:442.702655pt;}
.y1cc{bottom:444.637319pt;}
.y130{bottom:445.869314pt;}
.y1b{bottom:446.113340pt;}
.yf8{bottom:446.125343pt;}
.y15e{bottom:449.895986pt;}
.y52{bottom:449.982676pt;}
.yd0{bottom:451.229347pt;}
.y1cb{bottom:459.969320pt;}
.y12f{bottom:461.201312pt;}
.y8c{bottom:462.034645pt;}
.y15d{bottom:465.227987pt;}
.y51{bottom:465.314674pt;}
.yec{bottom:473.905340pt;}
.y1ca{bottom:475.301320pt;}
.y1a{bottom:475.355982pt;}
.y12e{bottom:476.533340pt;}
.ycf{bottom:479.009341pt;}
.y15c{bottom:480.559987pt;}
.y8b{bottom:485.366676pt;}
.y12d{bottom:489.944009pt;}
.y1c9{bottom:490.633319pt;}
.y12c{bottom:491.944009pt;}
.y50{bottom:493.761322pt;}
.y15b{bottom:495.891986pt;}
.y15a{bottom:509.006643pt;}
.y4f{bottom:511.427989pt;}
.y84{bottom:513.146652pt;}
.y1c8{bottom:513.965332pt;}
.yce{bottom:514.553335pt;}
.y19{bottom:519.555979pt;}
.y12b{bottom:519.945332pt;}
.y159{bottom:526.673309pt;}
.y4e{bottom:529.094655pt;}
.y1c7{bottom:529.297333pt;}
.ycd{bottom:529.885335pt;}
.yeb{bottom:542.794647pt;}
.y158{bottom:544.339976pt;}
.y1c6{bottom:544.629334pt;}
.ycc{bottom:545.217336pt;}
.y4d{bottom:546.761322pt;}
.y18{bottom:549.354675pt;}
.y12a{bottom:550.909321pt;}
.yea{bottom:558.126645pt;}
.y1c5{bottom:559.961334pt;}
.ycb{bottom:560.549334pt;}
.y157{bottom:562.006643pt;}
.y17{bottom:563.153341pt;}
.y4c{bottom:564.427989pt;}
.y83{bottom:566.148008pt;}
.y1c4{bottom:575.293335pt;}
.y16{bottom:576.952006pt;}
.y156{bottom:579.673309pt;}
.yca{bottom:579.881325pt;}
.y49{bottom:582.094657pt;}
.y129{bottom:584.757334pt;}
.ye2{bottom:585.906649pt;}
.y1c3{bottom:590.625336pt;}
.y15{bottom:590.750671pt;}
.y7b{bottom:593.927984pt;}
.y155{bottom:597.339977pt;}
.y47{bottom:599.761323pt;}
.y128{bottom:600.089333pt;}
.yc9{bottom:603.213338pt;}
.y14{bottom:604.549337pt;}
.y1c2{bottom:605.957334pt;}
.y148{bottom:611.029338pt;}
.y154{bottom:615.006644pt;}
.y127{bottom:615.421346pt;}
.y13{bottom:618.348002pt;}
.yc8{bottom:619.410675pt;}
.y147{bottom:626.361328pt;}
.y126{bottom:630.753347pt;}
.y12{bottom:632.146667pt;}
.y46{bottom:634.355988pt;}
.y1c1{bottom:635.200017pt;}
.yc7{bottom:635.837339pt;}
.ye1{bottom:640.360003pt;}
.y146{bottom:641.693329pt;}
.y11{bottom:645.945333pt;}
.y125{bottom:646.085345pt;}
.y7a{bottom:649.210663pt;}
.y153{bottom:649.601349pt;}
.ye0{bottom:655.691996pt;}
.y145{bottom:657.025330pt;}
.y10{bottom:659.743998pt;}
.y124{bottom:661.417336pt;}
.yc6{bottom:663.617332pt;}
.y45{bottom:664.442668pt;}
.y79{bottom:664.542661pt;}
.ydf{bottom:671.023997pt;}
.y144{bottom:672.357330pt;}
.yf{bottom:673.542664pt;}
.y152{bottom:679.399994pt;}
.y44{bottom:679.774668pt;}
.y78{bottom:679.874664pt;}
.yde{bottom:686.355998pt;}
.ye{bottom:687.341329pt;}
.y143{bottom:687.689331pt;}
.y123{bottom:689.197325pt;}
.y43{bottom:695.106667pt;}
.y77{bottom:695.206663pt;}
.yc5{bottom:699.161326pt;}
.yd{bottom:701.139994pt;}
.y151{bottom:701.486671pt;}
.ydd{bottom:701.687998pt;}
.y142{bottom:703.021332pt;}
.y1c0{bottom:713.934662pt;}
.y1a9{bottom:714.092133pt;}
.y22e{bottom:714.092135pt;}
.y197{bottom:714.092137pt;}
.yc4{bottom:714.493324pt;}
.yc{bottom:714.938660pt;}
.ydc{bottom:717.019997pt;}
.y141{bottom:718.353330pt;}
.y122{bottom:720.161335pt;}
.y42{bottom:721.105324pt;}
.y70{bottom:722.986654pt;}
.yb{bottom:728.737325pt;}
.yc3{bottom:733.825335pt;}
.y248{bottom:734.283986pt;}
.ya{bottom:742.535995pt;}
.ydb{bottom:748.063995pt;}
.y247{bottom:748.082670pt;}
.y140{bottom:749.397329pt;}
.y41{bottom:753.014674pt;}
.y121{bottom:754.009328pt;}
.y9{bottom:756.334661pt;}
.yc2{bottom:757.157338pt;}
.y246{bottom:761.881337pt;}
.y106{bottom:767.718119pt;}
.y120{bottom:769.341329pt;}
.y8{bottom:770.133331pt;}
.yc1{bottom:772.489337pt;}
.y6f{bottom:774.535990pt;}
.y245{bottom:775.680003pt;}
.y7{bottom:783.931997pt;}
.y11f{bottom:784.673330pt;}
.yc0{bottom:787.821340pt;}
.y6e{bottom:789.867991pt;}
.y244{bottom:790.486651pt;}
.y40{bottom:797.502665pt;}
.y11e{bottom:800.005328pt;}
.ybf{bottom:803.153338pt;}
.y6d{bottom:805.199989pt;}
.y243{bottom:805.293320pt;}
.y3f{bottom:812.834666pt;}
.y11d{bottom:815.337331pt;}
.y242{bottom:817.878652pt;}
.y6c{bottom:824.532000pt;}
.y3e{bottom:828.166667pt;}
.y11c{bottom:830.669329pt;}
.y241{bottom:831.677327pt;}
.y3d{bottom:843.498665pt;}
.y240{bottom:845.475993pt;}
.yb2{bottom:846.265335pt;}
.y6b{bottom:847.863993pt;}
.y150{bottom:856.818662pt;}
.y6{bottom:857.970664pt;}
.y118{bottom:858.449326pt;}
.y3c{bottom:858.830671pt;}
.y23f{bottom:859.274668pt;}
.y6a{bottom:863.195994pt;}
.y1bf{bottom:869.266663pt;}
.y16f{bottom:869.424143pt;}
.y1fb{bottom:869.424146pt;}
.y1e9{bottom:869.424147pt;}
.y17f{bottom:869.424150pt;}
.y23e{bottom:873.073334pt;}
.y3b{bottom:874.162661pt;}
.y69{bottom:878.527992pt;}
.y5{bottom:883.929325pt;}
.y23d{bottom:887.879992pt;}
.y3a{bottom:889.494662pt;}
.y117{bottom:890.975992pt;}
.y23c{bottom:902.686661pt;}
.y39{bottom:904.826663pt;}
.y68{bottom:906.307992pt;}
.yb1{bottom:908.158661pt;}
.y23b{bottom:915.271993pt;}
.y4{bottom:919.506663pt;}
.y38{bottom:920.158663pt;}
.yb0{bottom:923.490662pt;}
.y116{bottom:924.823995pt;}
.y23a{bottom:929.070663pt;}
.y37{bottom:935.490664pt;}
.yaf{bottom:938.822660pt;}
.y67{bottom:940.155996pt;}
.y3{bottom:942.706665pt;}
.y239{bottom:942.869329pt;}
.y36{bottom:950.822665pt;}
.y66{bottom:955.487996pt;}
.y238{bottom:956.667997pt;}
.yae{bottom:958.154663pt;}
.y35{bottom:966.154663pt;}
.y237{bottom:970.466662pt;}
.y65{bottom:970.819995pt;}
.yad{bottom:981.486663pt;}
.y34{bottom:981.486664pt;}
.y236{bottom:984.265330pt;}
.y33{bottom:996.818662pt;}
.y30{bottom:997.733327pt;}
.y235{bottom:998.063995pt;}
.h62{height:11.292101pt;}
.h25{height:11.614146pt;}
.h1d{height:11.614211pt;}
.h44{height:11.614304pt;}
.h3d{height:11.614440pt;}
.h10{height:11.615223pt;}
.h27{height:11.615272pt;}
.h32{height:12.353693pt;}
.h59{height:12.740019pt;}
.h51{height:15.038686pt;}
.hc{height:15.331999pt;}
.he{height:15.632000pt;}
.h23{height:16.131358pt;}
.h17{height:16.131573pt;}
.h2a{height:16.427565pt;}
.h12{height:16.666667pt;}
.hd{height:17.000000pt;}
.h58{height:17.194667pt;}
.h24{height:17.328000pt;}
.h77{height:17.374912pt;}
.h73{height:17.408915pt;}
.h6d{height:17.446477pt;}
.h6e{height:17.484202pt;}
.h7d{height:17.521906pt;}
.h82{height:17.559772pt;}
.h1c{height:17.583265pt;}
.h43{height:17.583358pt;}
.h3b{height:17.583494pt;}
.h26{height:17.584326pt;}
.h8a{height:17.636373pt;}
.h86{height:17.674924pt;}
.h31{height:18.322747pt;}
.h20{height:18.681185pt;}
.h15{height:18.681399pt;}
.h1e{height:19.081399pt;}
.h3c{height:19.081628pt;}
.h74{height:19.305457pt;}
.h70{height:19.343239pt;}
.h6a{height:19.384974pt;}
.h66{height:19.426891pt;}
.h7a{height:19.468784pt;}
.h4f{height:19.493333pt;}
.h7f{height:19.510858pt;}
.h2b{height:19.561502pt;}
.h87{height:19.595970pt;}
.h83{height:19.638804pt;}
.h40{height:20.133185pt;}
.h28{height:20.353334pt;}
.h76{height:21.236001pt;}
.h75{height:21.251485pt;}
.h72{height:21.277561pt;}
.h71{height:21.280337pt;}
.h6c{height:21.323470pt;}
.h6b{height:21.326191pt;}
.h68{height:21.369579pt;}
.h67{height:21.372214pt;}
.h7b{height:21.418458pt;}
.h8b{height:21.464896pt;}
.h80{height:21.464908pt;}
.h88{height:21.558379pt;}
.h84{height:21.605434pt;}
.h5{height:22.234375pt;}
.h1a{height:22.414732pt;}
.h35{height:22.414961pt;}
.h4a{height:22.542623pt;}
.h57{height:24.256467pt;}
.h1f{height:24.650238pt;}
.h14{height:24.650453pt;}
.h5d{height:24.681399pt;}
.h3f{height:26.102238pt;}
.h18{height:26.148587pt;}
.h5f{height:26.414062pt;}
.h54{height:26.951630pt;}
.h11{height:27.168751pt;}
.h2e{height:27.580905pt;}
.h1{height:27.597333pt;}
.h19{height:28.383786pt;}
.h34{height:28.384015pt;}
.h49{height:28.511677pt;}
.h56{height:29.681865pt;}
.h52{height:29.885626pt;}
.h5c{height:30.650453pt;}
.h46{height:31.061503pt;}
.h22{height:31.614519pt;}
.h79{height:31.634569pt;}
.h7c{height:31.702786pt;}
.h81{height:31.771299pt;}
.h89{height:31.909894pt;}
.h85{height:31.979646pt;}
.h78{height:32.554688pt;}
.h42{height:33.066519pt;}
.h6{height:33.328125pt;}
.h16{height:33.333333pt;}
.h2{height:33.351562pt;}
.h30{height:34.545186pt;}
.h29{height:34.777066pt;}
.h21{height:34.785334pt;}
.h3a{height:35.348295pt;}
.hb{height:36.145833pt;}
.h41{height:36.237333pt;}
.h45{height:37.030557pt;}
.h8{height:37.057292pt;}
.h1b{height:37.066666pt;}
.h3e{height:37.291667pt;}
.h2f{height:37.716001pt;}
.hf{height:37.734375pt;}
.h38{height:39.563358pt;}
.h5a{height:39.967223pt;}
.h64{height:40.247233pt;}
.h2d{height:40.247238pt;}
.h33{height:40.247241pt;}
.ha{height:40.247243pt;}
.h63{height:40.247253pt;}
.h60{height:41.096479pt;}
.h36{height:41.317349pt;}
.h50{height:41.507812pt;}
.h39{height:42.815483pt;}
.h55{height:43.112001pt;}
.h7{height:43.375000pt;}
.h37{height:43.677333pt;}
.h48{height:43.994837pt;}
.h5b{height:45.057292pt;}
.h5e{height:45.333333pt;}
.h4b{height:48.511677pt;}
.h4{height:49.037834pt;}
.h47{height:49.963891pt;}
.h3{height:50.604167pt;}
.h4c{height:50.673335pt;}
.h9{height:61.733335pt;}
.h61{height:75.468750pt;}
.h4e{height:102.555695pt;}
.h13{height:103.333333pt;}
.h4d{height:123.875025pt;}
.h69{height:139.842512pt;}
.h6f{height:139.842515pt;}
.h7e{height:139.842516pt;}
.h65{height:139.842519pt;}
.h2c{height:221.985394pt;}
.h53{height:241.548543pt;}
.h0{height:1122.666667pt;}
.w36{width:22.109416pt;}
.w45{width:22.116328pt;}
.w39{width:23.466242pt;}
.w3a{width:27.354243pt;}
.w88{width:27.644399pt;}
.w8c{width:28.058882pt;}
.w48{width:28.434241pt;}
.w34{width:29.109122pt;}
.w17{width:29.179202pt;}
.w3d{width:29.376002pt;}
.w57{width:29.808001pt;}
.w26{width:29.826241pt;}
.w8a{width:29.854532pt;}
.w38{width:29.957761pt;}
.w86{width:30.041200pt;}
.w2a{width:30.154561pt;}
.w65{width:30.269761pt;}
.wb{width:30.473281pt;}
.w1f{width:30.567361pt;}
.w18{width:30.670081pt;}
.w1b{width:30.707521pt;}
.w21{width:30.740161pt;}
.w78{width:30.981121pt;}
.w4d{width:31.105922pt;}
.w62{width:31.239362pt;}
.w37{width:31.255680pt;}
.w9{width:31.265282pt;}
.w44{width:31.344962pt;}
.w74{width:31.387201pt;}
.w83{width:31.439042pt;}
.w4f{width:31.471682pt;}
.w51{width:31.509120pt;}
.w89{width:31.659597pt;}
.w81{width:31.691522pt;}
.w76{width:31.987201pt;}
.w7f{width:32.039042pt;}
.w8b{width:32.104323pt;}
.w7d{width:32.120641pt;}
.w1e{width:32.484479pt;}
.w3b{width:32.564159pt;}
.w43{width:32.592002pt;}
.w20{width:32.611203pt;}
.w85{width:33.379202pt;}
.w35{width:33.440641pt;}
.w5f{width:34.884479pt;}
.w31{width:35.325122pt;}
.w2d{width:35.432642pt;}
.w29{width:36.023043pt;}
.w3e{width:36.224643pt;}
.w6b{width:36.525122pt;}
.w4b{width:36.951359pt;}
.w4a{width:37.992002pt;}
.w6d{width:38.011203pt;}
.wc{width:38.493122pt;}
.w59{width:38.582404pt;}
.w5a{width:39.029332pt;}
.w56{width:39.079682pt;}
.w3c{width:39.356164pt;}
.w66{width:39.405334pt;}
.w5e{width:39.934667pt;}
.w54{width:40.078083pt;}
.w6a{width:40.526667pt;}
.w1d{width:40.757763pt;}
.w1c{width:40.800001pt;}
.w7e{width:41.353333pt;}
.w47{width:41.607999pt;}
.w80{width:41.802666pt;}
.w33{width:41.881332pt;}
.w2e{width:42.050667pt;}
.w50{width:42.258667pt;}
.w30{width:42.324000pt;}
.w2c{width:42.356000pt;}
.w84{width:42.448001pt;}
.w1a{width:42.624001pt;}
.w22{width:42.649333pt;}
.w5b{width:42.701335pt;}
.w58{width:42.793335pt;}
.w70{width:42.886082pt;}
.w5c{width:42.916000pt;}
.w7c{width:42.958669pt;}
.w73{width:43.202667pt;}
.w23{width:43.222666pt;}
.w46{width:43.410665pt;}
.w41{width:43.424001pt;}
.w3f{width:43.437332pt;}
.w61{width:43.445333pt;}
.w8{width:43.534668pt;}
.w64{width:43.545334pt;}
.w25{width:43.606669pt;}
.w49{width:43.710668pt;}
.w16{width:43.762665pt;}
.w68{width:43.996002pt;}
.w6f{width:44.016001pt;}
.w67{width:44.240000pt;}
.w6c{width:44.283997pt;}
.w75{width:44.361333pt;}
.w77{width:44.440002pt;}
.w79{width:44.612000pt;}
.w52{width:44.792002pt;}
.w60{width:44.905922pt;}
.wa{width:45.227997pt;}
.w2b{width:45.266668pt;}
.w63{width:46.223999pt;}
.w7b{width:46.266668pt;}
.w55{width:46.445333pt;}
.w82{width:47.337331pt;}
.w19{width:48.184001pt;}
.w5d{width:48.450663pt;}
.wd{width:48.933334pt;}
.w40{width:49.751999pt;}
.w24{width:49.850667pt;}
.w4c{width:50.950663pt;}
.w32{width:50.962667pt;}
.w8d{width:51.366669pt;}
.w6e{width:51.904323pt;}
.w69{width:52.433334pt;}
.w15{width:53.333333pt;}
.w87{width:54.160004pt;}
.w28{width:54.738668pt;}
.w4e{width:55.600001pt;}
.w42{width:60.149333pt;}
.w2f{width:60.293335pt;}
.w14{width:61.133331pt;}
.w12{width:63.000000pt;}
.w27{width:67.531998pt;}
.w53{width:69.277334pt;}
.w13{width:73.333333pt;}
.w72{width:74.810669pt;}
.w7a{width:78.765335pt;}
.w10{width:97.400004pt;}
.w6{width:98.133331pt;}
.w4{width:100.866669pt;}
.w11{width:117.799998pt;}
.w8f{width:154.599996pt;}
.w7{width:160.666667pt;}
.w5{width:167.133331pt;}
.w8e{width:173.199992pt;}
.w93{width:194.634440pt;}
.w92{width:194.898680pt;}
.w91{width:195.318640pt;}
.w90{width:195.740147pt;}
.w94{width:196.163676pt;}
.w98{width:196.588987pt;}
.w95{width:196.589091pt;}
.w97{width:197.445150pt;}
.w96{width:197.876119pt;}
.we{width:215.199992pt;}
.wf{width:250.800008pt;}
.w71{width:303.552449pt;}
.w3{width:614.666667pt;}
.w2{width:793.799937pt;}
.w0{width:793.799967pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa5{left:7.161687pt;}
.x8c{left:10.264421pt;}
.xa2{left:12.490092pt;}
.x5c{left:14.048641pt;}
.x89{left:15.118795pt;}
.x8b{left:18.516860pt;}
.x14{left:19.512001pt;}
.xa4{left:20.554959pt;}
.x8a{left:23.371237pt;}
.xd{left:26.133334pt;}
.x12{left:27.100000pt;}
.xa{left:28.866667pt;}
.xa3{left:45.526029pt;}
.xa6{left:46.545450pt;}
.xa0{left:50.158414pt;}
.xa8{left:51.067207pt;}
.xaf{left:52.744980pt;}
.xb0{left:63.755363pt;}
.x8d{left:72.014025pt;}
.xa1{left:75.779470pt;}
.x1f{left:79.329333pt;}
.x9{left:93.266663pt;}
.x7{left:94.533335pt;}
.x1d{left:99.293332pt;}
.xae{left:100.900002pt;}
.x9f{left:102.900002pt;}
.xa9{left:104.166669pt;}
.x8{left:113.466668pt;}
.x1{left:117.200002pt;}
.x23{left:118.533335pt;}
.x2{left:122.406670pt;}
.xad{left:123.333336pt;}
.xac{left:125.642670pt;}
.x65{left:127.801334pt;}
.x6{left:132.333336pt;}
.xc{left:133.500003pt;}
.x88{left:144.407044pt;}
.x76{left:145.506668pt;}
.x9c{left:148.960002pt;}
.x98{left:154.398669pt;}
.x99{left:161.690669pt;}
.x1c{left:163.900004pt;}
.x9b{left:169.705338pt;}
.xab{left:171.372004pt;}
.x24{left:175.450668pt;}
.x79{left:177.400003pt;}
.xb1{left:178.602358pt;}
.xb3{left:180.161494pt;}
.x9d{left:182.566671pt;}
.x25{left:191.534668pt;}
.x7a{left:193.256004pt;}
.x54{left:194.737340pt;}
.xb4{left:196.274266pt;}
.x26{left:203.567598pt;}
.x90{left:208.493339pt;}
.x55{left:210.821340pt;}
.x49{left:213.120000pt;}
.x7c{left:216.187815pt;}
.x28{left:217.341679pt;}
.x27{left:219.651598pt;}
.x8e{left:222.724003pt;}
.x91{left:224.917510pt;}
.x56{left:226.159550pt;}
.x7e{left:227.595814pt;}
.x4a{left:229.204000pt;}
.x7d{left:230.767814pt;}
.x29{left:233.195210pt;}
.xe{left:234.366671pt;}
.x68{left:235.602671pt;}
.x7b{left:238.583839pt;}
.x4b{left:239.917958pt;}
.x57{left:241.703549pt;}
.x3c{left:243.433334pt;}
.x2a{left:246.092742pt;}
.x4{left:249.245333pt;}
.x7f{left:251.249079pt;}
.x4c{left:252.815490pt;}
.x74{left:253.856002pt;}
.x58{left:254.975069pt;}
.x77{left:257.114672pt;}
.x2b{left:258.765599pt;}
.x11{left:260.536005pt;}
.x36{left:261.567998pt;}
.x96{left:262.896001pt;}
.x86{left:264.606671pt;}
.x5a{left:265.974110pt;}
.x2c{left:267.235132pt;}
.x59{left:268.246589pt;}
.x75{left:269.940002pt;}
.x43{left:271.301335pt;}
.x3d{left:272.501144pt;}
.x69{left:273.906427pt;}
.x8f{left:275.051676pt;}
.x13{left:276.392006pt;}
.x15{left:277.613487pt;}
.x2d{left:280.132664pt;}
.x5b{left:281.670109pt;}
.x5{left:282.668012pt;}
.x78{left:283.661723pt;}
.x9a{left:284.654353pt;}
.x95{left:286.057909pt;}
.x44{left:287.385335pt;}
.x6e{left:288.510233pt;}
.x16{left:290.511016pt;}
.xb{left:292.260000pt;}
.x4d{left:293.770157pt;}
.x92{left:295.594924pt;}
.x1b{left:296.595998pt;}
.x37{left:298.558471pt;}
.x45{left:300.393625pt;}
.x6a{left:303.521220pt;}
.x3e{left:305.094478pt;}
.x17{left:306.367017pt;}
.x66{left:309.162439pt;}
.x3f{left:310.804187pt;}
.x39{left:311.792551pt;}
.x47{left:313.167866pt;}
.x38{left:314.102470pt;}
.x87{left:314.996154pt;}
.x46{left:316.321625pt;}
.x5d{left:317.329388pt;}
.x4e{left:318.355015pt;}
.x18{left:319.694025pt;}
.x97{left:320.983098pt;}
.x71{left:322.255595pt;}
.x72{left:324.417358pt;}
.x6f{left:325.405293pt;}
.x3a{left:326.376551pt;}
.x48{left:327.845199pt;}
.x5e{left:328.880633pt;}
.x6b{left:330.793273pt;}
.x67{left:331.997107pt;}
.x4f{left:334.208551pt;}
.x19{left:335.550026pt;}
.x70{left:337.062143pt;}
.x2e{left:338.352839pt;}
.x40{left:339.935144pt;}
.x3b{left:342.304550pt;}
.x84{left:344.208846pt;}
.x6c{left:345.353942pt;}
.x41{left:347.317809pt;}
.x5f{left:349.073561pt;}
.x2f{left:351.250371pt;}
.x73{left:354.119280pt;}
.x85{left:358.396001pt;}
.x42{left:360.439143pt;}
.x50{left:362.051417pt;}
.x3{left:364.753319pt;}
.x6d{left:366.397949pt;}
.x30{left:367.334371pt;}
.x51{left:372.900268pt;}
.x80{left:374.171250pt;}
.x52{left:375.245386pt;}
.x60{left:376.833534pt;}
.x1e{left:379.099996pt;}
.x31{left:380.755457pt;}
.x81{left:383.485314pt;}
.x93{left:387.658838pt;}
.x53{left:390.789385pt;}
.x94{left:395.027328pt;}
.x32{left:396.839457pt;}
.x82{left:398.347431pt;}
.x33{left:399.406844pt;}
.xf{left:401.500003pt;}
.x61{left:403.201424pt;}
.x63{left:406.749241pt;}
.x62{left:408.385426pt;}
.x64{left:410.733243pt;}
.x34{left:412.304366pt;}
.x83{left:418.666300pt;}
.x35{left:428.388366pt;}
.x20{left:442.099996pt;}
.x9e{left:456.633341pt;}
.xaa{left:493.033335pt;}
.xa7{left:494.899994pt;}
.xb2{left:496.366669pt;}
.xb5{left:498.300018pt;}
.x10{left:499.633344pt;}
.x21{left:515.433329pt;}
.x1a{left:530.266652pt;}
.x22{left:576.566671pt;}
}




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