
    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_531d9ea80592fc1d3404e3e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938000;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_400f97b54e79d40678b33bf1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.731000;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_33d1fa54305c642edf191ba6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.859863;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_9b7e2ddf19e74b72e9ca7dd3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_8f5e6d5d957babc309a4d318.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d565bad2413016a2367782f6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c34267ca2df858986581b32e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_7218797adf43b3914863d3b8.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m12{transform:matrix(0.232734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232734,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.233266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233266,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.235194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235194,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.235983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235983,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.241315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241315,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.242659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242659,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.244467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244467,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.244589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244589,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246126,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246315,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252034,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253493,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254992,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257353,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.259680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259680,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.276960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276960,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281281,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.va{vertical-align:-34.760301px;}
.v9{vertical-align:-33.702234px;}
.v8{vertical-align:-31.149792px;}
.vb{vertical-align:-13.486229px;}
.v7{vertical-align:-11.700757px;}
.v6{vertical-align:-10.139623px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.718590px;}
.v5{vertical-align:5.760000px;}
.v4{vertical-align:23.760000px;}
.v3{vertical-align:27.360000px;}
.ls8{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.259800px;}
.ls9{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls16{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.181200px;}
.ls6{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.336000px;}
.ls4{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.540000px;}
.lse{letter-spacing:0.612000px;}
.lsb{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.773280px;}
.ls10{letter-spacing:1.456806px;}
.ls12{letter-spacing:207.411842px;}
.lsd{letter-spacing:364.405674px;}
.ls11{letter-spacing:393.971800px;}
.lsf{letter-spacing:475.186544px;}
.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;}
}
.ws4{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.568000px;}
.wse{word-spacing:-15.552000px;}
.ws21{word-spacing:-14.993280px;}
.wsc{word-spacing:-14.940000px;}
.ws1f{word-spacing:-14.680200px;}
.wsa{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.241200px;}
.ws3{word-spacing:-12.060000px;}
.wsd{word-spacing:-9.720000px;}
.ws1b{word-spacing:-0.043215px;}
.ws1d{word-spacing:-0.041406px;}
.ws1c{word-spacing:-0.040459px;}
.ws1e{word-spacing:-0.039681px;}
.ws14{word-spacing:-0.036764px;}
.ws20{word-spacing:-0.036361px;}
.ws10{word-spacing:-0.035938px;}
.ws1a{word-spacing:-0.033938px;}
.ws18{word-spacing:-0.033910px;}
.ws13{word-spacing:-0.032978px;}
.ws11{word-spacing:-0.032615px;}
.ws17{word-spacing:-0.032588px;}
.wsf{word-spacing:-0.032023px;}
.wsb{word-spacing:-0.030418px;}
.ws12{word-spacing:-0.030145px;}
.ws0{word-spacing:0.000000px;}
.ws19{word-spacing:231.428585px;}
.ws15{word-spacing:417.796261px;}
.ws16{word-spacing:478.308708px;}
._9{margin-left:-143.880452px;}
._b{margin-left:-132.962720px;}
._c{margin-left:-67.581349px;}
._7{margin-left:-66.064701px;}
._d{margin-left:-63.773504px;}
._6{margin-left:-58.866368px;}
._f{margin-left:-53.657042px;}
._e{margin-left:-50.379403px;}
._8{margin-left:-48.552819px;}
._a{margin-left:-46.563774px;}
._1d{margin-left:-4.171552px;}
._1{margin-left:-3.028448px;}
._3{margin-left:-1.778919px;}
._2{width:1.096195px;}
._0{width:2.366891px;}
._4{width:4.224000px;}
._5{width:5.328000px;}
._10{width:6.696000px;}
._11{width:7.776000px;}
._19{width:8.784000px;}
._14{width:11.568000px;}
._1c{width:12.891610px;}
._13{width:14.112000px;}
._12{width:15.242919px;}
._1e{width:19.639805px;}
._17{width:26.184000px;}
._18{width:27.216000px;}
._15{width:29.016000px;}
._16{width:30.024000px;}
._1a{width:31.896000px;}
._1b{width:33.015610px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:23.175590px;}
.fsd{font-size:24.575918px;}
.fs15{font-size:25.308320px;}
.fs1b{font-size:25.836457px;}
.fs1d{font-size:25.857779px;}
.fs19{font-size:27.156485px;}
.fs12{font-size:27.179221px;}
.fs1f{font-size:27.381987px;}
.fsf{font-size:27.580355px;}
.fs17{font-size:28.214053px;}
.fs13{font-size:30.144960px;}
.fs9{font-size:30.417962px;}
.fs23{font-size:30.825665px;}
.fs25{font-size:31.776362px;}
.fsc{font-size:32.023166px;}
.fs18{font-size:32.587782px;}
.fs11{font-size:32.615065px;}
.fs14{font-size:32.977508px;}
.fs21{font-size:33.165335px;}
.fs1a{font-size:33.910350px;}
.fs1c{font-size:33.938335px;}
.fs10{font-size:34.604766px;}
.fse{font-size:35.938039px;}
.fs1e{font-size:35.938858px;}
.fs27{font-size:36.360935px;}
.fs28{font-size:36.361369px;}
.fs16{font-size:36.763766px;}
.fsb{font-size:38.880000px;}
.fs26{font-size:39.680695px;}
.fs22{font-size:40.458686px;}
.fs24{font-size:41.405562px;}
.fs20{font-size:43.215437px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:55.783800px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:65.754000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:71.730600px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:83.685000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y9f{bottom:1.117072px;}
.yd8{bottom:1.150418px;}
.yeb{bottom:1.282501px;}
.yc9{bottom:1.358904px;}
.y127{bottom:1.497417px;}
.y148{bottom:1.507494px;}
.ycf{bottom:1.758446px;}
.y181{bottom:2.114017px;}
.y18b{bottom:2.114042px;}
.y15a{bottom:2.157997px;}
.y177{bottom:2.307027px;}
.y15f{bottom:2.398823px;}
.y164{bottom:2.402887px;}
.y167{bottom:2.643617px;}
.y168{bottom:2.643717px;}
.y180{bottom:3.171021px;}
.y9d{bottom:3.723585px;}
.yd6{bottom:3.834570px;}
.y88{bottom:3.971536px;}
.y89{bottom:3.971611px;}
.y101{bottom:4.073529px;}
.yc8{bottom:4.076838px;}
.yf9{bottom:4.076940px;}
.yab{bottom:4.178798px;}
.yac{bottom:4.178885px;}
.y109{bottom:4.225674px;}
.y10a{bottom:4.225758px;}
.y117{bottom:4.229161px;}
.y118{bottom:4.229245px;}
.ye9{bottom:4.274830px;}
.y125{bottom:4.492384px;}
.y146{bottom:5.025051px;}
.y189{bottom:5.496504px;}
.y8d{bottom:5.782129px;}
.y8e{bottom:5.782204px;}
.yb4{bottom:6.236880px;}
.yb5{bottom:6.236964px;}
.yb9{bottom:6.438088px;}
.yee{bottom:9.405032px;}
.y107{bottom:9.675215px;}
.y116{bottom:9.683199px;}
.ycd{bottom:9.797091px;}
.yde{bottom:9.970240px;}
.yf2{bottom:11.114956px;}
.yda{bottom:11.120610px;}
.y12d{bottom:11.337801px;}
.y99{bottom:11.543134px;}
.yec{bottom:12.397405px;}
.y100{bottom:12.492492px;}
.yc3{bottom:12.502170px;}
.yf8{bottom:12.502498px;}
.y128{bottom:12.621322px;}
.ya6{bottom:12.954026px;}
.y8b{bottom:13.386318px;}
.y42{bottom:14.220000px;}
.y44{bottom:14.400000px;}
.y10e{bottom:16.134329px;}
.y11c{bottom:16.147644px;}
.y10b{bottom:17.345413px;}
.y119{bottom:17.359727px;}
.y52{bottom:17.460000px;}
.y4d{bottom:17.640000px;}
.ybe{bottom:21.960000px;}
.y132{bottom:21.990000px;}
.ye3{bottom:22.005000px;}
.y92{bottom:22.140000px;}
.ya1{bottom:22.185000px;}
.yd9{bottom:22.432670px;}
.yb2{bottom:22.935801px;}
.yb7{bottom:23.136975px;}
.y175{bottom:23.760000px;}
.y86{bottom:23.940000px;}
.y97{bottom:24.203447px;}
.ycc{bottom:25.623300px;}
.ydd{bottom:25.692075px;}
.ydc{bottom:25.883797px;}
.y150{bottom:26.129751px;}
.y65{bottom:26.280000px;}
.y155{bottom:26.381004px;}
.y6b{bottom:26.460000px;}
.y72{bottom:26.490000px;}
.y7a{bottom:26.505000px;}
.y95{bottom:26.809992px;}
.y98{bottom:26.996165px;}
.yad{bottom:27.162088px;}
.y8a{bottom:28.595299px;}
.yf1{bottom:28.641868px;}
.yf0{bottom:28.855602px;}
.y12c{bottom:28.879404px;}
.y12b{bottom:29.093308px;}
.y108{bottom:29.254405px;}
.yff{bottom:29.601078px;}
.yc1{bottom:29.625056px;}
.yf7{bottom:29.625407px;}
.y173{bottom:29.700000px;}
.y84{bottom:29.880000px;}
.yaa{bottom:30.087295px;}
.y153{bottom:30.149781px;}
.ya4{bottom:30.296228px;}
.y15b{bottom:32.261588px;}
.y165{bottom:32.494539px;}
.y10d{bottom:32.887657px;}
.y11b{bottom:32.914798px;}
.y15d{bottom:35.151494px;}
.y15c{bottom:38.523051px;}
.y166{bottom:38.753520px;}
.y184{bottom:39.954924px;}
.y18e{bottom:39.955402px;}
.y171{bottom:42.660000px;}
.y82{bottom:42.840000px;}
.y159{bottom:42.857910px;}
.y121{bottom:43.212154px;}
.y17a{bottom:43.602817px;}
.y135{bottom:46.247715px;}
.ybb{bottom:48.084613px;}
.ye1{bottom:49.658304px;}
.y90{bottom:51.589830px;}
.y16b{bottom:51.660000px;}
.y161{bottom:51.885000px;}
.yf4{bottom:55.359739px;}
.yc6{bottom:55.445327px;}
.y130{bottom:55.619626px;}
.y172{bottom:55.620000px;}
.y83{bottom:55.800000px;}
.y186{bottom:55.809983px;}
.y190{bottom:55.810650px;}
.ybf{bottom:56.340000px;}
.ye4{bottom:56.385000px;}
.y182{bottom:56.444194px;}
.y18c{bottom:56.444869px;}
.y93{bottom:56.520000px;}
.yba{bottom:56.534589px;}
.ya2{bottom:56.565000px;}
.y75{bottom:57.240000px;}
.yd0{bottom:57.275518px;}
.ye6{bottom:57.283398px;}
.y77{bottom:57.420000px;}
.y79{bottom:57.465000px;}
.ydb{bottom:57.519206px;}
.y151{bottom:57.536319px;}
.y9c{bottom:57.902237px;}
.y110{bottom:57.916725px;}
.y11e{bottom:57.964521px;}
.y8c{bottom:59.194320px;}
.y163{bottom:60.659951px;}
.y17c{bottom:60.905445px;}
.yfd{bottom:61.020000px;}
.y133{bottom:61.050000px;}
.y112{bottom:61.065000px;}
.yb0{bottom:61.200000px;}
.y174{bottom:61.590000px;}
.y178{bottom:61.597560px;}
.y85{bottom:61.740000px;}
.y123{bottom:62.251174px;}
.y169{bottom:62.345061px;}
.y15e{bottom:62.364776px;}
.yfa{bottom:63.871225px;}
.y152{bottom:64.068874px;}
.y102{bottom:64.089814px;}
.yef{bottom:64.123177px;}
.yc4{bottom:64.142689px;}
.y114{bottom:64.226951px;}
.y12a{bottom:64.390400px;}
.ya8{bottom:64.980597px;}
.y14c{bottom:65.073905px;}
.y17e{bottom:65.160000px;}
.y157{bottom:65.340000px;}
.y10c{bottom:66.192465px;}
.y11a{bottom:66.247090px;}
.y14a{bottom:68.592456px;}
.yd4{bottom:72.474114px;}
.yd1{bottom:73.101622px;}
.ybc{bottom:73.233426px;}
.y9a{bottom:73.355292px;}
.ydf{bottom:73.432763px;}
.y8f{bottom:74.403302px;}
.ye7{bottom:80.795109px;}
.y124{bottom:81.076290px;}
.y103{bottom:81.198399px;}
.yc7{bottom:81.265586px;}
.yfb{bottom:81.265926px;}
.y14f{bottom:81.405310px;}
.yf3{bottom:81.863823px;}
.y106{bottom:81.936556px;}
.y115{bottom:82.004174px;}
.y12f{bottom:82.145890px;}
.y185{bottom:82.235090px;}
.y18f{bottom:82.236073px;}
.yae{bottom:82.322816px;}
.y10f{bottom:82.945793px;}
.y11d{bottom:83.014244px;}
.y14d{bottom:84.923882px;}
.y154{bottom:88.942886px;}
.y17b{bottom:89.743169px;}
.y194{bottom:112.896000px;}
.y38{bottom:115.056000px;}
.y1bf{bottom:115.236000px;}
.y13{bottom:117.576000px;}
.y1a0{bottom:119.556000px;}
.y3f{bottom:123.696000px;}
.y144{bottom:124.956000px;}
.y63{bottom:125.316000px;}
.y31{bottom:131.256000px;}
.y80{bottom:138.276000px;}
.y193{bottom:144.036000px;}
.y37{bottom:146.196000px;}
.y12{bottom:148.716000px;}
.y198{bottom:149.796000px;}
.y19f{bottom:150.510000px;}
.y143{bottom:150.870000px;}
.y3e{bottom:154.650000px;}
.y62{bottom:156.270000px;}
.y30{bottom:162.390000px;}
.y7f{bottom:169.230000px;}
.y36{bottom:173.190000px;}
.y192{bottom:174.990000px;}
.y28{bottom:176.070000px;}
.y142{bottom:176.610000px;}
.y1be{bottom:177.330000px;}
.y11{bottom:179.670000px;}
.y197{bottom:180.750000px;}
.y19e{bottom:181.650000px;}
.y3d{bottom:181.830000px;}
.y61{bottom:187.410000px;}
.y1b{bottom:189.750000px;}
.y191{bottom:192.450000px;}
.y2f{bottom:193.350000px;}
.yf5{bottom:195.510000px;}
.y7e{bottom:200.370000px;}
.y141{bottom:202.530000px;}
.y10{bottom:206.850000px;}
.y27{bottom:207.030000px;}
.y1bd{bottom:208.290000px;}
.y196{bottom:211.890000px;}
.y19d{bottom:212.610000px;}
.y188{bottom:214.760819px;}
.y18a{bottom:214.760827px;}
.y18d{bottom:214.760836px;}
.yed{bottom:218.159123px;}
.ye8{bottom:218.159141px;}
.ye5{bottom:218.159150px;}
.yea{bottom:218.159159px;}
.y60{bottom:218.370000px;}
.y2e{bottom:220.530000px;}
.y1a{bottom:220.890000px;}
.y140{bottom:228.450000px;}
.y7d{bottom:231.330000px;}
.y26{bottom:238.170000px;}
.y195{bottom:238.890000px;}
.y1bc{bottom:239.430000px;}
.y19c{bottom:243.750000px;}
.y5f{bottom:249.510000px;}
.y19{bottom:251.850000px;}
.y13f{bottom:254.190000px;}
.y7c{bottom:262.470000px;}
.y25{bottom:265.170000px;}
.y1bb{bottom:270.390000px;}
.y19b{bottom:274.710000px;}
.y18{bottom:278.850000px;}
.y13e{bottom:280.110000px;}
.y5e{bottom:280.470000px;}
.y7b{bottom:293.430000px;}
.y1ba{bottom:301.350000px;}
.y187{bottom:304.950000px;}
.y19a{bottom:305.850000px;}
.y13d{bottom:306.030000px;}
.ye2{bottom:308.010000px;}
.y78{bottom:310.890000px;}
.y5d{bottom:311.610000px;}
.y17f{bottom:327.035826px;}
.y183{bottom:327.035835px;}
.ye0{bottom:330.390958px;}
.yd5{bottom:330.390974px;}
.yd3{bottom:330.390982px;}
.yd7{bottom:330.390990px;}
.y13c{bottom:331.995000px;}
.y1b9{bottom:332.535000px;}
.y199{bottom:332.895000px;}
.y5c{bottom:342.615000px;}
.y13b{bottom:357.735000px;}
.y1b8{bottom:363.495000px;}
.y5b{bottom:373.755000px;}
.y13a{bottom:383.655000px;}
.y76{bottom:385.095000px;}
.y1b7{bottom:394.635000px;}
.y5a{bottom:404.715000px;}
.y139{bottom:409.575000px;}
.yd2{bottom:411.015000px;}
.y17d{bottom:417.315000px;}
.y1b6{bottom:425.595000px;}
.yce{bottom:433.232740px;}
.ycb{bottom:433.232751px;}
.y138{bottom:435.495000px;}
.y59{bottom:435.855000px;}
.y176{bottom:439.394575px;}
.y179{bottom:439.394585px;}
.y1b5{bottom:456.735000px;}
.y74{bottom:459.255000px;}
.y137{bottom:463.755000px;}
.y58{bottom:466.815000px;}
.y20{bottom:472.755000px;}
.y136{bottom:481.215000px;}
.y1b4{bottom:487.695000px;}
.y57{bottom:497.775000px;}
.y134{bottom:503.340000px;}
.y1f{bottom:503.895000px;}
.yca{bottom:513.975000px;}
.y1b3{bottom:518.835000px;}
.y35{bottom:527.295000px;}
.y56{bottom:528.915000px;}
.y73{bottom:533.235000px;}
.y1e{bottom:534.855000px;}
.yc2{bottom:537.062015px;}
.yc5{bottom:537.062026px;}
.yc0{bottom:537.062037px;}
.y170{bottom:538.815000px;}
.y1b2{bottom:549.795000px;}
.y34{bottom:558.435000px;}
.y55{bottom:559.875000px;}
.y1d{bottom:565.995000px;}
.y71{bottom:576.255000px;}
.y1b1{bottom:580.935000px;}
.y33{bottom:589.395000px;}
.y54{bottom:591.015000px;}
.y1c{bottom:592.995000px;}
.y131{bottom:593.715000px;}
.y1b0{bottom:611.925000px;}
.yf{bottom:612.645000px;}
.y126{bottom:616.125010px;}
.y120{bottom:616.125019px;}
.y129{bottom:616.125028px;}
.y122{bottom:616.125037px;}
.y12e{bottom:616.125046px;}
.y32{bottom:616.605000px;}
.y70{bottom:619.485000px;}
.y53{bottom:622.005000px;}
.ybd{bottom:626.505000px;}
.y16f{bottom:629.565000px;}
.y2d{bottom:637.665000px;}
.y51{bottom:639.645000px;}
.y1af{bottom:643.065000px;}
.ye{bottom:643.785000px;}
.yb1{bottom:648.775085px;}
.yb8{bottom:648.775093px;}
.yb6{bottom:648.775102px;}
.yb3{bottom:648.775110px;}
.y16e{bottom:660.705000px;}
.y6f{bottom:662.505000px;}
.y2c{bottom:668.805000px;}
.y17{bottom:669.165000px;}
.y24{bottom:671.145000px;}
.y50{bottom:673.845000px;}
.y1ae{bottom:674.025000px;}
.yd{bottom:674.745000px;}
.y16d{bottom:691.665000px;}
.y2b{bottom:699.765000px;}
.y16{bottom:700.125000px;}
.y23{bottom:702.105000px;}
.y1ad{bottom:705.165000px;}
.yc{bottom:705.345000px;}
.y6e{bottom:705.525000px;}
.y11f{bottom:706.065000px;}
.y4f{bottom:708.225000px;}
.y16c{bottom:722.625000px;}
.y113{bottom:728.190000px;}
.yaf{bottom:729.465000px;}
.y2a{bottom:730.905000px;}
.y15{bottom:731.265000px;}
.y22{bottom:733.245000px;}
.y1ac{bottom:736.125000px;}
.y16a{bottom:740.265000px;}
.y4e{bottom:742.605000px;}
.y6d{bottom:748.545000px;}
.ya9{bottom:751.909873px;}
.ya3{bottom:751.909882px;}
.ya5{bottom:751.909890px;}
.ya7{bottom:751.909899px;}
.y7{bottom:754.384500px;}
.y29{bottom:757.905000px;}
.y14{bottom:758.265000px;}
.y21{bottom:760.245000px;}
.y3c{bottom:761.325000px;}
.y162{bottom:762.240000px;}
.y1ab{bottom:767.265000px;}
.y4c{bottom:777.705000px;}
.y6{bottom:789.760500px;}
.y6c{bottom:791.565000px;}
.y3b{bottom:792.465000px;}
.y5{bottom:793.246500px;}
.y1aa{bottom:798.225000px;}
.y111{bottom:818.565000px;}
.y3a{bottom:819.465000px;}
.y4b{bottom:827.025000px;}
.y1a9{bottom:829.365000px;}
.y160{bottom:833.865000px;}
.y6a{bottom:834.585000px;}
.y4{bottom:835.086000px;}
.y105{bottom:840.540000px;}
.ya0{bottom:841.965000px;}
.y158{bottom:855.840000px;}
.y4a{bottom:858.165000px;}
.y1a8{bottom:860.325000px;}
.y9e{bottom:864.567958px;}
.y94{bottom:864.567966px;}
.y96{bottom:864.567974px;}
.y9b{bottom:864.567981px;}
.y3{bottom:876.925500px;}
.y69{bottom:877.830000px;}
.y1c0{bottom:879.450000px;}
.y49{bottom:889.170000px;}
.y1a7{bottom:891.510000px;}
.y48{bottom:920.310000px;}
.y68{bottom:920.850000px;}
.y1a6{bottom:922.470000px;}
.y156{bottom:927.510000px;}
.y104{bottom:930.930000px;}
.y47{bottom:937.770000px;}
.y91{bottom:945.150000px;}
.y14b{bottom:949.959006px;}
.y14e{bottom:949.959017px;}
.y145{bottom:949.959027px;}
.y149{bottom:949.959038px;}
.y147{bottom:949.959048px;}
.y1a5{bottom:953.610000px;}
.yfe{bottom:953.704825px;}
.y67{bottom:963.870000px;}
.y87{bottom:967.215000px;}
.y46{bottom:968.730000px;}
.y2{bottom:971.235000px;}
.y1a4{bottom:984.570000px;}
.y45{bottom:999.870000px;}
.y66{bottom:1006.890000px;}
.y1a3{bottom:1015.710000px;}
.y43{bottom:1030.830000px;}
.yfc{bottom:1043.430000px;}
.y1a2{bottom:1046.670000px;}
.y81{bottom:1049.010000px;}
.y64{bottom:1050.630000px;}
.y1{bottom:1051.596000px;}
.y41{bottom:1062.690000px;}
.yf6{bottom:1066.000086px;}
.y1a1{bottom:1077.810000px;}
.yb{bottom:1103.550000px;}
.y40{bottom:1108.770000px;}
.ya{bottom:1137.060000px;}
.y39{bottom:1139.940000px;}
.y9{bottom:1173.420000px;}
.y8{bottom:1193.040000px;}
.h1f{height:25.631915px;}
.h3f{height:26.395787px;}
.h35{height:28.347078px;}
.h55{height:28.558557px;}
.h29{height:28.765449px;}
.h47{height:29.426376px;}
.hd{height:30.960000px;}
.hf{height:31.140000px;}
.h38{height:31.440251px;}
.h1a{height:31.724984px;}
.h63{height:32.150206px;}
.h1d{height:33.399162px;}
.h21{height:33.399472px;}
.h4c{height:33.988038px;}
.h32{height:34.016493px;}
.h11{height:34.200000px;}
.h10{height:34.380000px;}
.h3b{height:34.394511px;}
.h3d{height:34.395150px;}
.h5b{height:34.590408px;}
.h4e{height:35.367435px;}
.h50{height:35.396622px;}
.h2c{height:36.091690px;}
.h25{height:37.482251px;}
.h52{height:37.483106px;}
.h6f{height:37.923319px;}
.h72{height:37.923772px;}
.h43{height:38.343459px;}
.h45{height:38.344172px;}
.h4{height:40.610606px;}
.h6b{height:41.385725px;}
.h61{height:42.197145px;}
.h12{height:43.020000px;}
.h67{height:43.184707px;}
.h13{height:43.236000px;}
.h59{height:45.072350px;}
.h2{height:47.868912px;}
.h6{height:49.104639px;}
.h5{height:56.516540px;}
.h18{height:58.651172px;}
.h3{height:60.922680px;}
.ha{height:65.884219px;}
.h9{height:70.664062px;}
.h64{height:71.515765px;}
.h60{height:71.515785px;}
.h62{height:71.515795px;}
.h66{height:71.627209px;}
.he{height:72.562500px;}
.h14{height:73.980000px;}
.h15{height:74.160000px;}
.h16{height:74.196000px;}
.hc{height:74.704922px;}
.h69{height:75.636000px;}
.h17{height:75.780000px;}
.h20{height:80.518598px;}
.h1e{height:80.518606px;}
.h1c{height:80.518614px;}
.h22{height:80.518621px;}
.h3e{height:80.621820px;}
.h3a{height:80.621828px;}
.h3c{height:80.621836px;}
.h40{height:80.621852px;}
.h2d{height:80.690024px;}
.h2e{height:80.690032px;}
.h2f{height:80.690040px;}
.h2b{height:80.690049px;}
.h37{height:80.757176px;}
.h39{height:80.757186px;}
.h19{height:81.001404px;}
.hb{height:84.898125px;}
.h31{height:89.428401px;}
.h34{height:89.428412px;}
.h33{height:89.428424px;}
.h4b{height:89.616400px;}
.h49{height:89.690352px;}
.h46{height:89.878279px;}
.h42{height:89.878288px;}
.h44{height:89.878297px;}
.h48{height:89.878315px;}
.h57{height:89.937990px;}
.h53{height:89.937999px;}
.h56{height:89.938008px;}
.h51{height:89.938017px;}
.h54{height:89.938026px;}
.h27{height:90.056259px;}
.h26{height:90.056267px;}
.h24{height:90.056276px;}
.h28{height:90.056285px;}
.h70{height:90.278000px;}
.h6e{height:90.278009px;}
.h74{height:90.279079px;}
.h73{height:90.279088px;}
.h71{height:90.279097px;}
.h4d{height:90.301446px;}
.h4f{height:90.375967px;}
.h68{height:93.600000px;}
.h65{height:93.636000px;}
.h5a{height:98.254902px;}
.h5c{height:98.254912px;}
.h58{height:98.254923px;}
.h5e{height:98.254933px;}
.h5d{height:98.254944px;}
.h6c{height:98.520399px;}
.h6a{height:98.520408px;}
.h30{height:102.960000px;}
.h41{height:102.996000px;}
.h1b{height:103.140000px;}
.h23{height:103.176000px;}
.h4a{height:112.356000px;}
.h2a{height:112.500000px;}
.h36{height:112.536000px;}
.h6d{height:120.600000px;}
.h5f{height:120.780000px;}
.h0{height:1174.479000px;}
.h1{height:1174.500000px;}
.h7{height:1262.880000px;}
.h8{height:1263.000000px;}
.w34{width:63.216000px;}
.w18{width:63.576000px;}
.w35{width:73.440000px;}
.w19{width:73.620000px;}
.wd{width:74.340000px;}
.w17{width:84.780000px;}
.w14{width:84.960000px;}
.w32{width:85.140000px;}
.w16{width:87.516000px;}
.w12{width:93.096000px;}
.w8{width:95.436000px;}
.w3a{width:98.381874px;}
.w33{width:105.156000px;}
.w15{width:105.336000px;}
.w9{width:106.200000px;}
.w6{width:110.340000px;}
.w7{width:116.856000px;}
.wb{width:117.000000px;}
.wc{width:117.036000px;}
.w39{width:117.104801px;}
.w38{width:117.104813px;}
.w1e{width:117.214536px;}
.w1c{width:117.214543px;}
.w1d{width:117.214551px;}
.w3b{width:125.075861px;}
.w37{width:125.490296px;}
.w36{width:125.490306px;}
.w1f{width:125.504056px;}
.w20{width:125.504065px;}
.w21{width:125.504073px;}
.w10{width:136.620000px;}
.w11{width:143.496000px;}
.w3f{width:144.045031px;}
.w3e{width:144.054706px;}
.w3c{width:144.054709px;}
.w3d{width:144.054713px;}
.w28{width:144.300736px;}
.w23{width:144.418590px;}
.w26{width:144.418598px;}
.w22{width:144.418607px;}
.w27{width:144.418615px;}
.w25{width:144.418623px;}
.w24{width:144.418631px;}
.w5{width:144.576000px;}
.wf{width:148.716000px;}
.w1b{width:152.532307px;}
.w1a{width:152.532314px;}
.w29{width:152.696319px;}
.we{width:158.610000px;}
.w2d{width:161.843626px;}
.w2a{width:161.850981px;}
.w2b{width:161.995897px;}
.w30{width:161.999957px;}
.w2e{width:162.000720px;}
.wa{width:169.770000px;}
.w2c{width:171.299414px;}
.w2f{width:171.526363px;}
.w13{width:191.190000px;}
.w31{width:191.730000px;}
.w4{width:892.979987px;}
.w2{width:892.980000px;}
.w3{width:893.250000px;}
.w0{width:904.479000px;}
.w1{width:904.500000px;}
.x0{left:0.000000px;}
.x68{left:2.715391px;}
.x48{left:5.499189px;}
.x61{left:6.607706px;}
.x18{left:8.100000px;}
.x2f{left:9.900000px;}
.x1e{left:12.420000px;}
.x2a{left:13.905000px;}
.x38{left:15.840000px;}
.x24{left:16.920000px;}
.x2c{left:18.405000px;}
.x3a{left:20.160000px;}
.x21{left:21.600000px;}
.x45{left:23.580000px;}
.x41{left:25.055064px;}
.x69{left:26.068177px;}
.x34{left:27.210000px;}
.x6b{left:29.879303px;}
.x2d{left:31.530000px;}
.x28{left:33.165000px;}
.x54{left:34.278674px;}
.x2b{left:36.030000px;}
.x22{left:38.160000px;}
.x4f{left:39.648010px;}
.x47{left:41.247800px;}
.x23{left:42.690000px;}
.x70{left:44.138080px;}
.x59{left:46.489011px;}
.x2e{left:48.060000px;}
.x67{left:49.134143px;}
.x5c{left:50.140827px;}
.x3e{left:51.258753px;}
.x29{left:52.560000px;}
.x64{left:54.688297px;}
.x6c{left:55.741450px;}
.x4a{left:62.101337px;}
.x72{left:63.921107px;}
.x31{left:68.034000px;}
.x62{left:70.325851px;}
.x5b{left:73.446332px;}
.x3d{left:76.397917px;}
.x5d{left:78.364625px;}
.x6a{left:79.779213px;}
.x65{left:84.208670px;}
.x49{left:89.100771px;}
.x6d{left:96.027634px;}
.x4e{left:97.908414px;}
.x5a{left:100.650967px;}
.x3c{left:102.601606px;}
.x58{left:103.892468px;}
.x8{left:106.235987px;}
.x1{left:107.574750px;}
.x71{left:111.298172px;}
.x50{left:112.422197px;}
.x4b{left:113.678154px;}
.x3f{left:115.526398px;}
.x56{left:117.861422px;}
.x51{left:119.168040px;}
.x40{left:120.837957px;}
.x3b{left:125.340000px;}
.x42{left:128.097087px;}
.x53{left:129.540000px;}
.x55{left:131.921797px;}
.x5e{left:135.008768px;}
.x4d{left:138.840000px;}
.x43{left:141.021879px;}
.x46{left:143.040000px;}
.x6f{left:145.119000px;}
.x63{left:148.134272px;}
.x5f{left:149.219351px;}
.x6e{left:152.725429px;}
.x4c{left:154.119000px;}
.x52{left:158.259000px;}
.x57{left:167.799000px;}
.x44{left:171.759000px;}
.x60{left:176.439000px;}
.x66{left:181.119000px;}
.x2{left:248.314500px;}
.x19{left:250.815000px;}
.x3{left:256.989000px;}
.x25{left:264.855000px;}
.x4{left:272.125500px;}
.x1d{left:276.015000px;}
.x32{left:297.435000px;}
.x9{left:327.134987px;}
.x1a{left:361.155000px;}
.x33{left:382.395000px;}
.x5{left:393.730798px;}
.x26{left:413.565000px;}
.x30{left:437.504987px;}
.x7{left:442.004987px;}
.xb{left:446.504987px;}
.x1b{left:478.005000px;}
.x35{left:487.725000px;}
.x1f{left:510.045000px;}
.x27{left:550.185000px;}
.x1c{left:573.450000px;}
.x36{left:575.250000px;}
.x20{left:627.090000px;}
.x14{left:635.549987px;}
.x37{left:660.030000px;}
.x16{left:663.809987px;}
.x15{left:668.309987px;}
.xe{left:691.709987px;}
.xc{left:692.789987px;}
.xa{left:695.489987px;}
.x6{left:700.808957px;}
.xd{left:706.289987px;}
.x39{left:723.600000px;}
.x11{left:726.839987px;}
.x10{left:731.159987px;}
.x12{left:732.599987px;}
.x13{left:735.659987px;}
.x74{left:767.159987px;}
.x73{left:788.939987px;}
.xf{left:813.239987px;}
.x17{left:817.559987px;}
@media print{
.va{vertical-align:-30.898045pt;}
.v9{vertical-align:-29.957541pt;}
.v8{vertical-align:-27.688704pt;}
.vb{vertical-align:-11.987759pt;}
.v7{vertical-align:-10.400673pt;}
.v6{vertical-align:-9.012998pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.416524pt;}
.v5{vertical-align:5.120000pt;}
.v4{vertical-align:21.120000pt;}
.v3{vertical-align:24.320000pt;}
.ls8{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.230933pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls16{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.161067pt;}
.ls6{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.298667pt;}
.ls4{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.480000pt;}
.lse{letter-spacing:0.544000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.687360pt;}
.ls10{letter-spacing:1.294939pt;}
.ls12{letter-spacing:184.366082pt;}
.lsd{letter-spacing:323.916155pt;}
.ls11{letter-spacing:350.197155pt;}
.lsf{letter-spacing:422.388040pt;}
.ws4{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.616000pt;}
.wse{word-spacing:-13.824000pt;}
.ws21{word-spacing:-13.327360pt;}
.wsc{word-spacing:-13.280000pt;}
.ws1f{word-spacing:-13.049067pt;}
.wsa{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.881067pt;}
.ws3{word-spacing:-10.720000pt;}
.wsd{word-spacing:-8.640000pt;}
.ws1b{word-spacing:-0.038414pt;}
.ws1d{word-spacing:-0.036805pt;}
.ws1c{word-spacing:-0.035963pt;}
.ws1e{word-spacing:-0.035272pt;}
.ws14{word-spacing:-0.032679pt;}
.ws20{word-spacing:-0.032321pt;}
.ws10{word-spacing:-0.031945pt;}
.ws1a{word-spacing:-0.030167pt;}
.ws18{word-spacing:-0.030143pt;}
.ws13{word-spacing:-0.029313pt;}
.ws11{word-spacing:-0.028991pt;}
.ws17{word-spacing:-0.028967pt;}
.wsf{word-spacing:-0.028465pt;}
.wsb{word-spacing:-0.027038pt;}
.ws12{word-spacing:-0.026796pt;}
.ws0{word-spacing:0.000000pt;}
.ws19{word-spacing:205.714298pt;}
.ws15{word-spacing:371.374454pt;}
.ws16{word-spacing:425.163296pt;}
._9{margin-left:-127.893735pt;}
._b{margin-left:-118.189084pt;}
._c{margin-left:-60.072310pt;}
._7{margin-left:-58.724179pt;}
._d{margin-left:-56.687559pt;}
._6{margin-left:-52.325661pt;}
._f{margin-left:-47.695149pt;}
._e{margin-left:-44.781692pt;}
._8{margin-left:-43.158062pt;}
._a{margin-left:-41.390022pt;}
._1d{margin-left:-3.708046pt;}
._1{margin-left:-2.691954pt;}
._3{margin-left:-1.581261pt;}
._2{width:0.974396pt;}
._0{width:2.103903pt;}
._4{width:3.754667pt;}
._5{width:4.736000pt;}
._10{width:5.952000pt;}
._11{width:6.912000pt;}
._19{width:7.808000pt;}
._14{width:10.282667pt;}
._1c{width:11.459209pt;}
._13{width:12.544000pt;}
._12{width:13.549261pt;}
._1e{width:17.457604pt;}
._17{width:23.274667pt;}
._18{width:24.192000pt;}
._15{width:25.792000pt;}
._16{width:26.688000pt;}
._1a{width:28.352000pt;}
._1b{width:29.347209pt;}
.fsa{font-size:20.600525pt;}
.fsd{font-size:21.845261pt;}
.fs15{font-size:22.496285pt;}
.fs1b{font-size:22.965740pt;}
.fs1d{font-size:22.984692pt;}
.fs19{font-size:24.139098pt;}
.fs12{font-size:24.159307pt;}
.fs1f{font-size:24.339544pt;}
.fsf{font-size:24.515871pt;}
.fs17{font-size:25.079158pt;}
.fs13{font-size:26.795520pt;}
.fs9{font-size:27.038189pt;}
.fs23{font-size:27.400591pt;}
.fs25{font-size:28.245655pt;}
.fsc{font-size:28.465037pt;}
.fs18{font-size:28.966917pt;}
.fs11{font-size:28.991169pt;}
.fs14{font-size:29.313341pt;}
.fs21{font-size:29.480298pt;}
.fs1a{font-size:30.142533pt;}
.fs1c{font-size:30.167409pt;}
.fs10{font-size:30.759792pt;}
.fse{font-size:31.944923pt;}
.fs1e{font-size:31.945652pt;}
.fs27{font-size:32.320831pt;}
.fs28{font-size:32.321217pt;}
.fs16{font-size:32.678903pt;}
.fsb{font-size:34.560000pt;}
.fs26{font-size:35.271729pt;}
.fs22{font-size:35.963276pt;}
.fs24{font-size:36.804944pt;}
.fs20{font-size:38.413722pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:49.585600pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.448000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:63.760533pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.386667pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:0.992953pt;}
.yd8{bottom:1.022594pt;}
.yeb{bottom:1.140001pt;}
.yc9{bottom:1.207915pt;}
.y127{bottom:1.331037pt;}
.y148{bottom:1.339995pt;}
.ycf{bottom:1.563063pt;}
.y181{bottom:1.879126pt;}
.y18b{bottom:1.879148pt;}
.y15a{bottom:1.918220pt;}
.y177{bottom:2.050690pt;}
.y15f{bottom:2.132287pt;}
.y164{bottom:2.135899pt;}
.y167{bottom:2.349882pt;}
.y168{bottom:2.349971pt;}
.y180{bottom:2.818685pt;}
.y9d{bottom:3.309854pt;}
.yd6{bottom:3.408507pt;}
.y88{bottom:3.530254pt;}
.y89{bottom:3.530321pt;}
.y101{bottom:3.620915pt;}
.yc8{bottom:3.623856pt;}
.yf9{bottom:3.623946pt;}
.yab{bottom:3.714487pt;}
.yac{bottom:3.714565pt;}
.y109{bottom:3.756154pt;}
.y10a{bottom:3.756229pt;}
.y117{bottom:3.759254pt;}
.y118{bottom:3.759329pt;}
.ye9{bottom:3.799849pt;}
.y125{bottom:3.993230pt;}
.y146{bottom:4.466712pt;}
.y189{bottom:4.885781pt;}
.y8d{bottom:5.139670pt;}
.y8e{bottom:5.139737pt;}
.yb4{bottom:5.543894pt;}
.yb5{bottom:5.543968pt;}
.yb9{bottom:5.722745pt;}
.yee{bottom:8.360028pt;}
.y107{bottom:8.600191pt;}
.y116{bottom:8.607288pt;}
.ycd{bottom:8.708525pt;}
.yde{bottom:8.862436pt;}
.yf2{bottom:9.879961pt;}
.yda{bottom:9.884987pt;}
.y12d{bottom:10.078045pt;}
.y99{bottom:10.260563pt;}
.yec{bottom:11.019915pt;}
.y100{bottom:11.104438pt;}
.yc3{bottom:11.113040pt;}
.yf8{bottom:11.113332pt;}
.y128{bottom:11.218953pt;}
.ya6{bottom:11.514690pt;}
.y8b{bottom:11.898949pt;}
.y42{bottom:12.640000pt;}
.y44{bottom:12.800000pt;}
.y10e{bottom:14.341626pt;}
.y11c{bottom:14.353461pt;}
.y10b{bottom:15.418145pt;}
.y119{bottom:15.430869pt;}
.y52{bottom:15.520000pt;}
.y4d{bottom:15.680000pt;}
.ybe{bottom:19.520000pt;}
.y132{bottom:19.546667pt;}
.ye3{bottom:19.560000pt;}
.y92{bottom:19.680000pt;}
.ya1{bottom:19.720000pt;}
.yd9{bottom:19.940152pt;}
.yb2{bottom:20.387379pt;}
.yb7{bottom:20.566200pt;}
.y175{bottom:21.120000pt;}
.y86{bottom:21.280000pt;}
.y97{bottom:21.514175pt;}
.ycc{bottom:22.776266pt;}
.ydd{bottom:22.837400pt;}
.ydc{bottom:23.007820pt;}
.y150{bottom:23.226445pt;}
.y65{bottom:23.360000pt;}
.y155{bottom:23.449781pt;}
.y6b{bottom:23.520000pt;}
.y72{bottom:23.546667pt;}
.y7a{bottom:23.560000pt;}
.y95{bottom:23.831104pt;}
.y98{bottom:23.996591pt;}
.yad{bottom:24.144078pt;}
.y8a{bottom:25.418043pt;}
.yf1{bottom:25.459438pt;}
.yf0{bottom:25.649424pt;}
.y12c{bottom:25.670581pt;}
.y12b{bottom:25.860718pt;}
.y108{bottom:26.003916pt;}
.yff{bottom:26.312069pt;}
.yc1{bottom:26.333383pt;}
.yf7{bottom:26.333695pt;}
.y173{bottom:26.400000pt;}
.y84{bottom:26.560000pt;}
.yaa{bottom:26.744262pt;}
.y153{bottom:26.799806pt;}
.ya4{bottom:26.929980pt;}
.y15b{bottom:28.676967pt;}
.y165{bottom:28.884035pt;}
.y10d{bottom:29.233473pt;}
.y11b{bottom:29.257598pt;}
.y15d{bottom:31.245772pt;}
.y15c{bottom:34.242712pt;}
.y166{bottom:34.447573pt;}
.y184{bottom:35.515488pt;}
.y18e{bottom:35.515913pt;}
.y171{bottom:37.920000pt;}
.y82{bottom:38.080000pt;}
.y159{bottom:38.095920pt;}
.y121{bottom:38.410803pt;}
.y17a{bottom:38.758059pt;}
.y135{bottom:41.109080pt;}
.ybb{bottom:42.741879pt;}
.ye1{bottom:44.140715pt;}
.y90{bottom:45.857627pt;}
.y16b{bottom:45.920000pt;}
.y161{bottom:46.120000pt;}
.yf4{bottom:49.208657pt;}
.yc6{bottom:49.284735pt;}
.y130{bottom:49.439667pt;}
.y172{bottom:49.440000pt;}
.y83{bottom:49.600000pt;}
.y186{bottom:49.608874pt;}
.y190{bottom:49.609467pt;}
.ybf{bottom:50.080000pt;}
.ye4{bottom:50.120000pt;}
.y182{bottom:50.172617pt;}
.y18c{bottom:50.173217pt;}
.y93{bottom:50.240000pt;}
.yba{bottom:50.252968pt;}
.ya2{bottom:50.280000pt;}
.y75{bottom:50.880000pt;}
.yd0{bottom:50.911572pt;}
.ye6{bottom:50.918576pt;}
.y77{bottom:51.040000pt;}
.y79{bottom:51.080000pt;}
.ydb{bottom:51.128183pt;}
.y151{bottom:51.143394pt;}
.y9c{bottom:51.468655pt;}
.y110{bottom:51.481533pt;}
.y11e{bottom:51.524018pt;}
.y8c{bottom:52.617174pt;}
.y163{bottom:53.919956pt;}
.y17c{bottom:54.138174pt;}
.yfd{bottom:54.240000pt;}
.y133{bottom:54.266667pt;}
.y112{bottom:54.280000pt;}
.yb0{bottom:54.400000pt;}
.y174{bottom:54.746667pt;}
.y178{bottom:54.753387pt;}
.y85{bottom:54.880000pt;}
.y123{bottom:55.334377pt;}
.y169{bottom:55.417832pt;}
.y15e{bottom:55.435357pt;}
.yfa{bottom:56.774422pt;}
.y152{bottom:56.950110pt;}
.y102{bottom:56.968723pt;}
.yef{bottom:56.998380pt;}
.yc4{bottom:57.015723pt;}
.y114{bottom:57.090623pt;}
.y12a{bottom:57.235911pt;}
.ya8{bottom:57.760530pt;}
.y14c{bottom:57.843471pt;}
.y17e{bottom:57.920000pt;}
.y157{bottom:58.080000pt;}
.y10c{bottom:58.837747pt;}
.y11a{bottom:58.886303pt;}
.y14a{bottom:60.971072pt;}
.yd4{bottom:64.421435pt;}
.yd1{bottom:64.979220pt;}
.ybc{bottom:65.096379pt;}
.y9a{bottom:65.204704pt;}
.ydf{bottom:65.273567pt;}
.y8f{bottom:66.136268pt;}
.ye7{bottom:71.817875pt;}
.y124{bottom:72.067813pt;}
.y103{bottom:72.176355pt;}
.yc7{bottom:72.236077pt;}
.yfb{bottom:72.236379pt;}
.y14f{bottom:72.360275pt;}
.yf3{bottom:72.767843pt;}
.y106{bottom:72.832494pt;}
.y115{bottom:72.892599pt;}
.y12f{bottom:73.018569pt;}
.y185{bottom:73.097858pt;}
.y18f{bottom:73.098731pt;}
.yae{bottom:73.175836pt;}
.y10f{bottom:73.729594pt;}
.y11d{bottom:73.790439pt;}
.y14d{bottom:75.487895pt;}
.y154{bottom:79.060343pt;}
.y17b{bottom:79.771706pt;}
.y194{bottom:100.352000pt;}
.y38{bottom:102.272000pt;}
.y1bf{bottom:102.432000pt;}
.y13{bottom:104.512000pt;}
.y1a0{bottom:106.272000pt;}
.y3f{bottom:109.952000pt;}
.y144{bottom:111.072000pt;}
.y63{bottom:111.392000pt;}
.y31{bottom:116.672000pt;}
.y80{bottom:122.912000pt;}
.y193{bottom:128.032000pt;}
.y37{bottom:129.952000pt;}
.y12{bottom:132.192000pt;}
.y198{bottom:133.152000pt;}
.y19f{bottom:133.786667pt;}
.y143{bottom:134.106667pt;}
.y3e{bottom:137.466667pt;}
.y62{bottom:138.906667pt;}
.y30{bottom:144.346667pt;}
.y7f{bottom:150.426667pt;}
.y36{bottom:153.946667pt;}
.y192{bottom:155.546667pt;}
.y28{bottom:156.506667pt;}
.y142{bottom:156.986667pt;}
.y1be{bottom:157.626667pt;}
.y11{bottom:159.706667pt;}
.y197{bottom:160.666667pt;}
.y19e{bottom:161.466667pt;}
.y3d{bottom:161.626667pt;}
.y61{bottom:166.586667pt;}
.y1b{bottom:168.666667pt;}
.y191{bottom:171.066667pt;}
.y2f{bottom:171.866667pt;}
.yf5{bottom:173.786667pt;}
.y7e{bottom:178.106667pt;}
.y141{bottom:180.026667pt;}
.y10{bottom:183.866667pt;}
.y27{bottom:184.026667pt;}
.y1bd{bottom:185.146667pt;}
.y196{bottom:188.346667pt;}
.y19d{bottom:188.986667pt;}
.y188{bottom:190.898505pt;}
.y18a{bottom:190.898513pt;}
.y18d{bottom:190.898521pt;}
.yed{bottom:193.919220pt;}
.ye8{bottom:193.919236pt;}
.ye5{bottom:193.919244pt;}
.yea{bottom:193.919252pt;}
.y60{bottom:194.106667pt;}
.y2e{bottom:196.026667pt;}
.y1a{bottom:196.346667pt;}
.y140{bottom:203.066667pt;}
.y7d{bottom:205.626667pt;}
.y26{bottom:211.706667pt;}
.y195{bottom:212.346667pt;}
.y1bc{bottom:212.826667pt;}
.y19c{bottom:216.666667pt;}
.y5f{bottom:221.786667pt;}
.y19{bottom:223.866667pt;}
.y13f{bottom:225.946667pt;}
.y7c{bottom:233.306667pt;}
.y25{bottom:235.706667pt;}
.y1bb{bottom:240.346667pt;}
.y19b{bottom:244.186667pt;}
.y18{bottom:247.866667pt;}
.y13e{bottom:248.986667pt;}
.y5e{bottom:249.306667pt;}
.y7b{bottom:260.826667pt;}
.y1ba{bottom:267.866667pt;}
.y187{bottom:271.066667pt;}
.y19a{bottom:271.866667pt;}
.y13d{bottom:272.026667pt;}
.ye2{bottom:273.786667pt;}
.y78{bottom:276.346667pt;}
.y5d{bottom:276.986667pt;}
.y17f{bottom:290.698512pt;}
.y183{bottom:290.698520pt;}
.ye0{bottom:293.680852pt;}
.yd5{bottom:293.680866pt;}
.yd3{bottom:293.680873pt;}
.yd7{bottom:293.680880pt;}
.y13c{bottom:295.106667pt;}
.y1b9{bottom:295.586667pt;}
.y199{bottom:295.906667pt;}
.y5c{bottom:304.546667pt;}
.y13b{bottom:317.986667pt;}
.y1b8{bottom:323.106667pt;}
.y5b{bottom:332.226667pt;}
.y13a{bottom:341.026667pt;}
.y76{bottom:342.306667pt;}
.y1b7{bottom:350.786667pt;}
.y5a{bottom:359.746667pt;}
.y139{bottom:364.066667pt;}
.yd2{bottom:365.346667pt;}
.y17d{bottom:370.946667pt;}
.y1b6{bottom:378.306667pt;}
.yce{bottom:385.095769pt;}
.ycb{bottom:385.095778pt;}
.y138{bottom:387.106667pt;}
.y59{bottom:387.426667pt;}
.y176{bottom:390.572956pt;}
.y179{bottom:390.572964pt;}
.y1b5{bottom:405.986667pt;}
.y74{bottom:408.226667pt;}
.y137{bottom:412.226667pt;}
.y58{bottom:414.946667pt;}
.y20{bottom:420.226667pt;}
.y136{bottom:427.746667pt;}
.y1b4{bottom:433.506667pt;}
.y57{bottom:442.466667pt;}
.y134{bottom:447.413333pt;}
.y1f{bottom:447.906667pt;}
.yca{bottom:456.866667pt;}
.y1b3{bottom:461.186667pt;}
.y35{bottom:468.706667pt;}
.y56{bottom:470.146667pt;}
.y73{bottom:473.986667pt;}
.y1e{bottom:475.426667pt;}
.yc2{bottom:477.388457pt;}
.yc5{bottom:477.388468pt;}
.yc0{bottom:477.388478pt;}
.y170{bottom:478.946667pt;}
.y1b2{bottom:488.706667pt;}
.y34{bottom:496.386667pt;}
.y55{bottom:497.666667pt;}
.y1d{bottom:503.106667pt;}
.y71{bottom:512.226667pt;}
.y1b1{bottom:516.386667pt;}
.y33{bottom:523.906667pt;}
.y54{bottom:525.346667pt;}
.y1c{bottom:527.106667pt;}
.y131{bottom:527.746667pt;}
.y1b0{bottom:543.933333pt;}
.yf{bottom:544.573333pt;}
.y126{bottom:547.666675pt;}
.y120{bottom:547.666683pt;}
.y129{bottom:547.666691pt;}
.y122{bottom:547.666699pt;}
.y12e{bottom:547.666707pt;}
.y32{bottom:548.093333pt;}
.y70{bottom:550.653333pt;}
.y53{bottom:552.893333pt;}
.ybd{bottom:556.893333pt;}
.y16f{bottom:559.613333pt;}
.y2d{bottom:566.813333pt;}
.y51{bottom:568.573333pt;}
.y1af{bottom:571.613333pt;}
.ye{bottom:572.253333pt;}
.yb1{bottom:576.688964pt;}
.yb8{bottom:576.688972pt;}
.yb6{bottom:576.688979pt;}
.yb3{bottom:576.688987pt;}
.y16e{bottom:587.293333pt;}
.y6f{bottom:588.893333pt;}
.y2c{bottom:594.493333pt;}
.y17{bottom:594.813333pt;}
.y24{bottom:596.573333pt;}
.y50{bottom:598.973333pt;}
.y1ae{bottom:599.133333pt;}
.yd{bottom:599.773333pt;}
.y16d{bottom:614.813333pt;}
.y2b{bottom:622.013333pt;}
.y16{bottom:622.333333pt;}
.y23{bottom:624.093333pt;}
.y1ad{bottom:626.813333pt;}
.yc{bottom:626.973333pt;}
.y6e{bottom:627.133333pt;}
.y11f{bottom:627.613333pt;}
.y4f{bottom:629.533333pt;}
.y16c{bottom:642.333333pt;}
.y113{bottom:647.280000pt;}
.yaf{bottom:648.413333pt;}
.y2a{bottom:649.693333pt;}
.y15{bottom:650.013333pt;}
.y22{bottom:651.773333pt;}
.y1ac{bottom:654.333333pt;}
.y16a{bottom:658.013333pt;}
.y4e{bottom:660.093333pt;}
.y6d{bottom:665.373333pt;}
.ya9{bottom:668.364331pt;}
.ya3{bottom:668.364339pt;}
.ya5{bottom:668.364347pt;}
.ya7{bottom:668.364355pt;}
.y7{bottom:670.564000pt;}
.y29{bottom:673.693333pt;}
.y14{bottom:674.013333pt;}
.y21{bottom:675.773333pt;}
.y3c{bottom:676.733333pt;}
.y162{bottom:677.546667pt;}
.y1ab{bottom:682.013333pt;}
.y4c{bottom:691.293333pt;}
.y6{bottom:702.009333pt;}
.y6c{bottom:703.613333pt;}
.y3b{bottom:704.413333pt;}
.y5{bottom:705.108000pt;}
.y1aa{bottom:709.533333pt;}
.y111{bottom:727.613333pt;}
.y3a{bottom:728.413333pt;}
.y4b{bottom:735.133333pt;}
.y1a9{bottom:737.213333pt;}
.y160{bottom:741.213333pt;}
.y6a{bottom:741.853333pt;}
.y4{bottom:742.298667pt;}
.y105{bottom:747.146667pt;}
.ya0{bottom:748.413333pt;}
.y158{bottom:760.746667pt;}
.y4a{bottom:762.813333pt;}
.y1a8{bottom:764.733333pt;}
.y9e{bottom:768.504852pt;}
.y94{bottom:768.504859pt;}
.y96{bottom:768.504865pt;}
.y9b{bottom:768.504872pt;}
.y3{bottom:779.489333pt;}
.y69{bottom:780.293333pt;}
.y1c0{bottom:781.733333pt;}
.y49{bottom:790.373333pt;}
.y1a7{bottom:792.453333pt;}
.y48{bottom:818.053333pt;}
.y68{bottom:818.533333pt;}
.y1a6{bottom:819.973333pt;}
.y156{bottom:824.453333pt;}
.y104{bottom:827.493333pt;}
.y47{bottom:833.573333pt;}
.y91{bottom:840.133333pt;}
.y14b{bottom:844.408006pt;}
.y14e{bottom:844.408015pt;}
.y145{bottom:844.408024pt;}
.y149{bottom:844.408033pt;}
.y147{bottom:844.408043pt;}
.y1a5{bottom:847.653333pt;}
.yfe{bottom:847.737622pt;}
.y67{bottom:856.773333pt;}
.y87{bottom:859.746667pt;}
.y46{bottom:861.093333pt;}
.y2{bottom:863.320000pt;}
.y1a4{bottom:875.173333pt;}
.y45{bottom:888.773333pt;}
.y66{bottom:895.013333pt;}
.y1a3{bottom:902.853333pt;}
.y43{bottom:916.293333pt;}
.yfc{bottom:927.493333pt;}
.y1a2{bottom:930.373333pt;}
.y81{bottom:932.453333pt;}
.y64{bottom:933.893333pt;}
.y1{bottom:934.752000pt;}
.y41{bottom:944.613333pt;}
.yf6{bottom:947.555632pt;}
.y1a1{bottom:958.053333pt;}
.yb{bottom:980.933333pt;}
.y40{bottom:985.573333pt;}
.ya{bottom:1010.720000pt;}
.y39{bottom:1013.280000pt;}
.y9{bottom:1043.040000pt;}
.y8{bottom:1060.480000pt;}
.h1f{height:22.783924pt;}
.h3f{height:23.462922pt;}
.h35{height:25.197402pt;}
.h55{height:25.385384pt;}
.h29{height:25.569288pt;}
.h47{height:26.156778pt;}
.hd{height:27.520000pt;}
.hf{height:27.680000pt;}
.h38{height:27.946890pt;}
.h1a{height:28.199986pt;}
.h63{height:28.577961pt;}
.h1d{height:29.688144pt;}
.h21{height:29.688420pt;}
.h4c{height:30.211589pt;}
.h32{height:30.236883pt;}
.h11{height:30.400000pt;}
.h10{height:30.560000pt;}
.h3b{height:30.572898pt;}
.h3d{height:30.573467pt;}
.h5b{height:30.747030pt;}
.h4e{height:31.437720pt;}
.h50{height:31.463664pt;}
.h2c{height:32.081502pt;}
.h25{height:33.317557pt;}
.h52{height:33.318316pt;}
.h6f{height:33.709617pt;}
.h72{height:33.710020pt;}
.h43{height:34.083075pt;}
.h45{height:34.083708pt;}
.h4{height:36.098317pt;}
.h6b{height:36.787311pt;}
.h61{height:37.508573pt;}
.h12{height:38.240000pt;}
.h67{height:38.386406pt;}
.h13{height:38.432000pt;}
.h59{height:40.064311pt;}
.h2{height:42.550144pt;}
.h6{height:43.648568pt;}
.h5{height:50.236924pt;}
.h18{height:52.134375pt;}
.h3{height:54.153493pt;}
.ha{height:58.563750pt;}
.h9{height:62.812500pt;}
.h64{height:63.569568pt;}
.h60{height:63.569586pt;}
.h62{height:63.569595pt;}
.h66{height:63.668630pt;}
.he{height:64.500000pt;}
.h14{height:65.760000pt;}
.h15{height:65.920000pt;}
.h16{height:65.952000pt;}
.hc{height:66.404375pt;}
.h69{height:67.232000pt;}
.h17{height:67.360000pt;}
.h20{height:71.572087pt;}
.h1e{height:71.572094pt;}
.h1c{height:71.572101pt;}
.h22{height:71.572108pt;}
.h3e{height:71.663840pt;}
.h3a{height:71.663847pt;}
.h3c{height:71.663854pt;}
.h40{height:71.663868pt;}
.h2d{height:71.724465pt;}
.h2e{height:71.724473pt;}
.h2f{height:71.724480pt;}
.h2b{height:71.724488pt;}
.h37{height:71.784156pt;}
.h39{height:71.784165pt;}
.h19{height:72.001248pt;}
.hb{height:75.465000pt;}
.h31{height:79.491912pt;}
.h34{height:79.491922pt;}
.h33{height:79.491932pt;}
.h4b{height:79.659022pt;}
.h49{height:79.724757pt;}
.h46{height:79.891804pt;}
.h42{height:79.891812pt;}
.h44{height:79.891820pt;}
.h48{height:79.891836pt;}
.h57{height:79.944880pt;}
.h53{height:79.944888pt;}
.h56{height:79.944896pt;}
.h51{height:79.944904pt;}
.h54{height:79.944912pt;}
.h27{height:80.050008pt;}
.h26{height:80.050015pt;}
.h24{height:80.050023pt;}
.h28{height:80.050031pt;}
.h70{height:80.247111pt;}
.h6e{height:80.247119pt;}
.h74{height:80.248070pt;}
.h73{height:80.248078pt;}
.h71{height:80.248086pt;}
.h4d{height:80.267952pt;}
.h4f{height:80.334193pt;}
.h68{height:83.200000pt;}
.h65{height:83.232000pt;}
.h5a{height:87.337691pt;}
.h5c{height:87.337700pt;}
.h58{height:87.337709pt;}
.h5e{height:87.337719pt;}
.h5d{height:87.337728pt;}
.h6c{height:87.573688pt;}
.h6a{height:87.573696pt;}
.h30{height:91.520000pt;}
.h41{height:91.552000pt;}
.h1b{height:91.680000pt;}
.h23{height:91.712000pt;}
.h4a{height:99.872000pt;}
.h2a{height:100.000000pt;}
.h36{height:100.032000pt;}
.h6d{height:107.200000pt;}
.h5f{height:107.360000pt;}
.h0{height:1043.981333pt;}
.h1{height:1044.000000pt;}
.h7{height:1122.560000pt;}
.h8{height:1122.666667pt;}
.w34{width:56.192000pt;}
.w18{width:56.512000pt;}
.w35{width:65.280000pt;}
.w19{width:65.440000pt;}
.wd{width:66.080000pt;}
.w17{width:75.360000pt;}
.w14{width:75.520000pt;}
.w32{width:75.680000pt;}
.w16{width:77.792000pt;}
.w12{width:82.752000pt;}
.w8{width:84.832000pt;}
.w3a{width:87.450555pt;}
.w33{width:93.472000pt;}
.w15{width:93.632000pt;}
.w9{width:94.400000pt;}
.w6{width:98.080000pt;}
.w7{width:103.872000pt;}
.wb{width:104.000000pt;}
.wc{width:104.032000pt;}
.w39{width:104.093157pt;}
.w38{width:104.093167pt;}
.w1e{width:104.190698pt;}
.w1c{width:104.190705pt;}
.w1d{width:104.190712pt;}
.w3b{width:111.178544pt;}
.w37{width:111.546929pt;}
.w36{width:111.546939pt;}
.w1f{width:111.559161pt;}
.w20{width:111.559169pt;}
.w21{width:111.559176pt;}
.w10{width:121.440000pt;}
.w11{width:127.552000pt;}
.w3f{width:128.040027pt;}
.w3e{width:128.048628pt;}
.w3c{width:128.048630pt;}
.w3d{width:128.048634pt;}
.w28{width:128.267321pt;}
.w23{width:128.372080pt;}
.w26{width:128.372087pt;}
.w22{width:128.372095pt;}
.w27{width:128.372102pt;}
.w25{width:128.372109pt;}
.w24{width:128.372116pt;}
.w5{width:128.512000pt;}
.wf{width:132.192000pt;}
.w1b{width:135.584273pt;}
.w1a{width:135.584279pt;}
.w29{width:135.730061pt;}
.we{width:140.986667pt;}
.w2d{width:143.861001pt;}
.w2a{width:143.867539pt;}
.w2b{width:143.996353pt;}
.w30{width:143.999962pt;}
.w2e{width:144.000640pt;}
.wa{width:150.906667pt;}
.w2c{width:152.266146pt;}
.w2f{width:152.467878pt;}
.w13{width:169.946667pt;}
.w31{width:170.426667pt;}
.w4{width:793.759988pt;}
.w2{width:793.760000pt;}
.w3{width:794.000000pt;}
.w0{width:803.981333pt;}
.w1{width:804.000000pt;}
.x0{left:0.000000pt;}
.x68{left:2.413681pt;}
.x48{left:4.888168pt;}
.x61{left:5.873516pt;}
.x18{left:7.200000pt;}
.x2f{left:8.800000pt;}
.x1e{left:11.040000pt;}
.x2a{left:12.360000pt;}
.x38{left:14.080000pt;}
.x24{left:15.040000pt;}
.x2c{left:16.360000pt;}
.x3a{left:17.920000pt;}
.x21{left:19.200000pt;}
.x45{left:20.960000pt;}
.x41{left:22.271168pt;}
.x69{left:23.171713pt;}
.x34{left:24.186667pt;}
.x6b{left:26.559380pt;}
.x2d{left:28.026667pt;}
.x28{left:29.480000pt;}
.x54{left:30.469933pt;}
.x2b{left:32.026667pt;}
.x22{left:33.920000pt;}
.x4f{left:35.242676pt;}
.x47{left:36.664711pt;}
.x23{left:37.946667pt;}
.x70{left:39.233849pt;}
.x59{left:41.323566pt;}
.x2e{left:42.720000pt;}
.x67{left:43.674794pt;}
.x5c{left:44.569624pt;}
.x3e{left:45.563336pt;}
.x29{left:46.720000pt;}
.x64{left:48.611820pt;}
.x6c{left:49.547956pt;}
.x4a{left:55.201188pt;}
.x72{left:56.818762pt;}
.x31{left:60.474667pt;}
.x62{left:62.511868pt;}
.x5b{left:65.285628pt;}
.x3d{left:67.909260pt;}
.x5d{left:69.657445pt;}
.x6a{left:70.914856pt;}
.x65{left:74.852151pt;}
.x49{left:79.200686pt;}
.x6d{left:85.357897pt;}
.x4e{left:87.029701pt;}
.x5a{left:89.467526pt;}
.x3c{left:91.201427pt;}
.x58{left:92.348861pt;}
.x8{left:94.431988pt;}
.x1{left:95.622000pt;}
.x71{left:98.931708pt;}
.x50{left:99.930842pt;}
.x4b{left:101.047248pt;}
.x3f{left:102.690132pt;}
.x56{left:104.765708pt;}
.x51{left:105.927147pt;}
.x40{left:107.411517pt;}
.x3b{left:111.413333pt;}
.x42{left:113.864077pt;}
.x53{left:115.146667pt;}
.x55{left:117.263820pt;}
.x5e{left:120.007794pt;}
.x4d{left:123.413333pt;}
.x43{left:125.352782pt;}
.x46{left:127.146667pt;}
.x6f{left:128.994667pt;}
.x63{left:131.674908pt;}
.x5f{left:132.639424pt;}
.x6e{left:135.755937pt;}
.x4c{left:136.994667pt;}
.x52{left:140.674667pt;}
.x57{left:149.154667pt;}
.x44{left:152.674667pt;}
.x60{left:156.834667pt;}
.x66{left:160.994667pt;}
.x2{left:220.724000pt;}
.x19{left:222.946667pt;}
.x3{left:228.434667pt;}
.x25{left:235.426667pt;}
.x4{left:241.889333pt;}
.x1d{left:245.346667pt;}
.x32{left:264.386667pt;}
.x9{left:290.786655pt;}
.x1a{left:321.026667pt;}
.x33{left:339.906667pt;}
.x5{left:349.982931pt;}
.x26{left:367.613333pt;}
.x30{left:388.893322pt;}
.x7{left:392.893322pt;}
.xb{left:396.893322pt;}
.x1b{left:424.893333pt;}
.x35{left:433.533333pt;}
.x1f{left:453.373333pt;}
.x27{left:489.053333pt;}
.x1c{left:509.733333pt;}
.x36{left:511.333333pt;}
.x20{left:557.413333pt;}
.x14{left:564.933322pt;}
.x37{left:586.693333pt;}
.x16{left:590.053322pt;}
.x15{left:594.053322pt;}
.xe{left:614.853322pt;}
.xc{left:615.813322pt;}
.xa{left:618.213322pt;}
.x6{left:622.941295pt;}
.xd{left:627.813322pt;}
.x39{left:643.200000pt;}
.x11{left:646.079988pt;}
.x10{left:649.919988pt;}
.x12{left:651.199988pt;}
.x13{left:653.919988pt;}
.x74{left:681.919988pt;}
.x73{left:701.279988pt;}
.xf{left:722.879988pt;}
.x17{left:726.719988pt;}
}




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