
    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_fb9811fc5c6a3a2545ea3e85.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.870605;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_74f7f461054dcb6700ad0e8e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f01f09bdae289222916b4f74.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c49c1ae83030e0d5e6e62599.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_892f5bb9422a3f3176b8598d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f178dc766064c7d3e5843451.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.726562;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_d493ce1695f95bfef25ff3a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.793457;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_88cc3696302174f91bd9c4a6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.961426;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d08ee8aa42e4ebd2c0812864.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.667969;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_c3a9f2ce7d9fc758e4a6b438.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.750000;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_e4cb18e594bf3eb639647455.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.936035;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_a26b9eac6fcf1e78f8b42185.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.973145;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_543ccaf86430133e58fe5124.woff2')format("woff");}.fff{font-family:fff;line-height:0.978027;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_894816789ab1cf3b42bb9602.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.973145;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_c443c587a4181de71d059bbc.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.916992;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_375a808e2889492ce533b46e.woff2')format("woff");}.ff12{font-family:ff12;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;}
@font-face{font-family:ff13;src:url('chunks/assets/font_4240ab6482dfb8de57f0bb81.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_57903f39ef9cd60e9bc4657a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.922363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_59f9ede4ac33c972989bdfaf.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.873535;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_c6cf3d211e5a45c973d6da2d.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_8fddcbd7a9f6c254bb850ba1.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_a16c3de2c8492a811145c851.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.746094;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;}
.m3{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.ma{transform:matrix(0.253320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253320,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.259700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259700,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-23.759990px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.999993px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010553px;}
.ls5{letter-spacing:0.030960px;}
.ls2{letter-spacing:0.073080px;}
.lsb{letter-spacing:0.231813px;}
.ls1{letter-spacing:0.340926px;}
.ls4{letter-spacing:0.354780px;}
.ls6{letter-spacing:0.751380px;}
.ls9{letter-spacing:28.743589px;}
.ls8{letter-spacing:28.769928px;}
.ls7{letter-spacing:29.490348px;}
.lsa{letter-spacing:93.580763px;}
.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;}
}
.ws2{word-spacing:-19.151992px;}
.ws0{word-spacing:-18.532793px;}
.ws1{word-spacing:-17.999993px;}
.ws4{word-spacing:-17.639993px;}
.ws9{word-spacing:-13.947807px;}
.ws8{word-spacing:-13.715995px;}
.ws6{word-spacing:-13.013995px;}
.ws3{word-spacing:-10.342076px;}
.ws7{word-spacing:-8.675997px;}
.ws5{word-spacing:0.000000px;}
._7{margin-left:-937.399989px;}
._a{margin-left:-468.216941px;}
._3{margin-left:-277.545825px;}
._9{margin-left:-229.327439px;}
._6{margin-left:-219.254252px;}
._1{margin-left:-90.563177px;}
._8{margin-left:-52.559242px;}
._0{margin-left:-25.559162px;}
._5{margin-left:-16.559129px;}
._d{margin-left:-3.020032px;}
._2{margin-left:-1.684403px;}
._4{width:1.236066px;}
._f{width:2.500167px;}
._1c{width:3.701042px;}
._10{width:5.594279px;}
._e{width:6.871694px;}
._11{width:7.897812px;}
._b{width:9.146219px;}
._c{width:10.303755px;}
._15{width:11.537639px;}
._48{width:12.564312px;}
._20{width:14.510933px;}
._1e{width:15.711123px;}
._24{width:16.899157px;}
._27{width:18.506338px;}
._38{width:19.557721px;}
._13{width:20.592697px;}
._12{width:21.730592px;}
._18{width:23.207403px;}
._2a{width:25.149747px;}
._22{width:26.274656px;}
._1d{width:27.369786px;}
._17{width:28.660793px;}
._19{width:30.598188px;}
._1a{width:31.622152px;}
._14{width:32.983482px;}
._23{width:34.824336px;}
._34{width:36.848786px;}
._2b{width:38.335937px;}
._33{width:39.344964px;}
._31{width:40.638587px;}
._32{width:41.756765px;}
._28{width:43.038676px;}
._2c{width:44.397543px;}
._16{width:46.413350px;}
._21{width:47.915361px;}
._46{width:49.310503px;}
._1b{width:50.328580px;}
._2f{width:52.375129px;}
._42{width:53.651643px;}
._49{width:56.682831px;}
._30{width:58.126818px;}
._47{width:59.800100px;}
._35{width:60.924373px;}
._36{width:62.894444px;}
._37{width:64.212681px;}
._40{width:65.493095px;}
._1f{width:66.985077px;}
._4d{width:69.541715px;}
._4a{width:71.028944px;}
._4b{width:72.317064px;}
._43{width:73.586650px;}
._25{width:77.989485px;}
._26{width:79.310074px;}
._4c{width:84.035941px;}
._3a{width:87.008402px;}
._39{width:88.133344px;}
._44{width:90.890029px;}
._45{width:91.966251px;}
._29{width:93.632974px;}
._2d{width:101.350814px;}
._3e{width:110.711911px;}
._3c{width:128.941387px;}
._3d{width:130.042487px;}
._41{width:190.073271px;}
._2e{width:196.090990px;}
._3f{width:203.098239px;}
._3b{width:625.085209px;}
.fc4{color:rgb(0,101,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,130,59);}
.fc0{color:rgb(51,153,51);}
.fs3{font-size:17.999993px;}
.fs7{font-size:33.119987px;}
.fsb{font-size:35.999986px;}
.fs6{font-size:38.879984px;}
.fs5{font-size:48.239981px;}
.fs9{font-size:53.999978px;}
.fsa{font-size:59.759976px;}
.fs8{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fsc{font-size:74.879970px;}
.fs0{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs2{font-size:107.999957px;}
.y43{bottom:-5.761018px;}
.y0{bottom:0.000000px;}
.yf7{bottom:3.059021px;}
.yfb{bottom:3.059027px;}
.yfd{bottom:3.059034px;}
.yff{bottom:3.059040px;}
.y101{bottom:3.059046px;}
.y104{bottom:3.059058px;}
.y106{bottom:3.059064px;}
.y108{bottom:3.059070px;}
.y10a{bottom:3.059077px;}
.y10c{bottom:3.059083px;}
.y166{bottom:3.059089px;}
.y163{bottom:3.059092px;}
.y160{bottom:3.059095px;}
.y169{bottom:3.059108px;}
.y16b{bottom:3.059114px;}
.y16d{bottom:3.059120px;}
.y16f{bottom:3.059126px;}
.y23{bottom:3.059142px;}
.yf{bottom:3.239038px;}
.y1e{bottom:3.599125px;}
.y21{bottom:3.599129px;}
.y6{bottom:4.138948px;}
.y2{bottom:4.678926px;}
.y11{bottom:4.859046px;}
.y19{bottom:4.859076px;}
.y3e{bottom:6.478948px;}
.y85{bottom:58.440277px;}
.y4{bottom:58.620277px;}
.y1ab{bottom:111.720255px;}
.yf4{bottom:112.439955px;}
.ye0{bottom:112.619955px;}
.y206{bottom:112.799955px;}
.y70{bottom:113.339955px;}
.y156{bottom:113.879954px;}
.y82{bottom:114.059954px;}
.yaf{bottom:114.419954px;}
.y131{bottom:114.420254px;}
.yd0{bottom:114.779954px;}
.y186{bottom:114.959954px;}
.y130{bottom:115.139954px;}
.y132{bottom:115.140254px;}
.y133{bottom:118.920252px;}
.y3c{bottom:132.059947px;}
.y205{bottom:134.219946px;}
.y1aa{bottom:134.400246px;}
.ycf{bottom:134.759946px;}
.yf3{bottom:135.479946px;}
.ydf{bottom:135.659946px;}
.y6f{bottom:136.559945px;}
.y81{bottom:137.099945px;}
.y1d6{bottom:137.459945px;}
.yae{bottom:137.819945px;}
.y185{bottom:137.999945px;}
.y12f{bottom:138.359945px;}
.y3b{bottom:155.099938px;}
.y204{bottom:155.459938px;}
.y1a9{bottom:157.079937px;}
.yf2{bottom:158.339937px;}
.yde{bottom:158.699937px;}
.y155{bottom:159.239936px;}
.y6e{bottom:159.599936px;}
.y121{bottom:159.959936px;}
.y80{bottom:160.139936px;}
.y1d5{bottom:160.499936px;}
.yad{bottom:161.039936px;}
.y12d{bottom:162.839935px;}
.y12c{bottom:163.559935px;}
.y12e{bottom:167.339933px;}
.yf1{bottom:173.279931px;}
.y203{bottom:176.879929px;}
.y3a{bottom:178.139929px;}
.y1a8{bottom:179.759928px;}
.ydd{bottom:181.559927px;}
.y154{bottom:181.919927px;}
.y6d{bottom:182.819927px;}
.yed{bottom:182.999927px;}
.y7f{bottom:183.179927px;}
.y1d4{bottom:183.539927px;}
.y184{bottom:183.899926px;}
.yac{bottom:184.439926px;}
.y12a{bottom:189.119924px;}
.y129{bottom:189.839924px;}
.y12b{bottom:193.619923px;}
.yf0{bottom:195.059922px;}
.y120{bottom:198.299921px;}
.y39{bottom:201.179920px;}
.ydc{bottom:204.599918px;}
.y6c{bottom:205.859918px;}
.yec{bottom:206.039918px;}
.y1d3{bottom:206.579917px;}
.y183{bottom:206.939917px;}
.y7e{bottom:207.119917px;}
.yab{bottom:207.839917px;}
.y127{bottom:214.319914px;}
.yef{bottom:214.859914px;}
.y1a7{bottom:217.739913px;}
.y128{bottom:218.099913px;}
.y202{bottom:219.539912px;}
.y11f{bottom:221.339911px;}
.y38{bottom:224.219910px;}
.y153{bottom:227.279909px;}
.ydb{bottom:227.639909px;}
.y6b{bottom:229.079908px;}
.y1d2{bottom:229.439908px;}
.y126{bottom:229.619908px;}
.y182{bottom:229.979908px;}
.yaa{bottom:231.059908px;}
.y7d{bottom:231.599907px;}
.y1a6{bottom:240.419904px;}
.y201{bottom:240.959904px;}
.y11e{bottom:241.319903px;}
.y37{bottom:247.259901px;}
.y152{bottom:249.959900px;}
.yda{bottom:250.679900px;}
.y6a{bottom:252.119899px;}
.y1d1{bottom:252.479899px;}
.y125{bottom:252.839899px;}
.y181{bottom:253.019899px;}
.ya9{bottom:254.459898px;}
.y7c{bottom:254.819898px;}
.y200{bottom:256.619897px;}
.y1a5{bottom:263.099895px;}
.y36{bottom:270.119892px;}
.y151{bottom:272.639891px;}
.yd9{bottom:273.719891px;}
.yeb{bottom:275.159890px;}
.y69{bottom:275.339890px;}
.y1d0{bottom:275.519890px;}
.y124{bottom:275.879890px;}
.y180{bottom:276.059890px;}
.ya8{bottom:277.679889px;}
.y7b{bottom:277.859889px;}
.y1ff{bottom:279.299888px;}
.y1a4{bottom:285.779886px;}
.y35{bottom:293.159883px;}
.yea{bottom:294.959882px;}
.y150{bottom:295.319882px;}
.y123{bottom:295.679882px;}
.yd8{bottom:296.579881px;}
.y68{bottom:298.379881px;}
.y1cf{bottom:298.559881px;}
.y17f{bottom:298.919880px;}
.y1fe{bottom:300.719880px;}
.y7a{bottom:301.079880px;}
.y1a3{bottom:308.459877px;}
.y34{bottom:309.359876px;}
.y33{bottom:313.139875px;}
.y14f{bottom:317.999873px;}
.yd7{bottom:319.619872px;}
.y1ce{bottom:320.159872px;}
.y67{bottom:321.599871px;}
.y17e{bottom:321.959871px;}
.y79{bottom:324.119870px;}
.ya7{bottom:324.479870px;}
.y1a2{bottom:331.139868px;}
.y32{bottom:333.659867px;}
.y14e{bottom:340.679864px;}
.yd6{bottom:342.659863px;}
.y1cd{bottom:343.379863px;}
.y66{bottom:344.819862px;}
.y17d{bottom:344.999862px;}
.y1a1{bottom:346.619861px;}
.y78{bottom:347.339861px;}
.ya6{bottom:347.699861px;}
.y31{bottom:356.699857px;}
.y14d{bottom:363.359855px;}
.y1fd{bottom:364.619854px;}
.yd5{bottom:365.699854px;}
.y1cc{bottom:366.419853px;}
.y65{bottom:367.859853px;}
.y17c{bottom:368.039853px;}
.y1a0{bottom:369.299852px;}
.y77{bottom:370.379852px;}
.ya5{bottom:371.099852px;}
.y30{bottom:379.739848px;}
.y1fc{bottom:380.099848px;}
.y14c{bottom:386.039846px;}
.yd4{bottom:388.739845px;}
.y1cb{bottom:389.279844px;}
.y64{bottom:391.079844px;}
.y19f{bottom:391.979843px;}
.y76{bottom:393.599843px;}
.ya4{bottom:394.319842px;}
.yce{bottom:395.939842px;}
.y1fb{bottom:401.339839px;}
.y2f{bottom:402.599839px;}
.y11d{bottom:407.639837px;}
.y14b{bottom:408.719837px;}
.yd3{bottom:411.779835px;}
.y1ca{bottom:412.319835px;}
.y17b{bottom:414.119834px;}
.y19e{bottom:414.659834px;}
.y63{bottom:415.379834px;}
.y75{bottom:416.639833px;}
.ya3{bottom:418.259833px;}
.ycd{bottom:418.979832px;}
.y1fa{bottom:422.759831px;}
.y2e{bottom:424.919830px;}
.y2d{bottom:425.639830px;}
.y11c{bottom:430.679828px;}
.y14a{bottom:431.399827px;}
.yd2{bottom:434.639826px;}
.y1c9{bottom:435.359826px;}
.y17a{bottom:436.979825px;}
.y19d{bottom:437.339825px;}
.y62{bottom:439.859824px;}
.ycc{bottom:442.019823px;}
.ya2{bottom:443.099823px;}
.y1f9{bottom:443.999822px;}
.y2c{bottom:448.679821px;}
.y11b{bottom:453.719819px;}
.y149{bottom:454.079818px;}
.yd1{bottom:454.439818px;}
.y1c8{bottom:458.399817px;}
.y1f8{bottom:459.479816px;}
.y179{bottom:460.019816px;}
.y61{bottom:462.899815px;}
.ycb{bottom:464.879814px;}
.ya1{bottom:466.499813px;}
.y2b{bottom:471.719811px;}
.y19c{bottom:475.859810px;}
.y11a{bottom:476.579809px;}
.y148{bottom:476.759809px;}
.y1c7{bottom:479.999808px;}
.y1f7{bottom:480.719808px;}
.y178{bottom:483.059807px;}
.y60{bottom:486.119806px;}
.yca{bottom:487.919805px;}
.ya0{bottom:489.539804px;}
.y2a{bottom:494.759802px;}
.y119{bottom:499.619800px;}
.y19b{bottom:499.799800px;}
.y1c6{bottom:501.779799px;}
.y1f6{bottom:502.139799px;}
.y177{bottom:506.099798px;}
.y5f{bottom:509.339796px;}
.yc9{bottom:510.959796px;}
.y122{bottom:512.399795px;}
.y9f{bottom:512.579795px;}
.y29{bottom:517.619793px;}
.y147{bottom:522.299791px;}
.y19a{bottom:522.479791px;}
.y118{bottom:522.659791px;}
.y1f5{bottom:523.379791px;}
.y1c5{bottom:523.559791px;}
.y176{bottom:529.139788px;}
.y5e{bottom:532.379787px;}
.yc8{bottom:533.999786px;}
.y9e{bottom:535.619786px;}
.y28{bottom:540.659784px;}
.y1c4{bottom:544.619782px;}
.y1f4{bottom:544.799782px;}
.y146{bottom:544.979782px;}
.y199{bottom:545.159782px;}
.y1c3{bottom:545.339782px;}
.y117{bottom:545.699782px;}
.y175{bottom:552.179779px;}
.y5d{bottom:555.599778px;}
.yc7{bottom:557.039777px;}
.y9d{bottom:558.659777px;}
.ye9{bottom:560.639776px;}
.y27{bottom:563.699775px;}
.y1f3{bottom:566.219774px;}
.y1c2{bottom:567.119773px;}
.y145{bottom:567.659773px;}
.y198{bottom:567.839773px;}
.y116{bottom:568.739773px;}
.y174{bottom:575.039770px;}
.y5c{bottom:578.639769px;}
.yc6{bottom:580.079768px;}
.y9c{bottom:581.519767px;}
.ye8{bottom:583.679767px;}
.y26{bottom:586.739765px;}
.y1f2{bottom:587.459765px;}
.y1c1{bottom:588.899764px;}
.y144{bottom:590.339764px;}
.y115{bottom:591.779763px;}
.y173{bottom:598.079761px;}
.y5b{bottom:601.859759px;}
.y1f1{bottom:602.759759px;}
.yc5{bottom:602.939759px;}
.y9b{bottom:604.559758px;}
.ye7{bottom:606.719757px;}
.y197{bottom:609.239756px;}
.y25{bottom:610.679756px;}
.y143{bottom:613.019755px;}
.y114{bottom:614.639754px;}
.y172{bottom:621.119752px;}
.y1f0{bottom:624.179750px;}
.y5a{bottom:624.899750px;}
.yc4{bottom:625.979750px;}
.y9a{bottom:627.599749px;}
.ye6{bottom:629.579748px;}
.y196{bottom:631.919747px;}
.y1c0{bottom:632.459747px;}
.y142{bottom:636.239746px;}
.y113{bottom:637.679745px;}
.y22{bottom:641.280600px;}
.y171{bottom:644.159742px;}
.y24{bottom:644.339742px;}
.y1ef{bottom:645.599742px;}
.y59{bottom:648.119741px;}
.yc3{bottom:649.019740px;}
.y99{bottom:650.639740px;}
.y141{bottom:651.359739px;}
.ye5{bottom:652.619739px;}
.yee{bottom:654.419738px;}
.y195{bottom:654.599738px;}
.y112{bottom:660.719736px;}
.y1ee{bottom:666.839733px;}
.y170{bottom:667.199733px;}
.y58{bottom:671.159732px;}
.yc2{bottom:672.059731px;}
.y98{bottom:673.679731px;}
.y140{bottom:674.579730px;}
.y20{bottom:674.760600px;}
.ye4{bottom:675.659730px;}
.y1bf{bottom:676.199730px;}
.y194{bottom:677.279729px;}
.y1f{bottom:678.359729px;}
.y16e{bottom:681.420600px;}
.y111{bottom:683.759726px;}
.y1d{bottom:683.760600px;}
.y1ed{bottom:688.259725px;}
.y57{bottom:694.379722px;}
.yc1{bottom:695.099722px;}
.y97{bottom:696.719721px;}
.y16c{bottom:696.900600px;}
.y13f{bottom:697.439721px;}
.y1be{bottom:697.979721px;}
.ye3{bottom:698.699721px;}
.y193{bottom:699.239720px;}
.y192{bottom:699.959720px;}
.y1ec{bottom:703.559719px;}
.y110{bottom:706.799717px;}
.y16a{bottom:712.200600px;}
.y56{bottom:717.419713px;}
.y1c{bottom:717.599713px;}
.yc0{bottom:718.139713px;}
.y96{bottom:719.579712px;}
.y1bd{bottom:719.759712px;}
.y13e{bottom:720.479712px;}
.ye2{bottom:721.739711px;}
.y191{bottom:722.639711px;}
.y1eb{bottom:724.979710px;}
.y168{bottom:727.500600px;}
.y10f{bottom:729.839708px;}
.y55{bottom:740.639704px;}
.ybf{bottom:740.999704px;}
.ye1{bottom:741.539703px;}
.y95{bottom:742.619703px;}
.y13c{bottom:742.799703px;}
.y13d{bottom:743.519703px;}
.y13b{bottom:743.520003px;}
.y190{bottom:745.319702px;}
.y1ea{bottom:746.219702px;}
.y167{bottom:746.579701px;}
.y10e{bottom:752.699699px;}
.y1b{bottom:754.139698px;}
.y164{bottom:754.319698px;}
.y15f{bottom:759.000600px;}
.y15e{bottom:762.059695px;}
.y1bc{bottom:763.319695px;}
.y54{bottom:763.679695px;}
.ybe{bottom:764.039694px;}
.y94{bottom:765.659694px;}
.y215{bottom:765.839694px;}
.y13a{bottom:766.559993px;}
.y162{bottom:766.560600px;}
.y1e9{bottom:767.639693px;}
.y18f{bottom:767.999693px;}
.y165{bottom:774.300600px;}
.y10d{bottom:775.739690px;}
.y15d{bottom:777.359689px;}
.y1a{bottom:778.799688px;}
.y1e8{bottom:782.939687px;}
.y1bb{bottom:785.099686px;}
.y53{bottom:786.899685px;}
.ybd{bottom:787.079685px;}
.y93{bottom:788.699685px;}
.y214{bottom:788.879684px;}
.y139{bottom:789.599984px;}
.y161{bottom:789.600600px;}
.y10b{bottom:790.140600px;}
.y18e{bottom:790.679684px;}
.y1e7{bottom:804.359678px;}
.y18{bottom:804.540600px;}
.y109{bottom:805.440600px;}
.y1ba{bottom:806.879677px;}
.y52{bottom:810.119676px;}
.y92{bottom:811.739675px;}
.y213{bottom:811.919675px;}
.y138{bottom:812.639975px;}
.y18d{bottom:813.359675px;}
.y17{bottom:815.339674px;}
.y15c{bottom:818.039673px;}
.y107{bottom:820.740600px;}
.y1e6{bottom:825.599670px;}
.y16{bottom:827.219669px;}
.y137{bottom:827.759969px;}
.y1b9{bottom:828.659669px;}
.y51{bottom:833.159667px;}
.y91{bottom:834.779666px;}
.y212{bottom:834.959666px;}
.y18c{bottom:836.039666px;}
.y105{bottom:836.220600px;}
.y15b{bottom:841.079664px;}
.y1e5{bottom:847.019661px;}
.y1b8{bottom:850.439660px;}
.y136{bottom:850.979960px;}
.y103{bottom:851.520600px;}
.y14{bottom:854.759658px;}
.ybc{bottom:856.199658px;}
.y50{bottom:856.379657px;}
.y90{bottom:857.639657px;}
.y211{bottom:857.819657px;}
.y18b{bottom:858.899656px;}
.y15{bottom:859.979656px;}
.y15a{bottom:864.119654px;}
.y1e4{bottom:868.259653px;}
.y102{bottom:869.879652px;}
.y1b7{bottom:872.219651px;}
.y135{bottom:873.839950px;}
.ybb{bottom:879.059648px;}
.y4f{bottom:879.419648px;}
.y10{bottom:880.500600px;}
.y8f{bottom:880.679648px;}
.y210{bottom:880.859648px;}
.y18a{bottom:881.579647px;}
.y100{bottom:882.120600px;}
.y159{bottom:887.159645px;}
.y1e3{bottom:889.679644px;}
.y13{bottom:889.859644px;}
.y12{bottom:890.579644px;}
.y134{bottom:893.819942px;}
.y1b6{bottom:893.999642px;}
.yfe{bottom:897.420600px;}
.ye{bottom:900.840600px;}
.yba{bottom:902.099639px;}
.y4e{bottom:902.639639px;}
.y8e{bottom:903.719639px;}
.y20f{bottom:903.899638px;}
.y189{bottom:904.259638px;}
.y1e2{bottom:904.979638px;}
.y158{bottom:910.199636px;}
.yfc{bottom:912.900600px;}
.y1b5{bottom:915.959634px;}
.yb9{bottom:925.139630px;}
.y4d{bottom:925.679630px;}
.y1e1{bottom:926.399629px;}
.y8d{bottom:926.759629px;}
.y188{bottom:926.939629px;}
.yfa{bottom:928.920600px;}
.y157{bottom:929.999628px;}
.yf8{bottom:931.979627px;}
.yd{bottom:934.319626px;}
.yf9{bottom:935.759626px;}
.y1b4{bottom:937.739625px;}
.yf5{bottom:939.719624px;}
.yf6{bottom:944.220600px;}
.y1e0{bottom:947.639621px;}
.yb8{bottom:948.179621px;}
.y4c{bottom:948.899620px;}
.y187{bottom:949.619620px;}
.y8c{bottom:949.799620px;}
.y20e{bottom:949.979620px;}
.y1b3{bottom:959.519616px;}
.y1df{bottom:969.059612px;}
.yb7{bottom:971.219612px;}
.y4b{bottom:971.939611px;}
.y8b{bottom:972.839611px;}
.y20d{bottom:973.019611px;}
.yc{bottom:974.999610px;}
.y1b2{bottom:981.299607px;}
.y1de{bottom:989.759604px;}
.y1dd{bottom:990.479604px;}
.yb6{bottom:994.079602px;}
.y74{bottom:994.979602px;}
.y4a{bottom:995.159602px;}
.y8a{bottom:995.699602px;}
.y20c{bottom:995.879602px;}
.yb{bottom:999.299600px;}
.y1b1{bottom:1003.079599px;}
.y1dc{bottom:1011.719595px;}
.yb5{bottom:1017.119593px;}
.ya{bottom:1017.659593px;}
.y9{bottom:1018.019593px;}
.y49{bottom:1018.199593px;}
.y89{bottom:1018.739593px;}
.y20b{bottom:1018.919592px;}
.y1b0{bottom:1024.859590px;}
.y1db{bottom:1033.139587px;}
.yb4{bottom:1040.339584px;}
.y73{bottom:1041.239584px;}
.y48{bottom:1041.419583px;}
.y88{bottom:1041.779583px;}
.y20a{bottom:1041.959583px;}
.y1af{bottom:1046.639581px;}
.y1da{bottom:1048.439581px;}
.y42{bottom:1051.500600px;}
.yb3{bottom:1063.739575px;}
.y47{bottom:1064.459574px;}
.y87{bottom:1064.819574px;}
.y209{bottom:1064.999574px;}
.y41{bottom:1066.979573px;}
.y1ae{bottom:1068.419573px;}
.y1d9{bottom:1069.859572px;}
.yb2{bottom:1086.959565px;}
.y40{bottom:1087.319565px;}
.y72{bottom:1087.499565px;}
.y46{bottom:1087.679565px;}
.y86{bottom:1087.859565px;}
.y208{bottom:1088.039565px;}
.y1ad{bottom:1090.199564px;}
.y1d8{bottom:1091.099564px;}
.y3f{bottom:1107.659557px;}
.yb1{bottom:1110.359556px;}
.y45{bottom:1110.719556px;}
.y207{bottom:1110.899556px;}
.y1ac{bottom:1111.979555px;}
.y1d7{bottom:1112.519555px;}
.y8{bottom:1118.099553px;}
.y7{bottom:1118.459553px;}
.y3d{bottom:1122.600600px;}
.y5{bottom:1125.480600px;}
.yb0{bottom:1133.579547px;}
.y71{bottom:1133.759546px;}
.y44{bottom:1133.939546px;}
.y84{bottom:1150.859540px;}
.y3{bottom:1151.039540px;}
.y83{bottom:1178.940600px;}
.y1{bottom:1179.120600px;}
.h26{height:12.060000px;}
.hb{height:13.500000px;}
.h1b{height:15.120000px;}
.h2b{height:15.300000px;}
.h2c{height:15.480000px;}
.h17{height:18.720000px;}
.h9{height:18.773430px;}
.h1a{height:18.900000px;}
.hd{height:20.160000px;}
.h13{height:20.340000px;}
.h5{height:20.520000px;}
.h12{height:22.187804px;}
.h23{height:23.760000px;}
.h15{height:24.474365px;}
.h1{height:24.480000px;}
.h20{height:25.913662px;}
.hf{height:27.071708px;}
.h22{height:27.228505px;}
.h1f{height:27.404286px;}
.h10{height:32.152136px;}
.hc{height:33.588971px;}
.h11{height:36.179986px;}
.h2a{height:36.721743px;}
.h1c{height:40.842757px;}
.h1d{height:41.106429px;}
.h21{height:43.185920px;}
.h29{height:44.217756px;}
.h1e{height:45.199318px;}
.h2d{height:45.404279px;}
.h28{height:45.491115px;}
.h6{height:47.988262px;}
.h14{height:48.234356px;}
.h18{height:50.100449px;}
.he{height:50.132792px;}
.h19{height:50.423886px;}
.h25{height:53.999978px;}
.h8{height:54.457009px;}
.h27{height:56.159978px;}
.h2{height:57.215719px;}
.h24{height:63.179975px;}
.ha{height:66.676614px;}
.h16{height:70.628878px;}
.h4{height:72.562471px;}
.h7{height:78.468719px;}
.h3{height:82.676920px;}
.h0{height:1263.000000px;}
.w3f{width:0.720000px;}
.w43{width:3.420000px;}
.w18{width:4.320000px;}
.w2{width:4.680000px;}
.we{width:4.860000px;}
.w36{width:5.040000px;}
.w24{width:5.760000px;}
.w23{width:6.120000px;}
.w22{width:6.840000px;}
.w4{width:7.020000px;}
.w35{width:7.200000px;}
.w2e{width:7.380000px;}
.w2b{width:7.560000px;}
.w25{width:7.740000px;}
.w1a{width:8.100000px;}
.w8{width:8.280000px;}
.w28{width:8.640000px;}
.w7{width:8.820000px;}
.w12{width:9.000000px;}
.w19{width:9.540000px;}
.wb{width:9.720000px;}
.w10{width:9.900000px;}
.w27{width:10.440000px;}
.w20{width:10.800000px;}
.w11{width:11.880000px;}
.w6{width:12.420000px;}
.w39{width:13.680000px;}
.w4a{width:16.200000px;}
.w4c{width:16.560000px;}
.w4d{width:16.920000px;}
.w47{width:17.100000px;}
.w4b{width:17.460000px;}
.w9{width:18.900000px;}
.w4f{width:19.440000px;}
.w48{width:19.620000px;}
.wc{width:20.880000px;}
.w3d{width:21.420000px;}
.w3b{width:22.680000px;}
.w5{width:24.840000px;}
.w4e{width:25.380000px;}
.w14{width:25.920000px;}
.w46{width:26.100000px;}
.w38{width:26.460000px;}
.w32{width:26.820000px;}
.w49{width:27.000000px;}
.w2f{width:27.720000px;}
.w26{width:28.260000px;}
.w21{width:28.980000px;}
.w2c{width:30.240000px;}
.w1d{width:33.300000px;}
.w50{width:33.840000px;}
.w42{width:40.680000px;}
.w45{width:43.200000px;}
.w3a{width:45.540000px;}
.w41{width:50.220000px;}
.w15{width:53.640000px;}
.w17{width:54.540000px;}
.w1c{width:59.760000px;}
.w44{width:59.940000px;}
.w29{width:61.200000px;}
.wd{width:62.460000px;}
.wa{width:62.640000px;}
.w33{width:73.620000px;}
.w1{width:73.980000px;}
.w3{width:77.400000px;}
.w31{width:78.300000px;}
.w1b{width:81.360000px;}
.w2d{width:103.860000px;}
.w13{width:118.800000px;}
.w2a{width:123.840000px;}
.w34{width:124.020000px;}
.w37{width:130.140000px;}
.w3e{width:136.440000px;}
.wf{width:138.060000px;}
.w30{width:157.320000px;}
.w3c{width:215.280000px;}
.w40{width:217.800000px;}
.w1e{width:438.660000px;}
.w1f{width:532.080000px;}
.w16{width:617.040000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x9{left:107.999957px;}
.x6e{left:109.260548px;}
.x30{left:110.700000px;}
.x38{left:111.779955px;}
.xb{left:116.100000px;}
.x60{left:119.159952px;}
.x61{left:124.199950px;}
.x19{left:126.000000px;}
.xd{left:130.679908px;}
.x6a{left:132.299947px;}
.x7c{left:135.360000px;}
.x85{left:143.100000px;}
.x66{left:144.899942px;}
.x67{left:150.659940px;}
.x62{left:157.319937px;}
.x63{left:163.079935px;}
.x1a{left:188.639925px;}
.x68{left:190.439924px;}
.x1b{left:193.860000px;}
.x69{left:195.479922px;}
.x70{left:196.740000px;}
.xe{left:200.339857px;}
.x1c{left:203.580000px;}
.xf{left:204.839853px;}
.xc{left:206.999917px;}
.x83{left:211.140000px;}
.x2e{left:212.579915px;}
.x2f{left:222.659911px;}
.x1d{left:224.460000px;}
.x7d{left:229.500000px;}
.x84{left:230.580000px;}
.x40{left:241.199904px;}
.x64{left:243.899902px;}
.x5d{left:245.519902px;}
.x34{left:248.220000px;}
.x65{left:249.659900px;}
.x41{left:250.739900px;}
.x71{left:252.720000px;}
.x73{left:254.513898px;}
.x8c{left:258.119897px;}
.x10{left:259.740421px;}
.x8d{left:262.799895px;}
.x74{left:264.600486px;}
.x8e{left:272.699891px;}
.x5e{left:277.739889px;}
.x35{left:281.520000px;}
.x5f{left:283.499887px;}
.x1e{left:286.919885px;}
.x1f{left:292.140000px;}
.x72{left:293.400000px;}
.x20{left:296.999881px;}
.x21{left:299.520000px;}
.x75{left:303.480000px;}
.x78{left:312.659869px;}
.x77{left:316.259873px;}
.x22{left:318.420000px;}
.x86{left:323.820000px;}
.x7e{left:324.900000px;}
.x7f{left:342.000000px;}
.x87{left:343.260000px;}
.x76{left:363.420000px;}
.x79{left:376.560000px;}
.x7a{left:377.999849px;}
.xa{left:379.439848px;}
.x80{left:388.440000px;}
.x7b{left:389.699886px;}
.x82{left:406.800000px;}
.x81{left:408.060000px;}
.x5c{left:418.858707px;}
.x6f{left:421.020000px;}
.x6d{left:428.399829px;}
.x3f{left:429.840353px;}
.x3a{left:433.079827px;}
.x23{left:456.479817px;}
.x24{left:461.700000px;}
.x3d{left:462.780504px;}
.x42{left:464.759827px;}
.x49{left:470.520000px;}
.x25{left:471.600000px;}
.x5a{left:472.860000px;}
.x33{left:476.992309px;}
.x26{left:483.480000px;}
.x27{left:492.480000px;}
.x11{left:493.920784px;}
.x43{left:499.500000px;}
.x12{left:507.240775px;}
.x39{left:516.059794px;}
.x13{left:520.560767px;}
.x45{left:522.539791px;}
.x56{left:525.960000px;}
.x50{left:527.220000px;}
.x44{left:528.300000px;}
.x46{left:529.739788px;}
.x14{left:533.700759px;}
.x47{left:534.960000px;}
.x15{left:538.200756px;}
.x37{left:539.279784px;}
.x48{left:541.079784px;}
.x1{left:549.000000px;}
.x3b{left:550.250930px;}
.x4a{left:551.520000px;}
.x54{left:554.760000px;}
.x4e{left:558.360000px;}
.x4b{left:560.160000px;}
.x57{left:568.080000px;}
.x3c{left:588.779764px;}
.x16{left:595.620735px;}
.x17{left:608.940726px;}
.x28{left:611.279755px;}
.x58{left:613.620000px;}
.x52{left:614.700000px;}
.x29{left:617.400000px;}
.x4c{left:621.360000px;}
.x2{left:622.980000px;}
.x3{left:627.660000px;}
.x2a{left:653.040000px;}
.x88{left:654.839738px;}
.x89{left:659.879736px;}
.x4f{left:662.220000px;}
.x18{left:666.359733px;}
.x8a{left:669.959732px;}
.x8b{left:678.419729px;}
.x55{left:684.900000px;}
.x5b{left:694.800000px;}
.x51{left:698.040000px;}
.x4{left:705.060000px;}
.x2b{left:706.679717px;}
.x2c{left:711.900000px;}
.x2d{left:716.579713px;}
.x6b{left:718.199713px;}
.x36{left:720.179712px;}
.x5{left:722.340000px;}
.x31{left:725.760000px;}
.x53{left:738.720000px;}
.x4d{left:745.200000px;}
.x6{left:747.180000px;}
.x8f{left:753.119699px;}
.x7{left:759.600000px;}
.x59{left:770.040000px;}
.x8{left:772.020000px;}
.x6c{left:774.719690px;}
.x32{left:780.300000px;}
.x3e{left:782.821387px;}
@media print{
.v1{vertical-align:-21.119992pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.999994pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009381pt;}
.ls5{letter-spacing:0.027520pt;}
.ls2{letter-spacing:0.064960pt;}
.lsb{letter-spacing:0.206056pt;}
.ls1{letter-spacing:0.303046pt;}
.ls4{letter-spacing:0.315360pt;}
.ls6{letter-spacing:0.667893pt;}
.ls9{letter-spacing:25.549856pt;}
.ls8{letter-spacing:25.573270pt;}
.ls7{letter-spacing:26.213643pt;}
.lsa{letter-spacing:83.182900pt;}
.ws2{word-spacing:-17.023993pt;}
.ws0{word-spacing:-16.473593pt;}
.ws1{word-spacing:-15.999994pt;}
.ws4{word-spacing:-15.679994pt;}
.ws9{word-spacing:-12.398051pt;}
.ws8{word-spacing:-12.191995pt;}
.ws6{word-spacing:-11.567995pt;}
.ws3{word-spacing:-9.192956pt;}
.ws7{word-spacing:-7.711997pt;}
.ws5{word-spacing:0.000000pt;}
._7{margin-left:-833.244435pt;}
._a{margin-left:-416.192836pt;}
._3{margin-left:-246.707400pt;}
._9{margin-left:-203.846612pt;}
._6{margin-left:-194.892669pt;}
._1{margin-left:-80.500602pt;}
._8{margin-left:-46.719326pt;}
._0{margin-left:-22.719255pt;}
._5{margin-left:-14.719226pt;}
._d{margin-left:-2.684473pt;}
._2{margin-left:-1.497247pt;}
._4{width:1.098725pt;}
._f{width:2.222370pt;}
._1c{width:3.289815pt;}
._10{width:4.972692pt;}
._e{width:6.108172pt;}
._11{width:7.020277pt;}
._b{width:8.129973pt;}
._c{width:9.158893pt;}
._15{width:10.255679pt;}
._48{width:11.168278pt;}
._20{width:12.898607pt;}
._1e{width:13.965443pt;}
._24{width:15.021473pt;}
._27{width:16.450078pt;}
._38{width:17.384641pt;}
._13{width:18.304620pt;}
._12{width:19.316082pt;}
._18{width:20.628803pt;}
._2a{width:22.355331pt;}
._22{width:23.355250pt;}
._1d{width:24.328699pt;}
._17{width:25.476260pt;}
._19{width:27.198389pt;}
._1a{width:28.108580pt;}
._14{width:29.318651pt;}
._23{width:30.954966pt;}
._34{width:32.754477pt;}
._2b{width:34.076389pt;}
._33{width:34.973302pt;}
._31{width:36.123189pt;}
._32{width:37.117124pt;}
._28{width:38.256601pt;}
._2c{width:39.464483pt;}
._16{width:41.256311pt;}
._21{width:42.591432pt;}
._46{width:43.831558pt;}
._1b{width:44.736515pt;}
._2f{width:46.555670pt;}
._42{width:47.690350pt;}
._49{width:50.384738pt;}
._30{width:51.668282pt;}
._47{width:53.155645pt;}
._35{width:54.154998pt;}
._36{width:55.906173pt;}
._37{width:57.077938pt;}
._40{width:58.216084pt;}
._1f{width:59.542290pt;}
._4d{width:61.814858pt;}
._4a{width:63.136839pt;}
._4b{width:64.281835pt;}
._43{width:65.410355pt;}
._25{width:69.323986pt;}
._26{width:70.497844pt;}
._4c{width:74.698614pt;}
._3a{width:77.340801pt;}
._39{width:78.340750pt;}
._44{width:80.791137pt;}
._45{width:81.747779pt;}
._29{width:83.229310pt;}
._2d{width:90.089613pt;}
._3e{width:98.410587pt;}
._3c{width:114.614566pt;}
._3d{width:115.593322pt;}
._41{width:168.954018pt;}
._2e{width:174.303103pt;}
._3f{width:180.531768pt;}
._3b{width:555.631297pt;}
.fs3{font-size:15.999994pt;}
.fs7{font-size:29.439988pt;}
.fsb{font-size:31.999987pt;}
.fs6{font-size:34.559986pt;}
.fs5{font-size:42.879983pt;}
.fs9{font-size:47.999981pt;}
.fsa{font-size:53.119979pt;}
.fs8{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fsc{font-size:66.559973pt;}
.fs0{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs2{font-size:95.999962pt;}
.y43{bottom:-5.120905pt;}
.y0{bottom:0.000000pt;}
.yf7{bottom:2.719130pt;}
.yfb{bottom:2.719135pt;}
.yfd{bottom:2.719141pt;}
.yff{bottom:2.719146pt;}
.y101{bottom:2.719152pt;}
.y104{bottom:2.719163pt;}
.y106{bottom:2.719168pt;}
.y108{bottom:2.719174pt;}
.y10a{bottom:2.719179pt;}
.y10c{bottom:2.719185pt;}
.y166{bottom:2.719190pt;}
.y163{bottom:2.719193pt;}
.y160{bottom:2.719196pt;}
.y169{bottom:2.719207pt;}
.y16b{bottom:2.719212pt;}
.y16d{bottom:2.719218pt;}
.y16f{bottom:2.719223pt;}
.y23{bottom:2.719238pt;}
.yf{bottom:2.879145pt;}
.y1e{bottom:3.199222pt;}
.y21{bottom:3.199225pt;}
.y6{bottom:3.679065pt;}
.y2{bottom:4.159046pt;}
.y11{bottom:4.319152pt;}
.y19{bottom:4.319179pt;}
.y3e{bottom:5.759065pt;}
.y85{bottom:51.946913pt;}
.y4{bottom:52.106912pt;}
.y1ab{bottom:99.306894pt;}
.yf4{bottom:99.946627pt;}
.ye0{bottom:100.106627pt;}
.y206{bottom:100.266627pt;}
.y70{bottom:100.746626pt;}
.y156{bottom:101.226626pt;}
.y82{bottom:101.386626pt;}
.yaf{bottom:101.706626pt;}
.y131{bottom:101.706893pt;}
.yd0{bottom:102.026626pt;}
.y186{bottom:102.186626pt;}
.y130{bottom:102.346626pt;}
.y132{bottom:102.346892pt;}
.y133{bottom:105.706891pt;}
.y3c{bottom:117.386620pt;}
.y205{bottom:119.306619pt;}
.y1aa{bottom:119.466886pt;}
.ycf{bottom:119.786619pt;}
.yf3{bottom:120.426618pt;}
.ydf{bottom:120.586618pt;}
.y6f{bottom:121.386618pt;}
.y81{bottom:121.866618pt;}
.y1d6{bottom:122.186618pt;}
.yae{bottom:122.506618pt;}
.y185{bottom:122.666618pt;}
.y12f{bottom:122.986617pt;}
.y3b{bottom:137.866612pt;}
.y204{bottom:138.186611pt;}
.y1a9{bottom:139.626611pt;}
.yf2{bottom:140.746610pt;}
.yde{bottom:141.066610pt;}
.y155{bottom:141.546610pt;}
.y6e{bottom:141.866610pt;}
.y121{bottom:142.186610pt;}
.y80{bottom:142.346610pt;}
.y1d5{bottom:142.666610pt;}
.yad{bottom:143.146609pt;}
.y12d{bottom:144.746609pt;}
.y12c{bottom:145.386609pt;}
.y12e{bottom:148.746607pt;}
.yf1{bottom:154.026605pt;}
.y203{bottom:157.226604pt;}
.y3a{bottom:158.346603pt;}
.y1a8{bottom:159.786603pt;}
.ydd{bottom:161.386602pt;}
.y154{bottom:161.706602pt;}
.y6d{bottom:162.506602pt;}
.yed{bottom:162.666602pt;}
.y7f{bottom:162.826602pt;}
.y1d4{bottom:163.146601pt;}
.y184{bottom:163.466601pt;}
.yac{bottom:163.946601pt;}
.y12a{bottom:168.106599pt;}
.y129{bottom:168.746599pt;}
.y12b{bottom:172.106598pt;}
.yf0{bottom:173.386597pt;}
.y120{bottom:176.266596pt;}
.y39{bottom:178.826595pt;}
.ydc{bottom:181.866594pt;}
.y6c{bottom:182.986593pt;}
.yec{bottom:183.146593pt;}
.y1d3{bottom:183.626593pt;}
.y183{bottom:183.946593pt;}
.y7e{bottom:184.106593pt;}
.yab{bottom:184.746593pt;}
.y127{bottom:190.506590pt;}
.yef{bottom:190.986590pt;}
.y1a7{bottom:193.546589pt;}
.y128{bottom:193.866589pt;}
.y202{bottom:195.146589pt;}
.y11f{bottom:196.746588pt;}
.y38{bottom:199.306587pt;}
.y153{bottom:202.026586pt;}
.ydb{bottom:202.346586pt;}
.y6b{bottom:203.626585pt;}
.y1d2{bottom:203.946585pt;}
.y126{bottom:204.106585pt;}
.y182{bottom:204.426585pt;}
.yaa{bottom:205.386585pt;}
.y7d{bottom:205.866584pt;}
.y1a6{bottom:213.706581pt;}
.y201{bottom:214.186581pt;}
.y11e{bottom:214.506581pt;}
.y37{bottom:219.786579pt;}
.y152{bottom:222.186578pt;}
.yda{bottom:222.826578pt;}
.y6a{bottom:224.106577pt;}
.y1d1{bottom:224.426577pt;}
.y125{bottom:224.746577pt;}
.y181{bottom:224.906577pt;}
.ya9{bottom:226.186576pt;}
.y7c{bottom:226.506576pt;}
.y200{bottom:228.106575pt;}
.y1a5{bottom:233.866573pt;}
.y36{bottom:240.106571pt;}
.y151{bottom:242.346570pt;}
.yd9{bottom:243.306569pt;}
.yeb{bottom:244.586569pt;}
.y69{bottom:244.746569pt;}
.y1d0{bottom:244.906569pt;}
.y124{bottom:245.226569pt;}
.y180{bottom:245.386569pt;}
.ya8{bottom:246.826568pt;}
.y7b{bottom:246.986568pt;}
.y1ff{bottom:248.266567pt;}
.y1a4{bottom:254.026565pt;}
.y35{bottom:260.586562pt;}
.yea{bottom:262.186562pt;}
.y150{bottom:262.506562pt;}
.y123{bottom:262.826562pt;}
.yd8{bottom:263.626561pt;}
.y68{bottom:265.226561pt;}
.y1cf{bottom:265.386561pt;}
.y17f{bottom:265.706560pt;}
.y1fe{bottom:267.306560pt;}
.y7a{bottom:267.626560pt;}
.y1a3{bottom:274.186557pt;}
.y34{bottom:274.986557pt;}
.y33{bottom:278.346555pt;}
.y14f{bottom:282.666554pt;}
.yd7{bottom:284.106553pt;}
.y1ce{bottom:284.586553pt;}
.y67{bottom:285.866552pt;}
.y17e{bottom:286.186552pt;}
.y79{bottom:288.106551pt;}
.ya7{bottom:288.426551pt;}
.y1a2{bottom:294.346549pt;}
.y32{bottom:296.586548pt;}
.y14e{bottom:302.826546pt;}
.yd6{bottom:304.586545pt;}
.y1cd{bottom:305.226545pt;}
.y66{bottom:306.506544pt;}
.y17d{bottom:306.666544pt;}
.y1a1{bottom:308.106543pt;}
.y78{bottom:308.746543pt;}
.ya6{bottom:309.066543pt;}
.y31{bottom:317.066540pt;}
.y14d{bottom:322.986537pt;}
.y1fd{bottom:324.106537pt;}
.yd5{bottom:325.066537pt;}
.y1cc{bottom:325.706536pt;}
.y65{bottom:326.986536pt;}
.y17c{bottom:327.146536pt;}
.y1a0{bottom:328.266535pt;}
.y77{bottom:329.226535pt;}
.ya5{bottom:329.866535pt;}
.y30{bottom:337.546532pt;}
.y1fc{bottom:337.866532pt;}
.y14c{bottom:343.146529pt;}
.yd4{bottom:345.546528pt;}
.y1cb{bottom:346.026528pt;}
.y64{bottom:347.626528pt;}
.y19f{bottom:348.426527pt;}
.y76{bottom:349.866527pt;}
.ya4{bottom:350.506526pt;}
.yce{bottom:351.946526pt;}
.y1fb{bottom:356.746524pt;}
.y2f{bottom:357.866524pt;}
.y11d{bottom:362.346522pt;}
.y14b{bottom:363.306521pt;}
.yd3{bottom:366.026520pt;}
.y1ca{bottom:366.506520pt;}
.y17b{bottom:368.106519pt;}
.y19e{bottom:368.586519pt;}
.y63{bottom:369.226519pt;}
.y75{bottom:370.346519pt;}
.ya3{bottom:371.786518pt;}
.ycd{bottom:372.426518pt;}
.y1fa{bottom:375.786516pt;}
.y2e{bottom:377.706516pt;}
.y2d{bottom:378.346515pt;}
.y11c{bottom:382.826514pt;}
.y14a{bottom:383.466513pt;}
.yd2{bottom:386.346512pt;}
.y1c9{bottom:386.986512pt;}
.y17a{bottom:388.426511pt;}
.y19d{bottom:388.746511pt;}
.y62{bottom:390.986510pt;}
.ycc{bottom:392.906510pt;}
.ya2{bottom:393.866509pt;}
.y1f9{bottom:394.666509pt;}
.y2c{bottom:398.826507pt;}
.y11b{bottom:403.306505pt;}
.y149{bottom:403.626505pt;}
.yd1{bottom:403.946505pt;}
.y1c8{bottom:407.466504pt;}
.y1f8{bottom:408.426503pt;}
.y179{bottom:408.906503pt;}
.y61{bottom:411.466502pt;}
.ycb{bottom:413.226501pt;}
.ya1{bottom:414.666501pt;}
.y2b{bottom:419.306499pt;}
.y19c{bottom:422.986497pt;}
.y11a{bottom:423.626497pt;}
.y148{bottom:423.786497pt;}
.y1c7{bottom:426.666496pt;}
.y1f7{bottom:427.306496pt;}
.y178{bottom:429.386495pt;}
.y60{bottom:432.106494pt;}
.yca{bottom:433.706493pt;}
.ya0{bottom:435.146493pt;}
.y2a{bottom:439.786491pt;}
.y119{bottom:444.106489pt;}
.y19b{bottom:444.266489pt;}
.y1c6{bottom:446.026488pt;}
.y1f6{bottom:446.346488pt;}
.y177{bottom:449.866487pt;}
.y5f{bottom:452.746486pt;}
.yc9{bottom:454.186485pt;}
.y122{bottom:455.466484pt;}
.y9f{bottom:455.626484pt;}
.y29{bottom:460.106483pt;}
.y147{bottom:464.266481pt;}
.y19a{bottom:464.426481pt;}
.y118{bottom:464.586481pt;}
.y1f5{bottom:465.226481pt;}
.y1c5{bottom:465.386481pt;}
.y176{bottom:470.346479pt;}
.y5e{bottom:473.226477pt;}
.yc8{bottom:474.666477pt;}
.y9e{bottom:476.106476pt;}
.y28{bottom:480.586474pt;}
.y1c4{bottom:484.106473pt;}
.y1f4{bottom:484.266473pt;}
.y146{bottom:484.426473pt;}
.y199{bottom:484.586473pt;}
.y1c3{bottom:484.746473pt;}
.y117{bottom:485.066473pt;}
.y175{bottom:490.826470pt;}
.y5d{bottom:493.866469pt;}
.yc7{bottom:495.146469pt;}
.y9d{bottom:496.586468pt;}
.ye9{bottom:498.346467pt;}
.y27{bottom:501.066466pt;}
.y1f3{bottom:503.306465pt;}
.y1c2{bottom:504.106465pt;}
.y145{bottom:504.586465pt;}
.y198{bottom:504.746465pt;}
.y116{bottom:505.546464pt;}
.y174{bottom:511.146462pt;}
.y5c{bottom:514.346461pt;}
.yc6{bottom:515.626460pt;}
.y9c{bottom:516.906460pt;}
.ye8{bottom:518.826459pt;}
.y26{bottom:521.546458pt;}
.y1f2{bottom:522.186458pt;}
.y1c1{bottom:523.466457pt;}
.y144{bottom:524.746457pt;}
.y115{bottom:526.026456pt;}
.y173{bottom:531.626454pt;}
.y5b{bottom:534.986453pt;}
.y1f1{bottom:535.786452pt;}
.yc5{bottom:535.946452pt;}
.y9b{bottom:537.386452pt;}
.ye7{bottom:539.306451pt;}
.y197{bottom:541.546450pt;}
.y25{bottom:542.826450pt;}
.y143{bottom:544.906449pt;}
.y114{bottom:546.346448pt;}
.y172{bottom:552.106446pt;}
.y1f0{bottom:554.826445pt;}
.y5a{bottom:555.466444pt;}
.yc4{bottom:556.426444pt;}
.y9a{bottom:557.866444pt;}
.ye6{bottom:559.626443pt;}
.y196{bottom:561.706442pt;}
.y1c0{bottom:562.186442pt;}
.y142{bottom:565.546440pt;}
.y113{bottom:566.826440pt;}
.y22{bottom:570.027200pt;}
.y171{bottom:572.586438pt;}
.y24{bottom:572.746438pt;}
.y1ef{bottom:573.866437pt;}
.y59{bottom:576.106436pt;}
.yc3{bottom:576.906436pt;}
.y99{bottom:578.346435pt;}
.y141{bottom:578.986435pt;}
.ye5{bottom:580.106435pt;}
.yee{bottom:581.706434pt;}
.y195{bottom:581.866434pt;}
.y112{bottom:587.306432pt;}
.y1ee{bottom:592.746430pt;}
.y170{bottom:593.066429pt;}
.y58{bottom:596.586428pt;}
.yc2{bottom:597.386428pt;}
.y98{bottom:598.826427pt;}
.y140{bottom:599.626427pt;}
.y20{bottom:599.787200pt;}
.ye4{bottom:600.586426pt;}
.y1bf{bottom:601.066426pt;}
.y194{bottom:602.026426pt;}
.y1f{bottom:602.986425pt;}
.y16e{bottom:605.707200pt;}
.y111{bottom:607.786424pt;}
.y1d{bottom:607.787200pt;}
.y1ed{bottom:611.786422pt;}
.y57{bottom:617.226420pt;}
.yc1{bottom:617.866420pt;}
.y97{bottom:619.306419pt;}
.y16c{bottom:619.467200pt;}
.y13f{bottom:619.946419pt;}
.y1be{bottom:620.426418pt;}
.ye3{bottom:621.066418pt;}
.y193{bottom:621.546418pt;}
.y192{bottom:622.186418pt;}
.y1ec{bottom:625.386417pt;}
.y110{bottom:628.266415pt;}
.y16a{bottom:633.067200pt;}
.y56{bottom:637.706412pt;}
.y1c{bottom:637.866412pt;}
.yc0{bottom:638.346411pt;}
.y96{bottom:639.626411pt;}
.y1bd{bottom:639.786411pt;}
.y13e{bottom:640.426410pt;}
.ye2{bottom:641.546410pt;}
.y191{bottom:642.346410pt;}
.y1eb{bottom:644.426409pt;}
.y168{bottom:646.667200pt;}
.y10f{bottom:648.746407pt;}
.y55{bottom:658.346403pt;}
.ybf{bottom:658.666403pt;}
.ye1{bottom:659.146403pt;}
.y95{bottom:660.106403pt;}
.y13c{bottom:660.266403pt;}
.y13d{bottom:660.906402pt;}
.y13b{bottom:660.906669pt;}
.y190{bottom:662.506402pt;}
.y1ea{bottom:663.306401pt;}
.y167{bottom:663.626401pt;}
.y10e{bottom:669.066399pt;}
.y1b{bottom:670.346399pt;}
.y164{bottom:670.506398pt;}
.y15f{bottom:674.667200pt;}
.y15e{bottom:677.386396pt;}
.y1bc{bottom:678.506395pt;}
.y54{bottom:678.826395pt;}
.ybe{bottom:679.146395pt;}
.y94{bottom:680.586394pt;}
.y215{bottom:680.746394pt;}
.y13a{bottom:681.386661pt;}
.y162{bottom:681.387200pt;}
.y1e9{bottom:682.346394pt;}
.y18f{bottom:682.666394pt;}
.y165{bottom:688.267200pt;}
.y10d{bottom:689.546391pt;}
.y15d{bottom:690.986390pt;}
.y1a{bottom:692.266390pt;}
.y1e8{bottom:695.946388pt;}
.y1bb{bottom:697.866388pt;}
.y53{bottom:699.466387pt;}
.ybd{bottom:699.626387pt;}
.y93{bottom:701.066386pt;}
.y214{bottom:701.226386pt;}
.y139{bottom:701.866653pt;}
.y161{bottom:701.867200pt;}
.y10b{bottom:702.347200pt;}
.y18e{bottom:702.826386pt;}
.y1e7{bottom:714.986381pt;}
.y18{bottom:715.147200pt;}
.y109{bottom:715.947200pt;}
.y1ba{bottom:717.226380pt;}
.y52{bottom:720.106379pt;}
.y92{bottom:721.546378pt;}
.y213{bottom:721.706378pt;}
.y138{bottom:722.346644pt;}
.y18d{bottom:722.986377pt;}
.y17{bottom:724.746377pt;}
.y15c{bottom:727.146376pt;}
.y107{bottom:729.547200pt;}
.y1e6{bottom:733.866373pt;}
.y16{bottom:735.306373pt;}
.y137{bottom:735.786639pt;}
.y1b9{bottom:736.586372pt;}
.y51{bottom:740.586370pt;}
.y91{bottom:742.026370pt;}
.y212{bottom:742.186370pt;}
.y18c{bottom:743.146369pt;}
.y105{bottom:743.307200pt;}
.y15b{bottom:747.626368pt;}
.y1e5{bottom:752.906366pt;}
.y1b8{bottom:755.946364pt;}
.y136{bottom:756.426631pt;}
.y103{bottom:756.907200pt;}
.y14{bottom:759.786363pt;}
.ybc{bottom:761.066362pt;}
.y50{bottom:761.226362pt;}
.y90{bottom:762.346362pt;}
.y211{bottom:762.506362pt;}
.y18b{bottom:763.466361pt;}
.y15{bottom:764.426361pt;}
.y15a{bottom:768.106359pt;}
.y1e4{bottom:771.786358pt;}
.y102{bottom:773.226357pt;}
.y1b7{bottom:775.306357pt;}
.y135{bottom:776.746623pt;}
.ybb{bottom:781.386354pt;}
.y4f{bottom:781.706354pt;}
.y10{bottom:782.667200pt;}
.y8f{bottom:782.826354pt;}
.y210{bottom:782.986353pt;}
.y18a{bottom:783.626353pt;}
.y100{bottom:784.107200pt;}
.y159{bottom:788.586351pt;}
.y1e3{bottom:790.826350pt;}
.y13{bottom:790.986350pt;}
.y12{bottom:791.626350pt;}
.y134{bottom:794.506616pt;}
.y1b6{bottom:794.666349pt;}
.yfe{bottom:797.707200pt;}
.ye{bottom:800.747200pt;}
.yba{bottom:801.866346pt;}
.y4e{bottom:802.346346pt;}
.y8e{bottom:803.306345pt;}
.y20f{bottom:803.466345pt;}
.y189{bottom:803.786345pt;}
.y1e2{bottom:804.426345pt;}
.y158{bottom:809.066343pt;}
.yfc{bottom:811.467200pt;}
.y1b5{bottom:814.186341pt;}
.yb9{bottom:822.346338pt;}
.y4d{bottom:822.826338pt;}
.y1e1{bottom:823.466337pt;}
.y8d{bottom:823.786337pt;}
.y188{bottom:823.946337pt;}
.yfa{bottom:825.707200pt;}
.y157{bottom:826.666336pt;}
.yf8{bottom:828.426335pt;}
.yd{bottom:830.506334pt;}
.yf9{bottom:831.786334pt;}
.y1b4{bottom:833.546333pt;}
.yf5{bottom:835.306333pt;}
.yf6{bottom:839.307200pt;}
.y1e0{bottom:842.346330pt;}
.yb8{bottom:842.826330pt;}
.y4c{bottom:843.466329pt;}
.y187{bottom:844.106329pt;}
.y8c{bottom:844.266329pt;}
.y20e{bottom:844.426329pt;}
.y1b3{bottom:852.906326pt;}
.y1df{bottom:861.386322pt;}
.yb7{bottom:863.306321pt;}
.y4b{bottom:863.946321pt;}
.y8b{bottom:864.746321pt;}
.y20d{bottom:864.906321pt;}
.yc{bottom:866.666320pt;}
.y1b2{bottom:872.266318pt;}
.y1de{bottom:879.786315pt;}
.y1dd{bottom:880.426314pt;}
.yb6{bottom:883.626313pt;}
.y74{bottom:884.426313pt;}
.y4a{bottom:884.586313pt;}
.y8a{bottom:885.066313pt;}
.y20c{bottom:885.226313pt;}
.yb{bottom:888.266311pt;}
.y1b1{bottom:891.626310pt;}
.y1dc{bottom:899.306307pt;}
.yb5{bottom:904.106305pt;}
.ya{bottom:904.586305pt;}
.y9{bottom:904.906305pt;}
.y49{bottom:905.066305pt;}
.y89{bottom:905.546304pt;}
.y20b{bottom:905.706304pt;}
.y1b0{bottom:910.986302pt;}
.y1db{bottom:918.346299pt;}
.yb4{bottom:924.746297pt;}
.y73{bottom:925.546296pt;}
.y48{bottom:925.706296pt;}
.y88{bottom:926.026296pt;}
.y20a{bottom:926.186296pt;}
.y1af{bottom:930.346295pt;}
.y1da{bottom:931.946294pt;}
.y42{bottom:934.667200pt;}
.yb3{bottom:945.546288pt;}
.y47{bottom:946.186288pt;}
.y87{bottom:946.506288pt;}
.y209{bottom:946.666288pt;}
.y41{bottom:948.426287pt;}
.y1ae{bottom:949.706287pt;}
.y1d9{bottom:950.986286pt;}
.yb2{bottom:966.186280pt;}
.y40{bottom:966.506280pt;}
.y72{bottom:966.666280pt;}
.y46{bottom:966.826280pt;}
.y86{bottom:966.986280pt;}
.y208{bottom:967.146280pt;}
.y1ad{bottom:969.066279pt;}
.y1d8{bottom:969.866279pt;}
.y3f{bottom:984.586273pt;}
.yb1{bottom:986.986272pt;}
.y45{bottom:987.306272pt;}
.y207{bottom:987.466272pt;}
.y1ac{bottom:988.426271pt;}
.y1d7{bottom:988.906271pt;}
.y8{bottom:993.866269pt;}
.y7{bottom:994.186269pt;}
.y3d{bottom:997.867200pt;}
.y5{bottom:1000.427200pt;}
.yb0{bottom:1007.626264pt;}
.y71{bottom:1007.786264pt;}
.y44{bottom:1007.946263pt;}
.y84{bottom:1022.986257pt;}
.y3{bottom:1023.146257pt;}
.y83{bottom:1047.947200pt;}
.y1{bottom:1048.107200pt;}
.h26{height:10.720000pt;}
.hb{height:12.000000pt;}
.h1b{height:13.440000pt;}
.h2b{height:13.600000pt;}
.h2c{height:13.760000pt;}
.h17{height:16.640000pt;}
.h9{height:16.687493pt;}
.h1a{height:16.800000pt;}
.hd{height:17.920000pt;}
.h13{height:18.080000pt;}
.h5{height:18.240000pt;}
.h12{height:19.722492pt;}
.h23{height:21.120000pt;}
.h15{height:21.754991pt;}
.h1{height:21.760000pt;}
.h20{height:23.034366pt;}
.hf{height:24.063740pt;}
.h22{height:24.203115pt;}
.h1f{height:24.359365pt;}
.h10{height:28.579676pt;}
.hc{height:29.856863pt;}
.h11{height:32.159987pt;}
.h2a{height:32.641549pt;}
.h1c{height:36.304673pt;}
.h1d{height:36.539048pt;}
.h21{height:38.387485pt;}
.h29{height:39.304672pt;}
.h1e{height:40.177171pt;}
.h2d{height:40.359359pt;}
.h28{height:40.436546pt;}
.h6{height:42.656233pt;}
.h14{height:42.874983pt;}
.h18{height:44.533732pt;}
.he{height:44.562482pt;}
.h19{height:44.821232pt;}
.h25{height:47.999981pt;}
.h8{height:48.406231pt;}
.h27{height:49.919980pt;}
.h2{height:50.858417pt;}
.h24{height:56.159978pt;}
.ha{height:59.268101pt;}
.h16{height:62.781225pt;}
.h4{height:64.499974pt;}
.h7{height:69.749972pt;}
.h3{height:73.490596pt;}
.h0{height:1122.666667pt;}
.w3f{width:0.640000pt;}
.w43{width:3.040000pt;}
.w18{width:3.840000pt;}
.w2{width:4.160000pt;}
.we{width:4.320000pt;}
.w36{width:4.480000pt;}
.w24{width:5.120000pt;}
.w23{width:5.440000pt;}
.w22{width:6.080000pt;}
.w4{width:6.240000pt;}
.w35{width:6.400000pt;}
.w2e{width:6.560000pt;}
.w2b{width:6.720000pt;}
.w25{width:6.880000pt;}
.w1a{width:7.200000pt;}
.w8{width:7.360000pt;}
.w28{width:7.680000pt;}
.w7{width:7.840000pt;}
.w12{width:8.000000pt;}
.w19{width:8.480000pt;}
.wb{width:8.640000pt;}
.w10{width:8.800000pt;}
.w27{width:9.280000pt;}
.w20{width:9.600000pt;}
.w11{width:10.560000pt;}
.w6{width:11.040000pt;}
.w39{width:12.160000pt;}
.w4a{width:14.400000pt;}
.w4c{width:14.720000pt;}
.w4d{width:15.040000pt;}
.w47{width:15.200000pt;}
.w4b{width:15.520000pt;}
.w9{width:16.800000pt;}
.w4f{width:17.280000pt;}
.w48{width:17.440000pt;}
.wc{width:18.560000pt;}
.w3d{width:19.040000pt;}
.w3b{width:20.160000pt;}
.w5{width:22.080000pt;}
.w4e{width:22.560000pt;}
.w14{width:23.040000pt;}
.w46{width:23.200000pt;}
.w38{width:23.520000pt;}
.w32{width:23.840000pt;}
.w49{width:24.000000pt;}
.w2f{width:24.640000pt;}
.w26{width:25.120000pt;}
.w21{width:25.760000pt;}
.w2c{width:26.880000pt;}
.w1d{width:29.600000pt;}
.w50{width:30.080000pt;}
.w42{width:36.160000pt;}
.w45{width:38.400000pt;}
.w3a{width:40.480000pt;}
.w41{width:44.640000pt;}
.w15{width:47.680000pt;}
.w17{width:48.480000pt;}
.w1c{width:53.120000pt;}
.w44{width:53.280000pt;}
.w29{width:54.400000pt;}
.wd{width:55.520000pt;}
.wa{width:55.680000pt;}
.w33{width:65.440000pt;}
.w1{width:65.760000pt;}
.w3{width:68.800000pt;}
.w31{width:69.600000pt;}
.w1b{width:72.320000pt;}
.w2d{width:92.320000pt;}
.w13{width:105.600000pt;}
.w2a{width:110.080000pt;}
.w34{width:110.240000pt;}
.w37{width:115.680000pt;}
.w3e{width:121.280000pt;}
.wf{width:122.720000pt;}
.w30{width:139.840000pt;}
.w3c{width:191.360000pt;}
.w40{width:193.600000pt;}
.w1e{width:389.920000pt;}
.w1f{width:472.960000pt;}
.w16{width:548.480000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x9{left:95.999962pt;}
.x6e{left:97.120487pt;}
.x30{left:98.400000pt;}
.x38{left:99.359960pt;}
.xb{left:103.200000pt;}
.x60{left:105.919958pt;}
.x61{left:110.399956pt;}
.x19{left:112.000000pt;}
.xd{left:116.159918pt;}
.x6a{left:117.599953pt;}
.x7c{left:120.320000pt;}
.x85{left:127.200000pt;}
.x66{left:128.799948pt;}
.x67{left:133.919946pt;}
.x62{left:139.839944pt;}
.x63{left:144.959942pt;}
.x1a{left:167.679933pt;}
.x68{left:169.279932pt;}
.x1b{left:172.320000pt;}
.x69{left:173.759930pt;}
.x70{left:174.880000pt;}
.xe{left:178.079873pt;}
.x1c{left:180.960000pt;}
.xf{left:182.079870pt;}
.xc{left:183.999926pt;}
.x83{left:187.680000pt;}
.x2e{left:188.959924pt;}
.x2f{left:197.919921pt;}
.x1d{left:199.520000pt;}
.x7d{left:204.000000pt;}
.x84{left:204.960000pt;}
.x40{left:214.399914pt;}
.x64{left:216.799913pt;}
.x5d{left:218.239913pt;}
.x34{left:220.640000pt;}
.x65{left:221.919911pt;}
.x41{left:222.879911pt;}
.x71{left:224.640000pt;}
.x73{left:226.234576pt;}
.x8c{left:229.439908pt;}
.x10{left:230.880374pt;}
.x8d{left:233.599907pt;}
.x74{left:235.200432pt;}
.x8e{left:242.399903pt;}
.x5e{left:246.879901pt;}
.x35{left:250.240000pt;}
.x5f{left:251.999899pt;}
.x1e{left:255.039898pt;}
.x1f{left:259.680000pt;}
.x72{left:260.800000pt;}
.x20{left:263.999894pt;}
.x21{left:266.240000pt;}
.x75{left:269.760000pt;}
.x78{left:277.919883pt;}
.x77{left:281.119888pt;}
.x22{left:283.040000pt;}
.x86{left:287.840000pt;}
.x7e{left:288.800000pt;}
.x7f{left:304.000000pt;}
.x87{left:305.120000pt;}
.x76{left:323.040000pt;}
.x79{left:334.720000pt;}
.x7a{left:335.999866pt;}
.xa{left:337.279865pt;}
.x80{left:345.280000pt;}
.x7b{left:346.399899pt;}
.x82{left:361.600000pt;}
.x81{left:362.720000pt;}
.x5c{left:372.318851pt;}
.x6f{left:374.240000pt;}
.x6d{left:380.799848pt;}
.x3f{left:382.080314pt;}
.x3a{left:384.959846pt;}
.x23{left:405.759838pt;}
.x24{left:410.400000pt;}
.x3d{left:411.360448pt;}
.x42{left:413.119846pt;}
.x49{left:418.240000pt;}
.x25{left:419.200000pt;}
.x5a{left:420.320000pt;}
.x33{left:423.993164pt;}
.x26{left:429.760000pt;}
.x27{left:437.760000pt;}
.x11{left:439.040697pt;}
.x43{left:444.000000pt;}
.x12{left:450.880689pt;}
.x39{left:458.719817pt;}
.x13{left:462.720681pt;}
.x45{left:464.479814pt;}
.x56{left:467.520000pt;}
.x50{left:468.640000pt;}
.x44{left:469.600000pt;}
.x46{left:470.879812pt;}
.x14{left:474.400675pt;}
.x47{left:475.520000pt;}
.x15{left:478.400672pt;}
.x37{left:479.359808pt;}
.x48{left:480.959808pt;}
.x1{left:488.000000pt;}
.x3b{left:489.111938pt;}
.x4a{left:490.240000pt;}
.x54{left:493.120000pt;}
.x4e{left:496.320000pt;}
.x4b{left:497.920000pt;}
.x57{left:504.960000pt;}
.x3c{left:523.359791pt;}
.x16{left:529.440653pt;}
.x17{left:541.280646pt;}
.x28{left:543.359783pt;}
.x58{left:545.440000pt;}
.x52{left:546.400000pt;}
.x29{left:548.800000pt;}
.x4c{left:552.320000pt;}
.x2{left:553.760000pt;}
.x3{left:557.920000pt;}
.x2a{left:580.480000pt;}
.x88{left:582.079767pt;}
.x89{left:586.559765pt;}
.x4f{left:588.640000pt;}
.x18{left:592.319763pt;}
.x8a{left:595.519762pt;}
.x8b{left:603.039759pt;}
.x55{left:608.800000pt;}
.x5b{left:617.600000pt;}
.x51{left:620.480000pt;}
.x4{left:626.720000pt;}
.x2b{left:628.159749pt;}
.x2c{left:632.800000pt;}
.x2d{left:636.959745pt;}
.x6b{left:638.399745pt;}
.x36{left:640.159744pt;}
.x5{left:642.080000pt;}
.x31{left:645.120000pt;}
.x53{left:656.640000pt;}
.x4d{left:662.400000pt;}
.x6{left:664.160000pt;}
.x8f{left:669.439732pt;}
.x7{left:675.200000pt;}
.x59{left:684.480000pt;}
.x8{left:686.240000pt;}
.x6c{left:688.639725pt;}
.x32{left:693.600000pt;}
.x3e{left:695.841233pt;}
}




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