
    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_14388827b5ff12d122896f54.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_c104de43026dae611503daee.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.928711;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_e88b13faaa95f387adb63568.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_79d10740cdcafd88d6d89443.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_63a37977befad443d1f87bd8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_cc5b03e30ae8866b3605e0b8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_5de85cda8c22167709a053dc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_5510a2fba2ca896f6a0a422d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_e5e335d814d8d50593cfb461.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_cbcc962d6ca850ea65f6ba80.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104004;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_e95aa7898097bd6d249e51aa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.854004;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_cdb9da9ccfe40961c3a773cb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.084961;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_b8a2dab4c37a1362fb3168d2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.084961;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_0007ad0b0d0fc3aa2b3e65fc.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.196289;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;}
.m6{transform:matrix(0.248370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248370,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248523,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.256173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.292703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292703,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.303532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303532,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.349778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349778,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);}
.v3{vertical-align:-3.839119px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.337811px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.ls2f{letter-spacing:-9.480000px;}
.ls12{letter-spacing:-2.242046px;}
.ls13{letter-spacing:-2.100821px;}
.ls27{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.774000px;}
.ls7{letter-spacing:-0.414600px;}
.ls19{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.259800px;}
.ls11{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.181200px;}
.ls30{letter-spacing:-0.175800px;}
.ls8{letter-spacing:-0.152400px;}
.ls20{letter-spacing:-0.144000px;}
.ls2c{letter-spacing:-0.072000px;}
.ls1a{letter-spacing:-0.034344px;}
.ls1c{letter-spacing:-0.031346px;}
.ls31{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.057600px;}
.ls28{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.144720px;}
.lsc{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.216000px;}
.ls2e{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.305400px;}
.ls21{letter-spacing:0.432000px;}
.ls2d{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.720000px;}
.ls1b{letter-spacing:1.362771px;}
.lsa{letter-spacing:1.440000px;}
.ls26{letter-spacing:5.040000px;}
.ls24{letter-spacing:7.732887px;}
.ls22{letter-spacing:7.860740px;}
.ls1d{letter-spacing:7.920000px;}
.ls23{letter-spacing:8.270510px;}
.ls25{letter-spacing:8.366400px;}
.lsf{letter-spacing:8.640000px;}
.ls2b{letter-spacing:10.080000px;}
.ls14{letter-spacing:15.240000px;}
.ls29{letter-spacing:20.160000px;}
.ls15{letter-spacing:150.584771px;}
.ls1e{letter-spacing:154.856381px;}
.ls17{letter-spacing:158.827335px;}
.ls16{letter-spacing:183.609976px;}
.ls18{letter-spacing:191.852540px;}
.ls1f{letter-spacing:238.159718px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(68,84,106),0 0.015em rgb(68,84,106),0.015em 0 rgb(68,84,106),0 -0.015em  rgb(68,84,106);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(68,84,106);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-49.870080px;}
.ws2{word-spacing:-21.641760px;}
.ws5{word-spacing:-19.900080px;}
.ws0{word-spacing:-19.640280px;}
.wsf{word-spacing:-18.720000px;}
.ws3c{word-spacing:-18.576000px;}
.ws3d{word-spacing:-18.288000px;}
.ws3a{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.ws39{word-spacing:-18.072000px;}
.wse{word-spacing:-18.000000px;}
.ws3b{word-spacing:-17.928000px;}
.ws31{word-spacing:-17.856000px;}
.ws13{word-spacing:-17.784000px;}
.ws11{word-spacing:-17.712000px;}
.ws9{word-spacing:-16.865400px;}
.wsa{word-spacing:-16.669200px;}
.ws7{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.407600px;}
.ws8{word-spacing:-16.254600px;}
.wsb{word-spacing:-16.145400px;}
.ws12{word-spacing:-14.940000px;}
.wsd{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.229520px;}
.ws37{word-spacing:-12.798610px;}
.ws3f{word-spacing:-12.186000px;}
.ws10{word-spacing:-12.060000px;}
.ws38{word-spacing:-9.668905px;}
.ws3e{word-spacing:-8.520000px;}
.ws26{word-spacing:-8.259736px;}
.ws30{word-spacing:-7.538742px;}
.ws4{word-spacing:0.000000px;}
.ws14{word-spacing:81.559528px;}
.ws19{word-spacing:117.711229px;}
.ws1d{word-spacing:130.074525px;}
.ws1c{word-spacing:136.256447px;}
.ws20{word-spacing:144.499011px;}
.ws2c{word-spacing:154.478643px;}
.ws29{word-spacing:154.569108px;}
.ws2f{word-spacing:160.114300px;}
.ws28{word-spacing:162.014063px;}
.ws27{word-spacing:163.902666px;}
.ws2d{word-spacing:165.730960px;}
.ws2a{word-spacing:165.780111px;}
.ws1e{word-spacing:166.441884px;}
.ws2e{word-spacing:173.254030px;}
.ws33{word-spacing:175.502822px;}
.ws2b{word-spacing:180.826250px;}
.ws1b{word-spacing:185.832034px;}
.ws34{word-spacing:197.807453px;}
.ws23{word-spacing:206.481648px;}
.ws21{word-spacing:206.580765px;}
.ws36{word-spacing:210.454392px;}
.ws25{word-spacing:212.573864px;}
.ws16{word-spacing:212.662889px;}
.ws1f{word-spacing:214.655318px;}
.ws1a{word-spacing:216.724545px;}
.ws24{word-spacing:218.727694px;}
.ws22{word-spacing:218.781545px;}
.ws35{word-spacing:223.311843px;}
.ws17{word-spacing:231.162325px;}
.ws18{word-spacing:240.378838px;}
.ws15{word-spacing:243.375843px;}
.ws32{word-spacing:507.310127px;}
._2c{margin-left:-10.465680px;}
._1e{margin-left:-9.337440px;}
._20{margin-left:-7.969200px;}
._1f{margin-left:-6.625440px;}
._19{margin-left:-5.547840px;}
._18{margin-left:-4.392000px;}
._d{margin-left:-3.312000px;}
._f{margin-left:-2.252160px;}
._6{margin-left:-1.004160px;}
._0{width:1.171200px;}
._4{width:2.474160px;}
._11{width:3.812880px;}
._10{width:5.431680px;}
._2{width:7.195200px;}
._3{width:8.904240px;}
._8{width:9.968160px;}
._a{width:11.916240px;}
._12{width:13.711680px;}
._e{width:15.134400px;}
._9{width:16.314480px;}
._2b{width:17.660400px;}
._14{width:18.679680px;}
._5{width:19.744800px;}
._13{width:20.998080px;}
._15{width:22.207680px;}
._1a{width:23.616000px;}
._1b{width:24.912000px;}
._1c{width:26.157600px;}
._16{width:27.576000px;}
._17{width:28.598400px;}
._1{width:29.700720px;}
._7{width:31.099200px;}
._4b{width:32.296080px;}
._21{width:33.481440px;}
._3d{width:35.064000px;}
._3e{width:36.070560px;}
._29{width:37.433760px;}
._4e{width:40.896000px;}
._b{width:43.086960px;}
._c{width:44.389920px;}
._1d{width:45.788160px;}
._50{width:46.872000px;}
._4f{width:48.600000px;}
._2a{width:55.038960px;}
._25{width:56.772000px;}
._24{width:57.847680px;}
._22{width:68.780880px;}
._27{width:84.674160px;}
._2f{width:100.260327px;}
._2e{width:105.155638px;}
._30{width:118.690741px;}
._2d{width:129.541467px;}
._3f{width:139.237192px;}
._44{width:143.813113px;}
._23{width:198.821520px;}
._28{width:202.586400px;}
._43{width:203.874950px;}
._35{width:207.482218px;}
._41{width:210.247702px;}
._39{width:218.671753px;}
._42{width:232.552333px;}
._40{width:245.710171px;}
._45{width:248.125852px;}
._4a{width:251.439683px;}
._26{width:262.047600px;}
._49{width:297.253798px;}
._4c{width:299.367915px;}
._47{width:306.621985px;}
._33{width:332.195892px;}
._48{width:341.057104px;}
._46{width:373.561212px;}
._31{width:405.384737px;}
._32{width:436.097690px;}
._4d{width:498.579904px;}
._3a{width:529.892913px;}
._37{width:541.428023px;}
._34{width:578.407635px;}
._38{width:589.954521px;}
._3c{width:617.895974px;}
._3b{width:649.891985px;}
._36{width:713.614984px;}
.fc9{color:rgb(255,0,0);}
.fc8{color:rgb(33,37,41);}
.fc6{color:rgb(238,0,0);}
.fc4{color:rgb(0,32,96);}
.fc5{color:rgb(23,22,21);}
.fc3{color:transparent;}
.fc7{color:rgb(34,34,34);}
.fc2{color:rgb(68,84,106);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:26.609467px;}
.fse{font-size:30.154970px;}
.fsd{font-size:33.038943px;}
.fs8{font-size:36.000000px;}
.fs10{font-size:38.675622px;}
.fs5{font-size:48.240000px;}
.fsb{font-size:49.977163px;}
.fs9{font-size:50.548403px;}
.fsf{font-size:51.194439px;}
.fs1{font-size:54.000000px;}
.fsc{font-size:57.607265px;}
.fsa{font-size:58.354612px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:149.760000px;}
.y278{bottom:-105.120150px;}
.y32{bottom:-83.700000px;}
.y22{bottom:-72.900000px;}
.y277{bottom:-68.760000px;}
.y31{bottom:-56.520000px;}
.y21{bottom:-36.540000px;}
.y30{bottom:-33.660000px;}
.y276{bottom:-32.760000px;}
.y275{bottom:-16.380000px;}
.y2f{bottom:-10.980000px;}
.y20{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.y24{bottom:0.975000px;}
.y80{bottom:3.240000px;}
.y9{bottom:3.780000px;}
.ye1{bottom:3.845571px;}
.y1a8{bottom:3.983051px;}
.y1a4{bottom:4.004293px;}
.y1ab{bottom:4.009604px;}
.y15c{bottom:4.231735px;}
.y12f{bottom:4.244298px;}
.y114{bottom:4.636442px;}
.yec{bottom:4.650180px;}
.y13b{bottom:4.701951px;}
.y133{bottom:4.714490px;}
.y131{bottom:4.720759px;}
.yd8{bottom:4.799334px;}
.ydc{bottom:4.800605px;}
.y1ae{bottom:4.806177px;}
.y1a6{bottom:4.806198px;}
.yda{bottom:4.832397px;}
.yd5{bottom:4.862923px;}
.yf8{bottom:5.151602px;}
.yf0{bottom:5.165340px;}
.y14d{bottom:5.172131px;}
.y139{bottom:5.172143px;}
.yee{bottom:5.172209px;}
.y12d{bottom:5.190951px;}
.y12b{bottom:5.642335px;}
.y14b{bottom:5.658008px;}
.y10a{bottom:5.666749px;}
.yf6{bottom:5.666763px;}
.yea{bottom:5.687369px;}
.y149{bottom:6.128200px;}
.y142{bottom:6.131335px;}
.ye8{bottom:6.181923px;}
.y108{bottom:6.199095px;}
.y241{bottom:6.479850px;}
.y106{bottom:6.714255px;}
.yff{bottom:6.717689px;}
.ye6{bottom:7.212243px;}
.yb{bottom:7.560000px;}
.yd3{bottom:7.774216px;}
.y15f{bottom:8.933650px;}
.y1d2{bottom:9.069605px;}
.y1d5{bottom:9.069610px;}
.y8{bottom:9.540000px;}
.y1d8{bottom:10.867425px;}
.y99{bottom:11.736000px;}
.y2e{bottom:11.880000px;}
.y14f{bottom:14.118298px;}
.y10c{bottom:15.468545px;}
.y16f{bottom:15.535143px;}
.y1d6{bottom:16.920598px;}
.y1cf{bottom:16.920661px;}
.y11a{bottom:17.020894px;}
.y17f{bottom:17.409640px;}
.y116{bottom:17.549792px;}
.y274{bottom:17.820000px;}
.y1f{bottom:18.045000px;}
.y7{bottom:18.180000px;}
.y15a{bottom:18.353273px;}
.y15e{bottom:18.820217px;}
.y161{bottom:18.820219px;}
.y110{bottom:19.074666px;}
.y112{bottom:20.108545px;}
.y10e{bottom:20.111856px;}
.y9a{bottom:20.376000px;}
.y91{bottom:20.520000px;}
.y82{bottom:20.565000px;}
.y175{bottom:20.700982px;}
.y155{bottom:20.700983px;}
.y165{bottom:20.719790px;}
.y163{bottom:20.719793px;}
.y17a{bottom:21.647636px;}
.y178{bottom:21.647637px;}
.y181{bottom:22.111558px;}
.y153{bottom:22.130367px;}
.y11b{bottom:22.680788px;}
.y29{bottom:22.755000px;}
.y189{bottom:23.070749px;}
.y157{bottom:23.070752px;}
.y185{bottom:23.070862px;}
.y10b{bottom:23.717977px;}
.y1d1{bottom:24.172283px;}
.y1d4{bottom:24.172287px;}
.y118{bottom:24.246875px;}
.y16e{bottom:25.421710px;}
.y17e{bottom:27.283670px;}
.y16a{bottom:27.302476px;}
.y119{bottom:27.852997px;}
.yd1{bottom:28.184936px;}
.y159{bottom:28.242973px;}
.y115{bottom:28.368157px;}
.y94{bottom:29.160000px;}
.y10f{bottom:29.893031px;}
.y10d{bottom:30.943958px;}
.y111{bottom:30.944082px;}
.y152{bottom:32.016934px;}
.y2d{bottom:34.785000px;}
.y117{bottom:35.078978px;}
.y1e{bottom:36.405000px;}
.yf{bottom:36.900000px;}
.y95{bottom:37.620000px;}
.y98{bottom:37.800000px;}
.y8f{bottom:39.990000px;}
.y273{bottom:41.436000px;}
.ye{bottom:43.560000px;}
.y6{bottom:50.580000px;}
.y27{bottom:53.100000px;}
.y1d{bottom:54.765000px;}
.y8e{bottom:57.270000px;}
.y2c{bottom:57.465000px;}
.y272{bottom:65.190000px;}
.y65{bottom:67.860000px;}
.ye4{bottom:68.220000px;}
.y240{bottom:71.280000px;}
.ycf{bottom:71.460000px;}
.y64{bottom:72.360000px;}
.y1c{bottom:73.125000px;}
.y8d{bottom:74.370000px;}
.y223{bottom:74.700000px;}
.ye3{bottom:77.940000px;}
.y271{bottom:79.770000px;}
.y2b{bottom:80.325000px;}
.y127{bottom:80.640000px;}
.y109{bottom:81.593037px;}
.yce{bottom:83.880000px;}
.ydf{bottom:85.231766px;}
.yb2{bottom:86.040000px;}
.y1a0{bottom:88.740000px;}
.y63{bottom:89.280000px;}
.y7e{bottom:91.080000px;}
.y8c{bottom:91.650000px;}
.y62{bottom:93.780000px;}
.y222{bottom:95.400000px;}
.yc9{bottom:95.940000px;}
.y107{bottom:99.640940px;}
.y1ea{bottom:102.060000px;}
.y270{bottom:103.530000px;}
.yde{bottom:104.433552px;}
.y1cd{bottom:105.660000px;}
.y257{bottom:107.100000px;}
.y8b{bottom:108.930000px;}
.y126{bottom:109.080000px;}
.y1b{bottom:109.305000px;}
.y23f{bottom:109.980000px;}
.y20c{bottom:110.700000px;}
.y61{bottom:111.960000px;}
.y9b{bottom:117.180000px;}
.y105{bottom:118.203881px;}
.y19f{bottom:119.880000px;}
.y7d{bottom:122.040000px;}
.y1e9{bottom:122.760000px;}
.ydd{bottom:123.635973px;}
.y8a{bottom:126.210000px;}
.yc8{bottom:127.080000px;}
.y26f{bottom:127.110000px;}
.y1a{bottom:127.665000px;}
.y83{bottom:129.420000px;}
.y20b{bottom:131.400000px;}
.y221{bottom:134.100000px;}
.y1cc{bottom:136.836000px;}
.y104{bottom:138.329474px;}
.y125{bottom:138.996000px;}
.ydb{bottom:142.838395px;}
.y89{bottom:143.490000px;}
.y19{bottom:146.025000px;}
.y1a2{bottom:146.470103px;}
.yb1{bottom:148.176000px;}
.y23e{bottom:148.716000px;}
.y26e{bottom:150.690000px;}
.y19e{bottom:150.870000px;}
.y60{bottom:152.130000px;}
.y7c{bottom:153.210000px;}
.y220{bottom:154.830000px;}
.yd{bottom:156.090000px;}
.y103{bottom:156.888980px;}
.yc7{bottom:158.070000px;}
.y88{bottom:160.590000px;}
.y1e8{bottom:161.490000px;}
.yd9{bottom:162.040816px;}
.y18{bottom:164.205000px;}
.y97{bottom:164.550000px;}
.y1cb{bottom:167.790000px;}
.y124{bottom:169.950000px;}
.y20a{bottom:170.130000px;}
.y26d{bottom:174.450000px;}
.y102{bottom:174.940195px;}
.y87{bottom:177.870000px;}
.yb0{bottom:179.310000px;}
.y5f{bottom:180.210000px;}
.yd7{bottom:181.276302px;}
.y19d{bottom:182.010000px;}
.y1e7{bottom:182.190000px;}
.y17{bottom:182.565000px;}
.y7b{bottom:184.170000px;}
.y23d{bottom:187.410000px;}
.y26c{bottom:189.030000px;}
.yc6{bottom:189.210000px;}
.y209{bottom:190.830000px;}
.y101{bottom:192.984540px;}
.y21f{bottom:193.530000px;}
.y86{bottom:195.150000px;}
.y1ca{bottom:198.930000px;}
.y5e{bottom:199.290000px;}
.ye0{bottom:200.478723px;}
.y123{bottom:201.090000px;}
.yaf{bottom:210.270000px;}
.y100{bottom:210.520595px;}
.y85{bottom:212.430000px;}
.y26b{bottom:212.790000px;}
.y19c{bottom:212.970000px;}
.y21e{bottom:214.230000px;}
.y7a{bottom:215.310000px;}
.y96{bottom:217.110000px;}
.y5d{bottom:218.190000px;}
.y16{bottom:218.925000px;}
.yc5{bottom:220.170000px;}
.y1e6{bottom:220.890000px;}
.ycd{bottom:224.850000px;}
.y23c{bottom:226.110000px;}
.y208{bottom:229.530000px;}
.yfe{bottom:229.595261px;}
.y84{bottom:229.710000px;}
.y1c9{bottom:229.890000px;}
.y122{bottom:232.050000px;}
.y26a{bottom:236.370000px;}
.y5c{bottom:237.270000px;}
.y15{bottom:237.285000px;}
.yae{bottom:241.230000px;}
.y1e5{bottom:241.590000px;}
.y19b{bottom:244.110000px;}
.y79{bottom:246.270000px;}
.yfd{bottom:249.720854px;}
.y207{bottom:250.230000px;}
.y269{bottom:250.950000px;}
.yc4{bottom:251.310000px;}
.y93{bottom:252.390000px;}
.y21d{bottom:252.930000px;}
.y14{bottom:255.465000px;}
.ycc{bottom:255.990000px;}
.y5b{bottom:256.170000px;}
.y1c8{bottom:261.030000px;}
.y121{bottom:263.190000px;}
.y23b{bottom:264.810000px;}
.yfc{bottom:266.226588px;}
.yad{bottom:272.370000px;}
.y21c{bottom:273.630000px;}
.y13{bottom:273.855000px;}
.y268{bottom:274.890000px;}
.y19a{bottom:275.070000px;}
.y5a{bottom:275.250000px;}
.y78{bottom:277.230000px;}
.y1e4{bottom:280.290000px;}
.ycb{bottom:282.090000px;}
.yc3{bottom:282.270000px;}
.yfb{bottom:284.786094px;}
.y206{bottom:288.930000px;}
.y1c7{bottom:291.990000px;}
.y59{bottom:294.150000px;}
.yca{bottom:294.510000px;}
.yd0{bottom:294.695506px;}
.yd4{bottom:295.655290px;}
.y1e3{bottom:300.990000px;}
.yac{bottom:303.330000px;}
.yfa{bottom:303.352469px;}
.y23a{bottom:303.510000px;}
.y92{bottom:304.770000px;}
.y199{bottom:306.210000px;}
.y77{bottom:308.370000px;}
.y267{bottom:309.135000px;}
.y205{bottom:309.630000px;}
.y21b{bottom:312.330000px;}
.y58{bottom:313.050000px;}
.yc2{bottom:313.410000px;}
.yd2{bottom:315.106226px;}
.yf9{bottom:321.396815px;}
.y1c6{bottom:323.130000px;}
.y266{bottom:323.895000px;}
.y120{bottom:325.290000px;}
.y204{bottom:330.330000px;}
.y57{bottom:332.130000px;}
.y21a{bottom:333.030000px;}
.yab{bottom:334.470000px;}
.y198{bottom:337.170000px;}
.yf7{bottom:337.902549px;}
.y76{bottom:339.330000px;}
.y1e2{bottom:339.690000px;}
.y90{bottom:340.050000px;}
.yd6{bottom:340.380427px;}
.y239{bottom:342.210000px;}
.yc1{bottom:344.370000px;}
.y265{bottom:347.475000px;}
.y229{bottom:348.330000px;}
.y56{bottom:351.030000px;}
.y1c5{bottom:354.090000px;}
.yf5{bottom:354.916574px;}
.y11f{bottom:356.250000px;}
.y2a{bottom:360.210000px;}
.y1e1{bottom:360.390000px;}
.yaa{bottom:365.430000px;}
.y197{bottom:368.310000px;}
.y203{bottom:369.030000px;}
.y55{bottom:370.110000px;}
.y75{bottom:370.470000px;}
.y264{bottom:371.055000px;}
.y219{bottom:371.730000px;}
.yf4{bottom:372.967789px;}
.y81{bottom:375.330000px;}
.yc0{bottom:375.510000px;}
.y238{bottom:380.910000px;}
.y1e0{bottom:381.090000px;}
.y1c4{bottom:385.230000px;}
.y11e{bottom:387.435000px;}
.y54{bottom:389.055000px;}
.yf3{bottom:389.466654px;}
.y202{bottom:389.775000px;}
.y218{bottom:392.475000px;}
.y263{bottom:394.815000px;}
.ya9{bottom:396.615000px;}
.y196{bottom:399.315000px;}
.y74{bottom:401.475000px;}
.yf2{bottom:405.972388px;}
.ybf{bottom:406.515000px;}
.y256{bottom:406.875000px;}
.y228{bottom:407.775000px;}
.y53{bottom:408.135000px;}
.y129{bottom:409.975914px;}
.y7f{bottom:410.655000px;}
.y11d{bottom:411.195000px;}
.y1c3{bottom:416.235000px;}
.y262{bottom:418.395000px;}
.y237{bottom:419.655000px;}
.y1df{bottom:419.835000px;}
.y11c{bottom:420.915000px;}
.yf1{bottom:421.440932px;}
.y128{bottom:422.985000px;}
.y14c{bottom:423.455038px;}
.y187{bottom:423.455046px;}
.y186{bottom:423.455051px;}
.y184{bottom:423.455056px;}
.y158{bottom:423.455073px;}
.y52{bottom:427.035000px;}
.ya8{bottom:427.575000px;}
.y201{bottom:428.475000px;}
.y195{bottom:430.455000px;}
.y217{bottom:431.175000px;}
.y73{bottom:432.615000px;}
.y261{bottom:432.975000px;}
.ybe{bottom:437.655000px;}
.y255{bottom:437.835000px;}
.yef{bottom:437.946666px;}
.y14a{bottom:439.927538px;}
.y1de{bottom:440.535000px;}
.y1c2{bottom:447.375000px;}
.y200{bottom:449.175000px;}
.y216{bottom:451.875000px;}
.yed{bottom:454.445531px;}
.y51{bottom:454.935000px;}
.y260{bottom:456.735000px;}
.y148{bottom:456.870117px;}
.y254{bottom:457.815000px;}
.y236{bottom:458.355000px;}
.ya7{bottom:458.715000px;}
.y194{bottom:461.415000px;}
.y72{bottom:463.575000px;}
.y26{bottom:465.915000px;}
.y28{bottom:466.020000px;}
.y227{bottom:467.175000px;}
.ybd{bottom:468.615000px;}
.yeb{bottom:471.466425px;}
.y147{bottom:475.238945px;}
.y183{bottom:475.238952px;}
.y182{bottom:475.238958px;}
.y180{bottom:475.238962px;}
.y17d{bottom:475.238979px;}
.y50{bottom:476.175000px;}
.y1c1{bottom:478.335000px;}
.y1dd{bottom:479.235000px;}
.y25f{bottom:480.675000px;}
.yc{bottom:486.615000px;}
.ye9{bottom:486.934970px;}
.y1ff{bottom:487.875000px;}
.ya6{bottom:489.675000px;}
.y215{bottom:490.575000px;}
.y146{bottom:492.178389px;}
.y193{bottom:492.555000px;}
.y253{bottom:493.815000px;}
.y71{bottom:494.715000px;}
.y235{bottom:497.055000px;}
.ybc{bottom:499.755000px;}
.y1dc{bottom:499.935000px;}
.ye7{bottom:504.484762px;}
.y4f{bottom:506.235000px;}
.y1fe{bottom:508.575000px;}
.y145{bottom:508.653911px;}
.y1c0{bottom:509.475000px;}
.y25e{bottom:514.875000px;}
.ya5{bottom:520.815000px;}
.ye5{bottom:523.051137px;}
.y192{bottom:523.515000px;}
.y144{bottom:525.123164px;}
.y18b{bottom:525.123171px;}
.y18a{bottom:525.123177px;}
.y188{bottom:525.123181px;}
.y156{bottom:525.123198px;}
.y4e{bottom:525.495000px;}
.y70{bottom:525.675000px;}
.y1fd{bottom:529.275000px;}
.ybb{bottom:530.715000px;}
.y252{bottom:533.775000px;}
.y234{bottom:535.755000px;}
.y1db{bottom:538.635000px;}
.y25d{bottom:539.205000px;}
.y1bf{bottom:540.435000px;}
.y143{bottom:541.128494px;}
.y113{bottom:544.186444px;}
.y226{bottom:547.275000px;}
.y214{bottom:549.975000px;}
.ya4{bottom:551.775000px;}
.y25{bottom:552.420000px;}
.y4d{bottom:553.395000px;}
.y191{bottom:554.655000px;}
.y6f{bottom:556.815000px;}
.y141{bottom:558.538130px;}
.y1da{bottom:559.335000px;}
.yba{bottom:561.855000px;}
.y251{bottom:564.915000px;}
.ye2{bottom:567.075000px;}
.y1fc{bottom:567.975000px;}
.y1be{bottom:571.575000px;}
.y4c{bottom:572.295000px;}
.y233{bottom:574.455000px;}
.y25c{bottom:575.205000px;}
.y140{bottom:576.906958px;}
.y17c{bottom:576.906965px;}
.y17b{bottom:576.906971px;}
.y179{bottom:576.906975px;}
.y177{bottom:576.906992px;}
.ya3{bottom:582.915000px;}
.y190{bottom:585.615000px;}
.y6e{bottom:587.775000px;}
.y213{bottom:588.675000px;}
.y1d9{bottom:589.035000px;}
.y10{bottom:589.215000px;}
.y4b{bottom:591.375000px;}
.y13f{bottom:591.971904px;}
.yb9{bottom:592.815000px;}
.y250{bottom:595.875000px;}
.y1bd{bottom:602.535000px;}
.y23{bottom:605.340000px;}
.y1fb{bottom:606.675000px;}
.y13e{bottom:608.911349px;}
.y212{bottom:609.375000px;}
.y25b{bottom:609.945000px;}
.y4a{bottom:610.275000px;}
.y232{bottom:613.155000px;}
.ya2{bottom:613.875000px;}
.ya{bottom:616.395000px;}
.y18f{bottom:616.755000px;}
.y6d{bottom:618.915000px;}
.y242{bottom:619.635150px;}
.yb8{bottom:623.775000px;}
.y13d{bottom:625.857062px;}
.y176{bottom:625.857070px;}
.y174{bottom:625.857075px;}
.y173{bottom:625.857080px;}
.y154{bottom:625.857097px;}
.y24f{bottom:627.015000px;}
.y1fa{bottom:627.375000px;}
.y49{bottom:629.355000px;}
.y1bc{bottom:633.675000px;}
.y13c{bottom:642.326315px;}
.y33{bottom:644.685000px;}
.ya1{bottom:645.045000px;}
.y25a{bottom:646.305000px;}
.y18e{bottom:647.745000px;}
.y1f9{bottom:648.105000px;}
.y48{bottom:648.285000px;}
.y6c{bottom:649.905000px;}
.y231{bottom:651.885000px;}
.yb7{bottom:654.945000px;}
.y13a{bottom:657.391261px;}
.y24e{bottom:658.005000px;}
.y1bb{bottom:664.665000px;}
.y225{bottom:666.105000px;}
.y47{bottom:667.185000px;}
.y211{bottom:668.805000px;}
.y138{bottom:672.920130px;}
.y172{bottom:672.920137px;}
.y171{bottom:672.920143px;}
.y170{bottom:672.920147px;}
.y16d{bottom:672.920164px;}
.y18d{bottom:673.845000px;}
.ya0{bottom:676.005000px;}
.y6b{bottom:681.045000px;}
.y259{bottom:682.305000px;}
.yb6{bottom:685.905000px;}
.y46{bottom:686.265000px;}
.y18c{bottom:686.445000px;}
.y1f8{bottom:686.805000px;}
.y24d{bottom:689.145000px;}
.y1a1{bottom:689.317584px;}
.y137{bottom:689.395652px;}
.y210{bottom:689.505000px;}
.y1ad{bottom:690.114181px;}
.y230{bottom:690.585000px;}
.y1ba{bottom:695.805000px;}
.y136{bottom:704.454329px;}
.y45{bottom:705.165000px;}
.y9f{bottom:707.145000px;}
.y1ac{bottom:709.338415px;}
.y6a{bottom:712.005000px;}
.yb5{bottom:717.045000px;}
.y258{bottom:718.305000px;}
.y135{bottom:719.519275px;}
.y16c{bottom:719.519283px;}
.y16b{bottom:719.519288px;}
.y169{bottom:719.519293px;}
.y151{bottom:719.519310px;}
.y24c{bottom:720.105000px;}
.y44{bottom:724.245000px;}
.y1f7{bottom:725.505000px;}
.y1b9{bottom:726.765000px;}
.y20f{bottom:728.205000px;}
.y1aa{bottom:728.536330px;}
.y22f{bottom:729.285000px;}
.y134{bottom:733.637569px;}
.y43{bottom:743.145000px;}
.y1f6{bottom:746.205000px;}
.y1a9{bottom:746.937651px;}
.y9e{bottom:747.105000px;}
.yb4{bottom:748.005000px;}
.y132{bottom:748.702515px;}
.y24b{bottom:751.245000px;}
.y1b8{bottom:757.725000px;}
.y42{bottom:762.045000px;}
.y130{bottom:763.761192px;}
.y1a7{bottom:766.162119px;}
.y1f5{bottom:766.905000px;}
.y22e{bottom:767.985000px;}
.y69{bottom:774.105000px;}
.y12e{bottom:779.296330px;}
.y167{bottom:779.296338px;}
.y166{bottom:779.296343px;}
.y164{bottom:779.296348px;}
.y162{bottom:779.296365px;}
.y41{bottom:781.125000px;}
.y24a{bottom:782.205000px;}
.y1a5{bottom:784.563439px;}
.yb3{bottom:786.705000px;}
.y9d{bottom:787.245000px;}
.y20e{bottom:787.605000px;}
.y1b7{bottom:788.865000px;}
.y12c{bottom:793.414624px;}
.y40{bottom:800.025000px;}
.y1a3{bottom:803.764540px;}
.y68{bottom:805.245000px;}
.y1f4{bottom:805.605000px;}
.y22d{bottom:806.685000px;}
.y12a{bottom:809.432492px;}
.y249{bottom:813.345000px;}
.y3f{bottom:819.105000px;}
.y1b6{bottom:819.825000px;}
.y1f3{bottom:826.305000px;}
.y160{bottom:826.378206px;}
.y15d{bottom:826.378213px;}
.y168{bottom:826.378229px;}
.y150{bottom:826.378235px;}
.y14e{bottom:826.378240px;}
.y9c{bottom:827.205000px;}
.y67{bottom:836.205000px;}
.y3e{bottom:838.005000px;}
.y248{bottom:844.305000px;}
.y22c{bottom:845.385000px;}
.y15b{bottom:845.668622px;}
.y1f2{bottom:847.005000px;}
.y1b5{bottom:850.965000px;}
.y224{bottom:865.005000px;}
.y3d{bottom:866.265000px;}
.y66{bottom:867.345000px;}
.y20d{bottom:867.705000px;}
.y247{bottom:875.445000px;}
.y1b4{bottom:881.925000px;}
.y22b{bottom:884.085000px;}
.y1f1{bottom:885.705000px;}
.y12{bottom:888.405000px;}
.y3c{bottom:898.350000px;}
.y1f0{bottom:906.450000px;}
.y279{bottom:912.210000px;}
.y1b3{bottom:913.110000px;}
.y3a{bottom:929.490000px;}
.y22a{bottom:933.090000px;}
.y3b{bottom:936.330000px;}
.y246{bottom:937.590000px;}
.y1b2{bottom:944.070000px;}
.y1ef{bottom:945.150000px;}
.y38{bottom:960.450000px;}
.y1ee{bottom:965.850000px;}
.y39{bottom:967.290000px;}
.y245{bottom:968.550000px;}
.y1b1{bottom:975.210000px;}
.y37{bottom:991.590000px;}
.y1b0{bottom:998.970000px;}
.y1ed{bottom:1004.550000px;}
.y244{bottom:1007.250000px;}
.y1af{bottom:1008.510000px;}
.y1d7{bottom:1009.254985px;}
.y36{bottom:1022.550000px;}
.y1ec{bottom:1025.250000px;}
.y1ce{bottom:1038.261518px;}
.y1d3{bottom:1038.261533px;}
.y1d0{bottom:1038.261558px;}
.y243{bottom:1045.950000px;}
.y35{bottom:1053.690000px;}
.y1eb{bottom:1063.950000px;}
.y34{bottom:1084.650000px;}
.y11{bottom:1087.350000px;}
.y5{bottom:1105.350000px;}
.y4{bottom:1123.710000px;}
.y3{bottom:1138.110000px;}
.y2{bottom:1230.300000px;}
.y1{bottom:1248.480000px;}
.h56{height:13.651246px;}
.h4c{height:13.651277px;}
.h4e{height:14.591661px;}
.h38{height:14.956819px;}
.h4d{height:15.061852px;}
.h4b{height:15.532044px;}
.h3a{height:15.987139px;}
.h4f{height:16.002236px;}
.h49{height:16.472428px;}
.h39{height:16.502299px;}
.h51{height:16.942620px;}
.h37{height:17.017460px;}
.h1f{height:17.280000px;}
.h3b{height:17.532620px;}
.h6c{height:17.604808px;}
.h50{height:17.898676px;}
.h35{height:18.047780px;}
.h30{height:18.248659px;}
.h6e{height:18.401402px;}
.h6f{height:18.427955px;}
.h2d{height:18.491757px;}
.h3d{height:18.562940px;}
.h3c{height:19.610433px;}
.h33{height:20.623581px;}
.h5{height:24.156000px;}
.h2c{height:24.314422px;}
.h2e{height:25.306194px;}
.h48{height:26.783149px;}
.h4a{height:27.033459px;}
.h3f{height:27.231316px;}
.h75{height:28.387508px;}
.h3{height:28.440000px;}
.hc{height:28.980000px;}
.h34{height:29.344647px;}
.h36{height:29.618896px;}
.h76{height:31.877173px;}
.h1b{height:32.273438px;}
.h52{height:32.944781px;}
.h57{height:32.944782px;}
.h71{height:34.351053px;}
.h26{height:34.416000px;}
.h23{height:34.560000px;}
.h21{height:34.596000px;}
.h12{height:35.261367px;}
.h40{height:36.095560px;}
.h17{height:39.760312px;}
.h72{height:40.493556px;}
.h74{height:40.493560px;}
.h70{height:40.493617px;}
.h73{height:40.932017px;}
.h27{height:43.246406px;}
.h31{height:44.803746px;}
.h2b{height:45.315853px;}
.h6b{height:45.470061px;}
.h6d{height:45.895015px;}
.h5e{height:46.125823px;}
.h5d{height:46.125825px;}
.h5f{height:46.125826px;}
.h60{height:46.596015px;}
.h54{height:46.596017px;}
.h61{height:46.596018px;}
.h59{height:46.611688px;}
.h58{height:46.611690px;}
.h5a{height:46.611691px;}
.h7b{height:47.980898px;}
.h1c{height:48.410156px;}
.h63{height:48.476782px;}
.h62{height:48.476784px;}
.h64{height:48.476785px;}
.h66{height:49.417166px;}
.h65{height:49.417168px;}
.h67{height:49.417169px;}
.h45{height:50.537219px;}
.h46{height:51.052379px;}
.h43{height:51.069551px;}
.h32{height:51.165827px;}
.h68{height:51.313606px;}
.h55{height:51.313608px;}
.h69{height:51.313609px;}
.h24{height:51.660000px;}
.h2f{height:51.829609px;}
.h25{height:51.840000px;}
.h20{height:53.077852px;}
.h3e{height:53.113020px;}
.ha{height:53.573906px;}
.h4{height:53.709961px;}
.h42{height:54.143341px;}
.h16{height:54.596250px;}
.h7c{height:55.291992px;}
.h41{height:56.221154px;}
.h6{height:56.649375px;}
.h8{height:57.959925px;}
.h29{height:58.429688px;}
.h19{height:58.833281px;}
.h5b{height:59.306868px;}
.h53{height:59.306869px;}
.h5c{height:59.306870px;}
.h18{height:59.343750px;}
.h1a{height:59.383125px;}
.h2{height:59.439023px;}
.h7a{height:61.189805px;}
.h15{height:63.949219px;}
.h1d{height:64.546875px;}
.h44{height:64.978878px;}
.h13{height:65.884219px;}
.h1e{height:66.605977px;}
.h28{height:70.606406px;}
.h2a{height:70.991712px;}
.h79{height:79.620469px;}
.hf{height:91.177734px;}
.h11{height:100.656000px;}
.hd{height:109.102500px;}
.h6a{height:169.674597px;}
.h7{height:170.490000px;}
.h14{height:173.700000px;}
.h10{height:181.620000px;}
.he{height:181.650000px;}
.h7d{height:189.000000px;}
.h22{height:280.515000px;}
.hb{height:306.255000px;}
.h47{height:436.337906px;}
.h78{height:754.845000px;}
.h9{height:1188.900000px;}
.h77{height:1249.740000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:39.960000px;}
.w2f{width:59.427817px;}
.w26{width:64.941112px;}
.w24{width:67.103413px;}
.w2a{width:72.557882px;}
.w2c{width:74.860401px;}
.w2e{width:76.002146px;}
.w30{width:79.427380px;}
.w29{width:84.009582px;}
.w6{width:88.560000px;}
.w22{width:91.657544px;}
.w2d{width:98.289004px;}
.w11{width:115.740000px;}
.w23{width:123.395320px;}
.w2b{width:135.997028px;}
.w17{width:150.708253px;}
.w3a{width:153.153922px;}
.w13{width:157.530000px;}
.w25{width:158.040189px;}
.w3b{width:188.266118px;}
.wf{width:198.210000px;}
.w3e{width:213.330000px;}
.wa{width:255.060000px;}
.wb{width:295.200000px;}
.w20{width:319.961890px;}
.we{width:320.790000px;}
.wd{width:320.940000px;}
.wc{width:321.015000px;}
.w3d{width:325.695000px;}
.w9{width:326.415000px;}
.w4{width:351.975000px;}
.w1f{width:362.690898px;}
.w3{width:397.545000px;}
.w12{width:446.865000px;}
.w18{width:525.938092px;}
.w28{width:548.593149px;}
.w27{width:548.593159px;}
.w21{width:601.119720px;}
.w3c{width:623.073322px;}
.w39{width:623.073327px;}
.w38{width:624.408601px;}
.w37{width:624.408602px;}
.w36{width:624.408603px;}
.w35{width:624.408604px;}
.w34{width:624.408605px;}
.w33{width:624.408606px;}
.w32{width:624.408607px;}
.w31{width:624.408610px;}
.w16{width:678.587071px;}
.w15{width:678.587074px;}
.w14{width:678.587078px;}
.w1e{width:684.536402px;}
.w1d{width:684.536404px;}
.w1c{width:684.536405px;}
.w1b{width:684.536407px;}
.w1a{width:684.536408px;}
.w19{width:684.536410px;}
.w8{width:847.620000px;}
.w7{width:848.520000px;}
.w10{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x11{left:-2.055000px;}
.x0{left:0.000000px;}
.x42{left:1.896259px;}
.x53{left:3.603836px;}
.x1b{left:4.860000px;}
.x4c{left:6.486904px;}
.x2e{left:7.560000px;}
.x6{left:8.676000px;}
.xa{left:9.900000px;}
.x50{left:11.532273px;}
.x57{left:13.718600px;}
.x4e{left:15.852070px;}
.x2f{left:18.540000px;}
.x31{left:20.160000px;}
.xd{left:22.320000px;}
.x62{left:23.424798px;}
.x52{left:24.530106px;}
.x30{left:26.280000px;}
.x32{left:27.360000px;}
.x58{left:29.599501px;}
.x6a{left:31.499973px;}
.xc{left:33.120000px;}
.x17{left:37.620000px;}
.x60{left:38.857382px;}
.x63{left:41.140871px;}
.x2d{left:52.560000px;}
.x68{left:61.822917px;}
.x4{left:64.439987px;}
.x25{left:68.939987px;}
.x5{left:73.080000px;}
.x55{left:74.306278px;}
.x18{left:82.800000px;}
.x38{left:84.815987px;}
.x3b{left:88.415987px;}
.x35{left:95.255987px;}
.x1e{left:99.575987px;}
.x29{left:101.196000px;}
.x3f{left:103.208469px;}
.x5c{left:105.154695px;}
.x44{left:109.192842px;}
.x19{left:113.400000px;}
.x26{left:117.575987px;}
.x4a{left:129.882223px;}
.x49{left:132.073354px;}
.x15{left:133.125000px;}
.x4b{left:134.235656px;}
.x8{left:137.385000px;}
.x37{left:140.615987px;}
.x47{left:142.358257px;}
.x43{left:148.135655px;}
.x14{left:160.410000px;}
.xf{left:163.110000px;}
.x40{left:168.437091px;}
.x27{left:171.569987px;}
.x1a{left:187.245000px;}
.x28{left:189.389987px;}
.x2b{left:191.385000px;}
.x6c{left:202.545000px;}
.x1d{left:204.509987px;}
.x2a{left:217.830000px;}
.x33{left:219.269987px;}
.x45{left:223.229987px;}
.x65{left:227.729987px;}
.x4d{left:234.736567px;}
.x5b{left:242.864341px;}
.x48{left:243.907570px;}
.x1c{left:252.074987px;}
.x41{left:254.900196px;}
.x59{left:260.714987px;}
.x24{left:280.514987px;}
.x36{left:292.934987px;}
.x3c{left:294.734987px;}
.x3d{left:320.294987px;}
.x61{left:325.826711px;}
.x39{left:342.074987px;}
.x54{left:358.857458px;}
.x3a{left:378.794987px;}
.x3{left:388.694987px;}
.x13{left:406.155000px;}
.xe{left:408.135000px;}
.x16{left:411.945000px;}
.x12{left:419.760000px;}
.x10{left:439.560000px;}
.x1f{left:442.004987px;}
.x67{left:449.063109px;}
.x6b{left:456.225000px;}
.x1{left:461.804987px;}
.x7{left:470.625000px;}
.x5f{left:482.397981px;}
.x56{left:517.618414px;}
.x69{left:521.939569px;}
.x5d{left:542.392863px;}
.x20{left:577.724987px;}
.x4f{left:583.275487px;}
.x5e{left:617.824135px;}
.x23{left:631.949987px;}
.x51{left:651.104471px;}
.x2c{left:665.610000px;}
.x5a{left:718.889987px;}
.x46{left:744.629987px;}
.x66{left:754.019987px;}
.x34{left:755.999987px;}
.x64{left:757.079987px;}
.x2{left:782.279987px;}
.x3e{left:785.159987px;}
.xb{left:803.880000px;}
.x21{left:813.599973px;}
.x22{left:819.719987px;}
.x9{left:838.620000px;}
@media print{
.v3{vertical-align:-3.412550pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.189165pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.ls2f{letter-spacing:-8.426667pt;}
.ls12{letter-spacing:-1.992929pt;}
.ls13{letter-spacing:-1.867397pt;}
.ls27{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.688000pt;}
.ls7{letter-spacing:-0.368533pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.230933pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.161067pt;}
.ls30{letter-spacing:-0.156267pt;}
.ls8{letter-spacing:-0.135467pt;}
.ls20{letter-spacing:-0.128000pt;}
.ls2c{letter-spacing:-0.064000pt;}
.ls1a{letter-spacing:-0.030528pt;}
.ls1c{letter-spacing:-0.027863pt;}
.ls31{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.051200pt;}
.ls28{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.128640pt;}
.lsc{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.192000pt;}
.ls2e{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.271467pt;}
.ls21{letter-spacing:0.384000pt;}
.ls2d{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:1.211352pt;}
.lsa{letter-spacing:1.280000pt;}
.ls26{letter-spacing:4.480000pt;}
.ls24{letter-spacing:6.873677pt;}
.ls22{letter-spacing:6.987325pt;}
.ls1d{letter-spacing:7.040000pt;}
.ls23{letter-spacing:7.351564pt;}
.ls25{letter-spacing:7.436800pt;}
.lsf{letter-spacing:7.680000pt;}
.ls2b{letter-spacing:8.960000pt;}
.ls14{letter-spacing:13.546667pt;}
.ls29{letter-spacing:17.920000pt;}
.ls15{letter-spacing:133.853130pt;}
.ls1e{letter-spacing:137.650116pt;}
.ls17{letter-spacing:141.179853pt;}
.ls16{letter-spacing:163.208868pt;}
.ls18{letter-spacing:170.535591pt;}
.ls1f{letter-spacing:211.697527pt;}
.ws1{word-spacing:-44.328960pt;}
.ws2{word-spacing:-19.237120pt;}
.ws5{word-spacing:-17.688960pt;}
.ws0{word-spacing:-17.458027pt;}
.wsf{word-spacing:-16.640000pt;}
.ws3c{word-spacing:-16.512000pt;}
.ws3d{word-spacing:-16.256000pt;}
.ws3a{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws39{word-spacing:-16.064000pt;}
.wse{word-spacing:-16.000000pt;}
.ws3b{word-spacing:-15.936000pt;}
.ws31{word-spacing:-15.872000pt;}
.ws13{word-spacing:-15.808000pt;}
.ws11{word-spacing:-15.744000pt;}
.ws9{word-spacing:-14.991467pt;}
.wsa{word-spacing:-14.817067pt;}
.ws7{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.584533pt;}
.ws8{word-spacing:-14.448533pt;}
.wsb{word-spacing:-14.351467pt;}
.ws12{word-spacing:-13.280000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.759573pt;}
.ws37{word-spacing:-11.376542pt;}
.ws3f{word-spacing:-10.832000pt;}
.ws10{word-spacing:-10.720000pt;}
.ws38{word-spacing:-8.594583pt;}
.ws3e{word-spacing:-7.573333pt;}
.ws26{word-spacing:-7.341987pt;}
.ws30{word-spacing:-6.701104pt;}
.ws4{word-spacing:0.000000pt;}
.ws14{word-spacing:72.497358pt;}
.ws19{word-spacing:104.632203pt;}
.ws1d{word-spacing:115.621800pt;}
.ws1c{word-spacing:121.116842pt;}
.ws20{word-spacing:128.443566pt;}
.ws2c{word-spacing:137.314349pt;}
.ws29{word-spacing:137.394762pt;}
.ws2f{word-spacing:142.323822pt;}
.ws28{word-spacing:144.012500pt;}
.ws27{word-spacing:145.691259pt;}
.ws2d{word-spacing:147.316409pt;}
.ws2a{word-spacing:147.360099pt;}
.ws1e{word-spacing:147.948341pt;}
.ws2e{word-spacing:154.003582pt;}
.ws33{word-spacing:156.002509pt;}
.ws2b{word-spacing:160.734444pt;}
.ws1b{word-spacing:165.184030pt;}
.ws34{word-spacing:175.828847pt;}
.ws23{word-spacing:183.539243pt;}
.ws21{word-spacing:183.627347pt;}
.ws36{word-spacing:187.070570pt;}
.ws25{word-spacing:188.954546pt;}
.ws16{word-spacing:189.033679pt;}
.ws1f{word-spacing:190.804727pt;}
.ws1a{word-spacing:192.644040pt;}
.ws24{word-spacing:194.424617pt;}
.ws22{word-spacing:194.472485pt;}
.ws35{word-spacing:198.499416pt;}
.ws17{word-spacing:205.477622pt;}
.ws18{word-spacing:213.670078pt;}
.ws15{word-spacing:216.334082pt;}
.ws32{word-spacing:450.942335pt;}
._2c{margin-left:-9.302827pt;}
._1e{margin-left:-8.299947pt;}
._20{margin-left:-7.083733pt;}
._1f{margin-left:-5.889280pt;}
._19{margin-left:-4.931413pt;}
._18{margin-left:-3.904000pt;}
._d{margin-left:-2.944000pt;}
._f{margin-left:-2.001920pt;}
._6{margin-left:-0.892587pt;}
._0{width:1.041067pt;}
._4{width:2.199253pt;}
._11{width:3.389227pt;}
._10{width:4.828160pt;}
._2{width:6.395733pt;}
._3{width:7.914880pt;}
._8{width:8.860587pt;}
._a{width:10.592213pt;}
._12{width:12.188160pt;}
._e{width:13.452800pt;}
._9{width:14.501760pt;}
._2b{width:15.698133pt;}
._14{width:16.604160pt;}
._5{width:17.550933pt;}
._13{width:18.664960pt;}
._15{width:19.740160pt;}
._1a{width:20.992000pt;}
._1b{width:22.144000pt;}
._1c{width:23.251200pt;}
._16{width:24.512000pt;}
._17{width:25.420800pt;}
._1{width:26.400640pt;}
._7{width:27.643733pt;}
._4b{width:28.707627pt;}
._21{width:29.761280pt;}
._3d{width:31.168000pt;}
._3e{width:32.062720pt;}
._29{width:33.274453pt;}
._4e{width:36.352000pt;}
._b{width:38.299520pt;}
._c{width:39.457707pt;}
._1d{width:40.700587pt;}
._50{width:41.664000pt;}
._4f{width:43.200000pt;}
._2a{width:48.923520pt;}
._25{width:50.464000pt;}
._24{width:51.420160pt;}
._22{width:61.138560pt;}
._27{width:75.265920pt;}
._2f{width:89.120291pt;}
._2e{width:93.471679pt;}
._30{width:105.502881pt;}
._2d{width:115.147970pt;}
._3f{width:123.766393pt;}
._44{width:127.833879pt;}
._23{width:176.730240pt;}
._28{width:180.076800pt;}
._43{width:181.222178pt;}
._35{width:184.428638pt;}
._41{width:186.886846pt;}
._39{width:194.374891pt;}
._42{width:206.713185pt;}
._40{width:218.409041pt;}
._45{width:220.556313pt;}
._4a{width:223.501940pt;}
._26{width:232.931200pt;}
._49{width:264.225598pt;}
._4c{width:266.104814pt;}
._47{width:272.552875pt;}
._33{width:295.285237pt;}
._48{width:303.161870pt;}
._46{width:332.054411pt;}
._31{width:360.341988pt;}
._32{width:387.642391pt;}
._4d{width:443.182137pt;}
._3a{width:471.015923pt;}
._37{width:481.269354pt;}
._34{width:514.140120pt;}
._38{width:524.404019pt;}
._3c{width:549.240866pt;}
._3b{width:577.681764pt;}
._36{width:634.324430pt;}
.fs11{font-size:23.652860pt;}
.fse{font-size:26.804417pt;}
.fsd{font-size:29.367949pt;}
.fs8{font-size:32.000000pt;}
.fs10{font-size:34.378330pt;}
.fs5{font-size:42.880000pt;}
.fsb{font-size:44.424145pt;}
.fs9{font-size:44.931914pt;}
.fsf{font-size:45.506168pt;}
.fs1{font-size:48.000000pt;}
.fsc{font-size:51.206458pt;}
.fsa{font-size:51.870766pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:133.120000pt;}
.y278{bottom:-93.440133pt;}
.y32{bottom:-74.400000pt;}
.y22{bottom:-64.800000pt;}
.y277{bottom:-61.120000pt;}
.y31{bottom:-50.240000pt;}
.y21{bottom:-32.480000pt;}
.y30{bottom:-29.920000pt;}
.y276{bottom:-29.120000pt;}
.y275{bottom:-14.560000pt;}
.y2f{bottom:-9.760000pt;}
.y20{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:0.866667pt;}
.y80{bottom:2.880000pt;}
.y9{bottom:3.360000pt;}
.ye1{bottom:3.418285pt;}
.y1a8{bottom:3.540490pt;}
.y1a4{bottom:3.559372pt;}
.y1ab{bottom:3.564093pt;}
.y15c{bottom:3.761542pt;}
.y12f{bottom:3.772709pt;}
.y114{bottom:4.121282pt;}
.yec{bottom:4.133493pt;}
.y13b{bottom:4.179512pt;}
.y133{bottom:4.190658pt;}
.y131{bottom:4.196230pt;}
.yd8{bottom:4.266074pt;}
.ydc{bottom:4.267205pt;}
.y1ae{bottom:4.272157pt;}
.y1a6{bottom:4.272176pt;}
.yda{bottom:4.295464pt;}
.yd5{bottom:4.322598pt;}
.yf8{bottom:4.579202pt;}
.yf0{bottom:4.591413pt;}
.y14d{bottom:4.597449pt;}
.y139{bottom:4.597461pt;}
.yee{bottom:4.597519pt;}
.y12d{bottom:4.614178pt;}
.y12b{bottom:5.015409pt;}
.y14b{bottom:5.029340pt;}
.y10a{bottom:5.037110pt;}
.yf6{bottom:5.037122pt;}
.yea{bottom:5.055439pt;}
.y149{bottom:5.447289pt;}
.y142{bottom:5.450075pt;}
.ye8{bottom:5.495042pt;}
.y108{bottom:5.510307pt;}
.y241{bottom:5.759867pt;}
.y106{bottom:5.968227pt;}
.yff{bottom:5.971280pt;}
.ye6{bottom:6.410883pt;}
.yb{bottom:6.720000pt;}
.yd3{bottom:6.910415pt;}
.y15f{bottom:7.941022pt;}
.y1d2{bottom:8.061871pt;}
.y1d5{bottom:8.061875pt;}
.y8{bottom:8.480000pt;}
.y1d8{bottom:9.659933pt;}
.y99{bottom:10.432000pt;}
.y2e{bottom:10.560000pt;}
.y14f{bottom:12.549598pt;}
.y10c{bottom:13.749817pt;}
.y16f{bottom:13.809016pt;}
.y1d6{bottom:15.040531pt;}
.y1cf{bottom:15.040588pt;}
.y11a{bottom:15.129684pt;}
.y17f{bottom:15.475236pt;}
.y116{bottom:15.599815pt;}
.y274{bottom:15.840000pt;}
.y1f{bottom:16.040000pt;}
.y7{bottom:16.160000pt;}
.y15a{bottom:16.314020pt;}
.y15e{bottom:16.729082pt;}
.y161{bottom:16.729083pt;}
.y110{bottom:16.955259pt;}
.y112{bottom:17.874262pt;}
.y10e{bottom:17.877205pt;}
.y9a{bottom:18.112000pt;}
.y91{bottom:18.240000pt;}
.y82{bottom:18.280000pt;}
.y175{bottom:18.400873pt;}
.y155{bottom:18.400874pt;}
.y165{bottom:18.417591pt;}
.y163{bottom:18.417594pt;}
.y17a{bottom:19.242343pt;}
.y178{bottom:19.242344pt;}
.y181{bottom:19.654718pt;}
.y153{bottom:19.671437pt;}
.y11b{bottom:20.160700pt;}
.y29{bottom:20.226667pt;}
.y189{bottom:20.507333pt;}
.y157{bottom:20.507335pt;}
.y185{bottom:20.507433pt;}
.y10b{bottom:21.082646pt;}
.y1d1{bottom:21.486473pt;}
.y1d4{bottom:21.486478pt;}
.y118{bottom:21.552778pt;}
.y16e{bottom:22.597075pt;}
.y17e{bottom:24.252151pt;}
.y16a{bottom:24.268868pt;}
.y119{bottom:24.758219pt;}
.yd1{bottom:25.053276pt;}
.y159{bottom:25.104865pt;}
.y115{bottom:25.216139pt;}
.y94{bottom:25.920000pt;}
.y10f{bottom:26.571583pt;}
.y10d{bottom:27.505740pt;}
.y111{bottom:27.505850pt;}
.y152{bottom:28.459497pt;}
.y2d{bottom:30.920000pt;}
.y117{bottom:31.181313pt;}
.y1e{bottom:32.360000pt;}
.yf{bottom:32.800000pt;}
.y95{bottom:33.440000pt;}
.y98{bottom:33.600000pt;}
.y8f{bottom:35.546667pt;}
.y273{bottom:36.832000pt;}
.ye{bottom:38.720000pt;}
.y6{bottom:44.960000pt;}
.y27{bottom:47.200000pt;}
.y1d{bottom:48.680000pt;}
.y8e{bottom:50.906667pt;}
.y2c{bottom:51.080000pt;}
.y272{bottom:57.946667pt;}
.y65{bottom:60.320000pt;}
.ye4{bottom:60.640000pt;}
.y240{bottom:63.360000pt;}
.ycf{bottom:63.520000pt;}
.y64{bottom:64.320000pt;}
.y1c{bottom:65.000000pt;}
.y8d{bottom:66.106667pt;}
.y223{bottom:66.400000pt;}
.ye3{bottom:69.280000pt;}
.y271{bottom:70.906667pt;}
.y2b{bottom:71.400000pt;}
.y127{bottom:71.680000pt;}
.y109{bottom:72.527144pt;}
.yce{bottom:74.560000pt;}
.ydf{bottom:75.761570pt;}
.yb2{bottom:76.480000pt;}
.y1a0{bottom:78.880000pt;}
.y63{bottom:79.360000pt;}
.y7e{bottom:80.960000pt;}
.y8c{bottom:81.466667pt;}
.y62{bottom:83.360000pt;}
.y222{bottom:84.800000pt;}
.yc9{bottom:85.280000pt;}
.y107{bottom:88.569725pt;}
.y1ea{bottom:90.720000pt;}
.y270{bottom:92.026667pt;}
.yde{bottom:92.829824pt;}
.y1cd{bottom:93.920000pt;}
.y257{bottom:95.200000pt;}
.y8b{bottom:96.826667pt;}
.y126{bottom:96.960000pt;}
.y1b{bottom:97.160000pt;}
.y23f{bottom:97.760000pt;}
.y20c{bottom:98.400000pt;}
.y61{bottom:99.520000pt;}
.y9b{bottom:104.160000pt;}
.y105{bottom:105.070116pt;}
.y19f{bottom:106.560000pt;}
.y7d{bottom:108.480000pt;}
.y1e9{bottom:109.120000pt;}
.ydd{bottom:109.898643pt;}
.y8a{bottom:112.186667pt;}
.yc8{bottom:112.960000pt;}
.y26f{bottom:112.986667pt;}
.y1a{bottom:113.480000pt;}
.y83{bottom:115.040000pt;}
.y20b{bottom:116.800000pt;}
.y221{bottom:119.200000pt;}
.y1cc{bottom:121.632000pt;}
.y104{bottom:122.959532pt;}
.y125{bottom:123.552000pt;}
.ydb{bottom:126.967462pt;}
.y89{bottom:127.546667pt;}
.y19{bottom:129.800000pt;}
.y1a2{bottom:130.195647pt;}
.yb1{bottom:131.712000pt;}
.y23e{bottom:132.192000pt;}
.y26e{bottom:133.946667pt;}
.y19e{bottom:134.106667pt;}
.y60{bottom:135.226667pt;}
.y7c{bottom:136.186667pt;}
.y220{bottom:137.626667pt;}
.yd{bottom:138.746667pt;}
.y103{bottom:139.456871pt;}
.yc7{bottom:140.506667pt;}
.y88{bottom:142.746667pt;}
.y1e8{bottom:143.546667pt;}
.yd9{bottom:144.036281pt;}
.y18{bottom:145.960000pt;}
.y97{bottom:146.266667pt;}
.y1cb{bottom:149.146667pt;}
.y124{bottom:151.066667pt;}
.y20a{bottom:151.226667pt;}
.y26d{bottom:155.066667pt;}
.y102{bottom:155.502395pt;}
.y87{bottom:158.106667pt;}
.yb0{bottom:159.386667pt;}
.y5f{bottom:160.186667pt;}
.yd7{bottom:161.134490pt;}
.y19d{bottom:161.786667pt;}
.y1e7{bottom:161.946667pt;}
.y17{bottom:162.280000pt;}
.y7b{bottom:163.706667pt;}
.y23d{bottom:166.586667pt;}
.y26c{bottom:168.026667pt;}
.yc6{bottom:168.186667pt;}
.y209{bottom:169.626667pt;}
.y101{bottom:171.541814pt;}
.y21f{bottom:172.026667pt;}
.y86{bottom:173.466667pt;}
.y1ca{bottom:176.826667pt;}
.y5e{bottom:177.146667pt;}
.ye0{bottom:178.203310pt;}
.y123{bottom:178.746667pt;}
.yaf{bottom:186.906667pt;}
.y100{bottom:187.129418pt;}
.y85{bottom:188.826667pt;}
.y26b{bottom:189.146667pt;}
.y19c{bottom:189.306667pt;}
.y21e{bottom:190.426667pt;}
.y7a{bottom:191.386667pt;}
.y96{bottom:192.986667pt;}
.y5d{bottom:193.946667pt;}
.y16{bottom:194.600000pt;}
.yc5{bottom:195.706667pt;}
.y1e6{bottom:196.346667pt;}
.ycd{bottom:199.866667pt;}
.y23c{bottom:200.986667pt;}
.y208{bottom:204.026667pt;}
.yfe{bottom:204.084676pt;}
.y84{bottom:204.186667pt;}
.y1c9{bottom:204.346667pt;}
.y122{bottom:206.266667pt;}
.y26a{bottom:210.106667pt;}
.y5c{bottom:210.906667pt;}
.y15{bottom:210.920000pt;}
.yae{bottom:214.426667pt;}
.y1e5{bottom:214.746667pt;}
.y19b{bottom:216.986667pt;}
.y79{bottom:218.906667pt;}
.yfd{bottom:221.974093pt;}
.y207{bottom:222.426667pt;}
.y269{bottom:223.066667pt;}
.yc4{bottom:223.386667pt;}
.y93{bottom:224.346667pt;}
.y21d{bottom:224.826667pt;}
.y14{bottom:227.080000pt;}
.ycc{bottom:227.546667pt;}
.y5b{bottom:227.706667pt;}
.y1c8{bottom:232.026667pt;}
.y121{bottom:233.946667pt;}
.y23b{bottom:235.386667pt;}
.yfc{bottom:236.645856pt;}
.yad{bottom:242.106667pt;}
.y21c{bottom:243.226667pt;}
.y13{bottom:243.426667pt;}
.y268{bottom:244.346667pt;}
.y19a{bottom:244.506667pt;}
.y5a{bottom:244.666667pt;}
.y78{bottom:246.426667pt;}
.y1e4{bottom:249.146667pt;}
.ycb{bottom:250.746667pt;}
.yc3{bottom:250.906667pt;}
.yfb{bottom:253.143195pt;}
.y206{bottom:256.826667pt;}
.y1c7{bottom:259.546667pt;}
.y59{bottom:261.466667pt;}
.yca{bottom:261.786667pt;}
.yd0{bottom:261.951561pt;}
.yd4{bottom:262.804702pt;}
.y1e3{bottom:267.546667pt;}
.yac{bottom:269.626667pt;}
.yfa{bottom:269.646639pt;}
.y23a{bottom:269.786667pt;}
.y92{bottom:270.906667pt;}
.y199{bottom:272.186667pt;}
.y77{bottom:274.106667pt;}
.y267{bottom:274.786667pt;}
.y205{bottom:275.226667pt;}
.y21b{bottom:277.626667pt;}
.y58{bottom:278.266667pt;}
.yc2{bottom:278.586667pt;}
.yd2{bottom:280.094423pt;}
.yf9{bottom:285.686058pt;}
.y1c6{bottom:287.226667pt;}
.y266{bottom:287.906667pt;}
.y120{bottom:289.146667pt;}
.y204{bottom:293.626667pt;}
.y57{bottom:295.226667pt;}
.y21a{bottom:296.026667pt;}
.yab{bottom:297.306667pt;}
.y198{bottom:299.706667pt;}
.yf7{bottom:300.357821pt;}
.y76{bottom:301.626667pt;}
.y1e2{bottom:301.946667pt;}
.y90{bottom:302.266667pt;}
.yd6{bottom:302.560380pt;}
.y239{bottom:304.186667pt;}
.yc1{bottom:306.106667pt;}
.y265{bottom:308.866667pt;}
.y229{bottom:309.626667pt;}
.y56{bottom:312.026667pt;}
.y1c5{bottom:314.746667pt;}
.yf5{bottom:315.481399pt;}
.y11f{bottom:316.666667pt;}
.y2a{bottom:320.186667pt;}
.y1e1{bottom:320.346667pt;}
.yaa{bottom:324.826667pt;}
.y197{bottom:327.386667pt;}
.y203{bottom:328.026667pt;}
.y55{bottom:328.986667pt;}
.y75{bottom:329.306667pt;}
.y264{bottom:329.826667pt;}
.y219{bottom:330.426667pt;}
.yf4{bottom:331.526923pt;}
.y81{bottom:333.626667pt;}
.yc0{bottom:333.786667pt;}
.y238{bottom:338.586667pt;}
.y1e0{bottom:338.746667pt;}
.y1c4{bottom:342.426667pt;}
.y11e{bottom:344.386667pt;}
.y54{bottom:345.826667pt;}
.yf3{bottom:346.192581pt;}
.y202{bottom:346.466667pt;}
.y218{bottom:348.866667pt;}
.y263{bottom:350.946667pt;}
.ya9{bottom:352.546667pt;}
.y196{bottom:354.946667pt;}
.y74{bottom:356.866667pt;}
.yf2{bottom:360.864345pt;}
.ybf{bottom:361.346667pt;}
.y256{bottom:361.666667pt;}
.y228{bottom:362.466667pt;}
.y53{bottom:362.786667pt;}
.y129{bottom:364.423035pt;}
.y7f{bottom:365.026667pt;}
.y11d{bottom:365.506667pt;}
.y1c3{bottom:369.986667pt;}
.y262{bottom:371.906667pt;}
.y237{bottom:373.026667pt;}
.y1df{bottom:373.186667pt;}
.y11c{bottom:374.146667pt;}
.yf1{bottom:374.614162pt;}
.y128{bottom:375.986667pt;}
.y14c{bottom:376.404478pt;}
.y187{bottom:376.404485pt;}
.y186{bottom:376.404490pt;}
.y184{bottom:376.404494pt;}
.y158{bottom:376.404509pt;}
.y52{bottom:379.586667pt;}
.ya8{bottom:380.066667pt;}
.y201{bottom:380.866667pt;}
.y195{bottom:382.626667pt;}
.y217{bottom:383.266667pt;}
.y73{bottom:384.546667pt;}
.y261{bottom:384.866667pt;}
.ybe{bottom:389.026667pt;}
.y255{bottom:389.186667pt;}
.yef{bottom:389.285925pt;}
.y14a{bottom:391.046701pt;}
.y1de{bottom:391.586667pt;}
.y1c2{bottom:397.666667pt;}
.y200{bottom:399.266667pt;}
.y216{bottom:401.666667pt;}
.yed{bottom:403.951583pt;}
.y51{bottom:404.386667pt;}
.y260{bottom:405.986667pt;}
.y148{bottom:406.106771pt;}
.y254{bottom:406.946667pt;}
.y236{bottom:407.426667pt;}
.ya7{bottom:407.746667pt;}
.y194{bottom:410.146667pt;}
.y72{bottom:412.066667pt;}
.y26{bottom:414.146667pt;}
.y28{bottom:414.240000pt;}
.y227{bottom:415.266667pt;}
.ybd{bottom:416.546667pt;}
.yeb{bottom:419.081267pt;}
.y147{bottom:422.434618pt;}
.y183{bottom:422.434624pt;}
.y182{bottom:422.434629pt;}
.y180{bottom:422.434633pt;}
.y17d{bottom:422.434648pt;}
.y50{bottom:423.266667pt;}
.y1c1{bottom:425.186667pt;}
.y1dd{bottom:425.986667pt;}
.y25f{bottom:427.266667pt;}
.yc{bottom:432.546667pt;}
.ye9{bottom:432.831084pt;}
.y1ff{bottom:433.666667pt;}
.ya6{bottom:435.266667pt;}
.y215{bottom:436.066667pt;}
.y146{bottom:437.491902pt;}
.y193{bottom:437.826667pt;}
.y253{bottom:438.946667pt;}
.y71{bottom:439.746667pt;}
.y235{bottom:441.826667pt;}
.ybc{bottom:444.226667pt;}
.y1dc{bottom:444.386667pt;}
.ye7{bottom:448.430899pt;}
.y4f{bottom:449.986667pt;}
.y1fe{bottom:452.066667pt;}
.y145{bottom:452.136810pt;}
.y1c0{bottom:452.866667pt;}
.y25e{bottom:457.666667pt;}
.ya5{bottom:462.946667pt;}
.ye5{bottom:464.934344pt;}
.y192{bottom:465.346667pt;}
.y144{bottom:466.776146pt;}
.y18b{bottom:466.776152pt;}
.y18a{bottom:466.776157pt;}
.y188{bottom:466.776161pt;}
.y156{bottom:466.776176pt;}
.y4e{bottom:467.106667pt;}
.y70{bottom:467.266667pt;}
.y1fd{bottom:470.466667pt;}
.ybb{bottom:471.746667pt;}
.y252{bottom:474.466667pt;}
.y234{bottom:476.226667pt;}
.y1db{bottom:478.786667pt;}
.y25d{bottom:479.293333pt;}
.y1bf{bottom:480.386667pt;}
.y143{bottom:481.003106pt;}
.y113{bottom:483.721284pt;}
.y226{bottom:486.466667pt;}
.y214{bottom:488.866667pt;}
.ya4{bottom:490.466667pt;}
.y25{bottom:491.040000pt;}
.y4d{bottom:491.906667pt;}
.y191{bottom:493.026667pt;}
.y6f{bottom:494.946667pt;}
.y141{bottom:496.478338pt;}
.y1da{bottom:497.186667pt;}
.yba{bottom:499.426667pt;}
.y251{bottom:502.146667pt;}
.ye2{bottom:504.066667pt;}
.y1fc{bottom:504.866667pt;}
.y1be{bottom:508.066667pt;}
.y4c{bottom:508.706667pt;}
.y233{bottom:510.626667pt;}
.y25c{bottom:511.293333pt;}
.y140{bottom:512.806185pt;}
.y17c{bottom:512.806191pt;}
.y17b{bottom:512.806196pt;}
.y179{bottom:512.806200pt;}
.y177{bottom:512.806215pt;}
.ya3{bottom:518.146667pt;}
.y190{bottom:520.546667pt;}
.y6e{bottom:522.466667pt;}
.y213{bottom:523.266667pt;}
.y1d9{bottom:523.586667pt;}
.y10{bottom:523.746667pt;}
.y4b{bottom:525.666667pt;}
.y13f{bottom:526.197248pt;}
.yb9{bottom:526.946667pt;}
.y250{bottom:529.666667pt;}
.y1bd{bottom:535.586667pt;}
.y23{bottom:538.080000pt;}
.y1fb{bottom:539.266667pt;}
.y13e{bottom:541.254532pt;}
.y212{bottom:541.666667pt;}
.y25b{bottom:542.173333pt;}
.y4a{bottom:542.466667pt;}
.y232{bottom:545.026667pt;}
.ya2{bottom:545.666667pt;}
.ya{bottom:547.906667pt;}
.y18f{bottom:548.226667pt;}
.y6d{bottom:550.146667pt;}
.y242{bottom:550.786800pt;}
.yb8{bottom:554.466667pt;}
.y13d{bottom:556.317389pt;}
.y176{bottom:556.317395pt;}
.y174{bottom:556.317400pt;}
.y173{bottom:556.317404pt;}
.y154{bottom:556.317419pt;}
.y24f{bottom:557.346667pt;}
.y1fa{bottom:557.666667pt;}
.y49{bottom:559.426667pt;}
.y1bc{bottom:563.266667pt;}
.y13c{bottom:570.956724pt;}
.y33{bottom:573.053333pt;}
.ya1{bottom:573.373333pt;}
.y25a{bottom:574.493333pt;}
.y18e{bottom:575.773333pt;}
.y1f9{bottom:576.093333pt;}
.y48{bottom:576.253333pt;}
.y6c{bottom:577.693333pt;}
.y231{bottom:579.453333pt;}
.yb7{bottom:582.173333pt;}
.y13a{bottom:584.347788pt;}
.y24e{bottom:584.893333pt;}
.y1bb{bottom:590.813333pt;}
.y225{bottom:592.093333pt;}
.y47{bottom:593.053333pt;}
.y211{bottom:594.493333pt;}
.y138{bottom:598.151227pt;}
.y172{bottom:598.151233pt;}
.y171{bottom:598.151238pt;}
.y170{bottom:598.151242pt;}
.y16d{bottom:598.151257pt;}
.y18d{bottom:598.973333pt;}
.ya0{bottom:600.893333pt;}
.y6b{bottom:605.373333pt;}
.y259{bottom:606.493333pt;}
.yb6{bottom:609.693333pt;}
.y46{bottom:610.013333pt;}
.y18c{bottom:610.173333pt;}
.y1f8{bottom:610.493333pt;}
.y24d{bottom:612.573333pt;}
.y1a1{bottom:612.726742pt;}
.y137{bottom:612.796135pt;}
.y210{bottom:612.893333pt;}
.y1ad{bottom:613.434828pt;}
.y230{bottom:613.853333pt;}
.y1ba{bottom:618.493333pt;}
.y136{bottom:626.181626pt;}
.y45{bottom:626.813333pt;}
.y9f{bottom:628.573333pt;}
.y1ac{bottom:630.523036pt;}
.y6a{bottom:632.893333pt;}
.yb5{bottom:637.373333pt;}
.y258{bottom:638.493333pt;}
.y135{bottom:639.572689pt;}
.y16c{bottom:639.572696pt;}
.y16b{bottom:639.572701pt;}
.y169{bottom:639.572705pt;}
.y151{bottom:639.572720pt;}
.y24c{bottom:640.093333pt;}
.y44{bottom:643.773333pt;}
.y1f7{bottom:644.893333pt;}
.y1b9{bottom:646.013333pt;}
.y20f{bottom:647.293333pt;}
.y1aa{bottom:647.587849pt;}
.y22f{bottom:648.253333pt;}
.y134{bottom:652.122283pt;}
.y43{bottom:660.573333pt;}
.y1f6{bottom:663.293333pt;}
.y1a9{bottom:663.944578pt;}
.y9e{bottom:664.093333pt;}
.yb4{bottom:664.893333pt;}
.y132{bottom:665.513347pt;}
.y24b{bottom:667.773333pt;}
.y1b8{bottom:673.533333pt;}
.y42{bottom:677.373333pt;}
.y130{bottom:678.898837pt;}
.y1a7{bottom:681.032994pt;}
.y1f5{bottom:681.693333pt;}
.y22e{bottom:682.653333pt;}
.y69{bottom:688.093333pt;}
.y12e{bottom:692.707849pt;}
.y167{bottom:692.707856pt;}
.y166{bottom:692.707861pt;}
.y164{bottom:692.707865pt;}
.y162{bottom:692.707880pt;}
.y41{bottom:694.333333pt;}
.y24a{bottom:695.293333pt;}
.y1a5{bottom:697.389724pt;}
.yb3{bottom:699.293333pt;}
.y9d{bottom:699.773333pt;}
.y20e{bottom:700.093333pt;}
.y1b7{bottom:701.213333pt;}
.y12c{bottom:705.257443pt;}
.y40{bottom:711.133333pt;}
.y1a3{bottom:714.457369pt;}
.y68{bottom:715.773333pt;}
.y1f4{bottom:716.093333pt;}
.y22d{bottom:717.053333pt;}
.y12a{bottom:719.495549pt;}
.y249{bottom:722.973333pt;}
.y3f{bottom:728.093333pt;}
.y1b6{bottom:728.733333pt;}
.y1f3{bottom:734.493333pt;}
.y160{bottom:734.558405pt;}
.y15d{bottom:734.558412pt;}
.y168{bottom:734.558426pt;}
.y150{bottom:734.558431pt;}
.y14e{bottom:734.558436pt;}
.y9c{bottom:735.293333pt;}
.y67{bottom:743.293333pt;}
.y3e{bottom:744.893333pt;}
.y248{bottom:750.493333pt;}
.y22c{bottom:751.453333pt;}
.y15b{bottom:751.705442pt;}
.y1f2{bottom:752.893333pt;}
.y1b5{bottom:756.413333pt;}
.y224{bottom:768.893333pt;}
.y3d{bottom:770.013333pt;}
.y66{bottom:770.973333pt;}
.y20d{bottom:771.293333pt;}
.y247{bottom:778.173333pt;}
.y1b4{bottom:783.933333pt;}
.y22b{bottom:785.853333pt;}
.y1f1{bottom:787.293333pt;}
.y12{bottom:789.693333pt;}
.y3c{bottom:798.533333pt;}
.y1f0{bottom:805.733333pt;}
.y279{bottom:810.853333pt;}
.y1b3{bottom:811.653333pt;}
.y3a{bottom:826.213333pt;}
.y22a{bottom:829.413333pt;}
.y3b{bottom:832.293333pt;}
.y246{bottom:833.413333pt;}
.y1b2{bottom:839.173333pt;}
.y1ef{bottom:840.133333pt;}
.y38{bottom:853.733333pt;}
.y1ee{bottom:858.533333pt;}
.y39{bottom:859.813333pt;}
.y245{bottom:860.933333pt;}
.y1b1{bottom:866.853333pt;}
.y37{bottom:881.413333pt;}
.y1b0{bottom:887.973333pt;}
.y1ed{bottom:892.933333pt;}
.y244{bottom:895.333333pt;}
.y1af{bottom:896.453333pt;}
.y1d7{bottom:897.115543pt;}
.y36{bottom:908.933333pt;}
.y1ec{bottom:911.333333pt;}
.y1ce{bottom:922.899127pt;}
.y1d3{bottom:922.899140pt;}
.y1d0{bottom:922.899162pt;}
.y243{bottom:929.733333pt;}
.y35{bottom:936.613333pt;}
.y1eb{bottom:945.733333pt;}
.y34{bottom:964.133333pt;}
.y11{bottom:966.533333pt;}
.y5{bottom:982.533333pt;}
.y4{bottom:998.853333pt;}
.y3{bottom:1011.653333pt;}
.y2{bottom:1093.600000pt;}
.y1{bottom:1109.760000pt;}
.h56{height:12.134441pt;}
.h4c{height:12.134468pt;}
.h4e{height:12.970365pt;}
.h38{height:13.294950pt;}
.h4d{height:13.388313pt;}
.h4b{height:13.806262pt;}
.h3a{height:14.210790pt;}
.h4f{height:14.224210pt;}
.h49{height:14.642158pt;}
.h39{height:14.668711pt;}
.h51{height:15.060106pt;}
.h37{height:15.126631pt;}
.h1f{height:15.360000pt;}
.h3b{height:15.584551pt;}
.h6c{height:15.648718pt;}
.h50{height:15.909935pt;}
.h35{height:16.042471pt;}
.h30{height:16.221030pt;}
.h6e{height:16.356802pt;}
.h6f{height:16.380405pt;}
.h2d{height:16.437118pt;}
.h3d{height:16.500391pt;}
.h3c{height:17.431496pt;}
.h33{height:18.332072pt;}
.h5{height:21.472000pt;}
.h2c{height:21.612819pt;}
.h2e{height:22.494395pt;}
.h48{height:23.807244pt;}
.h4a{height:24.029741pt;}
.h3f{height:24.205614pt;}
.h75{height:25.233341pt;}
.h3{height:25.280000pt;}
.hc{height:25.760000pt;}
.h34{height:26.084131pt;}
.h36{height:26.327908pt;}
.h76{height:28.335264pt;}
.h1b{height:28.687500pt;}
.h52{height:29.284249pt;}
.h57{height:29.284250pt;}
.h71{height:30.534269pt;}
.h26{height:30.592000pt;}
.h23{height:30.720000pt;}
.h21{height:30.752000pt;}
.h12{height:31.343437pt;}
.h40{height:32.084943pt;}
.h17{height:35.342500pt;}
.h72{height:35.994272pt;}
.h74{height:35.994276pt;}
.h70{height:35.994326pt;}
.h73{height:36.384015pt;}
.h27{height:38.441250pt;}
.h31{height:39.825552pt;}
.h2b{height:40.280758pt;}
.h6b{height:40.417832pt;}
.h6d{height:40.795569pt;}
.h5e{height:41.000732pt;}
.h5d{height:41.000733pt;}
.h5f{height:41.000734pt;}
.h60{height:41.418680pt;}
.h54{height:41.418682pt;}
.h61{height:41.418683pt;}
.h59{height:41.432612pt;}
.h58{height:41.432613pt;}
.h5a{height:41.432614pt;}
.h7b{height:42.649687pt;}
.h1c{height:43.031250pt;}
.h63{height:43.090473pt;}
.h62{height:43.090475pt;}
.h64{height:43.090476pt;}
.h66{height:43.926370pt;}
.h65{height:43.926371pt;}
.h67{height:43.926372pt;}
.h45{height:44.921972pt;}
.h46{height:45.379893pt;}
.h43{height:45.395157pt;}
.h32{height:45.480735pt;}
.h68{height:45.612095pt;}
.h55{height:45.612096pt;}
.h69{height:45.612097pt;}
.h24{height:45.920000pt;}
.h2f{height:46.070763pt;}
.h25{height:46.080000pt;}
.h20{height:47.180312pt;}
.h3e{height:47.211573pt;}
.ha{height:47.621250pt;}
.h4{height:47.742188pt;}
.h42{height:48.127414pt;}
.h16{height:48.530000pt;}
.h7c{height:49.148438pt;}
.h41{height:49.974359pt;}
.h6{height:50.355000pt;}
.h8{height:51.519933pt;}
.h29{height:51.937500pt;}
.h19{height:52.296250pt;}
.h5b{height:52.717216pt;}
.h53{height:52.717217pt;}
.h5c{height:52.717218pt;}
.h18{height:52.750000pt;}
.h1a{height:52.785000pt;}
.h2{height:52.834688pt;}
.h7a{height:54.390938pt;}
.h15{height:56.843750pt;}
.h1d{height:57.375000pt;}
.h44{height:57.759002pt;}
.h13{height:58.563750pt;}
.h1e{height:59.205313pt;}
.h28{height:62.761250pt;}
.h2a{height:63.103744pt;}
.h79{height:70.773750pt;}
.hf{height:81.046875pt;}
.h11{height:89.472000pt;}
.hd{height:96.980000pt;}
.h6a{height:150.821864pt;}
.h7{height:151.546667pt;}
.h14{height:154.400000pt;}
.h10{height:161.440000pt;}
.he{height:161.466667pt;}
.h7d{height:168.000000pt;}
.h22{height:249.346667pt;}
.hb{height:272.226667pt;}
.h47{height:387.855917pt;}
.h78{height:670.973333pt;}
.h9{height:1056.800000pt;}
.h77{height:1110.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:35.520000pt;}
.w2f{width:52.824727pt;}
.w26{width:57.725433pt;}
.w24{width:59.647478pt;}
.w2a{width:64.495895pt;}
.w2c{width:66.542579pt;}
.w2e{width:67.557463pt;}
.w30{width:70.602116pt;}
.w29{width:74.675184pt;}
.w6{width:78.720000pt;}
.w22{width:81.473373pt;}
.w2d{width:87.368004pt;}
.w11{width:102.880000pt;}
.w23{width:109.684729pt;}
.w2b{width:120.886247pt;}
.w17{width:133.962891pt;}
.w3a{width:136.136820pt;}
.w13{width:140.026667pt;}
.w25{width:140.480168pt;}
.w3b{width:167.347661pt;}
.wf{width:176.186667pt;}
.w3e{width:189.626667pt;}
.wa{width:226.720000pt;}
.wb{width:262.400000pt;}
.w20{width:284.410569pt;}
.we{width:285.146667pt;}
.wd{width:285.280000pt;}
.wc{width:285.346667pt;}
.w3d{width:289.506667pt;}
.w9{width:290.146667pt;}
.w4{width:312.866667pt;}
.w1f{width:322.391909pt;}
.w3{width:353.373333pt;}
.w12{width:397.213333pt;}
.w18{width:467.500526pt;}
.w28{width:487.638355pt;}
.w27{width:487.638363pt;}
.w21{width:534.328640pt;}
.w3c{width:553.842953pt;}
.w39{width:553.842958pt;}
.w38{width:555.029867pt;}
.w37{width:555.029868pt;}
.w36{width:555.029869pt;}
.w35{width:555.029870pt;}
.w34{width:555.029871pt;}
.w33{width:555.029872pt;}
.w32{width:555.029873pt;}
.w31{width:555.029875pt;}
.w16{width:603.188507pt;}
.w15{width:603.188511pt;}
.w14{width:603.188514pt;}
.w1e{width:608.476802pt;}
.w1d{width:608.476803pt;}
.w1c{width:608.476805pt;}
.w1b{width:608.476806pt;}
.w1a{width:608.476807pt;}
.w19{width:608.476809pt;}
.w8{width:753.440000pt;}
.w7{width:754.240000pt;}
.w10{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x11{left:-1.826667pt;}
.x0{left:0.000000pt;}
.x42{left:1.685563pt;}
.x53{left:3.203410pt;}
.x1b{left:4.320000pt;}
.x4c{left:5.766137pt;}
.x2e{left:6.720000pt;}
.x6{left:7.712000pt;}
.xa{left:8.800000pt;}
.x50{left:10.250910pt;}
.x57{left:12.194311pt;}
.x4e{left:14.090729pt;}
.x2f{left:16.480000pt;}
.x31{left:17.920000pt;}
.xd{left:19.840000pt;}
.x62{left:20.822042pt;}
.x52{left:21.804538pt;}
.x30{left:23.360000pt;}
.x32{left:24.320000pt;}
.x58{left:26.310667pt;}
.x6a{left:27.999976pt;}
.xc{left:29.440000pt;}
.x17{left:33.440000pt;}
.x60{left:34.539895pt;}
.x63{left:36.569663pt;}
.x2d{left:46.720000pt;}
.x68{left:54.953704pt;}
.x4{left:57.279988pt;}
.x25{left:61.279988pt;}
.x5{left:64.960000pt;}
.x55{left:66.050025pt;}
.x18{left:73.600000pt;}
.x38{left:75.391988pt;}
.x3b{left:78.591988pt;}
.x35{left:84.671988pt;}
.x1e{left:88.511988pt;}
.x29{left:89.952000pt;}
.x3f{left:91.740861pt;}
.x5c{left:93.470840pt;}
.x44{left:97.060304pt;}
.x19{left:100.800000pt;}
.x26{left:104.511988pt;}
.x4a{left:115.450865pt;}
.x49{left:117.398537pt;}
.x15{left:118.333333pt;}
.x4b{left:119.320583pt;}
.x8{left:122.120000pt;}
.x37{left:124.991988pt;}
.x47{left:126.540673pt;}
.x43{left:131.676138pt;}
.x14{left:142.586667pt;}
.xf{left:144.986667pt;}
.x40{left:149.721858pt;}
.x27{left:152.506655pt;}
.x1a{left:166.440000pt;}
.x28{left:168.346655pt;}
.x2b{left:170.120000pt;}
.x6c{left:180.040000pt;}
.x1d{left:181.786655pt;}
.x2a{left:193.626667pt;}
.x33{left:194.906655pt;}
.x45{left:198.426655pt;}
.x65{left:202.426655pt;}
.x4d{left:208.654726pt;}
.x5b{left:215.879414pt;}
.x48{left:216.806729pt;}
.x1c{left:224.066655pt;}
.x41{left:226.577952pt;}
.x59{left:231.746655pt;}
.x24{left:249.346655pt;}
.x36{left:260.386655pt;}
.x3c{left:261.986655pt;}
.x3d{left:284.706655pt;}
.x61{left:289.623743pt;}
.x39{left:304.066655pt;}
.x54{left:318.984407pt;}
.x3a{left:336.706655pt;}
.x3{left:345.506655pt;}
.x13{left:361.026667pt;}
.xe{left:362.786667pt;}
.x16{left:366.173333pt;}
.x12{left:373.120000pt;}
.x10{left:390.720000pt;}
.x1f{left:392.893322pt;}
.x67{left:399.167208pt;}
.x6b{left:405.533333pt;}
.x1{left:410.493322pt;}
.x7{left:418.333333pt;}
.x5f{left:428.798205pt;}
.x56{left:460.105257pt;}
.x69{left:463.946283pt;}
.x5d{left:482.126989pt;}
.x20{left:513.533322pt;}
.x4f{left:518.467099pt;}
.x5e{left:549.177009pt;}
.x23{left:561.733322pt;}
.x51{left:578.759530pt;}
.x2c{left:591.653333pt;}
.x5a{left:639.013322pt;}
.x46{left:661.893322pt;}
.x66{left:670.239988pt;}
.x34{left:671.999988pt;}
.x64{left:672.959988pt;}
.x2{left:695.359988pt;}
.x3e{left:697.919988pt;}
.xb{left:714.560000pt;}
.x21{left:723.199976pt;}
.x22{left:728.639988pt;}
.x9{left:745.440000pt;}
}




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