
    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_5654443dab34c6338a01cde8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.709473;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_9a64f61154342f16c526cb7c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_1c62850095281dae2c436d9f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_49cae92a00bd1599608d96d8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_d205a2f0a3388d9ab876e96a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.678711;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_af425ac50129cbfbfc4446b4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895000;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_9a64f61154342f16c526cb7c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919000;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_1c62850095281dae2c436d9f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.906000;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_e1cf6e2623f04aa5e147661a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.680176;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_b01e67927861ab122373b9b0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.904000;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_9a64f61154342f16c526cb7c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.919000;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_1c62850095281dae2c436d9f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.906000;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_4b97c2ca812050df72e6595e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.674316;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_9a64f61154342f16c526cb7c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.919000;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_1c62850095281dae2c436d9f.woff2')format("woff");}.fff{font-family:fff;line-height:0.906000;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_b01e67927861ab122373b9b0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.904000;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_af425ac50129cbfbfc4446b4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_49cae92a00bd1599608d96d8.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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;}
.mf{transform:matrix(0.000000,-0.250028,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250028,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250028,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.250035,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250035,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250035,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.250040,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250040,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250040,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.250043,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250043,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250043,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.250045,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250045,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250045,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.250047,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250047,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250047,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.359989px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.479990px;}
.v1{vertical-align:27.359989px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.003600px;}
.ls6{letter-spacing:0.007200px;}
.ls4{letter-spacing:0.007209px;}
.ls7{letter-spacing:0.112967px;}
.lsb{letter-spacing:0.177060px;}
.lsa{letter-spacing:0.264780px;}
.ls0{letter-spacing:0.365820px;}
.ls9{letter-spacing:0.367260px;}
.ls8{letter-spacing:0.367296px;}
.ls10{letter-spacing:2.337419px;}
.ls1{letter-spacing:17.466833px;}
.ls2{letter-spacing:22.507971px;}
.lsd{letter-spacing:91.644563px;}
.lsc{letter-spacing:173.666931px;}
.lsf{letter-spacing:178.893528px;}
.lse{letter-spacing:205.529918px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-16.567202px;}
.ws3{word-spacing:-16.559993px;}
.ws6{word-spacing:-15.307290px;}
.ws5{word-spacing:-14.939994px;}
.ws0{word-spacing:-13.499995px;}
.ws1{word-spacing:-12.779995px;}
.ws7{word-spacing:-12.059995px;}
.ws8{word-spacing:-10.439996px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.668839px;}
._1{width:1.005910px;}
._a{width:2.378599px;}
._9{width:3.571889px;}
._8{width:4.583166px;}
._5{width:6.070954px;}
._3{width:7.152652px;}
._2{width:8.602560px;}
._12{width:9.855351px;}
._4{width:10.926638px;}
._c{width:12.439667px;}
._10{width:14.057203px;}
._b{width:15.224439px;}
._1b{width:16.269231px;}
._6{width:17.831357px;}
._f{width:19.014114px;}
._13{width:20.122312px;}
._7{width:21.816636px;}
._11{width:23.410609px;}
._15{width:24.747735px;}
._14{width:26.109148px;}
._17{width:27.622918px;}
._1d{width:28.855931px;}
._19{width:29.871206px;}
._1a{width:31.034981px;}
._1f{width:32.320544px;}
._23{width:33.514983px;}
._27{width:34.797554px;}
._16{width:36.141710px;}
._20{width:37.638088px;}
._1c{width:38.793646px;}
._e{width:40.108186px;}
._d{width:41.883373px;}
._18{width:43.072795px;}
._26{width:45.667518px;}
._24{width:48.436137px;}
._22{width:49.813798px;}
._21{width:53.718238px;}
._25{width:67.619833px;}
._1e{width:70.228945px;}
._30{width:75.767539px;}
._45{width:79.900501px;}
._42{width:83.508736px;}
._44{width:86.017766px;}
._43{width:92.952612px;}
._34{width:100.492655px;}
._36{width:104.093770px;}
._2f{width:108.187397px;}
._31{width:109.448236px;}
._2e{width:121.747166px;}
._46{width:123.094698px;}
._2b{width:128.110268px;}
._4a{width:129.477598px;}
._47{width:131.128346px;}
._35{width:136.501389px;}
._28{width:138.189097px;}
._33{width:151.625105px;}
._37{width:157.357220px;}
._29{width:161.945183px;}
._32{width:163.838574px;}
._38{width:165.723657px;}
._2a{width:181.585418px;}
._2d{width:195.089822px;}
._2c{width:213.944895px;}
._4b{width:231.446773px;}
._3e{width:242.965012px;}
._3d{width:270.321141px;}
._39{width:365.946371px;}
._3f{width:370.578022px;}
._49{width:423.011857px;}
._41{width:424.702534px;}
._3c{width:475.972917px;}
._40{width:610.604193px;}
._3a{width:630.212793px;}
._3b{width:745.391328px;}
._48{width:831.107668px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,8,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.759998px;}
.fs4{font-size:23.759990px;}
.fsb{font-size:27.359989px;}
.fs2{font-size:30.239988px;}
.fsc{font-size:38.879984px;}
.fs8{font-size:41.759983px;}
.fs5{font-size:48.239981px;}
.fs6{font-size:51.119980px;}
.fs3{font-size:53.999978px;}
.fs9{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fsa{font-size:71.999971px;}
.fs0{font-size:84.239966px;}
.ye0{bottom:-0.000352px;}
.y104{bottom:-0.000347px;}
.y1eb{bottom:-0.000345px;}
.yde{bottom:-0.000342px;}
.y1cb{bottom:-0.000341px;}
.yef{bottom:-0.000333px;}
.ydc{bottom:-0.000331px;}
.y102{bottom:-0.000328px;}
.y204{bottom:-0.000327px;}
.yda{bottom:-0.000325px;}
.yed{bottom:-0.000323px;}
.y1e9{bottom:-0.000321px;}
.y1c8{bottom:-0.000318px;}
.yeb{bottom:-0.000315px;}
.yd8{bottom:-0.000311px;}
.y100{bottom:-0.000309px;}
.yd6{bottom:-0.000308px;}
.ye9{bottom:-0.000304px;}
.y1c6{bottom:-0.000302px;}
.y1f7{bottom:-0.000297px;}
.yd4{bottom:-0.000294px;}
.yfe{bottom:-0.000292px;}
.y129{bottom:-0.000285px;}
.y1c3{bottom:-0.000283px;}
.yfc{bottom:-0.000279px;}
.yd2{bottom:-0.000277px;}
.y1c1{bottom:-0.000273px;}
.y1bf{bottom:-0.000272px;}
.yd0{bottom:-0.000264px;}
.y1e6{bottom:-0.000262px;}
.y1bd{bottom:-0.000261px;}
.y127{bottom:-0.000257px;}
.y1f4{bottom:-0.000255px;}
.yf9{bottom:-0.000250px;}
.yf7{bottom:-0.000239px;}
.y118{bottom:-0.000235px;}
.y1f2{bottom:-0.000233px;}
.y1b8{bottom:-0.000230px;}
.y200{bottom:-0.000228px;}
.y125{bottom:-0.000223px;}
.y1b6{bottom:-0.000218px;}
.y212{bottom:-0.000214px;}
.y1b4{bottom:-0.000209px;}
.y121{bottom:-0.000208px;}
.y13d{bottom:-0.000205px;}
.y1b2{bottom:-0.000201px;}
.y1e3{bottom:-0.000197px;}
.y131{bottom:-0.000195px;}
.y10c{bottom:-0.000192px;}
.y1af{bottom:-0.000190px;}
.y1df{bottom:-0.000179px;}
.ye7{bottom:-0.000178px;}
.y210{bottom:-0.000172px;}
.y12d{bottom:-0.000171px;}
.y11a{bottom:-0.000169px;}
.y1ab{bottom:-0.000167px;}
.y12f{bottom:-0.000164px;}
.y112{bottom:-0.000163px;}
.ye5{bottom:-0.000161px;}
.yf5{bottom:-0.000157px;}
.ycc{bottom:-0.000155px;}
.y1a9{bottom:-0.000151px;}
.y1a7{bottom:-0.000145px;}
.y1a5{bottom:-0.000134px;}
.y20d{bottom:-0.000129px;}
.y11c{bottom:-0.000128px;}
.y10a{bottom:-0.000127px;}
.y133{bottom:-0.000125px;}
.yca{bottom:-0.000122px;}
.y1a2{bottom:-0.000110px;}
.y1dc{bottom:-0.000107px;}
.y1da{bottom:-0.000106px;}
.y114{bottom:-0.000102px;}
.y1a0{bottom:-0.000101px;}
.y11f{bottom:-0.000092px;}
.y12b{bottom:-0.000085px;}
.y10f{bottom:-0.000084px;}
.y139{bottom:-0.000079px;}
.y1d7{bottom:-0.000076px;}
.y19d{bottom:-0.000072px;}
.y107{bottom:-0.000071px;}
.y123{bottom:-0.000065px;}
.y137{bottom:-0.000062px;}
.y135{bottom:-0.000061px;}
.y13b{bottom:-0.000057px;}
.y13f{bottom:-0.000056px;}
.y116{bottom:-0.000045px;}
.yf3{bottom:-0.000041px;}
.ye3{bottom:-0.000037px;}
.y0{bottom:0.000000px;}
.y209{bottom:0.179673px;}
.yce{bottom:0.179750px;}
.y143{bottom:2.519965px;}
.y145{bottom:2.519970px;}
.y147{bottom:2.519976px;}
.y149{bottom:2.519981px;}
.y14b{bottom:2.519987px;}
.y151{bottom:2.520026px;}
.y154{bottom:2.520032px;}
.y157{bottom:2.520043px;}
.y15b{bottom:2.520054px;}
.y15e{bottom:2.520065px;}
.y165{bottom:2.520082px;}
.y16a{bottom:2.520098px;}
.y161{bottom:2.880062px;}
.ye{bottom:59.641176px;}
.yd{bottom:73.321171px;}
.y187{bottom:84.959066px;}
.yc8{bottom:84.959966px;}
.y215{bottom:84.961121px;}
.yc{bottom:87.181165px;}
.y110{bottom:93.059894px;}
.ye1{bottom:93.059963px;}
.ye2{bottom:93.060000px;}
.y220{bottom:95.281162px;}
.y189{bottom:96.299961px;}
.y186{bottom:97.621461px;}
.yb{bottom:99.781160px;}
.y1d2{bottom:100.619960px;}
.y105{bottom:103.679959px;}
.yf2{bottom:103.680000px;}
.y11d{bottom:103.680301px;}
.y9b{bottom:104.821158px;}
.y92{bottom:104.821458px;}
.y1cd{bottom:105.119958px;}
.y19b{bottom:105.838807px;}
.ya6{bottom:106.081458px;}
.ya{bottom:107.881157px;}
.y1d1{bottom:108.899956px;}
.y21f{bottom:109.141156px;}
.y1d0{bottom:109.619956px;}
.y1d3{bottom:109.619971px;}
.y6a{bottom:110.761456px;}
.y115{bottom:111.420000px;}
.y185{bottom:115.081454px;}
.y1d4{bottom:115.379980px;}
.y188{bottom:118.799952px;}
.y9{bottom:120.481152px;}
.y21e{bottom:122.821151px;}
.ya5{bottom:123.361451px;}
.y9a{bottom:123.721151px;}
.y91{bottom:123.721451px;}
.y213{bottom:128.699949px;}
.y1f8{bottom:128.879948px;}
.y214{bottom:129.419948px;}
.y69{bottom:129.661448px;}
.y206{bottom:129.779948px;}
.y184{bottom:132.721447px;}
.y21d{bottom:134.161446px;}
.y3b{bottom:138.841144px;}
.ya4{bottom:140.461444px;}
.y13e{bottom:140.940000px;}
.y99{bottom:142.621143px;}
.y90{bottom:142.621443px;}
.y13a{bottom:143.640000px;}
.y20b{bottom:145.079942px;}
.y1ec{bottom:145.979942px;}
.y98{bottom:148.561141px;}
.y68{bottom:148.741441px;}
.y183{bottom:150.361440px;}
.y134{bottom:151.380000px;}
.y3a{bottom:153.421439px;}
.y136{bottom:155.340000px;}
.ya3{bottom:157.741437px;}
.y8f{bottom:161.701435px;}
.y122{bottom:162.900000px;}
.y18a{bottom:164.880058px;}
.y67{bottom:167.641433px;}
.y182{bottom:167.821433px;}
.y39{bottom:168.181433px;}
.ya2{bottom:175.021430px;}
.y106{bottom:176.400000px;}
.y8e{bottom:180.601428px;}
.y19c{bottom:180.900000px;}
.y38{bottom:182.761427px;}
.y181{bottom:185.461426px;}
.y66{bottom:186.721425px;}
.y1d6{bottom:189.000000px;}
.ya1{bottom:192.301423px;}
.y138{bottom:196.560000px;}
.y19e{bottom:197.280000px;}
.y37{bottom:197.341421px;}
.y8d{bottom:199.681420px;}
.y180{bottom:203.101419px;}
.y65{bottom:205.621418px;}
.ya0{bottom:209.581416px;}
.y10e{bottom:210.600000px;}
.y36{bottom:212.101415px;}
.y12a{bottom:213.660000px;}
.y8c{bottom:218.581413px;}
.y17f{bottom:220.561412px;}
.y64{bottom:224.701410px;}
.y35{bottom:226.681409px;}
.y11e{bottom:229.140000px;}
.y18c{bottom:236.880178px;}
.y8b{bottom:237.481405px;}
.y17e{bottom:238.201405px;}
.y34{bottom:241.441403px;}
.y97{bottom:243.421403px;}
.y63{bottom:243.601403px;}
.y9f{bottom:243.961402px;}
.y18b{bottom:244.260188px;}
.y19f{bottom:251.460000px;}
.y113{bottom:255.420000px;}
.y17d{bottom:255.841398px;}
.y33{bottom:256.021398px;}
.y8a{bottom:256.561397px;}
.y1d8{bottom:257.759897px;}
.y9e{bottom:261.241396px;}
.y62{bottom:262.501395px;}
.y1f9{bottom:263.160000px;}
.y1d9{bottom:265.320000px;}
.y1db{bottom:268.740000px;}
.y32{bottom:270.781392px;}
.y17c{bottom:273.481391px;}
.y1a1{bottom:275.040000px;}
.y89{bottom:275.461390px;}
.y9d{bottom:278.521389px;}
.y61{bottom:281.581387px;}
.y31{bottom:285.361386px;}
.y17b{bottom:290.941384px;}
.y88{bottom:294.541382px;}
.y9c{bottom:295.801382px;}
.y30{bottom:300.121380px;}
.y60{bottom:300.481380px;}
.yc9{bottom:306.000000px;}
.y17a{bottom:308.581377px;}
.y1a3{bottom:311.220000px;}
.y1d5{bottom:311.580366px;}
.y132{bottom:311.940000px;}
.yc7{bottom:313.081375px;}
.y87{bottom:313.441375px;}
.y2f{bottom:314.701374px;}
.y109{bottom:317.520000px;}
.y96{bottom:319.381372px;}
.y5f{bottom:319.561372px;}
.y1dd{bottom:320.039872px;}
.y11b{bottom:320.040000px;}
.y1ed{bottom:323.099871px;}
.y20c{bottom:323.100000px;}
.y179{bottom:326.221370px;}
.y2e{bottom:329.461368px;}
.yc6{bottom:330.181368px;}
.y86{bottom:332.341367px;}
.y1a4{bottom:334.800000px;}
.y1fa{bottom:336.960000px;}
.y95{bottom:338.281365px;}
.y5e{bottom:338.461365px;}
.y178{bottom:343.681363px;}
.y2d{bottom:344.041362px;}
.yc5{bottom:347.461361px;}
.y85{bottom:351.421359px;}
.y5d{bottom:357.361357px;}
.y2c{bottom:358.621357px;}
.y18d{bottom:359.820313px;}
.y1fb{bottom:360.539856px;}
.y177{bottom:361.321355px;}
.y1a6{bottom:362.160000px;}
.yc4{bottom:364.741354px;}
.y84{bottom:370.321352px;}
.y20e{bottom:370.439852px;}
.y2b{bottom:374.281350px;}
.y5c{bottom:376.441349px;}
.y1a8{bottom:378.540000px;}
.y176{bottom:378.961348px;}
.yc3{bottom:382.021347px;}
.ycb{bottom:388.080000px;}
.y83{bottom:389.401344px;}
.y2a{bottom:393.181343px;}
.yf4{bottom:393.660000px;}
.y5b{bottom:395.341342px;}
.y175{bottom:396.421341px;}
.yc2{bottom:399.301340px;}
.ye4{bottom:401.400000px;}
.y190{bottom:407.520401px;}
.y111{bottom:408.060000px;}
.y82{bottom:408.301337px;}
.y18e{bottom:408.780397px;}
.y12e{bottom:410.940000px;}
.y191{bottom:411.660409px;}
.y18f{bottom:411.840404px;}
.y29{bottom:412.261335px;}
.y174{bottom:414.061334px;}
.y5a{bottom:414.421334px;}
.y192{bottom:414.900411px;}
.yc1{bottom:416.581333px;}
.y1aa{bottom:417.240000px;}
.y1fc{bottom:419.040000px;}
.y1ac{bottom:420.660000px;}
.y119{bottom:422.640000px;}
.y81{bottom:427.201329px;}
.y12c{bottom:428.040000px;}
.y28{bottom:430.261328px;}
.y20f{bottom:430.920000px;}
.y173{bottom:431.701327px;}
.y59{bottom:433.321327px;}
.yc0{bottom:433.681327px;}
.y1fd{bottom:442.619823px;}
.y207{bottom:442.620000px;}
.ye6{bottom:444.240000px;}
.y1ad{bottom:444.420000px;}
.y27{bottom:445.021322px;}
.y80{bottom:446.281321px;}
.y1de{bottom:447.120000px;}
.y172{bottom:448.441321px;}
.ybf{bottom:450.961320px;}
.y58{bottom:452.221319px;}
.y26{bottom:459.601316px;}
.y171{bottom:462.121315px;}
.y7f{bottom:465.181314px;}
.ybe{bottom:468.241313px;}
.y57{bottom:471.301311px;}
.y25{bottom:474.181310px;}
.y1ae{bottom:474.300000px;}
.y170{bottom:475.981310px;}
.y1ee{bottom:476.100000px;}
.y193{bottom:476.100554px;}
.y10d{bottom:477.540000px;}
.y1b0{bottom:477.720000px;}
.y10b{bottom:479.700000px;}
.y16f{bottom:480.481308px;}
.y1e0{bottom:482.399807px;}
.y7e{bottom:484.261306px;}
.ybd{bottom:485.521306px;}
.y130{bottom:487.800000px;}
.y24{bottom:488.941304px;}
.y16e{bottom:489.841304px;}
.y1e1{bottom:489.960000px;}
.y56{bottom:490.201304px;}
.y1e2{bottom:493.380000px;}
.y1ef{bottom:499.680000px;}
.y1b1{bottom:501.480000px;}
.y169{bottom:501.721200px;}
.ybc{bottom:502.801299px;}
.y7d{bottom:503.161299px;}
.y23{bottom:503.521299px;}
.y55{bottom:509.281296px;}
.y16c{bottom:511.261295px;}
.y13c{bottom:511.380000px;}
.y167{bottom:518.101293px;}
.y22{bottom:518.281293px;}
.y120{bottom:519.840000px;}
.ybb{bottom:520.081292px;}
.y7c{bottom:522.061291px;}
.y1b3{bottom:522.360000px;}
.y16d{bottom:522.601291px;}
.y16b{bottom:524.941290px;}
.y54{bottom:528.181289px;}
.y21c{bottom:528.901288px;}
.y1e4{bottom:529.379788px;}
.y168{bottom:531.961287px;}
.y21{bottom:532.861287px;}
.y1f0{bottom:534.059786px;}
.y211{bottom:534.060000px;}
.yba{bottom:537.181285px;}
.y7b{bottom:541.141284px;}
.y164{bottom:543.121200px;}
.y1b5{bottom:545.940000px;}
.y21a{bottom:546.181282px;}
.y1fe{bottom:546.300000px;}
.y53{bottom:547.081281px;}
.y20{bottom:547.621281px;}
.y21b{bottom:551.401279px;}
.yb9{bottom:554.461278px;}
.y124{bottom:556.740000px;}
.y162{bottom:559.501276px;}
.y7a{bottom:560.041276px;}
.y1f{bottom:562.201275px;}
.y219{bottom:563.461275px;}
.y166{bottom:564.001274px;}
.y52{bottom:566.161274px;}
.y1ff{bottom:569.880000px;}
.yb8{bottom:571.741271px;}
.y163{bottom:573.361271px;}
.y1b7{bottom:573.840000px;}
.y1e{bottom:576.961269px;}
.y79{bottom:579.121268px;}
.y218{bottom:580.741268px;}
.y1f1{bottom:582.120000px;}
.y15d{bottom:584.521200px;}
.y51{bottom:585.061266px;}
.y117{bottom:588.060000px;}
.yb7{bottom:589.021264px;}
.y1b9{bottom:590.220000px;}
.y160{bottom:591.181200px;}
.y1d{bottom:591.541263px;}
.y15f{bottom:594.061262px;}
.y217{bottom:594.781262px;}
.yf6{bottom:597.060000px;}
.y78{bottom:598.021261px;}
.y15c{bottom:600.901260px;}
.y50{bottom:603.241259px;}
.y94{bottom:603.961258px;}
.y1c{bottom:606.121258px;}
.yb6{bottom:606.301257px;}
.y15a{bottom:612.241200px;}
.y196{bottom:614.700850px;}
.y77{bottom:617.101253px;}
.y4f{bottom:617.821253px;}
.y197{bottom:618.660862px;}
.y195{bottom:619.020853px;}
.y1b{bottom:620.881252px;}
.y198{bottom:621.900865px;}
.y194{bottom:623.340856px;}
.yb5{bottom:623.401251px;}
.ycd{bottom:623.700000px;}
.y1ba{bottom:624.420000px;}
.y108{bottom:626.039750px;}
.yf8{bottom:626.040000px;}
.y1ce{bottom:626.220000px;}
.y1bb{bottom:627.840000px;}
.y159{bottom:628.441249px;}
.y4e{bottom:632.581247px;}
.y1a{bottom:635.461246px;}
.y76{bottom:636.001246px;}
.y1f3{bottom:637.920000px;}
.y156{bottom:639.781200px;}
.yb4{bottom:640.681244px;}
.y126{bottom:642.420000px;}
.y4d{bottom:647.161241px;}
.y158{bottom:649.141240px;}
.y1cf{bottom:649.800000px;}
.y19{bottom:650.221240px;}
.y1bc{bottom:651.600000px;}
.y1e5{bottom:654.300000px;}
.y75{bottom:654.901238px;}
.y155{bottom:656.161238px;}
.yb3{bottom:657.961237px;}
.yfa{bottom:658.980000px;}
.ycf{bottom:661.140000px;}
.y4c{bottom:661.921235px;}
.y18{bottom:664.801234px;}
.y153{bottom:667.321200px;}
.y74{bottom:673.981230px;}
.yb2{bottom:675.241230px;}
.y4b{bottom:676.501229px;}
.y17{bottom:679.561228px;}
.y1be{bottom:680.220000px;}
.y150{bottom:681.901200px;}
.y199{bottom:682.021006px;}
.y1c0{bottom:683.640000px;}
.y4a{bottom:691.081224px;}
.y14f{bottom:691.261223px;}
.yd1{bottom:691.920000px;}
.yb1{bottom:692.521223px;}
.y73{bottom:692.881223px;}
.y1f5{bottom:693.720000px;}
.y16{bottom:694.141222px;}
.y152{bottom:695.761222px;}
.yfb{bottom:696.780000px;}
.y1e7{bottom:701.999719px;}
.y49{bottom:705.841218px;}
.y201{bottom:706.500000px;}
.y1c2{bottom:707.400000px;}
.y15{bottom:708.901216px;}
.yb0{bottom:709.801216px;}
.y72{bottom:711.961215px;}
.y128{bottom:713.340000px;}
.y93{bottom:717.901213px;}
.y48{bottom:720.421212px;}
.y14{bottom:723.481211px;}
.yaf{bottom:726.901209px;}
.yfd{bottom:729.720000px;}
.y202{bottom:730.080000px;}
.y1c4{bottom:730.620000px;}
.y14e{bottom:730.681208px;}
.y71{bottom:730.861208px;}
.yd3{bottom:734.580000px;}
.y47{bottom:735.181206px;}
.y13{bottom:738.241205px;}
.y1f6{bottom:742.500000px;}
.yae{bottom:744.181202px;}
.y14d{bottom:747.961201px;}
.y46{bottom:749.761200px;}
.y12{bottom:752.821199px;}
.y1c5{bottom:754.200000px;}
.ye8{bottom:759.960000px;}
.yad{bottom:761.461195px;}
.y45{bottom:764.521194px;}
.y14c{bottom:765.241194px;}
.y11{bottom:767.401193px;}
.y70{bottom:768.841192px;}
.yd5{bottom:770.040000px;}
.yff{bottom:773.460000px;}
.yd7{bottom:776.700000px;}
.yac{bottom:778.741189px;}
.y44{bottom:779.101188px;}
.y14a{bottom:780.001200px;}
.yf{bottom:782.341187px;}
.y10{bottom:783.601187px;}
.yea{bottom:786.960000px;}
.y6f{bottom:787.741185px;}
.y43{bottom:793.861182px;}
.y148{bottom:793.861200px;}
.y1c7{bottom:795.420000px;}
.yab{bottom:796.021182px;}
.y8{bottom:796.561181px;}
.y1e8{bottom:803.520000px;}
.yec{bottom:806.400000px;}
.y6e{bottom:806.821177px;}
.y146{bottom:807.541200px;}
.y42{bottom:808.441177px;}
.y7{bottom:808.801176px;}
.yd9{bottom:811.260000px;}
.y1c9{bottom:811.800000px;}
.yaa{bottom:813.301175px;}
.y203{bottom:816.660000px;}
.y208{bottom:818.280000px;}
.y101{bottom:819.900000px;}
.y144{bottom:821.401200px;}
.y41{bottom:823.021171px;}
.y6d{bottom:825.721170px;}
.y6{bottom:826.621169px;}
.ydb{bottom:828.540000px;}
.ya9{bottom:830.401168px;}
.y20a{bottom:831.240000px;}
.y205{bottom:833.040000px;}
.yee{bottom:833.400000px;}
.y142{bottom:835.981200px;}
.y40{bottom:837.781165px;}
.y5{bottom:842.101163px;}
.y6c{bottom:844.621162px;}
.ya8{bottom:847.681161px;}
.y19a{bottom:850.680773px;}
.y3f{bottom:852.361159px;}
.y1ca{bottom:853.020000px;}
.y141{bottom:854.521158px;}
.yf0{bottom:854.820000px;}
.y4{bottom:855.421158px;}
.ydd{bottom:855.720000px;}
.y216{bottom:857.221157px;}
.y1ea{bottom:861.300000px;}
.y6b{bottom:863.701155px;}
.ya7{bottom:864.961154px;}
.y3e{bottom:867.121153px;}
.y103{bottom:868.320000px;}
.y1cc{bottom:869.400000px;}
.y3{bottom:871.981151px;}
.y140{bottom:874.501150px;}
.ydf{bottom:881.100000px;}
.yf1{bottom:881.820000px;}
.y2{bottom:882.421147px;}
.y3d{bottom:888.361145px;}
.y1{bottom:901.861139px;}
.y3c{bottom:907.621137px;}
.h4a{height:3.420000px;}
.h10{height:3.839061px;}
.h3a{height:3.960000px;}
.h48{height:5.220000px;}
.h18{height:5.940000px;}
.h1b{height:6.660000px;}
.h2d{height:7.740000px;}
.h4f{height:12.960000px;}
.h40{height:13.320000px;}
.h3f{height:13.500000px;}
.h42{height:13.680000px;}
.h9{height:16.346873px;}
.h47{height:16.380000px;}
.h1d{height:17.280000px;}
.h4c{height:19.507672px;}
.h3{height:20.509445px;}
.h8{height:20.805112px;}
.h4{height:21.561111px;}
.h49{height:23.580000px;}
.h4b{height:23.760000px;}
.h1e{height:25.380000px;}
.h50{height:26.749429px;}
.h21{height:27.000000px;}
.h4d{height:28.647349px;}
.h13{height:28.730869px;}
.h4e{height:29.190228px;}
.h44{height:29.774868px;}
.h1c{height:32.152136px;}
.h24{height:32.940000px;}
.ha{height:33.189107px;}
.h20{height:33.719747px;}
.hb{height:34.395106px;}
.he{height:35.068306px;}
.hd{height:35.170546px;}
.hc{height:36.448545px;}
.h6{height:37.151985px;}
.h3e{height:37.440000px;}
.h19{height:37.620000px;}
.h5{height:38.501985px;}
.h3c{height:39.960000px;}
.h43{height:40.297132px;}
.h15{height:41.114864px;}
.h3b{height:41.400000px;}
.h14{height:42.608863px;}
.h1a{height:42.660000px;}
.h7{height:44.149201px;}
.h2{height:44.925451px;}
.h12{height:45.440622px;}
.h11{height:45.573102px;}
.hf{height:47.229101px;}
.h39{height:47.700000px;}
.h16{height:49.535980px;}
.h45{height:54.254858px;}
.h1{height:57.133454px;}
.h26{height:60.549096px;}
.h2b{height:61.269095px;}
.h41{height:62.475095px;}
.h33{height:69.840000px;}
.h25{height:72.720000px;}
.h38{height:76.860000px;}
.h46{height:78.014849px;}
.h17{height:82.080000px;}
.h2a{height:107.100000px;}
.h35{height:109.980000px;}
.h31{height:125.460000px;}
.h2c{height:151.740000px;}
.h28{height:162.180000px;}
.h23{height:203.580000px;}
.h27{height:213.840000px;}
.h30{height:216.360000px;}
.h22{height:289.980000px;}
.h32{height:290.700000px;}
.h37{height:307.260000px;}
.h1f{height:308.340000px;}
.h2f{height:318.960000px;}
.h36{height:324.540000px;}
.h29{height:373.860000px;}
.h34{height:393.840000px;}
.h3d{height:407.700000px;}
.h2e{height:476.640000px;}
.h0{height:973.500000px;}
.w9{width:3.960000px;}
.w15{width:5.040000px;}
.w3{width:5.940000px;}
.w17{width:7.380000px;}
.w4{width:9.000000px;}
.w18{width:11.700000px;}
.w16{width:11.880000px;}
.w2{width:13.320000px;}
.w1{width:13.500000px;}
.w12{width:18.720000px;}
.w14{width:20.700000px;}
.w7{width:27.000000px;}
.we{width:28.260000px;}
.w10{width:43.740000px;}
.w13{width:45.360000px;}
.w11{width:50.940000px;}
.wd{width:52.020000px;}
.wc{width:52.740000px;}
.wf{width:55.620000px;}
.w8{width:56.160000px;}
.wa{width:67.500000px;}
.w6{width:70.560000px;}
.wb{width:87.480000px;}
.w5{width:108.540000px;}
.w0{width:688.500000px;}
.x0{left:0.000000px;}
.x89{left:5.939878px;}
.x83{left:9.539911px;}
.x2a{left:10.979921px;}
.x8{left:93.239963px;}
.x7d{left:98.459961px;}
.x70{left:101.339959px;}
.x49{left:107.279957px;}
.x24{left:108.539957px;}
.xc{left:114.480144px;}
.x76{left:115.560000px;}
.x7c{left:122.040776px;}
.x7e{left:124.559950px;}
.x25{left:126.359949px;}
.x4a{left:132.300000px;}
.x7f{left:138.239945px;}
.x26{left:143.639943px;}
.x80{left:151.199940px;}
.x62{left:156.780000px;}
.x4b{left:157.859937px;}
.x27{left:160.739936px;}
.x1e{left:163.979934px;}
.x1f{left:169.199932px;}
.x4c{left:171.719931px;}
.x4d{left:174.420000px;}
.x28{left:180.719928px;}
.x1a{left:182.159927px;}
.x29{left:185.760000px;}
.x1b{left:187.379925px;}
.x4f{left:188.460000px;}
.x81{left:193.319923px;}
.x7b{left:194.940000px;}
.x4e{left:199.259920px;}
.x4{left:212.032415px;}
.x50{left:213.119915px;}
.x22{left:214.379914px;}
.x51{left:215.820000px;}
.x6e{left:216.900000px;}
.x52{left:219.959912px;}
.x23{left:222.299911px;}
.x82{left:223.559911px;}
.x85{left:226.080000px;}
.x2b{left:227.880000px;}
.x77{left:229.860000px;}
.xa{left:231.839907px;}
.x84{left:235.619906px;}
.x5{left:238.679905px;}
.x53{left:240.659904px;}
.x12{left:242.099903px;}
.x54{left:243.540000px;}
.x13{left:247.319901px;}
.x87{left:250.200000px;}
.x86{left:259.739896px;}
.x69{left:265.140000px;}
.x2c{left:266.579893px;}
.x55{left:268.199893px;}
.x2d{left:269.280000px;}
.x56{left:271.080000px;}
.x2e{left:273.419891px;}
.x16{left:274.859890px;}
.xd{left:276.839889px;}
.x1{left:278.099889px;}
.x17{left:280.079888px;}
.xe{left:282.059887px;}
.x2f{left:283.140000px;}
.x2{left:284.219886px;}
.xf{left:286.199886px;}
.x6{left:291.239186px;}
.x30{left:297.000000px;}
.x58{left:298.620000px;}
.x88{left:300.060000px;}
.x6f{left:304.380000px;}
.x57{left:309.599876px;}
.x8a{left:312.120000px;}
.x14{left:317.699873px;}
.x31{left:321.659871px;}
.x15{left:322.919871px;}
.x32{left:324.540000px;}
.x59{left:326.340000px;}
.x33{left:328.679869px;}
.x5a{left:330.299868px;}
.x8b{left:333.719867px;}
.xb{left:335.159866px;}
.x8d{left:336.240000px;}
.x34{left:338.400000px;}
.x6d{left:340.020000px;}
.x3{left:344.159862px;}
.x8c{left:345.779862px;}
.x8e{left:348.300000px;}
.x9{left:349.379860px;}
.x5b{left:350.999860px;}
.x5c{left:353.880000px;}
.x5d{left:358.019857px;}
.x8f{left:360.360000px;}
.x35{left:363.059855px;}
.x36{left:365.940000px;}
.x5e{left:367.740000px;}
.x37{left:370.079852px;}
.x91{left:372.420000px;}
.x96{left:377.279849px;}
.x38{left:379.800000px;}
.x90{left:381.959847px;}
.x5f{left:392.399843px;}
.x39{left:393.480000px;}
.x60{left:395.280000px;}
.x7{left:396.899841px;}
.x61{left:399.419840px;}
.x63{left:402.300000px;}
.x6a{left:406.800000px;}
.x92{left:410.219836px;}
.x64{left:411.300000px;}
.x3a{left:418.319833px;}
.x3b{left:421.200000px;}
.x78{left:422.280000px;}
.x93{left:424.079830px;}
.x3c{left:425.159830px;}
.x71{left:430.019828px;}
.x94{left:442.259823px;}
.x3d{left:445.859822px;}
.x3e{left:448.740000px;}
.x3f{left:452.879819px;}
.x65{left:455.580000px;}
.x6b{left:460.080000px;}
.x40{left:462.600000px;}
.x66{left:464.580000px;}
.x10{left:473.219811px;}
.x1c{left:476.459809px;}
.x11{left:478.439809px;}
.x1d{left:481.679807px;}
.x18{left:486.539805px;}
.x41{left:487.979805px;}
.x79{left:489.420000px;}
.x19{left:491.759803px;}
.x20{left:493.379803px;}
.x21{left:498.599801px;}
.x42{left:501.839799px;}
.x72{left:502.919799px;}
.x73{left:506.699797px;}
.x67{left:508.680000px;}
.x6c{left:513.180000px;}
.x43{left:515.699794px;}
.x68{left:517.680000px;}
.x44{left:529.379788px;}
.x74{left:534.960000px;}
.x97{left:539.819603px;}
.x45{left:543.239783px;}
.x7a{left:551.520000px;}
.x46{left:557.099777px;}
.x47{left:570.779772px;}
.x48{left:584.639766px;}
.x75{left:586.980000px;}
.x95{left:593.819094px;}
@media print{
.v2{vertical-align:-24.319990pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.759991pt;}
.v1{vertical-align:24.319990pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.003200pt;}
.ls6{letter-spacing:0.006400pt;}
.ls4{letter-spacing:0.006408pt;}
.ls7{letter-spacing:0.100415pt;}
.lsb{letter-spacing:0.157387pt;}
.lsa{letter-spacing:0.235360pt;}
.ls0{letter-spacing:0.325173pt;}
.ls9{letter-spacing:0.326453pt;}
.ls8{letter-spacing:0.326485pt;}
.ls10{letter-spacing:2.077706pt;}
.ls1{letter-spacing:15.526074pt;}
.ls2{letter-spacing:20.007085pt;}
.lsd{letter-spacing:81.461834pt;}
.lsc{letter-spacing:154.370605pt;}
.lsf{letter-spacing:159.016470pt;}
.lse{letter-spacing:182.693260pt;}
.ws4{word-spacing:-14.726402pt;}
.ws3{word-spacing:-14.719994pt;}
.ws6{word-spacing:-13.606480pt;}
.ws5{word-spacing:-13.279995pt;}
.ws0{word-spacing:-11.999995pt;}
.ws1{word-spacing:-11.359995pt;}
.ws7{word-spacing:-10.719996pt;}
.ws8{word-spacing:-9.279996pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1.483412pt;}
._1{width:0.894142pt;}
._a{width:2.114310pt;}
._9{width:3.175012pt;}
._8{width:4.073926pt;}
._5{width:5.396404pt;}
._3{width:6.357913pt;}
._2{width:7.646720pt;}
._12{width:8.760312pt;}
._4{width:9.712567pt;}
._c{width:11.057482pt;}
._10{width:12.495291pt;}
._b{width:13.532835pt;}
._1b{width:14.461539pt;}
._6{width:15.850095pt;}
._f{width:16.901435pt;}
._13{width:17.886499pt;}
._7{width:19.392565pt;}
._11{width:20.809430pt;}
._15{width:21.997987pt;}
._14{width:23.208132pt;}
._17{width:24.553705pt;}
._1d{width:25.649716pt;}
._19{width:26.552183pt;}
._1a{width:27.586650pt;}
._1f{width:28.729373pt;}
._23{width:29.791096pt;}
._27{width:30.931159pt;}
._16{width:32.125964pt;}
._20{width:33.456078pt;}
._1c{width:34.483241pt;}
._e{width:35.651721pt;}
._d{width:37.229665pt;}
._18{width:38.286929pt;}
._26{width:40.593350pt;}
._24{width:43.054344pt;}
._22{width:44.278931pt;}
._21{width:47.749545pt;}
._25{width:60.106518pt;}
._1e{width:62.425728pt;}
._30{width:67.348924pt;}
._45{width:71.022668pt;}
._42{width:74.229988pt;}
._44{width:76.460236pt;}
._43{width:82.624544pt;}
._34{width:89.326805pt;}
._36{width:92.527795pt;}
._2f{width:96.166575pt;}
._31{width:97.287321pt;}
._2e{width:108.219703pt;}
._46{width:109.417510pt;}
._2b{width:113.875793pt;}
._4a{width:115.091198pt;}
._47{width:116.558530pt;}
._35{width:121.334568pt;}
._28{width:122.834753pt;}
._33{width:134.777871pt;}
._37{width:139.873085pt;}
._29{width:143.951274pt;}
._32{width:145.634288pt;}
._38{width:147.309917pt;}
._2a{width:161.409260pt;}
._2d{width:173.413175pt;}
._2c{width:190.173240pt;}
._4b{width:205.730465pt;}
._3e{width:215.968899pt;}
._3d{width:240.285459pt;}
._39{width:325.285663pt;}
._3f{width:329.402686pt;}
._49{width:376.010539pt;}
._41{width:377.513363pt;}
._3c{width:423.087038pt;}
._40{width:542.759283pt;}
._3a{width:560.189150pt;}
._3b{width:662.570069pt;}
._48{width:738.762371pt;}
.fs7{font-size:5.119998pt;}
.fs4{font-size:21.119992pt;}
.fsb{font-size:24.319990pt;}
.fs2{font-size:26.879989pt;}
.fsc{font-size:34.559986pt;}
.fs8{font-size:37.119985pt;}
.fs5{font-size:42.879983pt;}
.fs6{font-size:45.439982pt;}
.fs3{font-size:47.999981pt;}
.fs9{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fsa{font-size:63.999974pt;}
.fs0{font-size:74.879970pt;}
.ye0{bottom:-0.000313pt;}
.y104{bottom:-0.000309pt;}
.y1eb{bottom:-0.000306pt;}
.yde{bottom:-0.000304pt;}
.y1cb{bottom:-0.000303pt;}
.yef{bottom:-0.000296pt;}
.ydc{bottom:-0.000295pt;}
.y102{bottom:-0.000292pt;}
.y204{bottom:-0.000290pt;}
.yda{bottom:-0.000288pt;}
.yed{bottom:-0.000287pt;}
.y1e9{bottom:-0.000286pt;}
.y1c8{bottom:-0.000283pt;}
.yeb{bottom:-0.000280pt;}
.yd8{bottom:-0.000276pt;}
.y100{bottom:-0.000275pt;}
.yd6{bottom:-0.000274pt;}
.ye9{bottom:-0.000270pt;}
.y1c6{bottom:-0.000268pt;}
.y1f7{bottom:-0.000264pt;}
.yd4{bottom:-0.000261pt;}
.yfe{bottom:-0.000259pt;}
.y129{bottom:-0.000254pt;}
.y1c3{bottom:-0.000252pt;}
.yfc{bottom:-0.000248pt;}
.yd2{bottom:-0.000246pt;}
.y1c1{bottom:-0.000243pt;}
.y1bf{bottom:-0.000242pt;}
.yd0{bottom:-0.000235pt;}
.y1e6{bottom:-0.000233pt;}
.y1bd{bottom:-0.000232pt;}
.y127{bottom:-0.000228pt;}
.y1f4{bottom:-0.000227pt;}
.yf9{bottom:-0.000223pt;}
.yf7{bottom:-0.000212pt;}
.y118{bottom:-0.000209pt;}
.y1f2{bottom:-0.000207pt;}
.y1b8{bottom:-0.000204pt;}
.y200{bottom:-0.000203pt;}
.y125{bottom:-0.000198pt;}
.y1b6{bottom:-0.000194pt;}
.y212{bottom:-0.000190pt;}
.y1b4{bottom:-0.000186pt;}
.y121{bottom:-0.000185pt;}
.y13d{bottom:-0.000182pt;}
.y1b2{bottom:-0.000178pt;}
.y1e3{bottom:-0.000175pt;}
.y131{bottom:-0.000173pt;}
.y10c{bottom:-0.000171pt;}
.y1af{bottom:-0.000169pt;}
.y1df{bottom:-0.000159pt;}
.ye7{bottom:-0.000158pt;}
.y210{bottom:-0.000153pt;}
.y12d{bottom:-0.000152pt;}
.y11a{bottom:-0.000150pt;}
.y1ab{bottom:-0.000148pt;}
.y12f{bottom:-0.000146pt;}
.y112{bottom:-0.000145pt;}
.ye5{bottom:-0.000143pt;}
.yf5{bottom:-0.000140pt;}
.ycc{bottom:-0.000138pt;}
.y1a9{bottom:-0.000135pt;}
.y1a7{bottom:-0.000129pt;}
.y1a5{bottom:-0.000119pt;}
.y20d{bottom:-0.000115pt;}
.y11c{bottom:-0.000114pt;}
.y10a{bottom:-0.000113pt;}
.y133{bottom:-0.000111pt;}
.yca{bottom:-0.000109pt;}
.y1a2{bottom:-0.000098pt;}
.y1dc{bottom:-0.000096pt;}
.y1da{bottom:-0.000094pt;}
.y114{bottom:-0.000091pt;}
.y1a0{bottom:-0.000089pt;}
.y11f{bottom:-0.000081pt;}
.y12b{bottom:-0.000076pt;}
.y10f{bottom:-0.000075pt;}
.y139{bottom:-0.000070pt;}
.y1d7{bottom:-0.000067pt;}
.y19d{bottom:-0.000064pt;}
.y107{bottom:-0.000063pt;}
.y123{bottom:-0.000058pt;}
.y137{bottom:-0.000055pt;}
.y135{bottom:-0.000054pt;}
.y13b{bottom:-0.000051pt;}
.y13f{bottom:-0.000050pt;}
.y116{bottom:-0.000040pt;}
.yf3{bottom:-0.000037pt;}
.ye3{bottom:-0.000033pt;}
.y0{bottom:0.000000pt;}
.y209{bottom:0.159709pt;}
.yce{bottom:0.159778pt;}
.y143{bottom:2.239969pt;}
.y145{bottom:2.239974pt;}
.y147{bottom:2.239979pt;}
.y149{bottom:2.239984pt;}
.y14b{bottom:2.239988pt;}
.y151{bottom:2.240023pt;}
.y154{bottom:2.240029pt;}
.y157{bottom:2.240038pt;}
.y15b{bottom:2.240048pt;}
.y15e{bottom:2.240058pt;}
.y165{bottom:2.240073pt;}
.y16a{bottom:2.240087pt;}
.y161{bottom:2.560055pt;}
.ye{bottom:53.014379pt;}
.yd{bottom:65.174374pt;}
.y187{bottom:75.519170pt;}
.yc8{bottom:75.519970pt;}
.y215{bottom:75.520997pt;}
.yc{bottom:77.494369pt;}
.y110{bottom:82.719905pt;}
.ye1{bottom:82.719967pt;}
.ye2{bottom:82.720000pt;}
.y220{bottom:84.694366pt;}
.y189{bottom:85.599966pt;}
.y186{bottom:86.774632pt;}
.yb{bottom:88.694365pt;}
.y1d2{bottom:89.439964pt;}
.y105{bottom:92.159963pt;}
.yf2{bottom:92.160000pt;}
.y11d{bottom:92.160267pt;}
.y9b{bottom:93.174363pt;}
.y92{bottom:93.174629pt;}
.y1cd{bottom:93.439963pt;}
.y19b{bottom:94.078940pt;}
.ya6{bottom:94.294629pt;}
.ya{bottom:95.894362pt;}
.y1d1{bottom:96.799961pt;}
.y21f{bottom:97.014361pt;}
.y1d0{bottom:97.439961pt;}
.y1d3{bottom:97.439974pt;}
.y6a{bottom:98.454627pt;}
.y115{bottom:99.040000pt;}
.y185{bottom:102.294626pt;}
.y1d4{bottom:102.559982pt;}
.y188{bottom:105.599958pt;}
.y9{bottom:107.094357pt;}
.y21e{bottom:109.174356pt;}
.ya5{bottom:109.654623pt;}
.y9a{bottom:109.974356pt;}
.y91{bottom:109.974623pt;}
.y213{bottom:114.399954pt;}
.y1f8{bottom:114.559954pt;}
.y214{bottom:115.039954pt;}
.y69{bottom:115.254621pt;}
.y206{bottom:115.359954pt;}
.y184{bottom:117.974619pt;}
.y21d{bottom:119.254619pt;}
.y3b{bottom:123.414351pt;}
.ya4{bottom:124.854617pt;}
.y13e{bottom:125.280000pt;}
.y99{bottom:126.774349pt;}
.y90{bottom:126.774616pt;}
.y13a{bottom:127.680000pt;}
.y20b{bottom:128.959948pt;}
.y1ec{bottom:129.759948pt;}
.y98{bottom:132.054347pt;}
.y68{bottom:132.214614pt;}
.y183{bottom:133.654613pt;}
.y134{bottom:134.560000pt;}
.y3a{bottom:136.374612pt;}
.y136{bottom:138.080000pt;}
.ya3{bottom:140.214611pt;}
.y8f{bottom:143.734609pt;}
.y122{bottom:144.800000pt;}
.y18a{bottom:146.560052pt;}
.y67{bottom:149.014607pt;}
.y182{bottom:149.174607pt;}
.y39{bottom:149.494607pt;}
.ya2{bottom:155.574604pt;}
.y106{bottom:156.800000pt;}
.y8e{bottom:160.534602pt;}
.y19c{bottom:160.800000pt;}
.y38{bottom:162.454602pt;}
.y181{bottom:164.854601pt;}
.y66{bottom:165.974600pt;}
.y1d6{bottom:168.000000pt;}
.ya1{bottom:170.934598pt;}
.y138{bottom:174.720000pt;}
.y19e{bottom:175.360000pt;}
.y37{bottom:175.414597pt;}
.y8d{bottom:177.494596pt;}
.y180{bottom:180.534594pt;}
.y65{bottom:182.774594pt;}
.ya0{bottom:186.294592pt;}
.y10e{bottom:187.200000pt;}
.y36{bottom:188.534591pt;}
.y12a{bottom:189.920000pt;}
.y8c{bottom:194.294589pt;}
.y17f{bottom:196.054588pt;}
.y64{bottom:199.734587pt;}
.y35{bottom:201.494586pt;}
.y11e{bottom:203.680000pt;}
.y18c{bottom:210.560158pt;}
.y8b{bottom:211.094582pt;}
.y17e{bottom:211.734582pt;}
.y34{bottom:214.614581pt;}
.y97{bottom:216.374580pt;}
.y63{bottom:216.534580pt;}
.y9f{bottom:216.854580pt;}
.y18b{bottom:217.120167pt;}
.y19f{bottom:223.520000pt;}
.y113{bottom:227.040000pt;}
.y17d{bottom:227.414576pt;}
.y33{bottom:227.574576pt;}
.y8a{bottom:228.054575pt;}
.y1d8{bottom:229.119908pt;}
.y9e{bottom:232.214574pt;}
.y62{bottom:233.334573pt;}
.y1f9{bottom:233.920000pt;}
.y1d9{bottom:235.840000pt;}
.y1db{bottom:238.880000pt;}
.y32{bottom:240.694570pt;}
.y17c{bottom:243.094569pt;}
.y1a1{bottom:244.480000pt;}
.y89{bottom:244.854569pt;}
.y9d{bottom:247.574568pt;}
.y61{bottom:250.294567pt;}
.y31{bottom:253.654565pt;}
.y17b{bottom:258.614563pt;}
.y88{bottom:261.814562pt;}
.y9c{bottom:262.934561pt;}
.y30{bottom:266.774560pt;}
.y60{bottom:267.094560pt;}
.yc9{bottom:272.000000pt;}
.y17a{bottom:274.294557pt;}
.y1a3{bottom:276.640000pt;}
.y1d5{bottom:276.960325pt;}
.y132{bottom:277.280000pt;}
.yc7{bottom:278.294555pt;}
.y87{bottom:278.614555pt;}
.y2f{bottom:279.734555pt;}
.y109{bottom:282.240000pt;}
.y96{bottom:283.894553pt;}
.y5f{bottom:284.054553pt;}
.y1dd{bottom:284.479886pt;}
.y11b{bottom:284.480000pt;}
.y1ed{bottom:287.199885pt;}
.y20c{bottom:287.200000pt;}
.y179{bottom:289.974551pt;}
.y2e{bottom:292.854550pt;}
.yc6{bottom:293.494549pt;}
.y86{bottom:295.414549pt;}
.y1a4{bottom:297.600000pt;}
.y1fa{bottom:299.520000pt;}
.y95{bottom:300.694546pt;}
.y5e{bottom:300.854546pt;}
.y178{bottom:305.494544pt;}
.y2d{bottom:305.814544pt;}
.yc5{bottom:308.854543pt;}
.y85{bottom:312.374542pt;}
.y5d{bottom:317.654540pt;}
.y2c{bottom:318.774539pt;}
.y18d{bottom:319.840278pt;}
.y1fb{bottom:320.479872pt;}
.y177{bottom:321.174538pt;}
.y1a6{bottom:321.920000pt;}
.yc4{bottom:324.214537pt;}
.y84{bottom:329.174535pt;}
.y20e{bottom:329.279868pt;}
.y2b{bottom:332.694534pt;}
.y5c{bottom:334.614533pt;}
.y1a8{bottom:336.480000pt;}
.y176{bottom:336.854532pt;}
.yc3{bottom:339.574531pt;}
.ycb{bottom:344.960000pt;}
.y83{bottom:346.134528pt;}
.y2a{bottom:349.494527pt;}
.yf4{bottom:349.920000pt;}
.y5b{bottom:351.414526pt;}
.y175{bottom:352.374526pt;}
.yc2{bottom:354.934525pt;}
.ye4{bottom:356.800000pt;}
.y190{bottom:362.240357pt;}
.y111{bottom:362.720000pt;}
.y82{bottom:362.934521pt;}
.y18e{bottom:363.360353pt;}
.y12e{bottom:365.280000pt;}
.y191{bottom:365.920364pt;}
.y18f{bottom:366.080359pt;}
.y29{bottom:366.454520pt;}
.y174{bottom:368.054519pt;}
.y5a{bottom:368.374519pt;}
.y192{bottom:368.800366pt;}
.yc1{bottom:370.294519pt;}
.y1aa{bottom:370.880000pt;}
.y1fc{bottom:372.480000pt;}
.y1ac{bottom:373.920000pt;}
.y119{bottom:375.680000pt;}
.y81{bottom:379.734515pt;}
.y12c{bottom:380.480000pt;}
.y28{bottom:382.454514pt;}
.y20f{bottom:383.040000pt;}
.y173{bottom:383.734513pt;}
.y59{bottom:385.174513pt;}
.yc0{bottom:385.494512pt;}
.y1fd{bottom:393.439843pt;}
.y207{bottom:393.440000pt;}
.ye6{bottom:394.880000pt;}
.y1ad{bottom:395.040000pt;}
.y27{bottom:395.574508pt;}
.y80{bottom:396.694508pt;}
.y1de{bottom:397.440000pt;}
.y172{bottom:398.614507pt;}
.ybf{bottom:400.854506pt;}
.y58{bottom:401.974506pt;}
.y26{bottom:408.534503pt;}
.y171{bottom:410.774502pt;}
.y7f{bottom:413.494501pt;}
.ybe{bottom:416.214500pt;}
.y57{bottom:418.934499pt;}
.y25{bottom:421.494498pt;}
.y1ae{bottom:421.600000pt;}
.y170{bottom:423.094497pt;}
.y1ee{bottom:423.200000pt;}
.y193{bottom:423.200492pt;}
.y10d{bottom:424.480000pt;}
.y1b0{bottom:424.640000pt;}
.y10b{bottom:426.400000pt;}
.y16f{bottom:427.094496pt;}
.y1e0{bottom:428.799828pt;}
.y7e{bottom:430.454494pt;}
.ybd{bottom:431.574494pt;}
.y130{bottom:433.600000pt;}
.y24{bottom:434.614493pt;}
.y16e{bottom:435.414493pt;}
.y1e1{bottom:435.520000pt;}
.y56{bottom:435.734492pt;}
.y1e2{bottom:438.560000pt;}
.y1ef{bottom:444.160000pt;}
.y1b1{bottom:445.760000pt;}
.y169{bottom:445.974400pt;}
.ybc{bottom:446.934488pt;}
.y7d{bottom:447.254488pt;}
.y23{bottom:447.574488pt;}
.y55{bottom:452.694486pt;}
.y16c{bottom:454.454485pt;}
.y13c{bottom:454.560000pt;}
.y167{bottom:460.534482pt;}
.y22{bottom:460.694482pt;}
.y120{bottom:462.080000pt;}
.ybb{bottom:462.294482pt;}
.y7c{bottom:464.054481pt;}
.y1b3{bottom:464.320000pt;}
.y16d{bottom:464.534481pt;}
.y16b{bottom:466.614480pt;}
.y54{bottom:469.494479pt;}
.y21c{bottom:470.134479pt;}
.y1e4{bottom:470.559812pt;}
.y168{bottom:472.854478pt;}
.y21{bottom:473.654477pt;}
.y1f0{bottom:474.719810pt;}
.y211{bottom:474.720000pt;}
.yba{bottom:477.494476pt;}
.y7b{bottom:481.014474pt;}
.y164{bottom:482.774400pt;}
.y1b5{bottom:485.280000pt;}
.y21a{bottom:485.494472pt;}
.y1fe{bottom:485.600000pt;}
.y53{bottom:486.294472pt;}
.y20{bottom:486.774472pt;}
.y21b{bottom:490.134471pt;}
.yb9{bottom:492.854470pt;}
.y124{bottom:494.880000pt;}
.y162{bottom:497.334468pt;}
.y7a{bottom:497.814468pt;}
.y1f{bottom:499.734467pt;}
.y219{bottom:500.854466pt;}
.y166{bottom:501.334466pt;}
.y52{bottom:503.254465pt;}
.y1ff{bottom:506.560000pt;}
.yb8{bottom:508.214463pt;}
.y163{bottom:509.654463pt;}
.y1b7{bottom:510.080000pt;}
.y1e{bottom:512.854462pt;}
.y79{bottom:514.774461pt;}
.y218{bottom:516.214460pt;}
.y1f1{bottom:517.440000pt;}
.y15d{bottom:519.574400pt;}
.y51{bottom:520.054459pt;}
.y117{bottom:522.720000pt;}
.yb7{bottom:523.574457pt;}
.y1b9{bottom:524.640000pt;}
.y160{bottom:525.494400pt;}
.y1d{bottom:525.814456pt;}
.y15f{bottom:528.054455pt;}
.y217{bottom:528.694455pt;}
.yf6{bottom:530.720000pt;}
.y78{bottom:531.574454pt;}
.y15c{bottom:534.134453pt;}
.y50{bottom:536.214452pt;}
.y94{bottom:536.854452pt;}
.y1c{bottom:538.774451pt;}
.yb6{bottom:538.934451pt;}
.y15a{bottom:544.214400pt;}
.y196{bottom:546.400755pt;}
.y77{bottom:548.534447pt;}
.y4f{bottom:549.174447pt;}
.y197{bottom:549.920767pt;}
.y195{bottom:550.240758pt;}
.y1b{bottom:551.894446pt;}
.y198{bottom:552.800769pt;}
.y194{bottom:554.080761pt;}
.yb5{bottom:554.134445pt;}
.ycd{bottom:554.400000pt;}
.y1ba{bottom:555.040000pt;}
.y108{bottom:556.479777pt;}
.yf8{bottom:556.480000pt;}
.y1ce{bottom:556.640000pt;}
.y1bb{bottom:558.080000pt;}
.y159{bottom:558.614443pt;}
.y4e{bottom:562.294442pt;}
.y1a{bottom:564.854441pt;}
.y76{bottom:565.334441pt;}
.y1f3{bottom:567.040000pt;}
.y156{bottom:568.694400pt;}
.yb4{bottom:569.494439pt;}
.y126{bottom:571.040000pt;}
.y4d{bottom:575.254437pt;}
.y158{bottom:577.014436pt;}
.y1cf{bottom:577.600000pt;}
.y19{bottom:577.974435pt;}
.y1bc{bottom:579.200000pt;}
.y1e5{bottom:581.600000pt;}
.y75{bottom:582.134434pt;}
.y155{bottom:583.254433pt;}
.yb3{bottom:584.854433pt;}
.yfa{bottom:585.760000pt;}
.ycf{bottom:587.680000pt;}
.y4c{bottom:588.374431pt;}
.y18{bottom:590.934430pt;}
.y153{bottom:593.174400pt;}
.y74{bottom:599.094427pt;}
.yb2{bottom:600.214427pt;}
.y4b{bottom:601.334426pt;}
.y17{bottom:604.054425pt;}
.y1be{bottom:604.640000pt;}
.y150{bottom:606.134400pt;}
.y199{bottom:606.240894pt;}
.y1c0{bottom:607.680000pt;}
.y4a{bottom:614.294421pt;}
.y14f{bottom:614.454421pt;}
.yd1{bottom:615.040000pt;}
.yb1{bottom:615.574420pt;}
.y73{bottom:615.894420pt;}
.y1f5{bottom:616.640000pt;}
.y16{bottom:617.014420pt;}
.y152{bottom:618.454419pt;}
.yfb{bottom:619.360000pt;}
.y1e7{bottom:623.999750pt;}
.y49{bottom:627.414416pt;}
.y201{bottom:628.000000pt;}
.y1c2{bottom:628.800000pt;}
.y15{bottom:630.134415pt;}
.yb0{bottom:630.934414pt;}
.y72{bottom:632.854414pt;}
.y128{bottom:634.080000pt;}
.y93{bottom:638.134411pt;}
.y48{bottom:640.374411pt;}
.y14{bottom:643.094409pt;}
.yaf{bottom:646.134408pt;}
.yfd{bottom:648.640000pt;}
.y202{bottom:648.960000pt;}
.y1c4{bottom:649.440000pt;}
.y14e{bottom:649.494407pt;}
.y71{bottom:649.654407pt;}
.yd3{bottom:652.960000pt;}
.y47{bottom:653.494405pt;}
.y13{bottom:656.214404pt;}
.y1f6{bottom:660.000000pt;}
.yae{bottom:661.494402pt;}
.y14d{bottom:664.854401pt;}
.y46{bottom:666.454400pt;}
.y12{bottom:669.174399pt;}
.y1c5{bottom:670.400000pt;}
.ye8{bottom:675.520000pt;}
.yad{bottom:676.854396pt;}
.y45{bottom:679.574395pt;}
.y14c{bottom:680.214395pt;}
.y11{bottom:682.134394pt;}
.y70{bottom:683.414393pt;}
.yd5{bottom:684.480000pt;}
.yff{bottom:687.520000pt;}
.yd7{bottom:690.400000pt;}
.yac{bottom:692.214390pt;}
.y44{bottom:692.534390pt;}
.y14a{bottom:693.334400pt;}
.yf{bottom:695.414389pt;}
.y10{bottom:696.534388pt;}
.yea{bottom:699.520000pt;}
.y6f{bottom:700.214387pt;}
.y43{bottom:705.654384pt;}
.y148{bottom:705.654400pt;}
.y1c7{bottom:707.040000pt;}
.yab{bottom:707.574384pt;}
.y8{bottom:708.054383pt;}
.y1e8{bottom:714.240000pt;}
.yec{bottom:716.800000pt;}
.y6e{bottom:717.174380pt;}
.y146{bottom:717.814400pt;}
.y42{bottom:718.614379pt;}
.y7{bottom:718.934379pt;}
.yd9{bottom:721.120000pt;}
.y1c9{bottom:721.600000pt;}
.yaa{bottom:722.934377pt;}
.y203{bottom:725.920000pt;}
.y208{bottom:727.360000pt;}
.y101{bottom:728.800000pt;}
.y144{bottom:730.134400pt;}
.y41{bottom:731.574374pt;}
.y6d{bottom:733.974373pt;}
.y6{bottom:734.774373pt;}
.ydb{bottom:736.480000pt;}
.ya9{bottom:738.134371pt;}
.y20a{bottom:738.880000pt;}
.y205{bottom:740.480000pt;}
.yee{bottom:740.800000pt;}
.y142{bottom:743.094400pt;}
.y40{bottom:744.694369pt;}
.y5{bottom:748.534367pt;}
.y6c{bottom:750.774366pt;}
.ya8{bottom:753.494365pt;}
.y19a{bottom:756.160687pt;}
.y3f{bottom:757.654364pt;}
.y1ca{bottom:758.240000pt;}
.y141{bottom:759.574363pt;}
.yf0{bottom:759.840000pt;}
.y4{bottom:760.374363pt;}
.ydd{bottom:760.640000pt;}
.y216{bottom:761.974362pt;}
.y1ea{bottom:765.600000pt;}
.y6b{bottom:767.734360pt;}
.ya7{bottom:768.854359pt;}
.y3e{bottom:770.774358pt;}
.y103{bottom:771.840000pt;}
.y1cc{bottom:772.800000pt;}
.y3{bottom:775.094357pt;}
.y140{bottom:777.334356pt;}
.ydf{bottom:783.200000pt;}
.yf1{bottom:783.840000pt;}
.y2{bottom:784.374353pt;}
.y3d{bottom:789.654351pt;}
.y1{bottom:801.654346pt;}
.y3c{bottom:806.774344pt;}
.h4a{height:3.040000pt;}
.h10{height:3.412499pt;}
.h3a{height:3.520000pt;}
.h48{height:4.640000pt;}
.h18{height:5.280000pt;}
.h1b{height:5.920000pt;}
.h2d{height:6.880000pt;}
.h4f{height:11.520000pt;}
.h40{height:11.840000pt;}
.h3f{height:12.000000pt;}
.h42{height:12.160000pt;}
.h9{height:14.530554pt;}
.h47{height:14.560000pt;}
.h1d{height:15.360000pt;}
.h4c{height:17.340153pt;}
.h3{height:18.230618pt;}
.h8{height:18.493433pt;}
.h4{height:19.165432pt;}
.h49{height:20.960000pt;}
.h4b{height:21.120000pt;}
.h1e{height:22.560000pt;}
.h50{height:23.777270pt;}
.h21{height:24.000000pt;}
.h4d{height:25.464310pt;}
.h13{height:25.538550pt;}
.h4e{height:25.946870pt;}
.h44{height:26.466549pt;}
.h1c{height:28.579676pt;}
.h24{height:29.280000pt;}
.ha{height:29.501428pt;}
.h20{height:29.973108pt;}
.hb{height:30.573428pt;}
.he{height:31.171828pt;}
.hd{height:31.262707pt;}
.hc{height:32.398707pt;}
.h6{height:33.023987pt;}
.h3e{height:33.280000pt;}
.h19{height:33.440000pt;}
.h5{height:34.223986pt;}
.h3c{height:35.520000pt;}
.h43{height:35.819673pt;}
.h15{height:36.546545pt;}
.h3b{height:36.800000pt;}
.h14{height:37.874545pt;}
.h1a{height:37.920000pt;}
.h7{height:39.243734pt;}
.h2{height:39.933734pt;}
.h12{height:40.391664pt;}
.h11{height:40.509424pt;}
.hf{height:41.981423pt;}
.h39{height:42.400000pt;}
.h16{height:44.031982pt;}
.h45{height:48.226541pt;}
.h1{height:50.785292pt;}
.h26{height:53.821418pt;}
.h2b{height:54.461418pt;}
.h41{height:55.533418pt;}
.h33{height:62.080000pt;}
.h25{height:64.640000pt;}
.h38{height:68.320000pt;}
.h46{height:69.346532pt;}
.h17{height:72.960000pt;}
.h2a{height:95.200000pt;}
.h35{height:97.760000pt;}
.h31{height:111.520000pt;}
.h2c{height:134.880000pt;}
.h28{height:144.160000pt;}
.h23{height:180.960000pt;}
.h27{height:190.080000pt;}
.h30{height:192.320000pt;}
.h22{height:257.760000pt;}
.h32{height:258.400000pt;}
.h37{height:273.120000pt;}
.h1f{height:274.080000pt;}
.h2f{height:283.520000pt;}
.h36{height:288.480000pt;}
.h29{height:332.320000pt;}
.h34{height:350.080000pt;}
.h3d{height:362.400000pt;}
.h2e{height:423.680000pt;}
.h0{height:865.333333pt;}
.w9{width:3.520000pt;}
.w15{width:4.480000pt;}
.w3{width:5.280000pt;}
.w17{width:6.560000pt;}
.w4{width:8.000000pt;}
.w18{width:10.400000pt;}
.w16{width:10.560000pt;}
.w2{width:11.840000pt;}
.w1{width:12.000000pt;}
.w12{width:16.640000pt;}
.w14{width:18.400000pt;}
.w7{width:24.000000pt;}
.we{width:25.120000pt;}
.w10{width:38.880000pt;}
.w13{width:40.320000pt;}
.w11{width:45.280000pt;}
.wd{width:46.240000pt;}
.wc{width:46.880000pt;}
.wf{width:49.440000pt;}
.w8{width:49.920000pt;}
.wa{width:60.000000pt;}
.w6{width:62.720000pt;}
.wb{width:77.760000pt;}
.w5{width:96.480000pt;}
.w0{width:612.000000pt;}
.x0{left:0.000000pt;}
.x89{left:5.279891pt;}
.x83{left:8.479921pt;}
.x2a{left:9.759930pt;}
.x8{left:82.879967pt;}
.x7d{left:87.519965pt;}
.x70{left:90.079964pt;}
.x49{left:95.359962pt;}
.x24{left:96.479961pt;}
.xc{left:101.760128pt;}
.x76{left:102.720000pt;}
.x7c{left:108.480690pt;}
.x7e{left:110.719956pt;}
.x25{left:112.319955pt;}
.x4a{left:117.600000pt;}
.x7f{left:122.879951pt;}
.x26{left:127.679949pt;}
.x80{left:134.399946pt;}
.x62{left:139.360000pt;}
.x4b{left:140.319944pt;}
.x27{left:142.879943pt;}
.x1e{left:145.759942pt;}
.x1f{left:150.399940pt;}
.x4c{left:152.639939pt;}
.x4d{left:155.040000pt;}
.x28{left:160.639936pt;}
.x1a{left:161.919935pt;}
.x29{left:165.120000pt;}
.x1b{left:166.559933pt;}
.x4f{left:167.520000pt;}
.x81{left:171.839931pt;}
.x7b{left:173.280000pt;}
.x4e{left:177.119929pt;}
.x4{left:188.473258pt;}
.x50{left:189.439924pt;}
.x22{left:190.559924pt;}
.x51{left:191.840000pt;}
.x6e{left:192.800000pt;}
.x52{left:195.519922pt;}
.x23{left:197.599921pt;}
.x82{left:198.719921pt;}
.x85{left:200.960000pt;}
.x2b{left:202.560000pt;}
.x77{left:204.320000pt;}
.xa{left:206.079918pt;}
.x84{left:209.439916pt;}
.x5{left:212.159915pt;}
.x53{left:213.919914pt;}
.x12{left:215.199914pt;}
.x54{left:216.480000pt;}
.x13{left:219.839912pt;}
.x87{left:222.400000pt;}
.x86{left:230.879908pt;}
.x69{left:235.680000pt;}
.x2c{left:236.959905pt;}
.x55{left:238.399905pt;}
.x2d{left:239.360000pt;}
.x56{left:240.960000pt;}
.x2e{left:243.039903pt;}
.x16{left:244.319902pt;}
.xd{left:246.079902pt;}
.x1{left:247.199901pt;}
.x17{left:248.959900pt;}
.xe{left:250.719900pt;}
.x2f{left:251.680000pt;}
.x2{left:252.639899pt;}
.xf{left:254.399898pt;}
.x6{left:258.879276pt;}
.x30{left:264.000000pt;}
.x58{left:265.440000pt;}
.x88{left:266.720000pt;}
.x6f{left:270.560000pt;}
.x57{left:275.199890pt;}
.x8a{left:277.440000pt;}
.x14{left:282.399887pt;}
.x31{left:285.919886pt;}
.x15{left:287.039885pt;}
.x32{left:288.480000pt;}
.x59{left:290.080000pt;}
.x33{left:292.159883pt;}
.x5a{left:293.599883pt;}
.x8b{left:296.639881pt;}
.xb{left:297.919881pt;}
.x8d{left:298.880000pt;}
.x34{left:300.800000pt;}
.x6d{left:302.240000pt;}
.x3{left:305.919878pt;}
.x8c{left:307.359877pt;}
.x8e{left:309.600000pt;}
.x9{left:310.559876pt;}
.x5b{left:311.999875pt;}
.x5c{left:314.560000pt;}
.x5d{left:318.239873pt;}
.x8f{left:320.320000pt;}
.x35{left:322.719871pt;}
.x36{left:325.280000pt;}
.x5e{left:326.880000pt;}
.x37{left:328.959868pt;}
.x91{left:331.040000pt;}
.x96{left:335.359866pt;}
.x38{left:337.600000pt;}
.x90{left:339.519864pt;}
.x5f{left:348.799860pt;}
.x39{left:349.760000pt;}
.x60{left:351.360000pt;}
.x7{left:352.799859pt;}
.x61{left:355.039858pt;}
.x63{left:357.600000pt;}
.x6a{left:361.600000pt;}
.x92{left:364.639854pt;}
.x64{left:365.600000pt;}
.x3a{left:371.839851pt;}
.x3b{left:374.400000pt;}
.x78{left:375.360000pt;}
.x93{left:376.959849pt;}
.x3c{left:377.919849pt;}
.x71{left:382.239847pt;}
.x94{left:393.119843pt;}
.x3d{left:396.319841pt;}
.x3e{left:398.880000pt;}
.x3f{left:402.559839pt;}
.x65{left:404.960000pt;}
.x6b{left:408.960000pt;}
.x40{left:411.200000pt;}
.x66{left:412.960000pt;}
.x10{left:420.639832pt;}
.x1c{left:423.519831pt;}
.x11{left:425.279830pt;}
.x1d{left:428.159829pt;}
.x18{left:432.479827pt;}
.x41{left:433.759826pt;}
.x79{left:435.040000pt;}
.x19{left:437.119825pt;}
.x20{left:438.559825pt;}
.x21{left:443.199823pt;}
.x42{left:446.079822pt;}
.x72{left:447.039821pt;}
.x73{left:450.399820pt;}
.x67{left:452.160000pt;}
.x6c{left:456.160000pt;}
.x43{left:458.399817pt;}
.x68{left:460.160000pt;}
.x44{left:470.559812pt;}
.x74{left:475.520000pt;}
.x97{left:479.839647pt;}
.x45{left:482.879807pt;}
.x7a{left:490.240000pt;}
.x46{left:495.199802pt;}
.x47{left:507.359797pt;}
.x48{left:519.679792pt;}
.x75{left:521.760000pt;}
.x95{left:527.839194pt;}
}




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