
    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_300fc176f284e628be067327.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_2be10febc137190b050c8f91.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937012;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_dff495cc70290e878bc5e825.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_c7a65bb56d608e6106c66628.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6f1254fd89009652f1c88c52.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_f35f7592aeae597f015993e3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8d12e72d352ecb5db0907532.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.823730;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_fbd00155024eab004542e8d7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.960449;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_5e1904577bf551b569df3d31.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_9d8e3762cdd9befb834afff4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.041016;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_a133148064fa3d364770dece.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.948730;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_646b546de2273df0c0a31d73.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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_8d8511c1d84aa3a39bd6a4c9.woff2')format("woff");}.fff{font-family:fff;line-height:0.982910;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_1abab2a4ef5345d13bed8697.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.402354;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_0f2f05f635095bb1a455be43.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_bcdf2a74afc034c0f3c347b0.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.939941;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;}
.m4{transform:matrix(0.249267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249267,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);}
.m2{transform:matrix(0.255117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255117,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255465,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v8{vertical-align:-69.120000px;}
.v3{vertical-align:-27.360000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:4.552854px;}
.v7{vertical-align:18.000000px;}
.v6{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v5{vertical-align:31.937431px;}
.lsb{letter-spacing:-2.100000px;}
.ls8{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-1.260000px;}
.ls14{letter-spacing:-0.816141px;}
.ls10{letter-spacing:-0.774000px;}
.ls24{letter-spacing:-0.666000px;}
.lsa{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.460200px;}
.ls17{letter-spacing:-0.413400px;}
.ls25{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.303600px;}
.ls9{letter-spacing:-0.226200px;}
.ls22{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.008640px;}
.ls19{letter-spacing:0.053280px;}
.ls18{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.109200px;}
.ls13{letter-spacing:0.119520px;}
.ls20{letter-spacing:0.135600px;}
.ls4{letter-spacing:0.180000px;}
.lse{letter-spacing:0.259800px;}
.ls23{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.306600px;}
.ls15{letter-spacing:0.316676px;}
.ls5{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.666000px;}
.ls21{letter-spacing:0.858000px;}
.ls6{letter-spacing:0.900000px;}
.ls1b{letter-spacing:2.340000px;}
.ls1f{letter-spacing:5.220000px;}
.ls1c{letter-spacing:5.940000px;}
.ls1a{letter-spacing:6.660000px;}
.ls1e{letter-spacing:10.260000px;}
.ls3{letter-spacing:84.960000px;}
.ls2{letter-spacing:85.320000px;}
.lsc{letter-spacing:1500.834720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-59.760000px;}
.ws1{word-spacing:-31.105680px;}
.ws3{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.606000px;}
.ws9{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.246600px;}
.ws8{word-spacing:-15.199800px;}
.ws14{word-spacing:-15.046800px;}
.ws15{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws19{word-spacing:-14.886720px;}
.ws1b{word-spacing:-14.580000px;}
.ws13{word-spacing:-14.526600px;}
.ws12{word-spacing:-14.479800px;}
.ws1a{word-spacing:-14.274000px;}
.ws17{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.734480px;}
.ws16{word-spacing:-13.680000px;}
.ws5{word-spacing:-13.500000px;}
.wsb{word-spacing:-10.159610px;}
.wse{word-spacing:-10.138532px;}
.wsd{word-spacing:-9.322391px;}
.ws7{word-spacing:-9.115579px;}
.ws1c{word-spacing:-9.040906px;}
.ws18{word-spacing:-9.000000px;}
.ws0{word-spacing:0.000000px;}
.ws10{word-spacing:218.142941px;}
.wsc{word-spacing:334.996082px;}
.ws1e{word-spacing:344.662692px;}
.ws1d{word-spacing:362.504480px;}
.ws1f{word-spacing:364.664697px;}
.ws20{word-spacing:371.345366px;}
.wsf{word-spacing:515.934529px;}
._4{margin-left:-2.150640px;}
._3{margin-left:-1.095120px;}
._0{width:1.203360px;}
._10{width:2.273520px;}
._1{width:3.423840px;}
._e{width:5.199120px;}
._a{width:6.394320px;}
._b{width:7.953120px;}
._d{width:9.262800px;}
._1f{width:10.281120px;}
._7{width:11.294640px;}
._11{width:12.463920px;}
._c{width:13.744800px;}
._f{width:15.947760px;}
._1e{width:16.958400px;}
._12{width:18.007200px;}
._1c{width:19.076160px;}
._1d{width:20.425200px;}
._1b{width:21.815760px;}
._15{width:22.930800px;}
._14{width:24.023520px;}
._9{width:25.457760px;}
._8{width:26.593200px;}
._13{width:27.924000px;}
._1a{width:28.983360px;}
._19{width:31.015440px;}
._20{width:32.987520px;}
._21{width:34.285920px;}
._16{width:35.567040px;}
._17{width:36.672240px;}
._2e{width:40.571116px;}
._28{width:47.867760px;}
._22{width:49.434480px;}
._18{width:51.154560px;}
._2a{width:55.397520px;}
._29{width:56.592720px;}
._23{width:70.935120px;}
._27{width:72.216480px;}
._2b{width:81.031440px;}
._6{width:84.595920px;}
._5{width:86.241600px;}
._26{width:95.855040px;}
._2c{width:100.950240px;}
._25{width:106.018800px;}
._24{width:107.332800px;}
._38{width:114.484721px;}
._2f{width:123.421528px;}
._32{width:136.749343px;}
._31{width:156.839247px;}
._2d{width:217.544962px;}
._34{width:256.238981px;}
._33{width:353.900379px;}
._30{width:371.902183px;}
._36{width:373.585591px;}
._37{width:380.133432px;}
._39{width:381.786413px;}
._35{width:527.321303px;}
._2{width:1620.355440px;}
.fc7{color:transparent;}
.fc5{color:rgb(60,78,99);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,111,192);}
.fc6{color:rgb(16,21,27);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:2.880000px;}
.fs11{font-size:34.483657px;}
.fs12{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs13{font-size:40.004009px;}
.fse{font-size:40.334422px;}
.fsf{font-size:40.554130px;}
.fs10{font-size:40.638442px;}
.fs9{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y2b0{bottom:2.774389px;}
.y2bd{bottom:2.778065px;}
.y25f{bottom:2.778067px;}
.y262{bottom:2.778068px;}
.y260{bottom:2.778082px;}
.y267{bottom:2.778093px;}
.y26b{bottom:2.778130px;}
.y25c{bottom:2.778158px;}
.y188{bottom:2.880000px;}
.y58{bottom:3.045000px;}
.y1b7{bottom:3.060000px;}
.y54{bottom:3.225000px;}
.y189{bottom:3.240000px;}
.y19d{bottom:3.270000px;}
.y2b9{bottom:3.332447px;}
.y19f{bottom:3.405000px;}
.y39{bottom:3.420000px;}
.y173{bottom:3.780000px;}
.y196{bottom:10.620000px;}
.y1b5{bottom:10.800000px;}
.y24{bottom:10.980000px;}
.y23{bottom:11.520000px;}
.y2f4{bottom:12.223459px;}
.y2af{bottom:16.109058px;}
.y275{bottom:16.112762px;}
.y2bc{bottom:16.113105px;}
.y266{bottom:16.131283px;}
.y2b7{bottom:16.135913px;}
.y25e{bottom:16.140518px;}
.y261{bottom:16.140519px;}
.y27c{bottom:16.140543px;}
.y57{bottom:16.725000px;}
.y197{bottom:18.360000px;}
.y1b6{bottom:18.540000px;}
.y195{bottom:18.720000px;}
.y1cf{bottom:19.440000px;}
.y38{bottom:20.880000px;}
.y100{bottom:21.078375px;}
.y2f3{bottom:25.576655px;}
.y1b9{bottom:26.100000px;}
.y1b3{bottom:26.460000px;}
.y2db{bottom:27.799097px;}
.y289{bottom:29.465953px;}
.y2bb{bottom:29.470925px;}
.y2eb{bottom:30.577150px;}
.y56{bottom:30.585000px;}
.y8b{bottom:30.793154px;}
.y2e0{bottom:33.355213px;}
.y1b8{bottom:33.840000px;}
.y2c6{bottom:35.582634px;}
.y1a5{bottom:35.820000px;}
.y37{bottom:38.160000px;}
.y2f2{bottom:38.911325px;}
.y2ce{bottom:40.022541px;}
.y2da{bottom:41.133768px;}
.yff{bottom:41.207903px;}
.y2b5{bottom:41.693143px;}
.y1b2{bottom:41.940000px;}
.y8a{bottom:42.676522px;}
.y28d{bottom:42.828403px;}
.y2ea{bottom:43.911827px;}
.y55{bottom:44.445000px;}
.y2ca{bottom:45.578653px;}
.y2df{bottom:46.717663px;}
.y2c1{bottom:47.801098px;}
.y2f7{bottom:48.917297px;}
.y2c5{bottom:48.917302px;}
.y2d5{bottom:50.579154px;}
.y2f1{bottom:52.273777px;}
.y2cd{bottom:53.384990px;}
.yfe{bottom:53.391005px;}
.y2d9{bottom:54.468440px;}
.y89{bottom:54.535232px;}
.y36{bottom:55.440000px;}
.y2e5{bottom:56.718665px;}
.y2e9{bottom:57.246498px;}
.yfa{bottom:57.459080px;}
.y2c9{bottom:58.941104px;}
.yfb{bottom:59.250718px;}
.y2de{bottom:60.052333px;}
.y2c0{bottom:61.163550px;}
.y2f6{bottom:62.275122px;}
.y2c4{bottom:62.275123px;}
.y2d2{bottom:63.385993px;}
.y2d4{bottom:63.941607px;}
.yfd{bottom:65.574105px;}
.y2f0{bottom:65.608445px;}
.y5{bottom:66.525004px;}
.y2cc{bottom:66.719661px;}
.y2d8{bottom:67.830890px;}
.y2b2{bottom:68.385633px;}
.yf9{bottom:69.621101px;}
.y2e4{bottom:70.081117px;}
.y2e8{bottom:70.608947px;}
.y2c8{bottom:72.275773px;}
.y35{bottom:72.720000px;}
.y2dd{bottom:73.387004px;}
.y2c3{bottom:75.609792px;}
.y2d1{bottom:76.748442px;}
.yfc{bottom:77.757207px;}
.y2ef{bottom:78.943114px;}
.y2d7{bottom:81.165561px;}
.y2e3{bottom:83.415787px;}
.y2e7{bottom:83.943617px;}
.y18b{bottom:84.600000px;}
.y199{bottom:84.810000px;}
.y2c2{bottom:88.967614px;}
.y34{bottom:90.045000px;}
.y2d0{bottom:90.083113px;}
.y2ee{bottom:92.296306px;}
.y8e{bottom:93.094531px;}
.y2ad{bottom:95.074419px;}
.y2e2{bottom:96.750456px;}
.y4{bottom:97.125005px;}
.y88{bottom:99.033291px;}
.y8d{bottom:104.950291px;}
.y2ed{bottom:105.630975px;}
.y33{bottom:106.965000px;}
.y87{bottom:110.896946px;}
.y8c{bottom:116.833652px;}
.y32{bottom:124.425000px;}
.y2aa{bottom:135.106209px;}
.y21{bottom:139.264499px;}
.y102{bottom:148.790159px;}
.y8f{bottom:150.856599px;}
.y101{bottom:151.850714px;}
.y2a7{bottom:161.794069px;}
.y2a4{bottom:188.491189px;}
.y18{bottom:196.933500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y2a1{bottom:215.160529px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y29f{bottom:241.848389px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y29c{bottom:260.211341px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y26{bottom:278.310000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y29a{bottom:297.455814px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y297{bottom:310.790484px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y1ef{bottom:323.310000px;}
.y263{bottom:323.384898px;}
.y85{bottom:323.490000px;}
.y2be{bottom:323.939241px;}
.y2ba{bottom:323.939278px;}
.y2f5{bottom:323.939323px;}
.y12f{bottom:325.290000px;}
.y219{bottom:327.630000px;}
.ycf{bottom:328.890000px;}
.y158{bottom:329.070000px;}
.y233{bottom:330.150000px;}
.y1cc{bottom:330.705000px;}
.yb2{bottom:332.490000px;}
.y146{bottom:333.210000px;}
.y259{bottom:335.370000px;}
.yef{bottom:335.550000px;}
.y59{bottom:336.090000px;}
.y111{bottom:336.990000px;}
.y294{bottom:337.487604px;}
.y16d{bottom:338.970000px;}
.y1ee{bottom:340.050000px;}
.y84{bottom:340.770000px;}
.y12e{bottom:342.570000px;}
.y218{bottom:344.370000px;}
.y157{bottom:346.350000px;}
.y1cb{bottom:346.905000px;}
.y232{bottom:347.430000px;}
.yf{bottom:348.133500px;}
.y53{bottom:349.605000px;}
.yb1{bottom:349.770000px;}
.y145{bottom:350.490000px;}
.y258{bottom:352.110000px;}
.yee{bottom:352.650000px;}
.yce{bottom:353.370000px;}
.y110{bottom:354.270000px;}
.y16c{bottom:356.250000px;}
.y1ed{bottom:356.790000px;}
.y83{bottom:358.050000px;}
.y217{bottom:361.110000px;}
.y198{bottom:361.485000px;}
.y2b8{bottom:362.299910px;}
.y2b6{bottom:362.299947px;}
.y1ca{bottom:363.285000px;}
.y156{bottom:363.630000px;}
.y292{bottom:364.175464px;}
.y231{bottom:364.710000px;}
.yb0{bottom:367.050000px;}
.ycd{bottom:367.230000px;}
.y144{bottom:367.770000px;}
.y12d{bottom:368.850000px;}
.yed{bottom:369.930000px;}
.y10f{bottom:371.370000px;}
.y16b{bottom:373.530000px;}
.y82{bottom:375.150000px;}
.y216{bottom:377.850000px;}
.y1a0{bottom:377.865000px;}
.y1c9{bottom:379.485000px;}
.y155{bottom:380.730000px;}
.y28f{bottom:381.399413px;}
.y230{bottom:381.990000px;}
.yaf{bottom:384.150000px;}
.y143{bottom:385.050000px;}
.y257{bottom:385.590000px;}
.y12c{bottom:385.950000px;}
.ye{bottom:386.785499px;}
.yec{bottom:387.210000px;}
.y2b4{bottom:388.992400px;}
.y2b3{bottom:388.992437px;}
.y1ec{bottom:390.270000px;}
.y16a{bottom:390.810000px;}
.y81{bottom:392.430000px;}
.y19e{bottom:394.065000px;}
.y215{bottom:394.590000px;}
.y1c8{bottom:395.865000px;}
.y154{bottom:398.010000px;}
.yae{bottom:401.430000px;}
.y142{bottom:402.150000px;}
.y12b{bottom:403.230000px;}
.y22f{bottom:403.770000px;}
.yeb{bottom:404.490000px;}
.y10e{bottom:406.650000px;}
.y256{bottom:406.830000px;}
.y1eb{bottom:407.010000px;}
.y169{bottom:407.910000px;}
.yd{bottom:408.044999px;}
.y28b{bottom:408.096533px;}
.y52{bottom:408.450000px;}
.y19c{bottom:410.445000px;}
.y1c7{bottom:412.095000px;}
.y51{bottom:413.715000px;}
.y153{bottom:415.335000px;}
.y2b1{bottom:415.684890px;}
.y2ae{bottom:415.684927px;}
.y214{bottom:415.875000px;}
.y80{bottom:418.395000px;}
.yad{bottom:418.755000px;}
.y141{bottom:419.475000px;}
.y12a{bottom:420.555000px;}
.y22e{bottom:421.095000px;}
.yea{bottom:421.815000px;}
.y255{bottom:423.615000px;}
.y1ea{bottom:423.795000px;}
.y10d{bottom:425.055000px;}
.y168{bottom:425.235000px;}
.y50{bottom:426.495000px;}
.y19b{bottom:426.675000px;}
.y1c6{bottom:428.295000px;}
.y152{bottom:432.615000px;}
.y7f{bottom:435.675000px;}
.yac{bottom:436.035000px;}
.y140{bottom:436.755000px;}
.y129{bottom:437.835000px;}
.y22d{bottom:438.195000px;}
.ye9{bottom:439.095000px;}
.y254{bottom:440.355000px;}
.y1e9{bottom:440.535000px;}
.y167{bottom:442.515000px;}
.y19a{bottom:442.875000px;}
.y10c{bottom:443.415000px;}
.y1c5{bottom:444.675000px;}
.y4f{bottom:446.475000px;}
.y17c{bottom:448.095000px;}
.y151{bottom:449.895000px;}
.yab{bottom:453.315000px;}
.y213{bottom:453.855000px;}
.y13f{bottom:454.035000px;}
.y128{bottom:455.115000px;}
.y2ac{bottom:455.712976px;}
.y2c7{bottom:455.712988px;}
.y2ab{bottom:455.713013px;}
.y2ec{bottom:455.713058px;}
.ye8{bottom:456.195000px;}
.y1e8{bottom:457.275000px;}
.y194{bottom:459.255000px;}
.y166{bottom:459.795000px;}
.y22c{bottom:459.975000px;}
.y1c4{bottom:460.875000px;}
.y287{bottom:461.481513px;}
.y253{bottom:461.595000px;}
.y10b{bottom:461.775000px;}
.y7e{bottom:461.955000px;}
.y4e{bottom:463.755000px;}
.y17b{bottom:465.195000px;}
.yaa{bottom:470.595000px;}
.y13e{bottom:471.315000px;}
.y127{bottom:472.215000px;}
.y150{bottom:475.995000px;}
.y165{bottom:477.075000px;}
.y1c3{bottom:477.255000px;}
.y252{bottom:478.335000px;}
.y10a{bottom:478.875000px;}
.y4d{bottom:481.035000px;}
.y2a9{bottom:482.400836px;}
.y2a8{bottom:482.400873px;}
.ye7{bottom:482.475000px;}
.y1e7{bottom:482.655000px;}
.y212{bottom:487.335000px;}
.ya9{bottom:487.695000px;}
.y7d{bottom:488.235000px;}
.y13d{bottom:488.595000px;}
.y193{bottom:491.115000px;}
.y1c2{bottom:493.455000px;}
.y164{bottom:494.175000px;}
.y14f{bottom:494.355000px;}
.y126{bottom:498.135000px;}
.y4c{bottom:498.315000px;}
.y22b{bottom:499.035000px;}
.y251{bottom:499.575000px;}
.ye6{bottom:499.755000px;}
.y284{bottom:501.504043px;}
.yc{bottom:502.864502px;}
.ya8{bottom:504.975000px;}
.y109{bottom:505.155000px;}
.y13c{bottom:505.695000px;}
.y1e6{bottom:508.395000px;}
.y211{bottom:508.575000px;}
.y2a6{bottom:509.097956px;}
.y2a5{bottom:509.097993px;}
.y1c1{bottom:509.655000px;}
.y192{bottom:510.735000px;}
.y163{bottom:511.455000px;}
.y14e{bottom:512.715000px;}
.y7c{bottom:514.695000px;}
.y4b{bottom:515.595000px;}
.y250{bottom:516.315000px;}
.ye5{bottom:517.035000px;}
.y22a{bottom:520.815000px;}
.yb{bottom:520.864502px;}
.y108{bottom:522.435000px;}
.y13b{bottom:522.975000px;}
.y125{bottom:524.415000px;}
.y210{bottom:525.315000px;}
.y1c0{bottom:526.035000px;}
.y191{bottom:528.015000px;}
.y282{bottom:528.201163px;}
.y162{bottom:528.735000px;}
.ya7{bottom:530.895000px;}
.y14d{bottom:531.075000px;}
.y1e5{bottom:531.795000px;}
.y7b{bottom:531.975000px;}
.y4a{bottom:532.695000px;}
.ye4{bottom:534.315000px;}
.y2a3{bottom:535.767296px;}
.y2a2{bottom:535.767333px;}
.y24f{bottom:537.555000px;}
.ya{bottom:538.864499px;}
.y107{bottom:539.715000px;}
.y17a{bottom:540.975000px;}
.y280{bottom:542.091444px;}
.y1bf{bottom:542.235000px;}
.y229{bottom:542.595000px;}
.y161{bottom:546.015000px;}
.y20f{bottom:546.555000px;}
.y1e4{bottom:548.175000px;}
.y7a{bottom:549.255000px;}
.y49{bottom:549.975000px;}
.y124{bottom:550.695000px;}
.ye3{bottom:551.595000px;}
.y24e{bottom:554.295000px;}
.y27e{bottom:555.444634px;}
.y9{bottom:556.864499px;}
.ya6{bottom:557.535000px;}
.y14c{bottom:558.435000px;}
.y1be{bottom:558.615000px;}
.y179{bottom:558.975000px;}
.y228{bottom:559.695000px;}
.y18a{bottom:560.595000px;}
.y2a0{bottom:562.455155px;}
.y160{bottom:563.295000px;}
.y106{bottom:565.455000px;}
.y79{bottom:566.535000px;}
.y48{bottom:567.255000px;}
.ye2{bottom:568.695000px;}
.y27a{bottom:568.779304px;}
.y24d{bottom:571.035000px;}
.ya5{bottom:574.815000px;}
.y190{bottom:576.795000px;}
.y178{bottom:576.975000px;}
.y123{bottom:577.335000px;}
.y1e3{bottom:579.855000px;}
.y20e{bottom:580.035000px;}
.y15f{bottom:580.575000px;}
.y29e{bottom:580.818107px;}
.y2d3{bottom:580.818120px;}
.y29d{bottom:580.818145px;}
.y2e6{bottom:580.818189px;}
.y13a{bottom:583.815000px;}
.y14b{bottom:584.175000px;}
.y47{bottom:584.535000px;}
.ye1{bottom:585.975000px;}
.y105{bottom:590.115000px;}
.y1bd{bottom:591.195000px;}
.ya4{bottom:592.095000px;}
.y24c{bottom:592.275000px;}
.y78{bottom:592.815000px;}
.y18f{bottom:593.175000px;}
.ycc{bottom:594.255000px;}
.y122{bottom:594.615000px;}
.y177{bottom:594.975000px;}
.y1e2{bottom:596.235000px;}
.y20d{bottom:596.775000px;}
.y15e{bottom:597.675000px;}
.y277{bottom:601.032537px;}
.y46{bottom:601.815000px;}
.ye0{bottom:603.255000px;}
.y104{bottom:607.395000px;}
.y24b{bottom:609.015000px;}
.ya3{bottom:609.195000px;}
.y18e{bottom:609.375000px;}
.y139{bottom:609.915000px;}
.y77{bottom:610.095000px;}
.ycb{bottom:611.535000px;}
.y121{bottom:611.715000px;}
.y1e1{bottom:612.435000px;}
.y176{bottom:612.975000px;}
.y20c{bottom:613.515000px;}
.y15d{bottom:614.955000px;}
.y227{bottom:616.035000px;}
.y29b{bottom:618.062581px;}
.y45{bottom:619.095000px;}
.ydf{bottom:620.535000px;}
.y1bc{bottom:623.595000px;}
.y18d{bottom:625.575000px;}
.y24a{bottom:625.755000px;}
.ya2{bottom:626.475000px;}
.y76{bottom:627.195000px;}
.y273{bottom:627.720397px;}
.yca{bottom:628.815000px;}
.y120{bottom:628.995000px;}
.y103{bottom:630.255000px;}
.yf8{bottom:630.516480px;}
.y175{bottom:630.975000px;}
.y299{bottom:631.397250px;}
.y298{bottom:631.397288px;}
.y15c{bottom:632.235000px;}
.y226{bottom:633.315000px;}
.y20b{bottom:634.395000px;}
.y44{bottom:636.195000px;}
.yde{bottom:637.815000px;}
.y1bb{bottom:639.975000px;}
.y18c{bottom:641.955000px;}
.y249{bottom:642.495000px;}
.y75{bottom:644.475000px;}
.y1e0{bottom:645.015000px;}
.y8{bottom:645.510000px;}
.yc9{bottom:645.915000px;}
.y11f{bottom:646.275000px;}
.y174{bottom:648.975000px;}
.y225{bottom:650.415000px;}
.y20a{bottom:651.135000px;}
.ya1{bottom:652.755000px;}
.y43{bottom:653.475000px;}
.y14a{bottom:654.945000px;}
.y271{bottom:655.528739px;}
.y1ba{bottom:656.205000px;}
.y296{bottom:658.094371px;}
.y295{bottom:658.094408px;}
.y15b{bottom:658.185000px;}
.y1df{bottom:661.245000px;}
.y74{bottom:661.785000px;}
.y11e{bottom:663.585000px;}
.y248{bottom:663.765000px;}
.ydd{bottom:663.945000px;}
.y7{bottom:666.771000px;}
.y172{bottom:667.005000px;}
.y26e{bottom:668.863409px;}
.ya0{bottom:670.065000px;}
.y42{bottom:670.785000px;}
.yc8{bottom:672.225000px;}
.y1b1{bottom:672.585000px;}
.y187{bottom:674.565000px;}
.y15a{bottom:675.465000px;}
.y209{bottom:677.265000px;}
.y1de{bottom:677.625000px;}
.y73{bottom:679.065000px;}
.y138{bottom:679.785000px;}
.y247{bottom:680.505000px;}
.y11d{bottom:680.865000px;}
.ydc{bottom:681.225000px;}
.y293{bottom:684.782231px;}
.y171{bottom:685.005000px;}
.y9f{bottom:687.345000px;}
.y41{bottom:688.065000px;}
.yc7{bottom:689.505000px;}
.y1dd{bottom:693.825000px;}
.y208{bottom:694.005000px;}
.y186{bottom:694.185000px;}
.y26c{bottom:695.551269px;}
.y72{bottom:696.345000px;}
.y11c{bottom:698.145000px;}
.y159{bottom:698.325000px;}
.ydb{bottom:698.505000px;}
.y246{bottom:701.745000px;}
.y291{bottom:702.006179px;}
.y2cf{bottom:702.006192px;}
.y290{bottom:702.006217px;}
.y2e1{bottom:702.006261px;}
.y9e{bottom:704.625000px;}
.y40{bottom:705.345000px;}
.y137{bottom:706.065000px;}
.y170{bottom:706.425000px;}
.yc6{bottom:706.785000px;}
.y269{bottom:708.885939px;}
.y1dc{bottom:710.205000px;}
.y207{bottom:710.745000px;}
.y71{bottom:713.445000px;}
.yda{bottom:715.785000px;}
.y245{bottom:718.485000px;}
.y1b4{bottom:719.745000px;}
.y185{bottom:720.825000px;}
.y9d{bottom:721.725000px;}
.y3f{bottom:722.445000px;}
.y11b{bottom:723.885000px;}
.yc5{bottom:724.065000px;}
.y6{bottom:726.298500px;}
.y1db{bottom:726.405000px;}
.y206{bottom:727.485000px;}
.y224{bottom:728.565000px;}
.y28e{bottom:728.703299px;}
.y28c{bottom:728.703337px;}
.y70{bottom:730.725000px;}
.y136{bottom:732.345000px;}
.yd9{bottom:733.065000px;}
.y244{bottom:735.225000px;}
.y264{bottom:735.583059px;}
.y184{bottom:738.105000px;}
.y9c{bottom:739.005000px;}
.y3e{bottom:739.725000px;}
.yc4{bottom:741.345000px;}
.y1da{bottom:742.785000px;}
.y205{bottom:744.225000px;}
.y223{bottom:745.845000px;}
.y6f{bottom:748.005000px;}
.y11a{bottom:748.545000px;}
.y135{bottom:749.445000px;}
.yd8{bottom:750.345000px;}
.y1b0{bottom:751.605000px;}
.y3{bottom:752.599495px;}
.y183{bottom:755.205000px;}
.y9b{bottom:756.285000px;}
.y243{bottom:756.465000px;}
.y3d{bottom:757.005000px;}
.y149{bottom:758.445000px;}
.y1d9{bottom:758.985000px;}
.y204{bottom:760.965000px;}
.y6e{bottom:765.285000px;}
.yc3{bottom:767.445000px;}
.y1af{bottom:771.225000px;}
.y119{bottom:771.405000px;}
.y182{bottom:772.485000px;}
.y242{bottom:773.205000px;}
.y9a{bottom:773.565000px;}
.y3c{bottom:774.285000px;}
.y1d8{bottom:775.185000px;}
.y134{bottom:775.725000px;}
.y203{bottom:777.705000px;}
.y28a{bottom:782.088279px;}
.y288{bottom:782.088317px;}
.y6d{bottom:782.565000px;}
.yc2{bottom:784.725000px;}
.y181{bottom:789.765000px;}
.y241{bottom:789.945000px;}
.y99{bottom:790.845000px;}
.y3b{bottom:791.205000px;}
.y1d7{bottom:791.565000px;}
.y133{bottom:793.005000px;}
.y202{bottom:794.445000px;}
.y1ae{bottom:797.865000px;}
.yc1{bottom:802.005000px;}
.y180{bottom:807.045000px;}
.y1d6{bottom:807.780000px;}
.y98{bottom:807.945000px;}
.y3a{bottom:808.485000px;}
.y6c{bottom:808.845000px;}
.y148{bottom:810.285000px;}
.yf7{bottom:811.005000px;}
.y201{bottom:811.185000px;}
.y1ad{bottom:815.145000px;}
.y132{bottom:818.925000px;}
.yc0{bottom:819.285000px;}
.y286{bottom:822.110809px;}
.y285{bottom:822.110847px;}
.y31{bottom:823.065000px;}
.y1d5{bottom:824.160000px;}
.y97{bottom:825.225000px;}
.y6b{bottom:825.945000px;}
.y240{bottom:827.925000px;}
.yf6{bottom:828.285000px;}
.y1ac{bottom:832.425000px;}
.y17f{bottom:832.965000px;}
.y147{bottom:836.205000px;}
.ybf{bottom:836.565000px;}
.y200{bottom:836.925000px;}
.y1d4{bottom:840.345000px;}
.y222{bottom:841.065000px;}
.y118{bottom:841.245000px;}
.y96{bottom:842.505000px;}
.y6a{bottom:843.225000px;}
.y23f{bottom:844.665000px;}
.yf5{bottom:845.565000px;}
.y283{bottom:848.807929px;}
.y1ab{bottom:849.705000px;}
.y17e{bottom:850.065000px;}
.y1ff{bottom:853.665000px;}
.y1d3{bottom:856.545000px;}
.y117{bottom:858.345000px;}
.y95{bottom:859.785000px;}
.y69{bottom:860.505000px;}
.y281{bottom:862.698210px;}
.y2cb{bottom:862.698223px;}
.y2dc{bottom:862.698292px;}
.ybe{bottom:862.845000px;}
.y23e{bottom:865.905000px;}
.y1aa{bottom:866.805000px;}
.y1fe{bottom:870.405000px;}
.y1d2{bottom:872.925000px;}
.y17d{bottom:873.105000px;}
.y221{bottom:875.445000px;}
.y116{bottom:875.625000px;}
.y27f{bottom:876.051401px;}
.y94{bottom:877.065000px;}
.y68{bottom:877.785000px;}
.y2{bottom:879.369000px;}
.ybd{bottom:879.945000px;}
.y23d{bottom:882.825000px;}
.y1a9{bottom:884.085000px;}
.y1fd{bottom:887.325000px;}
.y1d1{bottom:889.125000px;}
.y27d{bottom:889.386070px;}
.y27b{bottom:889.386108px;}
.y115{bottom:892.905000px;}
.y93{bottom:894.345000px;}
.y67{bottom:895.065000px;}
.ybc{bottom:897.225000px;}
.y23c{bottom:899.610000px;}
.y1a8{bottom:901.410000px;}
.y1fc{bottom:904.110000px;}
.y1ce{bottom:905.550000px;}
.y16f{bottom:906.270000px;}
.y114{bottom:910.230000px;}
.y92{bottom:911.490000px;}
.y66{bottom:912.390000px;}
.ybb{bottom:914.550000px;}
.y23b{bottom:920.850000px;}
.y279{bottom:921.639303px;}
.y278{bottom:921.639341px;}
.y1d0{bottom:921.750000px;}
.y16e{bottom:923.550000px;}
.y1a4{bottom:924.630000px;}
.y65{bottom:929.490000px;}
.y1fb{bottom:929.850000px;}
.yba{bottom:931.830000px;}
.y113{bottom:935.970000px;}
.y23a{bottom:937.590000px;}
.y1cd{bottom:937.950000px;}
.y131{bottom:940.830000px;}
.y1a7{bottom:941.010000px;}
.y91{bottom:946.410000px;}
.y1fa{bottom:946.590000px;}
.y276{bottom:948.327163px;}
.y274{bottom:948.327201px;}
.yd7{bottom:949.110000px;}
.y220{bottom:953.610000px;}
.y239{bottom:954.330000px;}
.y64{bottom:955.410000px;}
.y1a6{bottom:957.210000px;}
.yf4{bottom:957.750000px;}
.yb9{bottom:958.110000px;}
.y90{bottom:960.270000px;}
.y86{bottom:960.503906px;}
.y112{bottom:960.630000px;}
.y1f9{bottom:963.330000px;}
.y30{bottom:965.130000px;}
.yd6{bottom:966.390000px;}
.y1{bottom:966.726000px;}
.y21f{bottom:970.890000px;}
.y1a3{bottom:973.590000px;}
.yb8{bottom:975.390000px;}
.y238{bottom:975.570000px;}
.y272{bottom:976.135506px;}
.y2bf{bottom:976.135518px;}
.y2d6{bottom:976.135588px;}
.y1f8{bottom:980.070000px;}
.y63{bottom:981.690000px;}
.yd5{bottom:983.490000px;}
.yf3{bottom:984.390000px;}
.y21e{bottom:987.990000px;}
.y270{bottom:989.470176px;}
.y26f{bottom:989.470213px;}
.y1a2{bottom:989.790000px;}
.y2f{bottom:989.970000px;}
.y237{bottom:992.310000px;}
.yb7{bottom:992.490000px;}
.y1f7{bottom:996.810000px;}
.yd4{bottom:1000.770000px;}
.y62{bottom:1001.310000px;}
.yf2{bottom:1001.490000px;}
.y21d{bottom:1005.270000px;}
.y2e{bottom:1008.870000px;}
.y1a1{bottom:1009.410000px;}
.yb6{bottom:1009.770000px;}
.y1f6{bottom:1013.550000px;}
.y26d{bottom:1016.158035px;}
.yd3{bottom:1018.050000px;}
.y61{bottom:1018.770000px;}
.yb5{bottom:1027.050000px;}
.y2d{bottom:1027.950000px;}
.y26a{bottom:1029.492705px;}
.y1f5{bottom:1030.290000px;}
.yd2{bottom:1035.330000px;}
.y60{bottom:1035.690000px;}
.yf1{bottom:1036.050000px;}
.y2c{bottom:1039.830000px;}
.yb4{bottom:1044.330000px;}
.y236{bottom:1047.030000px;}
.y5f{bottom:1053.330000px;}
.y1f4{bottom:1056.030000px;}
.y268{bottom:1056.189825px;}
.y265{bottom:1056.189863px;}
.yd1{bottom:1061.250000px;}
.y2b{bottom:1061.610000px;}
.y235{bottom:1068.270000px;}
.y5e{bottom:1070.610000px;}
.y1f3{bottom:1072.770000px;}
.yd0{bottom:1078.350000px;}
.yb3{bottom:1078.710000px;}
.y21c{bottom:1083.210000px;}
.y29{bottom:1083.570000px;}
.y234{bottom:1085.010000px;}
.y5d{bottom:1087.350000px;}
.yf0{bottom:1087.710000px;}
.y2a{bottom:1089.510000px;}
.y25b{bottom:1091.767465px;}
.y25d{bottom:1091.767491px;}
.y130{bottom:1095.990000px;}
.y21b{bottom:1100.490000px;}
.y5c{bottom:1104.990000px;}
.y1f2{bottom:1106.250000px;}
.y28{bottom:1106.430000px;}
.y21a{bottom:1117.770000px;}
.y5b{bottom:1122.270000px;}
.y1f1{bottom:1122.990000px;}
.y27{bottom:1131.990000px;}
.y25a{bottom:1139.190000px;}
.y5a{bottom:1139.550000px;}
.y1f0{bottom:1139.730000px;}
.y25{bottom:1157.580000px;}
.y22{bottom:1175.220000px;}
.h19{height:2.826563px;}
.h44{height:12.779160px;}
.h4a{height:12.802311px;}
.h4b{height:13.334771px;}
.h31{height:15.465000px;}
.h2b{height:15.480000px;}
.h35{height:15.501000px;}
.h3b{height:15.502500px;}
.h2f{height:15.510000px;}
.h30{height:15.645000px;}
.h34{height:15.660000px;}
.h50{height:16.668439px;}
.h2a{height:17.265000px;}
.h28{height:17.280000px;}
.h29{height:17.310000px;}
.h53{height:17.802812px;}
.h24{height:25.862743px;}
.h54{height:26.113765px;}
.h55{height:26.113830px;}
.h3e{height:26.136890px;}
.h3f{height:26.136891px;}
.h45{height:26.136916px;}
.h3c{height:26.136980px;}
.h46{height:27.248138px;}
.h47{height:27.248203px;}
.h22{height:30.415597px;}
.h23{height:30.478831px;}
.h3d{height:30.510870px;}
.h32{height:30.945000px;}
.h38{height:31.140000px;}
.h3a{height:31.665000px;}
.h48{height:31.693028px;}
.h49{height:31.693093px;}
.h9{height:32.040000px;}
.h7{height:32.130000px;}
.h41{height:32.190726px;}
.h1e{height:32.456605px;}
.h42{height:35.026696px;}
.h43{height:35.026760px;}
.h51{height:36.693529px;}
.h52{height:36.693594px;}
.h56{height:37.804752px;}
.h57{height:37.804817px;}
.h17{height:38.158594px;}
.h4c{height:39.471585px;}
.h4d{height:39.471650px;}
.h1c{height:39.760312px;}
.h13{height:40.964766px;}
.h11{height:42.086250px;}
.h12{height:42.997500px;}
.h16{height:43.215117px;}
.hb{height:43.506914px;}
.h6{height:45.900000px;}
.h39{height:46.440000px;}
.h1b{height:47.321367px;}
.h36{height:48.045000px;}
.h3{height:48.195000px;}
.h4e{height:52.829406px;}
.h4f{height:52.829471px;}
.h20{height:52.971680px;}
.h2d{height:52.998047px;}
.h2c{height:54.421875px;}
.h2{height:55.080000px;}
.h1a{height:55.245000px;}
.h18{height:55.251000px;}
.h27{height:58.621992px;}
.h15{height:58.651172px;}
.h26{height:59.038594px;}
.hd{height:60.226875px;}
.h1f{height:61.423863px;}
.ha{height:63.824414px;}
.hf{height:66.757500px;}
.h25{height:66.969117px;}
.he{height:67.992539px;}
.hc{height:70.664062px;}
.h5{height:78.030000px;}
.h37{height:78.300000px;}
.h2e{height:96.870000px;}
.h33{height:97.041000px;}
.h5b{height:112.881697px;}
.h5f{height:112.881704px;}
.h58{height:115.076362px;}
.h5e{height:115.076368px;}
.h4{height:119.055004px;}
.h5d{height:120.641734px;}
.h61{height:120.641741px;}
.h5a{height:124.549533px;}
.h62{height:124.549540px;}
.h63{height:131.216875px;}
.h59{height:131.216881px;}
.h14{height:137.902500px;}
.h5c{height:160.127173px;}
.h60{height:160.127180px;}
.h21{height:167.443911px;}
.h1d{height:192.453348px;}
.h40{height:794.522878px;}
.h10{height:1262.684910px;}
.h8{height:1262.700000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w31{width:38.865000px;}
.w2e{width:38.916000px;}
.w38{width:43.545000px;}
.w36{width:43.560000px;}
.w3a{width:43.581000px;}
.w37{width:43.596000px;}
.w39{width:43.725000px;}
.w2b{width:49.521000px;}
.w1f{width:54.345000px;}
.w17{width:54.525000px;}
.w2f{width:54.705000px;}
.w2c{width:54.720000px;}
.w32{width:54.741000px;}
.w27{width:56.145000px;}
.w3c{width:60.984308px;}
.w30{width:66.765000px;}
.w2d{width:66.780000px;}
.w3d{width:67.655189px;}
.w14{width:68.796000px;}
.w40{width:71.533071px;}
.w1c{width:73.605000px;}
.wd{width:74.685000px;}
.w5{width:75.585000px;}
.w34{width:78.660000px;}
.w23{width:81.741000px;}
.w1d{width:84.441000px;}
.w13{width:85.860000px;}
.w1e{width:98.805000px;}
.w15{width:103.665000px;}
.w1b{width:105.696000px;}
.w42{width:105.930807px;}
.w18{width:109.641000px;}
.wa{width:116.122500px;}
.w20{width:118.281000px;}
.w16{width:139.521000px;}
.w41{width:139.742243px;}
.w2a{width:161.835000px;}
.w29{width:161.850000px;}
.w12{width:164.895000px;}
.we{width:166.048896px;}
.w28{width:172.455000px;}
.w1a{width:173.535000px;}
.w25{width:174.810000px;}
.w24{width:185.235000px;}
.w9{width:193.515000px;}
.w3f{width:198.529084px;}
.w35{width:265.215000px;}
.w33{width:344.595000px;}
.w8{width:356.460000px;}
.w22{width:360.780000px;}
.w21{width:443.250000px;}
.wf{width:449.213519px;}
.wb{width:452.955000px;}
.w6{width:493.290000px;}
.wc{width:494.190000px;}
.w19{width:539.190000px;}
.w3b{width:548.424820px;}
.w3e{width:548.424830px;}
.w10{width:550.890000px;}
.w26{width:554.490000px;}
.w11{width:565.650000px;}
.w2{width:637.794021px;}
.w4{width:892.500000px;}
.w7{width:892.777500px;}
.w3{width:892.800000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x78{left:1.661950px;}
.x86{left:2.769916px;}
.x68{left:3.945000px;}
.x1c{left:5.464138px;}
.x87{left:6.647798px;}
.x6{left:8.085000px;}
.x88{left:9.417713px;}
.x83{left:10.544146px;}
.x4e{left:12.225000px;}
.x89{left:13.318678px;}
.x60{left:14.565000px;}
.x1a{left:16.740000px;}
.x61{left:19.965000px;}
.x84{left:21.628425px;}
.x48{left:22.665000px;}
.x1d{left:25.113254px;}
.x5b{left:26.130000px;}
.x85{left:27.168256px;}
.x2c{left:28.300808px;}
.x82{left:29.407271px;}
.x5a{left:32.970000px;}
.x43{left:34.365000px;}
.x81{left:35.501085px;}
.x56{left:39.630000px;}
.x8a{left:41.040917px;}
.x46{left:43.725000px;}
.x44{left:46.965000px;}
.x8{left:48.990000px;}
.x24{left:53.517660px;}
.x20{left:56.385802px;}
.x1f{left:58.247559px;}
.x59{left:60.300000px;}
.x45{left:62.445000px;}
.x1e{left:67.053177px;}
.x42{left:68.205000px;}
.x57{left:74.505000px;}
.x54{left:81.345000px;}
.x47{left:87.825000px;}
.x22{left:89.142695px;}
.x2b{left:90.806446px;}
.x23{left:97.716856px;}
.x1{left:102.045000px;}
.x21{left:104.640585px;}
.x2{left:106.297500px;}
.x17{left:107.850000px;}
.x58{left:110.550000px;}
.x41{left:113.250000px;}
.x55{left:117.390000px;}
.x40{left:129.630000px;}
.x5c{left:131.970000px;}
.x7c{left:140.296225px;}
.x7f{left:149.159955px;}
.x5{left:162.045000px;}
.x4d{left:163.665000px;}
.x9{left:170.130000px;}
.xf{left:173.010000px;}
.x16{left:174.990000px;}
.x3a{left:177.510000px;}
.x36{left:191.370000px;}
.x4{left:203.484001px;}
.x32{left:207.210000px;}
.x12{left:210.450000px;}
.x53{left:218.925000px;}
.x2a{left:221.899652px;}
.x35{left:225.390000px;}
.x63{left:232.245000px;}
.x7{left:237.645000px;}
.x28{left:240.330000px;}
.x3f{left:245.910000px;}
.xc{left:251.670000px;}
.x2f{left:255.621449px;}
.x13{left:256.890000px;}
.x2d{left:260.851070px;}
.x26{left:262.875000px;}
.xa{left:264.315000px;}
.x2e{left:266.373623px;}
.x71{left:274.215000px;}
.x6b{left:276.375000px;}
.x18{left:278.175000px;}
.x38{left:283.755000px;}
.x4b{left:286.815000px;}
.x64{left:288.075000px;}
.xb{left:293.655000px;}
.x4c{left:300.675000px;}
.x39{left:308.595000px;}
.x3e{left:310.395000px;}
.x4a{left:313.095000px;}
.x7d{left:318.241978px;}
.x70{left:321.735000px;}
.x3b{left:324.075000px;}
.x67{left:327.855000px;}
.x4f{left:329.295000px;}
.x6c{left:331.815000px;}
.x10{left:333.615000px;}
.x34{left:343.515000px;}
.x7e{left:348.243021px;}
.x5e{left:351.255000px;}
.x72{left:353.595000px;}
.x33{left:361.695000px;}
.x30{left:363.901362px;}
.x1b{left:365.791630px;}
.xd{left:367.432500px;}
.xe{left:372.675000px;}
.x29{left:383.295000px;}
.x15{left:386.175000px;}
.x73{left:397.875000px;}
.x69{left:399.315000px;}
.x7a{left:409.781312px;}
.x66{left:410.835000px;}
.x50{left:415.875000px;}
.x6d{left:438.960000px;}
.x74{left:442.200000px;}
.x11{left:446.505000px;}
.x3{left:454.959000px;}
.x5f{left:457.680000px;}
.x5d{left:460.005000px;}
.x51{left:485.400000px;}
.x75{left:486.480000px;}
.x6e{left:494.400000px;}
.x79{left:517.334277px;}
.x14{left:528.420000px;}
.x76{left:530.940000px;}
.x25{left:532.185000px;}
.x6a{left:561.900000px;}
.x77{left:575.220000px;}
.x3c{left:577.725000px;}
.x80{left:578.872569px;}
.x65{left:586.380000px;}
.x52{left:589.800000px;}
.x3d{left:597.705000px;}
.x6f{left:601.500000px;}
.x62{left:617.190000px;}
.x7b{left:650.955005px;}
.x19{left:656.250000px;}
.x31{left:671.370000px;}
.x27{left:690.630000px;}
.x49{left:699.270000px;}
.x8b{left:719.250000px;}
.x37{left:721.590000px;}
@media print{
.v8{vertical-align:-61.440000pt;}
.v3{vertical-align:-24.320000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:4.046982pt;}
.v7{vertical-align:16.000000pt;}
.v6{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v5{vertical-align:28.388828pt;}
.lsb{letter-spacing:-1.866667pt;}
.ls8{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-1.120000pt;}
.ls14{letter-spacing:-0.725459pt;}
.ls10{letter-spacing:-0.688000pt;}
.ls24{letter-spacing:-0.592000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.409067pt;}
.ls17{letter-spacing:-0.367467pt;}
.ls25{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.269867pt;}
.ls9{letter-spacing:-0.201067pt;}
.ls22{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.007680pt;}
.ls19{letter-spacing:0.047360pt;}
.ls18{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.097067pt;}
.ls13{letter-spacing:0.106240pt;}
.ls20{letter-spacing:0.120533pt;}
.ls4{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.230933pt;}
.ls23{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.272533pt;}
.ls15{letter-spacing:0.281490pt;}
.ls5{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.592000pt;}
.ls21{letter-spacing:0.762667pt;}
.ls6{letter-spacing:0.800000pt;}
.ls1b{letter-spacing:2.080000pt;}
.ls1f{letter-spacing:4.640000pt;}
.ls1c{letter-spacing:5.280000pt;}
.ls1a{letter-spacing:5.920000pt;}
.ls1e{letter-spacing:9.120000pt;}
.ls3{letter-spacing:75.520000pt;}
.ls2{letter-spacing:75.840000pt;}
.lsc{letter-spacing:1334.075307pt;}
.ws11{word-spacing:-53.120000pt;}
.ws1{word-spacing:-27.649493pt;}
.ws3{word-spacing:-14.720000pt;}
.wsa{word-spacing:-13.872000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.552533pt;}
.ws8{word-spacing:-13.510933pt;}
.ws14{word-spacing:-13.374933pt;}
.ws15{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws19{word-spacing:-13.232640pt;}
.ws1b{word-spacing:-12.960000pt;}
.ws13{word-spacing:-12.912533pt;}
.ws12{word-spacing:-12.870933pt;}
.ws1a{word-spacing:-12.688000pt;}
.ws17{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.208427pt;}
.ws16{word-spacing:-12.160000pt;}
.ws5{word-spacing:-12.000000pt;}
.wsb{word-spacing:-9.030765pt;}
.wse{word-spacing:-9.012029pt;}
.wsd{word-spacing:-8.286570pt;}
.ws7{word-spacing:-8.102737pt;}
.ws1c{word-spacing:-8.036361pt;}
.ws18{word-spacing:-8.000000pt;}
.ws0{word-spacing:0.000000pt;}
.ws10{word-spacing:193.904836pt;}
.wsc{word-spacing:297.774295pt;}
.ws1e{word-spacing:306.366837pt;}
.ws1d{word-spacing:322.226205pt;}
.ws1f{word-spacing:324.146397pt;}
.ws20{word-spacing:330.084770pt;}
.wsf{word-spacing:458.608471pt;}
._4{margin-left:-1.911680pt;}
._3{margin-left:-0.973440pt;}
._0{width:1.069653pt;}
._10{width:2.020907pt;}
._1{width:3.043413pt;}
._e{width:4.621440pt;}
._a{width:5.683840pt;}
._b{width:7.069440pt;}
._d{width:8.233600pt;}
._1f{width:9.138773pt;}
._7{width:10.039680pt;}
._11{width:11.079040pt;}
._c{width:12.217600pt;}
._f{width:14.175787pt;}
._1e{width:15.074133pt;}
._12{width:16.006400pt;}
._1c{width:16.956587pt;}
._1d{width:18.155733pt;}
._1b{width:19.391787pt;}
._15{width:20.382933pt;}
._14{width:21.354240pt;}
._9{width:22.629120pt;}
._8{width:23.638400pt;}
._13{width:24.821333pt;}
._1a{width:25.762987pt;}
._19{width:27.569280pt;}
._20{width:29.322240pt;}
._21{width:30.476373pt;}
._16{width:31.615147pt;}
._17{width:32.597547pt;}
._2e{width:36.063214pt;}
._28{width:42.549120pt;}
._22{width:43.941760pt;}
._18{width:45.470720pt;}
._2a{width:49.242240pt;}
._29{width:50.304640pt;}
._23{width:63.053440pt;}
._27{width:64.192427pt;}
._2b{width:72.027947pt;}
._6{width:75.196373pt;}
._5{width:76.659200pt;}
._26{width:85.204480pt;}
._2c{width:89.733547pt;}
._25{width:94.238933pt;}
._24{width:95.406933pt;}
._38{width:101.764196pt;}
._2f{width:109.708025pt;}
._32{width:121.554971pt;}
._31{width:139.412664pt;}
._2d{width:193.373300pt;}
._34{width:227.767983pt;}
._33{width:314.578114pt;}
._30{width:330.579718pt;}
._36{width:332.076081pt;}
._37{width:337.896384pt;}
._39{width:339.365700pt;}
._35{width:468.730047pt;}
._2{width:1440.315947pt;}
.fsc{font-size:2.560000pt;}
.fs11{font-size:30.652140pt;}
.fs12{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs13{font-size:35.559119pt;}
.fse{font-size:35.852819pt;}
.fsf{font-size:36.048115pt;}
.fs10{font-size:36.123059pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y2b0{bottom:2.466123pt;}
.y2bd{bottom:2.469391pt;}
.y25f{bottom:2.469393pt;}
.y262{bottom:2.469394pt;}
.y260{bottom:2.469406pt;}
.y267{bottom:2.469416pt;}
.y26b{bottom:2.469449pt;}
.y25c{bottom:2.469473pt;}
.y188{bottom:2.560000pt;}
.y58{bottom:2.706667pt;}
.y1b7{bottom:2.720000pt;}
.y54{bottom:2.866667pt;}
.y189{bottom:2.880000pt;}
.y19d{bottom:2.906667pt;}
.y2b9{bottom:2.962175pt;}
.y19f{bottom:3.026667pt;}
.y39{bottom:3.040000pt;}
.y173{bottom:3.360000pt;}
.y196{bottom:9.440000pt;}
.y1b5{bottom:9.600000pt;}
.y24{bottom:9.760000pt;}
.y23{bottom:10.240000pt;}
.y2f4{bottom:10.865297pt;}
.y2af{bottom:14.319163pt;}
.y275{bottom:14.322456pt;}
.y2bc{bottom:14.322760pt;}
.y266{bottom:14.338918pt;}
.y2b7{bottom:14.343034pt;}
.y25e{bottom:14.347127pt;}
.y261{bottom:14.347128pt;}
.y27c{bottom:14.347149pt;}
.y57{bottom:14.866667pt;}
.y197{bottom:16.320000pt;}
.y1b6{bottom:16.480000pt;}
.y195{bottom:16.640000pt;}
.y1cf{bottom:17.280000pt;}
.y38{bottom:18.560000pt;}
.y100{bottom:18.736333pt;}
.y2f3{bottom:22.734804pt;}
.y1b9{bottom:23.200000pt;}
.y1b3{bottom:23.520000pt;}
.y2db{bottom:24.710309pt;}
.y289{bottom:26.191958pt;}
.y2bb{bottom:26.196378pt;}
.y2eb{bottom:27.179689pt;}
.y56{bottom:27.186667pt;}
.y8b{bottom:27.371693pt;}
.y2e0{bottom:29.649078pt;}
.y1b8{bottom:30.080000pt;}
.y2c6{bottom:31.629008pt;}
.y1a5{bottom:31.840000pt;}
.y37{bottom:33.920000pt;}
.y2f2{bottom:34.587844pt;}
.y2ce{bottom:35.575592pt;}
.y2da{bottom:36.563349pt;}
.yff{bottom:36.629247pt;}
.y2b5{bottom:37.060572pt;}
.y1b2{bottom:37.280000pt;}
.y8a{bottom:37.934686pt;}
.y28d{bottom:38.069692pt;}
.y2ea{bottom:39.032735pt;}
.y55{bottom:39.506667pt;}
.y2ca{bottom:40.514358pt;}
.y2df{bottom:41.526812pt;}
.y2c1{bottom:42.489865pt;}
.y2f7{bottom:43.482042pt;}
.y2c5{bottom:43.482046pt;}
.y2d5{bottom:44.959248pt;}
.y2f1{bottom:46.465579pt;}
.y2cd{bottom:47.453324pt;}
.yfe{bottom:47.458671pt;}
.y2d9{bottom:48.416391pt;}
.y89{bottom:48.475762pt;}
.y36{bottom:49.280000pt;}
.y2e5{bottom:50.416591pt;}
.y2e9{bottom:50.885776pt;}
.yfa{bottom:51.074737pt;}
.y2c9{bottom:52.392093pt;}
.yfb{bottom:52.667305pt;}
.y2de{bottom:53.379852pt;}
.y2c0{bottom:54.367600pt;}
.y2f6{bottom:55.355664pt;}
.y2c4{bottom:55.355665pt;}
.y2d2{bottom:56.343105pt;}
.y2d4{bottom:56.836984pt;}
.yfd{bottom:58.288094pt;}
.y2f0{bottom:58.318618pt;}
.y5{bottom:59.133337pt;}
.y2cc{bottom:59.306366pt;}
.y2d8{bottom:60.294125pt;}
.y2b2{bottom:60.787230pt;}
.yf9{bottom:61.885423pt;}
.y2e4{bottom:62.294326pt;}
.y2e8{bottom:62.763509pt;}
.y2c8{bottom:64.245131pt;}
.y35{bottom:64.640000pt;}
.y2dd{bottom:65.232892pt;}
.y2c3{bottom:67.208704pt;}
.y2d1{bottom:68.220838pt;}
.yfc{bottom:69.117517pt;}
.y2ef{bottom:70.171657pt;}
.y2d7{bottom:72.147166pt;}
.y2e3{bottom:74.147366pt;}
.y2e7{bottom:74.616548pt;}
.y18b{bottom:75.200000pt;}
.y199{bottom:75.386667pt;}
.y2c2{bottom:79.082323pt;}
.y34{bottom:80.040000pt;}
.y2d0{bottom:80.073878pt;}
.y2ee{bottom:82.041161pt;}
.y8e{bottom:82.750694pt;}
.y2ad{bottom:84.510595pt;}
.y2e2{bottom:86.000406pt;}
.y4{bottom:86.333337pt;}
.y88{bottom:88.029592pt;}
.y8d{bottom:93.289147pt;}
.y2ed{bottom:93.894200pt;}
.y33{bottom:95.080000pt;}
.y87{bottom:98.575063pt;}
.y8c{bottom:103.852135pt;}
.y32{bottom:110.600000pt;}
.y2aa{bottom:120.094408pt;}
.y21{bottom:123.790666pt;}
.y102{bottom:132.257919pt;}
.y8f{bottom:134.094755pt;}
.y101{bottom:134.978412pt;}
.y2a7{bottom:143.816950pt;}
.y2a4{bottom:167.547724pt;}
.y18{bottom:175.052000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y2a1{bottom:191.253804pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y29f{bottom:214.976346pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y29c{bottom:231.298969pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y26{bottom:247.386667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y29a{bottom:264.405168pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y297{bottom:276.258208pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y1ef{bottom:287.386667pt;}
.y263{bottom:287.453243pt;}
.y85{bottom:287.546667pt;}
.y2be{bottom:287.945992pt;}
.y2ba{bottom:287.946025pt;}
.y2f5{bottom:287.946065pt;}
.y12f{bottom:289.146667pt;}
.y219{bottom:291.226667pt;}
.ycf{bottom:292.346667pt;}
.y158{bottom:292.506667pt;}
.y233{bottom:293.466667pt;}
.y1cc{bottom:293.960000pt;}
.yb2{bottom:295.546667pt;}
.y146{bottom:296.186667pt;}
.y259{bottom:298.106667pt;}
.yef{bottom:298.266667pt;}
.y59{bottom:298.746667pt;}
.y111{bottom:299.546667pt;}
.y294{bottom:299.988982pt;}
.y16d{bottom:301.306667pt;}
.y1ee{bottom:302.266667pt;}
.y84{bottom:302.906667pt;}
.y12e{bottom:304.506667pt;}
.y218{bottom:306.106667pt;}
.y157{bottom:307.866667pt;}
.y1cb{bottom:308.360000pt;}
.y232{bottom:308.826667pt;}
.yf{bottom:309.452000pt;}
.y53{bottom:310.760000pt;}
.yb1{bottom:310.906667pt;}
.y145{bottom:311.546667pt;}
.y258{bottom:312.986667pt;}
.yee{bottom:313.466667pt;}
.yce{bottom:314.106667pt;}
.y110{bottom:314.906667pt;}
.y16c{bottom:316.666667pt;}
.y1ed{bottom:317.146667pt;}
.y83{bottom:318.266667pt;}
.y217{bottom:320.986667pt;}
.y198{bottom:321.320000pt;}
.y2b8{bottom:322.044364pt;}
.y2b6{bottom:322.044397pt;}
.y1ca{bottom:322.920000pt;}
.y156{bottom:323.226667pt;}
.y292{bottom:323.711524pt;}
.y231{bottom:324.186667pt;}
.yb0{bottom:326.266667pt;}
.ycd{bottom:326.426667pt;}
.y144{bottom:326.906667pt;}
.y12d{bottom:327.866667pt;}
.yed{bottom:328.826667pt;}
.y10f{bottom:330.106667pt;}
.y16b{bottom:332.026667pt;}
.y82{bottom:333.466667pt;}
.y216{bottom:335.866667pt;}
.y1a0{bottom:335.880000pt;}
.y1c9{bottom:337.320000pt;}
.y155{bottom:338.426667pt;}
.y28f{bottom:339.021700pt;}
.y230{bottom:339.546667pt;}
.yaf{bottom:341.466667pt;}
.y143{bottom:342.266667pt;}
.y257{bottom:342.746667pt;}
.y12c{bottom:343.066667pt;}
.ye{bottom:343.809333pt;}
.yec{bottom:344.186667pt;}
.y2b4{bottom:345.771022pt;}
.y2b3{bottom:345.771055pt;}
.y1ec{bottom:346.906667pt;}
.y16a{bottom:347.386667pt;}
.y81{bottom:348.826667pt;}
.y19e{bottom:350.280000pt;}
.y215{bottom:350.746667pt;}
.y1c8{bottom:351.880000pt;}
.y154{bottom:353.786667pt;}
.yae{bottom:356.826667pt;}
.y142{bottom:357.466667pt;}
.y12b{bottom:358.426667pt;}
.y22f{bottom:358.906667pt;}
.yeb{bottom:359.546667pt;}
.y10e{bottom:361.466667pt;}
.y256{bottom:361.626667pt;}
.y1eb{bottom:361.786667pt;}
.y169{bottom:362.586667pt;}
.yd{bottom:362.706666pt;}
.y28b{bottom:362.752474pt;}
.y52{bottom:363.066667pt;}
.y19c{bottom:364.840000pt;}
.y1c7{bottom:366.306667pt;}
.y51{bottom:367.746667pt;}
.y153{bottom:369.186667pt;}
.y2b1{bottom:369.497680pt;}
.y2ae{bottom:369.497713pt;}
.y214{bottom:369.666667pt;}
.y80{bottom:371.906667pt;}
.yad{bottom:372.226667pt;}
.y141{bottom:372.866667pt;}
.y12a{bottom:373.826667pt;}
.y22e{bottom:374.306667pt;}
.yea{bottom:374.946667pt;}
.y255{bottom:376.546667pt;}
.y1ea{bottom:376.706667pt;}
.y10d{bottom:377.826667pt;}
.y168{bottom:377.986667pt;}
.y50{bottom:379.106667pt;}
.y19b{bottom:379.266667pt;}
.y1c6{bottom:380.706667pt;}
.y152{bottom:384.546667pt;}
.y7f{bottom:387.266667pt;}
.yac{bottom:387.586667pt;}
.y140{bottom:388.226667pt;}
.y129{bottom:389.186667pt;}
.y22d{bottom:389.506667pt;}
.ye9{bottom:390.306667pt;}
.y254{bottom:391.426667pt;}
.y1e9{bottom:391.586667pt;}
.y167{bottom:393.346667pt;}
.y19a{bottom:393.666667pt;}
.y10c{bottom:394.146667pt;}
.y1c5{bottom:395.266667pt;}
.y4f{bottom:396.866667pt;}
.y17c{bottom:398.306667pt;}
.y151{bottom:399.906667pt;}
.yab{bottom:402.946667pt;}
.y213{bottom:403.426667pt;}
.y13f{bottom:403.586667pt;}
.y128{bottom:404.546667pt;}
.y2ac{bottom:405.078201pt;}
.y2c7{bottom:405.078212pt;}
.y2ab{bottom:405.078234pt;}
.y2ec{bottom:405.078274pt;}
.ye8{bottom:405.506667pt;}
.y1e8{bottom:406.466667pt;}
.y194{bottom:408.226667pt;}
.y166{bottom:408.706667pt;}
.y22c{bottom:408.866667pt;}
.y1c4{bottom:409.666667pt;}
.y287{bottom:410.205789pt;}
.y253{bottom:410.306667pt;}
.y10b{bottom:410.466667pt;}
.y7e{bottom:410.626667pt;}
.y4e{bottom:412.226667pt;}
.y17b{bottom:413.506667pt;}
.yaa{bottom:418.306667pt;}
.y13e{bottom:418.946667pt;}
.y127{bottom:419.746667pt;}
.y150{bottom:423.106667pt;}
.y165{bottom:424.066667pt;}
.y1c3{bottom:424.226667pt;}
.y252{bottom:425.186667pt;}
.y10a{bottom:425.666667pt;}
.y4d{bottom:427.586667pt;}
.y2a9{bottom:428.800743pt;}
.y2a8{bottom:428.800776pt;}
.ye7{bottom:428.866667pt;}
.y1e7{bottom:429.026667pt;}
.y212{bottom:433.186667pt;}
.ya9{bottom:433.506667pt;}
.y7d{bottom:433.986667pt;}
.y13d{bottom:434.306667pt;}
.y193{bottom:436.546667pt;}
.y1c2{bottom:438.626667pt;}
.y164{bottom:439.266667pt;}
.y14f{bottom:439.426667pt;}
.y126{bottom:442.786667pt;}
.y4c{bottom:442.946667pt;}
.y22b{bottom:443.586667pt;}
.y251{bottom:444.066667pt;}
.ye6{bottom:444.226667pt;}
.y284{bottom:445.781371pt;}
.yc{bottom:446.990669pt;}
.ya8{bottom:448.866667pt;}
.y109{bottom:449.026667pt;}
.y13c{bottom:449.506667pt;}
.y1e6{bottom:451.906667pt;}
.y211{bottom:452.066667pt;}
.y2a6{bottom:452.531516pt;}
.y2a5{bottom:452.531550pt;}
.y1c1{bottom:453.026667pt;}
.y192{bottom:453.986667pt;}
.y163{bottom:454.626667pt;}
.y14e{bottom:455.746667pt;}
.y7c{bottom:457.506667pt;}
.y4b{bottom:458.306667pt;}
.y250{bottom:458.946667pt;}
.ye5{bottom:459.586667pt;}
.y22a{bottom:462.946667pt;}
.yb{bottom:462.990669pt;}
.y108{bottom:464.386667pt;}
.y13b{bottom:464.866667pt;}
.y125{bottom:466.146667pt;}
.y210{bottom:466.946667pt;}
.y1c0{bottom:467.586667pt;}
.y191{bottom:469.346667pt;}
.y282{bottom:469.512145pt;}
.y162{bottom:469.986667pt;}
.ya7{bottom:471.906667pt;}
.y14d{bottom:472.066667pt;}
.y1e5{bottom:472.706667pt;}
.y7b{bottom:472.866667pt;}
.y4a{bottom:473.506667pt;}
.ye4{bottom:474.946667pt;}
.y2a3{bottom:476.237596pt;}
.y2a2{bottom:476.237629pt;}
.y24f{bottom:477.826667pt;}
.ya{bottom:478.990666pt;}
.y107{bottom:479.746667pt;}
.y17a{bottom:480.866667pt;}
.y280{bottom:481.859061pt;}
.y1bf{bottom:481.986667pt;}
.y229{bottom:482.306667pt;}
.y161{bottom:485.346667pt;}
.y20f{bottom:485.826667pt;}
.y1e4{bottom:487.266667pt;}
.y7a{bottom:488.226667pt;}
.y49{bottom:488.866667pt;}
.y124{bottom:489.506667pt;}
.ye3{bottom:490.306667pt;}
.y24e{bottom:492.706667pt;}
.y27e{bottom:493.728564pt;}
.y9{bottom:494.990666pt;}
.ya6{bottom:495.586667pt;}
.y14c{bottom:496.386667pt;}
.y1be{bottom:496.546667pt;}
.y179{bottom:496.866667pt;}
.y228{bottom:497.506667pt;}
.y18a{bottom:498.306667pt;}
.y2a0{bottom:499.960138pt;}
.y160{bottom:500.706667pt;}
.y106{bottom:502.626667pt;}
.y79{bottom:503.586667pt;}
.y48{bottom:504.226667pt;}
.ye2{bottom:505.506667pt;}
.y27a{bottom:505.581604pt;}
.y24d{bottom:507.586667pt;}
.ya5{bottom:510.946667pt;}
.y190{bottom:512.706667pt;}
.y178{bottom:512.866667pt;}
.y123{bottom:513.186667pt;}
.y1e3{bottom:515.426667pt;}
.y20e{bottom:515.586667pt;}
.y15f{bottom:516.066667pt;}
.y29e{bottom:516.282762pt;}
.y2d3{bottom:516.282773pt;}
.y29d{bottom:516.282795pt;}
.y2e6{bottom:516.282835pt;}
.y13a{bottom:518.946667pt;}
.y14b{bottom:519.266667pt;}
.y47{bottom:519.586667pt;}
.ye1{bottom:520.866667pt;}
.y105{bottom:524.546667pt;}
.y1bd{bottom:525.506667pt;}
.ya4{bottom:526.306667pt;}
.y24c{bottom:526.466667pt;}
.y78{bottom:526.946667pt;}
.y18f{bottom:527.266667pt;}
.ycc{bottom:528.226667pt;}
.y122{bottom:528.546667pt;}
.y177{bottom:528.866667pt;}
.y1e2{bottom:529.986667pt;}
.y20d{bottom:530.466667pt;}
.y15e{bottom:531.266667pt;}
.y277{bottom:534.251144pt;}
.y46{bottom:534.946667pt;}
.ye0{bottom:536.226667pt;}
.y104{bottom:539.906667pt;}
.y24b{bottom:541.346667pt;}
.ya3{bottom:541.506667pt;}
.y18e{bottom:541.666667pt;}
.y139{bottom:542.146667pt;}
.y77{bottom:542.306667pt;}
.ycb{bottom:543.586667pt;}
.y121{bottom:543.746667pt;}
.y1e1{bottom:544.386667pt;}
.y176{bottom:544.866667pt;}
.y20c{bottom:545.346667pt;}
.y15d{bottom:546.626667pt;}
.y227{bottom:547.586667pt;}
.y29b{bottom:549.388961pt;}
.y45{bottom:550.306667pt;}
.ydf{bottom:551.586667pt;}
.y1bc{bottom:554.306667pt;}
.y18d{bottom:556.066667pt;}
.y24a{bottom:556.226667pt;}
.ya2{bottom:556.866667pt;}
.y76{bottom:557.506667pt;}
.y273{bottom:557.973686pt;}
.yca{bottom:558.946667pt;}
.y120{bottom:559.106667pt;}
.y103{bottom:560.226667pt;}
.yf8{bottom:560.459094pt;}
.y175{bottom:560.866667pt;}
.y299{bottom:561.242000pt;}
.y298{bottom:561.242034pt;}
.y15c{bottom:561.986667pt;}
.y226{bottom:562.946667pt;}
.y20b{bottom:563.906667pt;}
.y44{bottom:565.506667pt;}
.yde{bottom:566.946667pt;}
.y1bb{bottom:568.866667pt;}
.y18c{bottom:570.626667pt;}
.y249{bottom:571.106667pt;}
.y75{bottom:572.866667pt;}
.y1e0{bottom:573.346667pt;}
.y8{bottom:573.786667pt;}
.yc9{bottom:574.146667pt;}
.y11f{bottom:574.466667pt;}
.y174{bottom:576.866667pt;}
.y225{bottom:578.146667pt;}
.y20a{bottom:578.786667pt;}
.ya1{bottom:580.226667pt;}
.y43{bottom:580.866667pt;}
.y14a{bottom:582.173333pt;}
.y271{bottom:582.692213pt;}
.y1ba{bottom:583.293333pt;}
.y296{bottom:584.972774pt;}
.y295{bottom:584.972807pt;}
.y15b{bottom:585.053333pt;}
.y1df{bottom:587.773333pt;}
.y74{bottom:588.253333pt;}
.y11e{bottom:589.853333pt;}
.y248{bottom:590.013333pt;}
.ydd{bottom:590.173333pt;}
.y7{bottom:592.685334pt;}
.y172{bottom:592.893333pt;}
.y26e{bottom:594.545253pt;}
.ya0{bottom:595.613333pt;}
.y42{bottom:596.253333pt;}
.yc8{bottom:597.533333pt;}
.y1b1{bottom:597.853333pt;}
.y187{bottom:599.613333pt;}
.y15a{bottom:600.413333pt;}
.y209{bottom:602.013333pt;}
.y1de{bottom:602.333333pt;}
.y73{bottom:603.613333pt;}
.y138{bottom:604.253333pt;}
.y247{bottom:604.893333pt;}
.y11d{bottom:605.213333pt;}
.ydc{bottom:605.533333pt;}
.y293{bottom:608.695316pt;}
.y171{bottom:608.893333pt;}
.y9f{bottom:610.973333pt;}
.y41{bottom:611.613333pt;}
.yc7{bottom:612.893333pt;}
.y1dd{bottom:616.733333pt;}
.y208{bottom:616.893333pt;}
.y186{bottom:617.053333pt;}
.y26c{bottom:618.267795pt;}
.y72{bottom:618.973333pt;}
.y11c{bottom:620.573333pt;}
.y159{bottom:620.733333pt;}
.ydb{bottom:620.893333pt;}
.y246{bottom:623.773333pt;}
.y291{bottom:624.005493pt;}
.y2cf{bottom:624.005504pt;}
.y290{bottom:624.005526pt;}
.y2e1{bottom:624.005565pt;}
.y9e{bottom:626.333333pt;}
.y40{bottom:626.973333pt;}
.y137{bottom:627.613333pt;}
.y170{bottom:627.933333pt;}
.yc6{bottom:628.253333pt;}
.y269{bottom:630.120835pt;}
.y1dc{bottom:631.293333pt;}
.y207{bottom:631.773333pt;}
.y71{bottom:634.173333pt;}
.yda{bottom:636.253333pt;}
.y245{bottom:638.653333pt;}
.y1b4{bottom:639.773333pt;}
.y185{bottom:640.733333pt;}
.y9d{bottom:641.533333pt;}
.y3f{bottom:642.173333pt;}
.y11b{bottom:643.453333pt;}
.yc5{bottom:643.613333pt;}
.y6{bottom:645.598667pt;}
.y1db{bottom:645.693333pt;}
.y206{bottom:646.653333pt;}
.y224{bottom:647.613333pt;}
.y28e{bottom:647.736266pt;}
.y28c{bottom:647.736299pt;}
.y70{bottom:649.533333pt;}
.y136{bottom:650.973333pt;}
.yd9{bottom:651.613333pt;}
.y244{bottom:653.533333pt;}
.y264{bottom:653.851608pt;}
.y184{bottom:656.093333pt;}
.y9c{bottom:656.893333pt;}
.y3e{bottom:657.533333pt;}
.yc4{bottom:658.973333pt;}
.y1da{bottom:660.253333pt;}
.y205{bottom:661.533333pt;}
.y223{bottom:662.973333pt;}
.y6f{bottom:664.893333pt;}
.y11a{bottom:665.373333pt;}
.y135{bottom:666.173333pt;}
.yd8{bottom:666.973333pt;}
.y1b0{bottom:668.093333pt;}
.y3{bottom:668.977329pt;}
.y183{bottom:671.293333pt;}
.y9b{bottom:672.253333pt;}
.y243{bottom:672.413333pt;}
.y3d{bottom:672.893333pt;}
.y149{bottom:674.173333pt;}
.y1d9{bottom:674.653333pt;}
.y204{bottom:676.413333pt;}
.y6e{bottom:680.253333pt;}
.yc3{bottom:682.173333pt;}
.y1af{bottom:685.533333pt;}
.y119{bottom:685.693333pt;}
.y182{bottom:686.653333pt;}
.y242{bottom:687.293333pt;}
.y9a{bottom:687.613333pt;}
.y3c{bottom:688.253333pt;}
.y1d8{bottom:689.053333pt;}
.y134{bottom:689.533333pt;}
.y203{bottom:691.293333pt;}
.y28a{bottom:695.189582pt;}
.y288{bottom:695.189615pt;}
.y6d{bottom:695.613333pt;}
.yc2{bottom:697.533333pt;}
.y181{bottom:702.013333pt;}
.y241{bottom:702.173333pt;}
.y99{bottom:702.973333pt;}
.y3b{bottom:703.293333pt;}
.y1d7{bottom:703.613333pt;}
.y133{bottom:704.893333pt;}
.y202{bottom:706.173333pt;}
.y1ae{bottom:709.213333pt;}
.yc1{bottom:712.893333pt;}
.y180{bottom:717.373333pt;}
.y1d6{bottom:718.026667pt;}
.y98{bottom:718.173333pt;}
.y3a{bottom:718.653333pt;}
.y6c{bottom:718.973333pt;}
.y148{bottom:720.253333pt;}
.yf7{bottom:720.893333pt;}
.y201{bottom:721.053333pt;}
.y1ad{bottom:724.573333pt;}
.y132{bottom:727.933333pt;}
.yc0{bottom:728.253333pt;}
.y286{bottom:730.765164pt;}
.y285{bottom:730.765197pt;}
.y31{bottom:731.613333pt;}
.y1d5{bottom:732.586667pt;}
.y97{bottom:733.533333pt;}
.y6b{bottom:734.173333pt;}
.y240{bottom:735.933333pt;}
.yf6{bottom:736.253333pt;}
.y1ac{bottom:739.933333pt;}
.y17f{bottom:740.413333pt;}
.y147{bottom:743.293333pt;}
.ybf{bottom:743.613333pt;}
.y200{bottom:743.933333pt;}
.y1d4{bottom:746.973333pt;}
.y222{bottom:747.613333pt;}
.y118{bottom:747.773333pt;}
.y96{bottom:748.893333pt;}
.y6a{bottom:749.533333pt;}
.y23f{bottom:750.813333pt;}
.yf5{bottom:751.613333pt;}
.y283{bottom:754.495937pt;}
.y1ab{bottom:755.293333pt;}
.y17e{bottom:755.613333pt;}
.y1ff{bottom:758.813333pt;}
.y1d3{bottom:761.373333pt;}
.y117{bottom:762.973333pt;}
.y95{bottom:764.253333pt;}
.y69{bottom:764.893333pt;}
.y281{bottom:766.842854pt;}
.y2cb{bottom:766.842865pt;}
.y2dc{bottom:766.842927pt;}
.ybe{bottom:766.973333pt;}
.y23e{bottom:769.693333pt;}
.y1aa{bottom:770.493333pt;}
.y1fe{bottom:773.693333pt;}
.y1d2{bottom:775.933333pt;}
.y17d{bottom:776.093333pt;}
.y221{bottom:778.173333pt;}
.y116{bottom:778.333333pt;}
.y27f{bottom:778.712356pt;}
.y94{bottom:779.613333pt;}
.y68{bottom:780.253333pt;}
.y2{bottom:781.661334pt;}
.ybd{bottom:782.173333pt;}
.y23d{bottom:784.733333pt;}
.y1a9{bottom:785.853333pt;}
.y1fd{bottom:788.733333pt;}
.y1d1{bottom:790.333333pt;}
.y27d{bottom:790.565396pt;}
.y27b{bottom:790.565429pt;}
.y115{bottom:793.693333pt;}
.y93{bottom:794.973333pt;}
.y67{bottom:795.613333pt;}
.ybc{bottom:797.533333pt;}
.y23c{bottom:799.653333pt;}
.y1a8{bottom:801.253333pt;}
.y1fc{bottom:803.653333pt;}
.y1ce{bottom:804.933333pt;}
.y16f{bottom:805.573333pt;}
.y114{bottom:809.093333pt;}
.y92{bottom:810.213333pt;}
.y66{bottom:811.013333pt;}
.ybb{bottom:812.933333pt;}
.y23b{bottom:818.533333pt;}
.y279{bottom:819.234936pt;}
.y278{bottom:819.234969pt;}
.y1d0{bottom:819.333333pt;}
.y16e{bottom:820.933333pt;}
.y1a4{bottom:821.893333pt;}
.y65{bottom:826.213333pt;}
.y1fb{bottom:826.533333pt;}
.yba{bottom:828.293333pt;}
.y113{bottom:831.973333pt;}
.y23a{bottom:833.413333pt;}
.y1cd{bottom:833.733333pt;}
.y131{bottom:836.293333pt;}
.y1a7{bottom:836.453333pt;}
.y91{bottom:841.253333pt;}
.y1fa{bottom:841.413333pt;}
.y276{bottom:842.957478pt;}
.y274{bottom:842.957512pt;}
.yd7{bottom:843.653333pt;}
.y220{bottom:847.653333pt;}
.y239{bottom:848.293333pt;}
.y64{bottom:849.253333pt;}
.y1a6{bottom:850.853333pt;}
.yf4{bottom:851.333333pt;}
.yb9{bottom:851.653333pt;}
.y90{bottom:853.573333pt;}
.y86{bottom:853.781250pt;}
.y112{bottom:853.893333pt;}
.y1f9{bottom:856.293333pt;}
.y30{bottom:857.893333pt;}
.yd6{bottom:859.013333pt;}
.y1{bottom:859.312000pt;}
.y21f{bottom:863.013333pt;}
.y1a3{bottom:865.413333pt;}
.yb8{bottom:867.013333pt;}
.y238{bottom:867.173333pt;}
.y272{bottom:867.676005pt;}
.y2bf{bottom:867.676016pt;}
.y2d6{bottom:867.676078pt;}
.y1f8{bottom:871.173333pt;}
.y63{bottom:872.613333pt;}
.yd5{bottom:874.213333pt;}
.yf3{bottom:875.013333pt;}
.y21e{bottom:878.213333pt;}
.y270{bottom:879.529045pt;}
.y26f{bottom:879.529078pt;}
.y1a2{bottom:879.813333pt;}
.y2f{bottom:879.973333pt;}
.y237{bottom:882.053333pt;}
.yb7{bottom:882.213333pt;}
.y1f7{bottom:886.053333pt;}
.yd4{bottom:889.573333pt;}
.y62{bottom:890.053333pt;}
.yf2{bottom:890.213333pt;}
.y21d{bottom:893.573333pt;}
.y2e{bottom:896.773333pt;}
.y1a1{bottom:897.253333pt;}
.yb6{bottom:897.573333pt;}
.y1f6{bottom:900.933333pt;}
.y26d{bottom:903.251587pt;}
.yd3{bottom:904.933333pt;}
.y61{bottom:905.573333pt;}
.yb5{bottom:912.933333pt;}
.y2d{bottom:913.733333pt;}
.y26a{bottom:915.104627pt;}
.y1f5{bottom:915.813333pt;}
.yd2{bottom:920.293333pt;}
.y60{bottom:920.613333pt;}
.yf1{bottom:920.933333pt;}
.y2c{bottom:924.293333pt;}
.yb4{bottom:928.293333pt;}
.y236{bottom:930.693333pt;}
.y5f{bottom:936.293333pt;}
.y1f4{bottom:938.693333pt;}
.y268{bottom:938.835400pt;}
.y265{bottom:938.835434pt;}
.yd1{bottom:943.333333pt;}
.y2b{bottom:943.653333pt;}
.y235{bottom:949.573333pt;}
.y5e{bottom:951.653333pt;}
.y1f3{bottom:953.573333pt;}
.yd0{bottom:958.533333pt;}
.yb3{bottom:958.853333pt;}
.y21c{bottom:962.853333pt;}
.y29{bottom:963.173333pt;}
.y234{bottom:964.453333pt;}
.y5d{bottom:966.533333pt;}
.yf0{bottom:966.853333pt;}
.y2a{bottom:968.453333pt;}
.y25b{bottom:970.459969pt;}
.y25d{bottom:970.459992pt;}
.y130{bottom:974.213333pt;}
.y21b{bottom:978.213333pt;}
.y5c{bottom:982.213333pt;}
.y1f2{bottom:983.333333pt;}
.y28{bottom:983.493333pt;}
.y21a{bottom:993.573333pt;}
.y5b{bottom:997.573333pt;}
.y1f1{bottom:998.213333pt;}
.y27{bottom:1006.213333pt;}
.y25a{bottom:1012.613333pt;}
.y5a{bottom:1012.933333pt;}
.y1f0{bottom:1013.093333pt;}
.y25{bottom:1028.960000pt;}
.y22{bottom:1044.640000pt;}
.h19{height:2.512500pt;}
.h44{height:11.359254pt;}
.h4a{height:11.379832pt;}
.h4b{height:11.853130pt;}
.h31{height:13.746667pt;}
.h2b{height:13.760000pt;}
.h35{height:13.778667pt;}
.h3b{height:13.780000pt;}
.h2f{height:13.786667pt;}
.h30{height:13.906667pt;}
.h34{height:13.920000pt;}
.h50{height:14.816390pt;}
.h2a{height:15.346667pt;}
.h28{height:15.360000pt;}
.h29{height:15.386667pt;}
.h53{height:15.824722pt;}
.h24{height:22.989105pt;}
.h54{height:23.212236pt;}
.h55{height:23.212293pt;}
.h3e{height:23.232791pt;}
.h3f{height:23.232792pt;}
.h45{height:23.232814pt;}
.h3c{height:23.232872pt;}
.h46{height:24.220567pt;}
.h47{height:24.220625pt;}
.h22{height:27.036087pt;}
.h23{height:27.092295pt;}
.h3d{height:27.120774pt;}
.h32{height:27.506667pt;}
.h38{height:27.680000pt;}
.h3a{height:28.146667pt;}
.h48{height:28.171580pt;}
.h49{height:28.171638pt;}
.h9{height:28.480000pt;}
.h7{height:28.560000pt;}
.h41{height:28.613979pt;}
.h1e{height:28.850316pt;}
.h42{height:31.134840pt;}
.h43{height:31.134898pt;}
.h51{height:32.616470pt;}
.h52{height:32.616528pt;}
.h56{height:33.604224pt;}
.h57{height:33.604281pt;}
.h17{height:33.918750pt;}
.h4c{height:35.085854pt;}
.h4d{height:35.085911pt;}
.h1c{height:35.342500pt;}
.h13{height:36.413125pt;}
.h11{height:37.410000pt;}
.h12{height:38.220000pt;}
.h16{height:38.413438pt;}
.hb{height:38.672812pt;}
.h6{height:40.800000pt;}
.h39{height:41.280000pt;}
.h1b{height:42.063437pt;}
.h36{height:42.706667pt;}
.h3{height:42.840000pt;}
.h4e{height:46.959472pt;}
.h4f{height:46.959529pt;}
.h20{height:47.085938pt;}
.h2d{height:47.109375pt;}
.h2c{height:48.375000pt;}
.h2{height:48.960000pt;}
.h1a{height:49.106667pt;}
.h18{height:49.112000pt;}
.h27{height:52.108438pt;}
.h15{height:52.134375pt;}
.h26{height:52.478750pt;}
.hd{height:53.535000pt;}
.h1f{height:54.598989pt;}
.ha{height:56.732813pt;}
.hf{height:59.340000pt;}
.h25{height:59.528104pt;}
.he{height:60.437812pt;}
.hc{height:62.812500pt;}
.h5{height:69.360000pt;}
.h37{height:69.600000pt;}
.h2e{height:86.106667pt;}
.h33{height:86.258667pt;}
.h5b{height:100.339286pt;}
.h5f{height:100.339292pt;}
.h58{height:102.290099pt;}
.h5e{height:102.290105pt;}
.h4{height:105.826671pt;}
.h5d{height:107.237097pt;}
.h61{height:107.237103pt;}
.h5a{height:110.710696pt;}
.h62{height:110.710702pt;}
.h63{height:116.637222pt;}
.h59{height:116.637227pt;}
.h14{height:122.580000pt;}
.h5c{height:142.335265pt;}
.h60{height:142.335271pt;}
.h21{height:148.839032pt;}
.h1d{height:171.069643pt;}
.h40{height:706.242558pt;}
.h10{height:1122.386587pt;}
.h8{height:1122.400000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w31{width:34.546667pt;}
.w2e{width:34.592000pt;}
.w38{width:38.706667pt;}
.w36{width:38.720000pt;}
.w3a{width:38.738667pt;}
.w37{width:38.752000pt;}
.w39{width:38.866667pt;}
.w2b{width:44.018667pt;}
.w1f{width:48.306667pt;}
.w17{width:48.466667pt;}
.w2f{width:48.626667pt;}
.w2c{width:48.640000pt;}
.w32{width:48.658667pt;}
.w27{width:49.906667pt;}
.w3c{width:54.208274pt;}
.w30{width:59.346667pt;}
.w2d{width:59.360000pt;}
.w3d{width:60.137945pt;}
.w14{width:61.152000pt;}
.w40{width:63.584952pt;}
.w1c{width:65.426667pt;}
.wd{width:66.386667pt;}
.w5{width:67.186667pt;}
.w34{width:69.920000pt;}
.w23{width:72.658667pt;}
.w1d{width:75.058667pt;}
.w13{width:76.320000pt;}
.w1e{width:87.826667pt;}
.w15{width:92.146667pt;}
.w1b{width:93.952000pt;}
.w42{width:94.160717pt;}
.w18{width:97.458667pt;}
.wa{width:103.220000pt;}
.w20{width:105.138667pt;}
.w16{width:124.018667pt;}
.w41{width:124.215327pt;}
.w2a{width:143.853333pt;}
.w29{width:143.866667pt;}
.w12{width:146.573333pt;}
.we{width:147.599018pt;}
.w28{width:153.293333pt;}
.w1a{width:154.253333pt;}
.w25{width:155.386667pt;}
.w24{width:164.653333pt;}
.w9{width:172.013333pt;}
.w3f{width:176.470297pt;}
.w35{width:235.746667pt;}
.w33{width:306.306667pt;}
.w8{width:316.853333pt;}
.w22{width:320.693333pt;}
.w21{width:394.000000pt;}
.wf{width:399.300906pt;}
.wb{width:402.626667pt;}
.w6{width:438.480000pt;}
.wc{width:439.280000pt;}
.w19{width:479.280000pt;}
.w3b{width:487.488729pt;}
.w3e{width:487.488738pt;}
.w10{width:489.680000pt;}
.w26{width:492.880000pt;}
.w11{width:502.800000pt;}
.w2{width:566.928019pt;}
.w4{width:793.333333pt;}
.w7{width:793.580000pt;}
.w3{width:793.600000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x78{left:1.477289pt;}
.x86{left:2.462148pt;}
.x68{left:3.506667pt;}
.x1c{left:4.857011pt;}
.x87{left:5.909154pt;}
.x6{left:7.186667pt;}
.x88{left:8.371301pt;}
.x83{left:9.372574pt;}
.x4e{left:10.866667pt;}
.x89{left:11.838825pt;}
.x60{left:12.946667pt;}
.x1a{left:14.880000pt;}
.x61{left:17.746667pt;}
.x84{left:19.225267pt;}
.x48{left:20.146667pt;}
.x1d{left:22.322893pt;}
.x5b{left:23.226667pt;}
.x85{left:24.149561pt;}
.x2c{left:25.156274pt;}
.x82{left:26.139797pt;}
.x5a{left:29.306667pt;}
.x43{left:30.546667pt;}
.x81{left:31.556520pt;}
.x56{left:35.226667pt;}
.x8a{left:36.480815pt;}
.x46{left:38.866667pt;}
.x44{left:41.746667pt;}
.x8{left:43.546667pt;}
.x24{left:47.571253pt;}
.x20{left:50.120713pt;}
.x1f{left:51.775608pt;}
.x59{left:53.600000pt;}
.x45{left:55.506667pt;}
.x1e{left:59.602824pt;}
.x42{left:60.626667pt;}
.x57{left:66.226667pt;}
.x54{left:72.306667pt;}
.x47{left:78.066667pt;}
.x22{left:79.237951pt;}
.x2b{left:80.716841pt;}
.x23{left:86.859428pt;}
.x1{left:90.706667pt;}
.x21{left:93.013854pt;}
.x2{left:94.486667pt;}
.x17{left:95.866667pt;}
.x58{left:98.266667pt;}
.x41{left:100.666667pt;}
.x55{left:104.346667pt;}
.x40{left:115.226667pt;}
.x5c{left:117.306667pt;}
.x7c{left:124.707756pt;}
.x7f{left:132.586626pt;}
.x5{left:144.040000pt;}
.x4d{left:145.480000pt;}
.x9{left:151.226667pt;}
.xf{left:153.786667pt;}
.x16{left:155.546667pt;}
.x3a{left:157.786667pt;}
.x36{left:170.106667pt;}
.x4{left:180.874667pt;}
.x32{left:184.186667pt;}
.x12{left:187.066667pt;}
.x53{left:194.600000pt;}
.x2a{left:197.244135pt;}
.x35{left:200.346667pt;}
.x63{left:206.440000pt;}
.x7{left:211.240000pt;}
.x28{left:213.626667pt;}
.x3f{left:218.586667pt;}
.xc{left:223.706667pt;}
.x2f{left:227.219066pt;}
.x13{left:228.346667pt;}
.x2d{left:231.867618pt;}
.x26{left:233.666667pt;}
.xa{left:234.946667pt;}
.x2e{left:236.776554pt;}
.x71{left:243.746667pt;}
.x6b{left:245.666667pt;}
.x18{left:247.266667pt;}
.x38{left:252.226667pt;}
.x4b{left:254.946667pt;}
.x64{left:256.066667pt;}
.xb{left:261.026667pt;}
.x4c{left:267.266667pt;}
.x39{left:274.306667pt;}
.x3e{left:275.906667pt;}
.x4a{left:278.306667pt;}
.x7d{left:282.881758pt;}
.x70{left:285.986667pt;}
.x3b{left:288.066667pt;}
.x67{left:291.426667pt;}
.x4f{left:292.706667pt;}
.x6c{left:294.946667pt;}
.x10{left:296.546667pt;}
.x34{left:305.346667pt;}
.x7e{left:309.549352pt;}
.x5e{left:312.226667pt;}
.x72{left:314.306667pt;}
.x33{left:321.506667pt;}
.x30{left:323.467877pt;}
.x1b{left:325.148116pt;}
.xd{left:326.606667pt;}
.xe{left:331.266667pt;}
.x29{left:340.706667pt;}
.x15{left:343.266667pt;}
.x73{left:353.666667pt;}
.x69{left:354.946667pt;}
.x7a{left:364.250055pt;}
.x66{left:365.186667pt;}
.x50{left:369.666667pt;}
.x6d{left:390.186667pt;}
.x74{left:393.066667pt;}
.x11{left:396.893333pt;}
.x3{left:404.408000pt;}
.x5f{left:406.826667pt;}
.x5d{left:408.893333pt;}
.x51{left:431.466667pt;}
.x75{left:432.426667pt;}
.x6e{left:439.466667pt;}
.x79{left:459.852691pt;}
.x14{left:469.706667pt;}
.x76{left:471.946667pt;}
.x25{left:473.053333pt;}
.x6a{left:499.466667pt;}
.x77{left:511.306667pt;}
.x3c{left:513.533333pt;}
.x80{left:514.553395pt;}
.x65{left:521.226667pt;}
.x52{left:524.266667pt;}
.x3d{left:531.293333pt;}
.x6f{left:534.666667pt;}
.x62{left:548.613333pt;}
.x7b{left:578.626671pt;}
.x19{left:583.333333pt;}
.x31{left:596.773333pt;}
.x27{left:613.893333pt;}
.x49{left:621.573333pt;}
.x8b{left:639.333333pt;}
.x37{left:641.413333pt;}
}




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