
    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_cdf36409fe50be54daed0f83.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191895;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_99912c141741d46d87b64d0c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.060547;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_db90b85e36801e9ee1902a09.woff')format("woff");}.ff3{font-family:ff3;line-height:1.191895;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_0a68a7205fc17171637a653e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.182129;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_15c84c0389d1bd71cbb79564.woff')format("woff");}.ff5{font-family:ff5;line-height:1.191895;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_af5df65be4fd1df4832742d4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.024414;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;}
.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);}
.v4{vertical-align:-45.480000px;}
.v6{vertical-align:-22.977000px;}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.980000px;}
.v1{vertical-align:17.043000px;}
.v5{vertical-align:23.068800px;}
.v7{vertical-align:36.000000px;}
.lse{letter-spacing:-7.371000px;}
.ls15{letter-spacing:-2.898000px;}
.ls1d{letter-spacing:-2.829000px;}
.ls25{letter-spacing:-2.109000px;}
.ls17{letter-spacing:-2.070000px;}
.ls1e{letter-spacing:-1.725000px;}
.ls7{letter-spacing:-1.512000px;}
.ls2d{letter-spacing:-1.500000px;}
.ls6{letter-spacing:-1.404000px;}
.ls5{letter-spacing:-1.380000px;}
.ls2f{letter-spacing:-1.350000px;}
.ls11{letter-spacing:-1.296000px;}
.ls1c{letter-spacing:-1.242000px;}
.ls29{letter-spacing:-1.134000px;}
.ls10{letter-spacing:-0.855000px;}
.ls18{letter-spacing:-0.828000px;}
.ls2b{letter-spacing:-0.810000px;}
.ls14{letter-spacing:-0.627000px;}
.ls2a{letter-spacing:-0.570000px;}
.ls16{letter-spacing:-0.345000px;}
.ls1{letter-spacing:-0.189000px;}
.ls4{letter-spacing:-0.180000px;}
.ls1f{letter-spacing:-0.171000px;}
.ls20{letter-spacing:-0.081000px;}
.ls0{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.000300px;}
.ls21{letter-spacing:0.324000px;}
.ls12{letter-spacing:0.648000px;}
.ls26{letter-spacing:1.053000px;}
.ls31{letter-spacing:1.458000px;}
.ls27{letter-spacing:1.587000px;}
.lsa{letter-spacing:2.400000px;}
.lsf{letter-spacing:3.300000px;}
.lsb{letter-spacing:4.125000px;}
.ls9{letter-spacing:4.200000px;}
.ls8{letter-spacing:5.760000px;}
.ls30{letter-spacing:5.850000px;}
.lsd{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls2c{letter-spacing:6.075000px;}
.lsc{letter-spacing:6.300000px;}
.ls24{letter-spacing:7.200000px;}
.ls2e{letter-spacing:7.314000px;}
.ls28{letter-spacing:7.530000px;}
.ls32{letter-spacing:8.076600px;}
.ls1b{letter-spacing:8.160156px;}
.ls23{letter-spacing:8.160756px;}
.ls3{letter-spacing:8.400000px;}
.ls33{letter-spacing:8.820000px;}
.ls13{letter-spacing:9.522000px;}
.ls1a{letter-spacing:13.869000px;}
.ls19{letter-spacing:15.870000px;}
.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;}
}
.ws3a{word-spacing:-28.605000px;}
.ws29{word-spacing:-28.275000px;}
.ws4d{word-spacing:-27.150000px;}
.ws53{word-spacing:-26.925000px;}
.ws5b{word-spacing:-26.523000px;}
.wsa{word-spacing:-25.200000px;}
.ws12{word-spacing:-24.375000px;}
.ws54{word-spacing:-24.219000px;}
.ws3e{word-spacing:-23.814000px;}
.ws5f{word-spacing:-22.860000px;}
.wsc{word-spacing:-22.740000px;}
.ws23{word-spacing:-22.680000px;}
.ws1{word-spacing:-22.620000px;}
.ws16{word-spacing:-21.465000px;}
.ws2b{word-spacing:-20.007000px;}
.ws2a{word-spacing:-19.389000px;}
.wsb{word-spacing:-18.102000px;}
.ws5e{word-spacing:-17.703000px;}
.ws11{word-spacing:-17.043000px;}
.ws2{word-spacing:-16.860000px;}
.ws1b{word-spacing:-16.698000px;}
.ws0{word-spacing:-16.680000px;}
.ws1d{word-spacing:-16.215000px;}
.ws21{word-spacing:-15.801000px;}
.ws3b{word-spacing:-15.663000px;}
.ws5c{word-spacing:-15.561000px;}
.wsd{word-spacing:-15.390000px;}
.ws22{word-spacing:-15.318000px;}
.ws18{word-spacing:-15.174000px;}
.ws1c{word-spacing:-14.973000px;}
.ws35{word-spacing:-14.820000px;}
.ws1a{word-spacing:-14.145000px;}
.ws15{word-spacing:-13.338000px;}
.ws4f{word-spacing:-13.320000px;}
.ws51{word-spacing:-11.988000px;}
.ws10{word-spacing:-11.303787px;}
.ws2c{word-spacing:-9.936069px;}
.ws43{word-spacing:-9.829380px;}
.ws6{word-spacing:-8.400000px;}
.ws52{word-spacing:-7.314000px;}
.ws5d{word-spacing:-6.300000px;}
.ws5{word-spacing:-6.000000px;}
.wsf{word-spacing:-4.200000px;}
.ws32{word-spacing:-3.450000px;}
.ws26{word-spacing:-2.829000px;}
.wse{word-spacing:-2.400000px;}
.ws2d{word-spacing:-1.863000px;}
.ws57{word-spacing:-1.449000px;}
.ws5a{word-spacing:-1.380000px;}
.ws3d{word-spacing:-1.242000px;}
.ws47{word-spacing:-1.104000px;}
.ws2f{word-spacing:-1.053000px;}
.ws58{word-spacing:-0.759000px;}
.ws19{word-spacing:-0.648000px;}
.ws3{word-spacing:0.000000px;}
.ws28{word-spacing:0.171000px;}
.ws4{word-spacing:0.189000px;}
.ws4b{word-spacing:0.570000px;}
.ws1e{word-spacing:0.627000px;}
.ws4c{word-spacing:0.810000px;}
.ws17{word-spacing:0.855000px;}
.ws46{word-spacing:1.134000px;}
.ws34{word-spacing:1.242000px;}
.ws7{word-spacing:1.380000px;}
.ws8{word-spacing:1.404000px;}
.ws9{word-spacing:1.512000px;}
.ws33{word-spacing:1.656000px;}
.ws37{word-spacing:1.863000px;}
.ws59{word-spacing:1.932000px;}
.ws2e{word-spacing:2.109000px;}
.ws24{word-spacing:2.415000px;}
.ws48{word-spacing:2.484000px;}
.ws36{word-spacing:2.760000px;}
.ws25{word-spacing:2.829000px;}
.ws49{word-spacing:3.450000px;}
.ws40{word-spacing:4.416000px;}
.ws1f{word-spacing:4.692000px;}
.ws3c{word-spacing:5.658000px;}
.ws55{word-spacing:6.762000px;}
.ws4a{word-spacing:6.831000px;}
.ws56{word-spacing:7.107000px;}
.ws20{word-spacing:9.522000px;}
.ws30{word-spacing:10.764000px;}
.ws31{word-spacing:11.178000px;}
.ws27{word-spacing:19.251000px;}
.ws42{word-spacing:59.160000px;}
.ws50{word-spacing:65.880000px;}
.ws45{word-spacing:71.580000px;}
.ws39{word-spacing:117.960000px;}
.ws4e{word-spacing:120.810000px;}
.ws13{word-spacing:127.620000px;}
.ws38{word-spacing:145.554000px;}
.ws3f{word-spacing:167.634000px;}
.ws41{word-spacing:189.834000px;}
.ws14{word-spacing:191.040000px;}
.ws44{word-spacing:977.760000px;}
._2f{margin-left:-15.844200px;}
._29{margin-left:-13.773684px;}
._27{margin-left:-12.420000px;}
._2e{margin-left:-9.931500px;}
._8{margin-left:-8.032500px;}
._d{margin-left:-6.598800px;}
._c{margin-left:-5.595600px;}
._7{margin-left:-4.182000px;}
._6{margin-left:-2.496000px;}
._3{margin-left:-1.284900px;}
._4{width:1.228800px;}
._1{width:2.400000px;}
._b{width:3.404400px;}
._a{width:5.246400px;}
._5{width:6.489600px;}
._9{width:8.400000px;}
._10{width:9.637200px;}
._19{width:10.637400px;}
._1b{width:11.845200px;}
._14{width:13.254000px;}
._f{width:14.491200px;}
._e{width:15.583200px;}
._18{width:17.244600px;}
._17{width:18.870000px;}
._15{width:20.869200px;}
._30{width:21.995400px;}
._2a{width:22.996800px;}
._28{width:24.705714px;}
._13{width:25.988400px;}
._31{width:27.189900px;}
._25{width:28.382700px;}
._4b{width:30.062700px;}
._49{width:31.380300px;}
._48{width:32.552100px;}
._4c{width:33.689400px;}
._2d{width:36.203700px;}
._4a{width:40.786200px;}
._1c{width:43.445160px;}
._26{width:61.958100px;}
._3d{width:67.500000px;}
._23{width:71.340000px;}
._1f{width:77.493600px;}
._12{width:85.554000px;}
._20{width:90.871200px;}
._21{width:102.240000px;}
._3b{width:108.120000px;}
._36{width:112.560000px;}
._42{width:117.300000px;}
._24{width:120.756000px;}
._37{width:129.360000px;}
._22{width:139.920000px;}
._44{width:145.020000px;}
._3c{width:151.260000px;}
._3e{width:164.040000px;}
._38{width:179.940000px;}
._43{width:186.360000px;}
._35{width:192.720000px;}
._41{width:195.660000px;}
._40{width:209.400000px;}
._3a{width:214.680000px;}
._16{width:243.726000px;}
._45{width:303.840000px;}
._1e{width:325.584900px;}
._47{width:353.040000px;}
._32{width:448.508400px;}
._33{width:449.700000px;}
._11{width:453.127800px;}
._1d{width:456.153600px;}
._46{width:460.980000px;}
._0{width:578.400000px;}
._3f{width:668.070900px;}
._34{width:682.050900px;}
._39{width:690.270900px;}
._1a{width:956.206200px;}
._2b{width:958.831200px;}
._2c{width:962.881200px;}
._2{width:964.861200px;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:31.482000px;}
.fsc{font-size:34.980000px;}
.fs9{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fsd{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs8{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs7{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y1e8{bottom:106.053450px;}
.y208{bottom:106.153800px;}
.y1c4{bottom:106.235400px;}
.y42{bottom:106.260300px;}
.y195{bottom:106.268850px;}
.y13a{bottom:106.275300px;}
.y140{bottom:106.281150px;}
.y68{bottom:106.290450px;}
.y91{bottom:106.293450px;}
.ya2{bottom:106.296450px;}
.y160{bottom:106.298250px;}
.y11f{bottom:106.299150px;}
.y11b{bottom:106.321500px;}
.y1a3{bottom:106.325400px;}
.ye0{bottom:106.357050px;}
.y1e{bottom:106.360650px;}
.yc0{bottom:111.444900px;}
.y170{bottom:113.071650px;}
.y244{bottom:117.408450px;}
.y67{bottom:123.543450px;}
.y90{bottom:123.546450px;}
.y1e7{bottom:126.425700px;}
.ya1{bottom:126.544950px;}
.y11a{bottom:126.624750px;}
.y1d{bottom:126.670650px;}
.y41{bottom:126.908550px;}
.y194{bottom:127.227600px;}
.y207{bottom:127.306050px;}
.y15f{bottom:127.533000px;}
.y1a2{bottom:127.680900px;}
.y1c3{bottom:128.246400px;}
.y13f{bottom:128.585400px;}
.ydf{bottom:129.265050px;}
.y139{bottom:131.167050px;}
.ybf{bottom:131.696400px;}
.y16f{bottom:135.796650px;}
.y243{bottom:137.658450px;}
.y66{bottom:140.796450px;}
.y229{bottom:141.745350px;}
.y8f{bottom:143.794950px;}
.y114{bottom:145.042500px;}
.y1e6{bottom:146.797950px;}
.y119{bottom:146.928000px;}
.y1c{bottom:146.980650px;}
.y40{bottom:147.556800px;}
.y193{bottom:148.186350px;}
.y206{bottom:148.458300px;}
.y15e{bottom:148.767750px;}
.y1a1{bottom:149.036400px;}
.y1c2{bottom:150.257400px;}
.y13e{bottom:150.889650px;}
.yde{bottom:152.173050px;}
.y138{bottom:156.058800px;}
.y242{bottom:157.908450px;}
.y16e{bottom:158.521650px;}
.y65{bottom:161.044950px;}
.y228{bottom:161.999850px;}
.y8e{bottom:162.295500px;}
.y1e5{bottom:167.170200px;}
.y118{bottom:167.231250px;}
.y1b{bottom:167.290650px;}
.y3f{bottom:168.205050px;}
.y192{bottom:169.145100px;}
.y15d{bottom:170.002500px;}
.y1a0{bottom:170.391900px;}
.ya0{bottom:170.562300px;}
.y1b3{bottom:170.577600px;}
.ybe{bottom:172.196400px;}
.y1c1{bottom:172.268400px;}
.y13d{bottom:173.193900px;}
.ydd{bottom:175.081050px;}
.y205{bottom:178.115550px;}
.y241{bottom:178.158450px;}
.y64{bottom:179.542500px;}
.y8d{bottom:179.548500px;}
.y137{bottom:180.950550px;}
.y16d{bottom:181.246650px;}
.y227{bottom:182.254350px;}
.y198{bottom:184.817850px;}
.y1e4{bottom:187.542450px;}
.y1a{bottom:187.600650px;}
.y3e{bottom:188.853300px;}
.y191{bottom:190.103850px;}
.y15c{bottom:191.237250px;}
.y9f{bottom:191.590050px;}
.y19f{bottom:191.747400px;}
.y1b2{bottom:192.036600px;}
.y1c0{bottom:194.279400px;}
.y63{bottom:196.795500px;}
.ydc{bottom:197.989050px;}
.y16c{bottom:199.246650px;}
.y204{bottom:199.267800px;}
.y8c{bottom:199.797000px;}
.yfb{bottom:205.059300px;}
.y136{bottom:205.842300px;}
.y117{bottom:207.853350px;}
.y19{bottom:207.910650px;}
.y1e3{bottom:207.914700px;}
.y3d{bottom:209.501550px;}
.y226{bottom:211.013850px;}
.y190{bottom:211.062600px;}
.y240{bottom:211.158450px;}
.y15b{bottom:212.472000px;}
.y19e{bottom:213.102900px;}
.y1b1{bottom:213.495600px;}
.y62{bottom:214.048500px;}
.y1bf{bottom:216.290400px;}
.y16b{bottom:217.253250px;}
.y13c{bottom:217.790400px;}
.y8b{bottom:218.300700px;}
.y203{bottom:220.420050px;}
.ydb{bottom:220.897050px;}
.y116{bottom:228.163350px;}
.y18{bottom:228.220650px;}
.y1e2{bottom:228.286950px;}
.yfa{bottom:228.415800px;}
.y3c{bottom:230.149800px;}
.y135{bottom:230.734050px;}
.y225{bottom:231.268350px;}
.y18f{bottom:232.021350px;}
.y15a{bottom:233.706750px;}
.y9e{bottom:233.867850px;}
.y61{bottom:234.297000px;}
.y19d{bottom:234.458400px;}
.y1b0{bottom:234.959550px;}
.y1be{bottom:238.301400px;}
.y8a{bottom:238.549200px;}
.y16a{bottom:239.978250px;}
.y202{bottom:241.572300px;}
.y113{bottom:243.752250px;}
.yda{bottom:243.805050px;}
.y17{bottom:248.530650px;}
.y1e1{bottom:248.659200px;}
.y3b{bottom:250.798050px;}
.y224{bottom:251.522850px;}
.yf9{bottom:251.772300px;}
.y23f{bottom:252.663450px;}
.y60{bottom:252.800700px;}
.y18e{bottom:252.980100px;}
.y134{bottom:255.625800px;}
.y19c{bottom:255.813900px;}
.y1af{bottom:256.418550px;}
.y9d{bottom:258.653850px;}
.y1bd{bottom:260.312400px;}
.yd9{bottom:266.713050px;}
.y112{bottom:268.575000px;}
.y16{bottom:268.840650px;}
.y1e0{bottom:269.031450px;}
.y201{bottom:271.229550px;}
.y223{bottom:271.777350px;}
.y23e{bottom:272.163450px;}
.y5f{bottom:273.049200px;}
.y169{bottom:273.935250px;}
.y18d{bottom:273.938850px;}
.yf8{bottom:275.128800px;}
.y19b{bottom:277.169400px;}
.yb3{bottom:278.281650px;}
.y133{bottom:280.517550px;}
.y1bc{bottom:282.323400px;}
.y89{bottom:282.546750px;}
.y15{bottom:289.150650px;}
.y1df{bottom:289.403700px;}
.yd8{bottom:289.621050px;}
.y23d{bottom:291.663450px;}
.y222{bottom:292.031850px;}
.y200{bottom:292.381800px;}
.y3a{bottom:292.700550px;}
.y111{bottom:293.397750px;}
.y18c{bottom:294.897600px;}
.y159{bottom:294.980100px;}
.yf7{bottom:298.485300px;}
.y1ae{bottom:299.346150px;}
.yb2{bottom:300.948150px;}
.y88{bottom:303.108750px;}
.y1bb{bottom:304.334400px;}
.y132{bottom:305.409300px;}
.y14{bottom:309.460650px;}
.y1de{bottom:309.775950px;}
.y23c{bottom:311.163450px;}
.yd7{bottom:312.529050px;}
.y158{bottom:312.980100px;}
.y1ff{bottom:313.534050px;}
.y18b{bottom:315.856350px;}
.y5e{bottom:317.009700px;}
.y110{bottom:318.220500px;}
.y168{bottom:319.170900px;}
.y19a{bottom:319.788000px;}
.y221{bottom:320.791350px;}
.y9c{bottom:321.691650px;}
.yf6{bottom:321.841800px;}
.yb1{bottom:323.614650px;}
.y87{bottom:323.670750px;}
.y1ba{bottom:326.345400px;}
.y13{bottom:329.770650px;}
.y1dd{bottom:330.148200px;}
.y23b{bottom:330.663450px;}
.y157{bottom:330.980100px;}
.yd6{bottom:335.437050px;}
.y18a{bottom:336.815100px;}
.y5d{bottom:339.538200px;}
.y220{bottom:341.045850px;}
.y9b{bottom:342.719400px;}
.y10f{bottom:343.043250px;}
.y1fe{bottom:343.191300px;}
.y167{bottom:343.890150px;}
.y86{bottom:344.232750px;}
.yf5{bottom:345.198300px;}
.yb0{bottom:346.281150px;}
.y156{bottom:348.980100px;}
.y23a{bottom:350.163450px;}
.y1dc{bottom:350.520450px;}
.y39{bottom:355.366350px;}
.y189{bottom:357.773850px;}
.yd5{bottom:358.345050px;}
.y5c{bottom:362.066700px;}
.y12{bottom:362.845650px;}
.y9a{bottom:363.747150px;}
.y1fd{bottom:364.343550px;}
.y85{bottom:364.794750px;}
.y10e{bottom:367.866000px;}
.yf4{bottom:368.554800px;}
.yaf{bottom:368.905350px;}
.y239{bottom:369.663450px;}
.y21f{bottom:369.805350px;}
.y131{bottom:370.336950px;}
.y1b9{bottom:370.354500px;}
.y1db{bottom:370.892700px;}
.y155{bottom:371.705100px;}
.y38{bottom:376.756350px;}
.y188{bottom:378.732600px;}
.yd4{bottom:381.253050px;}
.y5b{bottom:384.595200px;}
.y99{bottom:384.774900px;}
.y84{bottom:385.356750px;}
.y1fc{bottom:385.495800px;}
.y238{bottom:389.163450px;}
.y154{bottom:389.705100px;}
.y166{bottom:389.872650px;}
.y21e{bottom:390.059850px;}
.y1da{bottom:391.264950px;}
.yae{bottom:391.571850px;}
.y10d{bottom:392.688750px;}
.y130{bottom:393.061950px;}
.y37{bottom:398.146350px;}
.y187{bottom:399.691350px;}
.yd3{bottom:404.161050px;}
.y199{bottom:404.523150px;}
.y98{bottom:405.802650px;}
.y83{bottom:405.918750px;}
.y1fb{bottom:406.648050px;}
.y5a{bottom:407.123700px;}
.y153{bottom:407.705100px;}
.y237{bottom:408.663450px;}
.y1d9{bottom:411.637200px;}
.yf3{bottom:413.161800px;}
.yad{bottom:414.238350px;}
.y12f{bottom:415.786950px;}
.y10c{bottom:417.511500px;}
.y21d{bottom:418.819350px;}
.y36{bottom:419.587350px;}
.y186{bottom:420.650100px;}
.y11{bottom:421.401900px;}
.y152{bottom:425.705100px;}
.y82{bottom:426.480750px;}
.y97{bottom:426.830400px;}
.yd2{bottom:427.069050px;}
.y236{bottom:428.163450px;}
.y59{bottom:429.652200px;}
.y1d8{bottom:432.009450px;}
.y1fa{bottom:436.305300px;}
.yac{bottom:436.904850px;}
.y12e{bottom:438.511950px;}
.y21c{bottom:439.073850px;}
.y35{bottom:439.477350px;}
.yf2{bottom:440.276550px;}
.y185{bottom:441.608850px;}
.y10b{bottom:442.334250px;}
.y81{bottom:447.042750px;}
.y235{bottom:447.663450px;}
.y96{bottom:447.858150px;}
.y151{bottom:448.430100px;}
.y10{bottom:449.226900px;}
.yd1{bottom:449.977050px;}
.y58{bottom:452.180700px;}
.y1d7{bottom:452.381700px;}
.y165{bottom:456.619500px;}
.y1f9{bottom:457.457550px;}
.y21b{bottom:459.328350px;}
.y34{bottom:459.367350px;}
.yab{bottom:459.571350px;}
.y12d{bottom:461.236950px;}
.y184{bottom:462.567600px;}
.y150{bottom:466.430100px;}
.y10a{bottom:467.157000px;}
.y234{bottom:467.163450px;}
.y80{bottom:467.604750px;}
.y95{bottom:468.885900px;}
.y1d6{bottom:472.753950px;}
.yd0{bottom:472.885050px;}
.y57{bottom:474.709200px;}
.yf{bottom:477.051900px;}
.y1f8{bottom:478.609800px;}
.y33{bottom:479.257350px;}
.y164{bottom:481.338750px;}
.yaa{bottom:482.221050px;}
.y183{bottom:483.526350px;}
.y233{bottom:486.663450px;}
.y21a{bottom:488.087850px;}
.y7f{bottom:488.166750px;}
.y14f{bottom:489.155100px;}
.y94{bottom:489.912900px;}
.y109{bottom:491.979750px;}
.y1d5{bottom:493.126200px;}
.y12c{bottom:495.360150px;}
.ycf{bottom:495.793050px;}
.y56{bottom:497.237700px;}
.y32{bottom:499.147350px;}
.y182{bottom:504.485100px;}
.ye{bottom:504.876900px;}
.ya9{bottom:504.887550px;}
.yf1{bottom:505.641450px;}
.y163{bottom:506.058000px;}
.y232{bottom:506.163450px;}
.y14e{bottom:507.155100px;}
.y1f7{bottom:508.267050px;}
.y219{bottom:508.342350px;}
.y7e{bottom:508.728750px;}
.y93{bottom:510.940650px;}
.y1d4{bottom:513.498450px;}
.y108{bottom:516.779550px;}
.yce{bottom:518.701050px;}
.y31{bottom:519.037350px;}
.y55{bottom:519.766200px;}
.y181{bottom:525.443850px;}
.y231{bottom:525.663450px;}
.ya8{bottom:527.554050px;}
.y218{bottom:528.596850px;}
.yf0{bottom:528.997950px;}
.y7d{bottom:529.290750px;}
.y1f6{bottom:529.419300px;}
.y14d{bottom:529.880100px;}
.y11e{bottom:529.961400px;}
.y1d3{bottom:533.870700px;}
.y30{bottom:538.927350px;}
.y12b{bottom:540.743700px;}
.y107{bottom:541.602300px;}
.ycd{bottom:541.609050px;}
.y54{bottom:542.294700px;}
.y180{bottom:546.402600px;}
.y7c{bottom:549.852750px;}
.y1f5{bottom:550.571550px;}
.yef{bottom:552.354450px;}
.y92{bottom:552.994500px;}
.yd{bottom:553.936950px;}
.y1d2{bottom:554.242950px;}
.y162{bottom:555.505650px;}
.y217{bottom:557.356350px;}
.y230{bottom:557.913450px;}
.y2f{bottom:558.817350px;}
.y14c{bottom:560.349000px;}
.y197{bottom:560.792700px;}
.ycc{bottom:564.517050px;}
.y53{bottom:564.823200px;}
.y12a{bottom:565.635450px;}
.y106{bottom:566.425050px;}
.y17f{bottom:567.361350px;}
.y7b{bottom:570.414750px;}
.y115{bottom:571.158300px;}
.y1f4{bottom:571.723800px;}
.ya7{bottom:572.870250px;}
.y1d1{bottom:574.615200px;}
.yee{bottom:575.710950px;}
.y216{bottom:577.610850px;}
.y2e{bottom:578.707350px;}
.y13b{bottom:579.660150px;}
.y161{bottom:580.225650px;}
.y196{bottom:581.042700px;}
.yc{bottom:586.255950px;}
.y52{bottom:587.351700px;}
.ycb{bottom:587.425050px;}
.y17e{bottom:588.320100px;}
.y129{bottom:590.527200px;}
.y7a{bottom:590.976750px;}
.y105{bottom:591.247800px;}
.y1d0{bottom:594.987450px;}
.y2d{bottom:598.597350px;}
.yed{bottom:599.067450px;}
.y1f3{bottom:601.381050px;}
.y14b{bottom:602.093100px;}
.y215{bottom:606.370350px;}
.y17d{bottom:609.278850px;}
.y51{bottom:609.880200px;}
.yca{bottom:610.333050px;}
.y79{bottom:611.535000px;}
.y1cf{bottom:615.359700px;}
.y128{bottom:615.418950px;}
.y22f{bottom:615.663150px;}
.y104{bottom:616.070550px;}
.y2c{bottom:618.487350px;}
.yb{bottom:618.574950px;}
.yec{bottom:622.423950px;}
.y1f2{bottom:622.533300px;}
.y14a{bottom:623.327850px;}
.y214{bottom:626.624850px;}
.y17c{bottom:630.237600px;}
.y78{bottom:632.097000px;}
.y50{bottom:632.379900px;}
.yc9{bottom:633.241050px;}
.y1ce{bottom:635.731950px;}
.y2b{bottom:638.377350px;}
.y127{bottom:640.310700px;}
.y22e{bottom:642.669150px;}
.y149{bottom:644.562600px;}
.yeb{bottom:645.780450px;}
.y213{bottom:646.879350px;}
.ya{bottom:650.893950px;}
.y17b{bottom:651.196350px;}
.y1f1{bottom:652.190550px;}
.y77{bottom:652.659000px;}
.y4f{bottom:654.908400px;}
.y1cd{bottom:656.104200px;}
.yc8{bottom:656.149050px;}
.y2a{bottom:658.267350px;}
.y103{bottom:662.147400px;}
.y126{bottom:665.202450px;}
.y1ad{bottom:666.182850px;}
.y212{bottom:667.133850px;}
.yea{bottom:669.136950px;}
.y22d{bottom:669.675150px;}
.y17a{bottom:672.155100px;}
.y76{bottom:673.217100px;}
.y1f0{bottom:673.342800px;}
.y1cc{bottom:676.476450px;}
.y4e{bottom:677.436900px;}
.y29{bottom:678.157350px;}
.yc7{bottom:679.057050px;}
.y9{bottom:683.212950px;}
.y148{bottom:687.053100px;}
.y1ac{bottom:687.641850px;}
.ye9{bottom:692.493450px;}
.y179{bottom:693.113850px;}
.y75{bottom:693.779100px;}
.y1ef{bottom:694.495050px;}
.y211{bottom:695.893350px;}
.y22c{bottom:696.681150px;}
.y1cb{bottom:696.848700px;}
.ybd{bottom:697.184400px;}
.y28{bottom:698.047350px;}
.y4d{bottom:699.965400px;}
.yc6{bottom:701.965050px;}
.y1ab{bottom:709.100850px;}
.y125{bottom:711.351150px;}
.y147{bottom:712.041600px;}
.y178{bottom:714.072600px;}
.y74{bottom:714.341100px;}
.y8{bottom:715.531950px;}
.y1ee{bottom:715.647300px;}
.ye8{bottom:715.849950px;}
.y210{bottom:716.147850px;}
.y1ca{bottom:717.220950px;}
.ybc{bottom:717.435900px;}
.y27{bottom:717.937350px;}
.y4c{bottom:722.493900px;}
.yc5{bottom:724.873050px;}
.y1b8{bottom:725.644350px;}
.y102{bottom:728.953500px;}
.y1aa{bottom:730.559850px;}
.y73{bottom:734.903100px;}
.y20f{bottom:736.402350px;}
.y1c9{bottom:737.593200px;}
.ybb{bottom:737.687400px;}
.y26{bottom:737.827350px;}
.ye7{bottom:739.206450px;}
.y4b{bottom:745.022400px;}
.y1ed{bottom:745.304550px;}
.y1b7{bottom:747.655350px;}
.y101{bottom:753.776250px;}
.y177{bottom:755.990100px;}
.yba{bottom:757.938900px;}
.y1c8{bottom:757.965450px;}
.ye6{bottom:762.562950px;}
.y20e{bottom:765.161850px;}
.y4a{bottom:767.550900px;}
.yc4{bottom:769.043100px;}
.y25{bottom:770.482350px;}
.y146{bottom:775.292850px;}
.y176{bottom:776.948850px;}
.y7{bottom:777.633000px;}
.yb9{bottom:778.190400px;}
.y124{bottom:778.242600px;}
.y100{bottom:778.599000px;}
.y72{bottom:783.472650px;}
.y20d{bottom:785.416350px;}
.y70{bottom:785.842650px;}
.ye5{bottom:785.919450px;}
.y49{bottom:790.075350px;}
.y1b6{bottom:790.916400px;}
.y1a9{bottom:792.049350px;}
.y145{bottom:796.527600px;}
.y175{bottom:797.907600px;}
.yb8{bottom:798.441900px;}
.y1c7{bottom:799.589850px;}
.y123{bottom:803.134350px;}
.yff{bottom:803.421750px;}
.y6f{bottom:803.842650px;}
.y20c{bottom:805.670850px;}
.y71{bottom:806.212650px;}
.y6{bottom:807.948000px;}
.ye4{bottom:809.275950px;}
.ya6{bottom:812.052600px;}
.y48{bottom:812.587350px;}
.y22b{bottom:814.175850px;}
.y1a8{bottom:814.774350px;}
.y1b5{bottom:816.674400px;}
.y144{bottom:817.762350px;}
.y1ec{bottom:818.107350px;}
.yb7{bottom:818.693400px;}
.y174{bottom:818.866350px;}
.y24{bottom:820.132350px;}
.y122{bottom:828.026100px;}
.yfe{bottom:828.244500px;}
.y6e{bottom:828.937650px;}
.y5{bottom:829.758000px;}
.y6c{bottom:831.307650px;}
.ye3{bottom:832.632450px;}
.yc3{bottom:833.977350px;}
.y20b{bottom:834.430350px;}
.ya5{bottom:834.701850px;}
.y47{bottom:835.115850px;}
.y1a6{bottom:837.499350px;}
.yb6{bottom:838.944900px;}
.y143{bottom:838.997100px;}
.y1eb{bottom:839.255850px;}
.y173{bottom:839.825100px;}
.y23{bottom:841.522350px;}
.y1a7{bottom:846.499350px;}
.y6b{bottom:849.307650px;}
.y6d{bottom:851.677650px;}
.y121{bottom:852.917850px;}
.yfd{bottom:853.067250px;}
.y20a{bottom:854.684850px;}
.y1a4{bottom:855.499350px;}
.ye2{bottom:855.988950px;}
.yc2{bottom:856.885350px;}
.ya4{bottom:857.368350px;}
.y46{bottom:857.644350px;}
.yb5{bottom:859.196400px;}
.y11d{bottom:860.059350px;}
.y4{bottom:860.073000px;}
.y142{bottom:860.231850px;}
.y1ea{bottom:860.404350px;}
.y172{bottom:860.783850px;}
.y1c6{bottom:861.956850px;}
.y22{bottom:862.912350px;}
.y22a{bottom:863.189850px;}
.y1a5{bottom:873.499350px;}
.y6a{bottom:874.402650px;}
.y120{bottom:877.809600px;}
.yfc{bottom:877.878600px;}
.ye1{bottom:879.344850px;}
.yc1{bottom:879.793350px;}
.ya3{bottom:880.034850px;}
.y45{bottom:880.172850px;}
.y1b4{bottom:880.690350px;}
.y11c{bottom:881.380350px;}
.y141{bottom:881.466600px;}
.y1e9{bottom:881.552850px;}
.y171{bottom:881.742600px;}
.y3{bottom:881.883000px;}
.y1c5{bottom:882.329100px;}
.y209{bottom:883.444350px;}
.y21{bottom:884.307750px;}
.yb4{bottom:900.706200px;}
.y44{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y69{bottom:904.193550px;}
.y20{bottom:904.197750px;}
.y1f{bottom:948.189000px;}
.y43{bottom:966.189000px;}
.hc{height:37.983820px;}
.h7{height:44.414062px;}
.hd{height:49.965820px;}
.h13{height:55.488281px;}
.h4{height:55.517578px;}
.he{height:55.534378px;}
.h3{height:58.293457px;}
.h9{height:63.845215px;}
.hf{height:63.860815px;}
.hb{height:63.861415px;}
.h11{height:63.868015px;}
.ha{height:63.911215px;}
.h10{height:63.912415px;}
.h12{height:63.937015px;}
.h2{height:69.396973px;}
.h8{height:74.948730px;}
.h6{height:77.724609px;}
.h14{height:91.517578px;}
.h5{height:99.931641px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xd{left:80.949900px;}
.x9{left:82.471200px;}
.x8{left:83.686650px;}
.x1{left:85.039350px;}
.xb{left:93.603900px;}
.x14{left:102.451800px;}
.x13{left:103.722450px;}
.x7{left:105.030600px;}
.x6{left:106.365600px;}
.x1c{left:114.298200px;}
.x17{left:115.361250px;}
.x16{left:120.909150px;}
.x10{left:130.439250px;}
.x11{left:131.991750px;}
.xe{left:133.493400px;}
.xa{left:158.943900px;}
.xc{left:165.648900px;}
.x15{left:200.986500px;}
.x12{left:202.344450px;}
.x1e{left:209.338200px;}
.xf{left:212.663850px;}
.x1f{left:223.438200px;}
.x4{left:228.653400px;}
.x5{left:231.330450px;}
.x2{left:233.113050px;}
.x3{left:234.228450px;}
.x1d{left:236.233200px;}
.x18{left:262.376250px;}
.x19{left:264.806250px;}
.x1b{left:274.213650px;}
.x1a{left:275.972100px;}
.x20{left:398.713200px;}
.x21{left:496.273200px;}
@media print{
.v4{vertical-align:-40.426667pt;}
.v6{vertical-align:-20.424000pt;}
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.426667pt;}
.v1{vertical-align:15.149333pt;}
.v5{vertical-align:20.505600pt;}
.v7{vertical-align:32.000000pt;}
.lse{letter-spacing:-6.552000pt;}
.ls15{letter-spacing:-2.576000pt;}
.ls1d{letter-spacing:-2.514667pt;}
.ls25{letter-spacing:-1.874667pt;}
.ls17{letter-spacing:-1.840000pt;}
.ls1e{letter-spacing:-1.533333pt;}
.ls7{letter-spacing:-1.344000pt;}
.ls2d{letter-spacing:-1.333333pt;}
.ls6{letter-spacing:-1.248000pt;}
.ls5{letter-spacing:-1.226667pt;}
.ls2f{letter-spacing:-1.200000pt;}
.ls11{letter-spacing:-1.152000pt;}
.ls1c{letter-spacing:-1.104000pt;}
.ls29{letter-spacing:-1.008000pt;}
.ls10{letter-spacing:-0.760000pt;}
.ls18{letter-spacing:-0.736000pt;}
.ls2b{letter-spacing:-0.720000pt;}
.ls14{letter-spacing:-0.557333pt;}
.ls2a{letter-spacing:-0.506667pt;}
.ls16{letter-spacing:-0.306667pt;}
.ls1{letter-spacing:-0.168000pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls1f{letter-spacing:-0.152000pt;}
.ls20{letter-spacing:-0.072000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.000267pt;}
.ls21{letter-spacing:0.288000pt;}
.ls12{letter-spacing:0.576000pt;}
.ls26{letter-spacing:0.936000pt;}
.ls31{letter-spacing:1.296000pt;}
.ls27{letter-spacing:1.410667pt;}
.lsa{letter-spacing:2.133333pt;}
.lsf{letter-spacing:2.933333pt;}
.lsb{letter-spacing:3.666667pt;}
.ls9{letter-spacing:3.733333pt;}
.ls8{letter-spacing:5.120000pt;}
.ls30{letter-spacing:5.200000pt;}
.lsd{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls2c{letter-spacing:5.400000pt;}
.lsc{letter-spacing:5.600000pt;}
.ls24{letter-spacing:6.400000pt;}
.ls2e{letter-spacing:6.501333pt;}
.ls28{letter-spacing:6.693333pt;}
.ls32{letter-spacing:7.179200pt;}
.ls1b{letter-spacing:7.253472pt;}
.ls23{letter-spacing:7.254005pt;}
.ls3{letter-spacing:7.466667pt;}
.ls33{letter-spacing:7.840000pt;}
.ls13{letter-spacing:8.464000pt;}
.ls1a{letter-spacing:12.328000pt;}
.ls19{letter-spacing:14.106667pt;}
.ws3a{word-spacing:-25.426667pt;}
.ws29{word-spacing:-25.133333pt;}
.ws4d{word-spacing:-24.133333pt;}
.ws53{word-spacing:-23.933333pt;}
.ws5b{word-spacing:-23.576000pt;}
.wsa{word-spacing:-22.400000pt;}
.ws12{word-spacing:-21.666667pt;}
.ws54{word-spacing:-21.528000pt;}
.ws3e{word-spacing:-21.168000pt;}
.ws5f{word-spacing:-20.320000pt;}
.wsc{word-spacing:-20.213333pt;}
.ws23{word-spacing:-20.160000pt;}
.ws1{word-spacing:-20.106667pt;}
.ws16{word-spacing:-19.080000pt;}
.ws2b{word-spacing:-17.784000pt;}
.ws2a{word-spacing:-17.234667pt;}
.wsb{word-spacing:-16.090667pt;}
.ws5e{word-spacing:-15.736000pt;}
.ws11{word-spacing:-15.149333pt;}
.ws2{word-spacing:-14.986667pt;}
.ws1b{word-spacing:-14.842667pt;}
.ws0{word-spacing:-14.826667pt;}
.ws1d{word-spacing:-14.413333pt;}
.ws21{word-spacing:-14.045333pt;}
.ws3b{word-spacing:-13.922667pt;}
.ws5c{word-spacing:-13.832000pt;}
.wsd{word-spacing:-13.680000pt;}
.ws22{word-spacing:-13.616000pt;}
.ws18{word-spacing:-13.488000pt;}
.ws1c{word-spacing:-13.309333pt;}
.ws35{word-spacing:-13.173333pt;}
.ws1a{word-spacing:-12.573333pt;}
.ws15{word-spacing:-11.856000pt;}
.ws4f{word-spacing:-11.840000pt;}
.ws51{word-spacing:-10.656000pt;}
.ws10{word-spacing:-10.047811pt;}
.ws2c{word-spacing:-8.832061pt;}
.ws43{word-spacing:-8.737227pt;}
.ws6{word-spacing:-7.466667pt;}
.ws52{word-spacing:-6.501333pt;}
.ws5d{word-spacing:-5.600000pt;}
.ws5{word-spacing:-5.333333pt;}
.wsf{word-spacing:-3.733333pt;}
.ws32{word-spacing:-3.066667pt;}
.ws26{word-spacing:-2.514667pt;}
.wse{word-spacing:-2.133333pt;}
.ws2d{word-spacing:-1.656000pt;}
.ws57{word-spacing:-1.288000pt;}
.ws5a{word-spacing:-1.226667pt;}
.ws3d{word-spacing:-1.104000pt;}
.ws47{word-spacing:-0.981333pt;}
.ws2f{word-spacing:-0.936000pt;}
.ws58{word-spacing:-0.674667pt;}
.ws19{word-spacing:-0.576000pt;}
.ws3{word-spacing:0.000000pt;}
.ws28{word-spacing:0.152000pt;}
.ws4{word-spacing:0.168000pt;}
.ws4b{word-spacing:0.506667pt;}
.ws1e{word-spacing:0.557333pt;}
.ws4c{word-spacing:0.720000pt;}
.ws17{word-spacing:0.760000pt;}
.ws46{word-spacing:1.008000pt;}
.ws34{word-spacing:1.104000pt;}
.ws7{word-spacing:1.226667pt;}
.ws8{word-spacing:1.248000pt;}
.ws9{word-spacing:1.344000pt;}
.ws33{word-spacing:1.472000pt;}
.ws37{word-spacing:1.656000pt;}
.ws59{word-spacing:1.717333pt;}
.ws2e{word-spacing:1.874667pt;}
.ws24{word-spacing:2.146667pt;}
.ws48{word-spacing:2.208000pt;}
.ws36{word-spacing:2.453333pt;}
.ws25{word-spacing:2.514667pt;}
.ws49{word-spacing:3.066667pt;}
.ws40{word-spacing:3.925333pt;}
.ws1f{word-spacing:4.170667pt;}
.ws3c{word-spacing:5.029333pt;}
.ws55{word-spacing:6.010667pt;}
.ws4a{word-spacing:6.072000pt;}
.ws56{word-spacing:6.317333pt;}
.ws20{word-spacing:8.464000pt;}
.ws30{word-spacing:9.568000pt;}
.ws31{word-spacing:9.936000pt;}
.ws27{word-spacing:17.112000pt;}
.ws42{word-spacing:52.586667pt;}
.ws50{word-spacing:58.560000pt;}
.ws45{word-spacing:63.626667pt;}
.ws39{word-spacing:104.853333pt;}
.ws4e{word-spacing:107.386667pt;}
.ws13{word-spacing:113.440000pt;}
.ws38{word-spacing:129.381333pt;}
.ws3f{word-spacing:149.008000pt;}
.ws41{word-spacing:168.741333pt;}
.ws14{word-spacing:169.813333pt;}
.ws44{word-spacing:869.120000pt;}
._2f{margin-left:-14.083733pt;}
._29{margin-left:-12.243275pt;}
._27{margin-left:-11.040000pt;}
._2e{margin-left:-8.828000pt;}
._8{margin-left:-7.140000pt;}
._d{margin-left:-5.865600pt;}
._c{margin-left:-4.973867pt;}
._7{margin-left:-3.717333pt;}
._6{margin-left:-2.218667pt;}
._3{margin-left:-1.142133pt;}
._4{width:1.092267pt;}
._1{width:2.133333pt;}
._b{width:3.026133pt;}
._a{width:4.663467pt;}
._5{width:5.768533pt;}
._9{width:7.466667pt;}
._10{width:8.566400pt;}
._19{width:9.455467pt;}
._1b{width:10.529067pt;}
._14{width:11.781333pt;}
._f{width:12.881067pt;}
._e{width:13.851733pt;}
._18{width:15.328533pt;}
._17{width:16.773333pt;}
._15{width:18.550400pt;}
._30{width:19.551467pt;}
._2a{width:20.441600pt;}
._28{width:21.960635pt;}
._13{width:23.100800pt;}
._31{width:24.168800pt;}
._25{width:25.229067pt;}
._4b{width:26.722400pt;}
._49{width:27.893600pt;}
._48{width:28.935200pt;}
._4c{width:29.946133pt;}
._2d{width:32.181067pt;}
._4a{width:36.254400pt;}
._1c{width:38.617920pt;}
._26{width:55.073867pt;}
._3d{width:60.000000pt;}
._23{width:63.413333pt;}
._1f{width:68.883200pt;}
._12{width:76.048000pt;}
._20{width:80.774400pt;}
._21{width:90.880000pt;}
._3b{width:96.106667pt;}
._36{width:100.053333pt;}
._42{width:104.266667pt;}
._24{width:107.338667pt;}
._37{width:114.986667pt;}
._22{width:124.373333pt;}
._44{width:128.906667pt;}
._3c{width:134.453333pt;}
._3e{width:145.813333pt;}
._38{width:159.946667pt;}
._43{width:165.653333pt;}
._35{width:171.306667pt;}
._41{width:173.920000pt;}
._40{width:186.133333pt;}
._3a{width:190.826667pt;}
._16{width:216.645333pt;}
._45{width:270.080000pt;}
._1e{width:289.408800pt;}
._47{width:313.813333pt;}
._32{width:398.674133pt;}
._33{width:399.733333pt;}
._11{width:402.780267pt;}
._1d{width:405.469867pt;}
._46{width:409.760000pt;}
._0{width:514.133333pt;}
._3f{width:593.840800pt;}
._34{width:606.267467pt;}
._39{width:613.574133pt;}
._1a{width:849.961067pt;}
._2b{width:852.294400pt;}
._2c{width:855.894400pt;}
._2{width:857.654400pt;}
.fsa{font-size:27.984000pt;}
.fsc{font-size:31.093333pt;}
.fs9{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fsd{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs8{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs7{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y1e8{bottom:94.269733pt;}
.y208{bottom:94.358933pt;}
.y1c4{bottom:94.431467pt;}
.y42{bottom:94.453600pt;}
.y195{bottom:94.461200pt;}
.y13a{bottom:94.466933pt;}
.y140{bottom:94.472133pt;}
.y68{bottom:94.480400pt;}
.y91{bottom:94.483067pt;}
.ya2{bottom:94.485733pt;}
.y160{bottom:94.487333pt;}
.y11f{bottom:94.488133pt;}
.y11b{bottom:94.508000pt;}
.y1a3{bottom:94.511467pt;}
.ye0{bottom:94.539600pt;}
.y1e{bottom:94.542800pt;}
.yc0{bottom:99.062133pt;}
.y170{bottom:100.508133pt;}
.y244{bottom:104.363067pt;}
.y67{bottom:109.816400pt;}
.y90{bottom:109.819067pt;}
.y1e7{bottom:112.378400pt;}
.ya1{bottom:112.484400pt;}
.y11a{bottom:112.555333pt;}
.y1d{bottom:112.596133pt;}
.y41{bottom:112.807600pt;}
.y194{bottom:113.091200pt;}
.y207{bottom:113.160933pt;}
.y15f{bottom:113.362667pt;}
.y1a2{bottom:113.494133pt;}
.y1c3{bottom:113.996800pt;}
.y13f{bottom:114.298133pt;}
.ydf{bottom:114.902267pt;}
.y139{bottom:116.592933pt;}
.ybf{bottom:117.063467pt;}
.y16f{bottom:120.708133pt;}
.y243{bottom:122.363067pt;}
.y66{bottom:125.152400pt;}
.y229{bottom:125.995867pt;}
.y8f{bottom:127.817733pt;}
.y114{bottom:128.926667pt;}
.y1e6{bottom:130.487067pt;}
.y119{bottom:130.602667pt;}
.y1c{bottom:130.649467pt;}
.y40{bottom:131.161600pt;}
.y193{bottom:131.721200pt;}
.y206{bottom:131.962933pt;}
.y15e{bottom:132.238000pt;}
.y1a1{bottom:132.476800pt;}
.y1c2{bottom:133.562133pt;}
.y13e{bottom:134.124133pt;}
.yde{bottom:135.264933pt;}
.y138{bottom:138.718933pt;}
.y242{bottom:140.363067pt;}
.y16e{bottom:140.908133pt;}
.y65{bottom:143.151067pt;}
.y228{bottom:143.999867pt;}
.y8e{bottom:144.262667pt;}
.y1e5{bottom:148.595733pt;}
.y118{bottom:148.650000pt;}
.y1b{bottom:148.702800pt;}
.y3f{bottom:149.515600pt;}
.y192{bottom:150.351200pt;}
.y15d{bottom:151.113333pt;}
.y1a0{bottom:151.459467pt;}
.ya0{bottom:151.610933pt;}
.y1b3{bottom:151.624533pt;}
.ybe{bottom:153.063467pt;}
.y1c1{bottom:153.127467pt;}
.y13d{bottom:153.950133pt;}
.ydd{bottom:155.627600pt;}
.y205{bottom:158.324933pt;}
.y241{bottom:158.363067pt;}
.y64{bottom:159.593333pt;}
.y8d{bottom:159.598667pt;}
.y137{bottom:160.844933pt;}
.y16d{bottom:161.108133pt;}
.y227{bottom:162.003867pt;}
.y198{bottom:164.282533pt;}
.y1e4{bottom:166.704400pt;}
.y1a{bottom:166.756133pt;}
.y3e{bottom:167.869600pt;}
.y191{bottom:168.981200pt;}
.y15c{bottom:169.988667pt;}
.y9f{bottom:170.302267pt;}
.y19f{bottom:170.442133pt;}
.y1b2{bottom:170.699200pt;}
.y1c0{bottom:172.692800pt;}
.y63{bottom:174.929333pt;}
.ydc{bottom:175.990267pt;}
.y16c{bottom:177.108133pt;}
.y204{bottom:177.126933pt;}
.y8c{bottom:177.597333pt;}
.yfb{bottom:182.274933pt;}
.y136{bottom:182.970933pt;}
.y117{bottom:184.758533pt;}
.y19{bottom:184.809467pt;}
.y1e3{bottom:184.813067pt;}
.y3d{bottom:186.223600pt;}
.y226{bottom:187.567867pt;}
.y190{bottom:187.611200pt;}
.y240{bottom:187.696400pt;}
.y15b{bottom:188.864000pt;}
.y19e{bottom:189.424800pt;}
.y1b1{bottom:189.773867pt;}
.y62{bottom:190.265333pt;}
.y1bf{bottom:192.258133pt;}
.y16b{bottom:193.114000pt;}
.y13c{bottom:193.591467pt;}
.y8b{bottom:194.045067pt;}
.y203{bottom:195.928933pt;}
.ydb{bottom:196.352933pt;}
.y116{bottom:202.811867pt;}
.y18{bottom:202.862800pt;}
.y1e2{bottom:202.921733pt;}
.yfa{bottom:203.036267pt;}
.y3c{bottom:204.577600pt;}
.y135{bottom:205.096933pt;}
.y225{bottom:205.571867pt;}
.y18f{bottom:206.241200pt;}
.y15a{bottom:207.739333pt;}
.y9e{bottom:207.882533pt;}
.y61{bottom:208.264000pt;}
.y19d{bottom:208.407467pt;}
.y1b0{bottom:208.852933pt;}
.y1be{bottom:211.823467pt;}
.y8a{bottom:212.043733pt;}
.y16a{bottom:213.314000pt;}
.y202{bottom:214.730933pt;}
.y113{bottom:216.668667pt;}
.yda{bottom:216.715600pt;}
.y17{bottom:220.916133pt;}
.y1e1{bottom:221.030400pt;}
.y3b{bottom:222.931600pt;}
.y224{bottom:223.575867pt;}
.yf9{bottom:223.797600pt;}
.y23f{bottom:224.589733pt;}
.y60{bottom:224.711733pt;}
.y18e{bottom:224.871200pt;}
.y134{bottom:227.222933pt;}
.y19c{bottom:227.390133pt;}
.y1af{bottom:227.927600pt;}
.y9d{bottom:229.914533pt;}
.y1bd{bottom:231.388800pt;}
.yd9{bottom:237.078267pt;}
.y112{bottom:238.733333pt;}
.y16{bottom:238.969467pt;}
.y1e0{bottom:239.139067pt;}
.y201{bottom:241.092933pt;}
.y223{bottom:241.579867pt;}
.y23e{bottom:241.923067pt;}
.y5f{bottom:242.710400pt;}
.y169{bottom:243.498000pt;}
.y18d{bottom:243.501200pt;}
.yf8{bottom:244.558933pt;}
.y19b{bottom:246.372800pt;}
.yb3{bottom:247.361467pt;}
.y133{bottom:249.348933pt;}
.y1bc{bottom:250.954133pt;}
.y89{bottom:251.152667pt;}
.y15{bottom:257.022800pt;}
.y1df{bottom:257.247733pt;}
.yd8{bottom:257.440933pt;}
.y23d{bottom:259.256400pt;}
.y222{bottom:259.583867pt;}
.y200{bottom:259.894933pt;}
.y3a{bottom:260.178267pt;}
.y111{bottom:260.798000pt;}
.y18c{bottom:262.131200pt;}
.y159{bottom:262.204533pt;}
.yf7{bottom:265.320267pt;}
.y1ae{bottom:266.085467pt;}
.yb2{bottom:267.509467pt;}
.y88{bottom:269.430000pt;}
.y1bb{bottom:270.519467pt;}
.y132{bottom:271.474933pt;}
.y14{bottom:275.076133pt;}
.y1de{bottom:275.356400pt;}
.y23c{bottom:276.589733pt;}
.yd7{bottom:277.803600pt;}
.y158{bottom:278.204533pt;}
.y1ff{bottom:278.696933pt;}
.y18b{bottom:280.761200pt;}
.y5e{bottom:281.786400pt;}
.y110{bottom:282.862667pt;}
.y168{bottom:283.707467pt;}
.y19a{bottom:284.256000pt;}
.y221{bottom:285.147867pt;}
.y9c{bottom:285.948133pt;}
.yf6{bottom:286.081600pt;}
.yb1{bottom:287.657467pt;}
.y87{bottom:287.707333pt;}
.y1ba{bottom:290.084800pt;}
.y13{bottom:293.129467pt;}
.y1dd{bottom:293.465067pt;}
.y23b{bottom:293.923067pt;}
.y157{bottom:294.204533pt;}
.yd6{bottom:298.166267pt;}
.y18a{bottom:299.391200pt;}
.y5d{bottom:301.811733pt;}
.y220{bottom:303.151867pt;}
.y9b{bottom:304.639467pt;}
.y10f{bottom:304.927333pt;}
.y1fe{bottom:305.058933pt;}
.y167{bottom:305.680133pt;}
.y86{bottom:305.984667pt;}
.yf5{bottom:306.842933pt;}
.yb0{bottom:307.805467pt;}
.y156{bottom:310.204533pt;}
.y23a{bottom:311.256400pt;}
.y1dc{bottom:311.573733pt;}
.y39{bottom:315.881200pt;}
.y189{bottom:318.021200pt;}
.yd5{bottom:318.528933pt;}
.y5c{bottom:321.837067pt;}
.y12{bottom:322.529467pt;}
.y9a{bottom:323.330800pt;}
.y1fd{bottom:323.860933pt;}
.y85{bottom:324.262000pt;}
.y10e{bottom:326.992000pt;}
.yf4{bottom:327.604267pt;}
.yaf{bottom:327.915867pt;}
.y239{bottom:328.589733pt;}
.y21f{bottom:328.715867pt;}
.y131{bottom:329.188400pt;}
.y1b9{bottom:329.204000pt;}
.y1db{bottom:329.682400pt;}
.y155{bottom:330.404533pt;}
.y38{bottom:334.894533pt;}
.y188{bottom:336.651200pt;}
.yd4{bottom:338.891600pt;}
.y5b{bottom:341.862400pt;}
.y99{bottom:342.022133pt;}
.y84{bottom:342.539333pt;}
.y1fc{bottom:342.662933pt;}
.y238{bottom:345.923067pt;}
.y154{bottom:346.404533pt;}
.y166{bottom:346.553467pt;}
.y21e{bottom:346.719867pt;}
.y1da{bottom:347.791067pt;}
.yae{bottom:348.063867pt;}
.y10d{bottom:349.056667pt;}
.y130{bottom:349.388400pt;}
.y37{bottom:353.907867pt;}
.y187{bottom:355.281200pt;}
.yd3{bottom:359.254267pt;}
.y199{bottom:359.576133pt;}
.y98{bottom:360.713467pt;}
.y83{bottom:360.816667pt;}
.y1fb{bottom:361.464933pt;}
.y5a{bottom:361.887733pt;}
.y153{bottom:362.404533pt;}
.y237{bottom:363.256400pt;}
.y1d9{bottom:365.899733pt;}
.yf3{bottom:367.254933pt;}
.yad{bottom:368.211867pt;}
.y12f{bottom:369.588400pt;}
.y10c{bottom:371.121333pt;}
.y21d{bottom:372.283867pt;}
.y36{bottom:372.966533pt;}
.y186{bottom:373.911200pt;}
.y11{bottom:374.579467pt;}
.y152{bottom:378.404533pt;}
.y82{bottom:379.094000pt;}
.y97{bottom:379.404800pt;}
.yd2{bottom:379.616933pt;}
.y236{bottom:380.589733pt;}
.y59{bottom:381.913067pt;}
.y1d8{bottom:384.008400pt;}
.y1fa{bottom:387.826933pt;}
.yac{bottom:388.359867pt;}
.y12e{bottom:389.788400pt;}
.y21c{bottom:390.287867pt;}
.y35{bottom:390.646533pt;}
.yf2{bottom:391.356933pt;}
.y185{bottom:392.541200pt;}
.y10b{bottom:393.186000pt;}
.y81{bottom:397.371333pt;}
.y235{bottom:397.923067pt;}
.y96{bottom:398.096133pt;}
.y151{bottom:398.604533pt;}
.y10{bottom:399.312800pt;}
.yd1{bottom:399.979600pt;}
.y58{bottom:401.938400pt;}
.y1d7{bottom:402.117067pt;}
.y165{bottom:405.884000pt;}
.y1f9{bottom:406.628933pt;}
.y21b{bottom:408.291867pt;}
.y34{bottom:408.326533pt;}
.yab{bottom:408.507867pt;}
.y12d{bottom:409.988400pt;}
.y184{bottom:411.171200pt;}
.y150{bottom:414.604533pt;}
.y10a{bottom:415.250667pt;}
.y234{bottom:415.256400pt;}
.y80{bottom:415.648667pt;}
.y95{bottom:416.787467pt;}
.y1d6{bottom:420.225733pt;}
.yd0{bottom:420.342267pt;}
.y57{bottom:421.963733pt;}
.yf{bottom:424.046133pt;}
.y1f8{bottom:425.430933pt;}
.y33{bottom:426.006533pt;}
.y164{bottom:427.856667pt;}
.yaa{bottom:428.640933pt;}
.y183{bottom:429.801200pt;}
.y233{bottom:432.589733pt;}
.y21a{bottom:433.855867pt;}
.y7f{bottom:433.926000pt;}
.y14f{bottom:434.804533pt;}
.y94{bottom:435.478133pt;}
.y109{bottom:437.315333pt;}
.y1d5{bottom:438.334400pt;}
.y12c{bottom:440.320133pt;}
.ycf{bottom:440.704933pt;}
.y56{bottom:441.989067pt;}
.y32{bottom:443.686533pt;}
.y182{bottom:448.431200pt;}
.ye{bottom:448.779467pt;}
.ya9{bottom:448.788933pt;}
.yf1{bottom:449.459067pt;}
.y163{bottom:449.829333pt;}
.y232{bottom:449.923067pt;}
.y14e{bottom:450.804533pt;}
.y1f7{bottom:451.792933pt;}
.y219{bottom:451.859867pt;}
.y7e{bottom:452.203333pt;}
.y93{bottom:454.169467pt;}
.y1d4{bottom:456.443067pt;}
.y108{bottom:459.359600pt;}
.yce{bottom:461.067600pt;}
.y31{bottom:461.366533pt;}
.y55{bottom:462.014400pt;}
.y181{bottom:467.061200pt;}
.y231{bottom:467.256400pt;}
.ya8{bottom:468.936933pt;}
.y218{bottom:469.863867pt;}
.yf0{bottom:470.220400pt;}
.y7d{bottom:470.480667pt;}
.y1f6{bottom:470.594933pt;}
.y14d{bottom:471.004533pt;}
.y11e{bottom:471.076800pt;}
.y1d3{bottom:474.551733pt;}
.y30{bottom:479.046533pt;}
.y12b{bottom:480.661067pt;}
.y107{bottom:481.424267pt;}
.ycd{bottom:481.430267pt;}
.y54{bottom:482.039733pt;}
.y180{bottom:485.691200pt;}
.y7c{bottom:488.758000pt;}
.y1f5{bottom:489.396933pt;}
.yef{bottom:490.981733pt;}
.y92{bottom:491.550667pt;}
.yd{bottom:492.388400pt;}
.y1d2{bottom:492.660400pt;}
.y162{bottom:493.782800pt;}
.y217{bottom:495.427867pt;}
.y230{bottom:495.923067pt;}
.y2f{bottom:496.726533pt;}
.y14c{bottom:498.088000pt;}
.y197{bottom:498.482400pt;}
.ycc{bottom:501.792933pt;}
.y53{bottom:502.065067pt;}
.y12a{bottom:502.787067pt;}
.y106{bottom:503.488933pt;}
.y17f{bottom:504.321200pt;}
.y7b{bottom:507.035333pt;}
.y115{bottom:507.696267pt;}
.y1f4{bottom:508.198933pt;}
.ya7{bottom:509.218000pt;}
.y1d1{bottom:510.769067pt;}
.yee{bottom:511.743067pt;}
.y216{bottom:513.431867pt;}
.y2e{bottom:514.406533pt;}
.y13b{bottom:515.253467pt;}
.y161{bottom:515.756133pt;}
.y196{bottom:516.482400pt;}
.yc{bottom:521.116400pt;}
.y52{bottom:522.090400pt;}
.ycb{bottom:522.155600pt;}
.y17e{bottom:522.951200pt;}
.y129{bottom:524.913067pt;}
.y7a{bottom:525.312667pt;}
.y105{bottom:525.553600pt;}
.y1d0{bottom:528.877733pt;}
.y2d{bottom:532.086533pt;}
.yed{bottom:532.504400pt;}
.y1f3{bottom:534.560933pt;}
.y14b{bottom:535.193867pt;}
.y215{bottom:538.995867pt;}
.y17d{bottom:541.581200pt;}
.y51{bottom:542.115733pt;}
.yca{bottom:542.518267pt;}
.y79{bottom:543.586667pt;}
.y1cf{bottom:546.986400pt;}
.y128{bottom:547.039067pt;}
.y22f{bottom:547.256133pt;}
.y104{bottom:547.618267pt;}
.y2c{bottom:549.766533pt;}
.yb{bottom:549.844400pt;}
.yec{bottom:553.265733pt;}
.y1f2{bottom:553.362933pt;}
.y14a{bottom:554.069200pt;}
.y214{bottom:556.999867pt;}
.y17c{bottom:560.211200pt;}
.y78{bottom:561.864000pt;}
.y50{bottom:562.115467pt;}
.yc9{bottom:562.880933pt;}
.y1ce{bottom:565.095067pt;}
.y2b{bottom:567.446533pt;}
.y127{bottom:569.165067pt;}
.y22e{bottom:571.261467pt;}
.y149{bottom:572.944533pt;}
.yeb{bottom:574.027067pt;}
.y213{bottom:575.003867pt;}
.ya{bottom:578.572400pt;}
.y17b{bottom:578.841200pt;}
.y1f1{bottom:579.724933pt;}
.y77{bottom:580.141333pt;}
.y4f{bottom:582.140800pt;}
.y1cd{bottom:583.203733pt;}
.yc8{bottom:583.243600pt;}
.y2a{bottom:585.126533pt;}
.y103{bottom:588.575467pt;}
.y126{bottom:591.291067pt;}
.y1ad{bottom:592.162533pt;}
.y212{bottom:593.007867pt;}
.yea{bottom:594.788400pt;}
.y22d{bottom:595.266800pt;}
.y17a{bottom:597.471200pt;}
.y76{bottom:598.415200pt;}
.y1f0{bottom:598.526933pt;}
.y1cc{bottom:601.312400pt;}
.y4e{bottom:602.166133pt;}
.y29{bottom:602.806533pt;}
.yc7{bottom:603.606267pt;}
.y9{bottom:607.300400pt;}
.y148{bottom:610.713867pt;}
.y1ac{bottom:611.237200pt;}
.ye9{bottom:615.549733pt;}
.y179{bottom:616.101200pt;}
.y75{bottom:616.692533pt;}
.y1ef{bottom:617.328933pt;}
.y211{bottom:618.571867pt;}
.y22c{bottom:619.272133pt;}
.y1cb{bottom:619.421067pt;}
.ybd{bottom:619.719467pt;}
.y28{bottom:620.486533pt;}
.y4d{bottom:622.191467pt;}
.yc6{bottom:623.968933pt;}
.y1ab{bottom:630.311867pt;}
.y125{bottom:632.312133pt;}
.y147{bottom:632.925867pt;}
.y178{bottom:634.731200pt;}
.y74{bottom:634.969867pt;}
.y8{bottom:636.028400pt;}
.y1ee{bottom:636.130933pt;}
.ye8{bottom:636.311067pt;}
.y210{bottom:636.575867pt;}
.y1ca{bottom:637.529733pt;}
.ybc{bottom:637.720800pt;}
.y27{bottom:638.166533pt;}
.y4c{bottom:642.216800pt;}
.yc5{bottom:644.331600pt;}
.y1b8{bottom:645.017200pt;}
.y102{bottom:647.958667pt;}
.y1aa{bottom:649.386533pt;}
.y73{bottom:653.247200pt;}
.y20f{bottom:654.579867pt;}
.y1c9{bottom:655.638400pt;}
.ybb{bottom:655.722133pt;}
.y26{bottom:655.846533pt;}
.ye7{bottom:657.072400pt;}
.y4b{bottom:662.242133pt;}
.y1ed{bottom:662.492933pt;}
.y1b7{bottom:664.582533pt;}
.y101{bottom:670.023333pt;}
.y177{bottom:671.991200pt;}
.yba{bottom:673.723467pt;}
.y1c8{bottom:673.747067pt;}
.ye6{bottom:677.833733pt;}
.y20e{bottom:680.143867pt;}
.y4a{bottom:682.267467pt;}
.yc4{bottom:683.593867pt;}
.y25{bottom:684.873200pt;}
.y146{bottom:689.149200pt;}
.y176{bottom:690.621200pt;}
.y7{bottom:691.229333pt;}
.yb9{bottom:691.724800pt;}
.y124{bottom:691.771200pt;}
.y100{bottom:692.088000pt;}
.y72{bottom:696.420133pt;}
.y20d{bottom:698.147867pt;}
.y70{bottom:698.526800pt;}
.ye5{bottom:698.595067pt;}
.y49{bottom:702.289200pt;}
.y1b6{bottom:703.036800pt;}
.y1a9{bottom:704.043867pt;}
.y145{bottom:708.024533pt;}
.y175{bottom:709.251200pt;}
.yb8{bottom:709.726133pt;}
.y1c7{bottom:710.746533pt;}
.y123{bottom:713.897200pt;}
.yff{bottom:714.152667pt;}
.y6f{bottom:714.526800pt;}
.y20c{bottom:716.151867pt;}
.y71{bottom:716.633467pt;}
.y6{bottom:718.176000pt;}
.ye4{bottom:719.356400pt;}
.ya6{bottom:721.824533pt;}
.y48{bottom:722.299867pt;}
.y22b{bottom:723.711867pt;}
.y1a8{bottom:724.243867pt;}
.y1b5{bottom:725.932800pt;}
.y144{bottom:726.899867pt;}
.y1ec{bottom:727.206533pt;}
.yb7{bottom:727.727467pt;}
.y174{bottom:727.881200pt;}
.y24{bottom:729.006533pt;}
.y122{bottom:736.023200pt;}
.yfe{bottom:736.217333pt;}
.y6e{bottom:736.833467pt;}
.y5{bottom:737.562667pt;}
.y6c{bottom:738.940133pt;}
.ye3{bottom:740.117733pt;}
.yc3{bottom:741.313200pt;}
.y20b{bottom:741.715867pt;}
.ya5{bottom:741.957200pt;}
.y47{bottom:742.325200pt;}
.y1a6{bottom:744.443867pt;}
.yb6{bottom:745.728800pt;}
.y143{bottom:745.775200pt;}
.y1eb{bottom:746.005200pt;}
.y173{bottom:746.511200pt;}
.y23{bottom:748.019867pt;}
.y1a7{bottom:752.443867pt;}
.y6b{bottom:754.940133pt;}
.y6d{bottom:757.046800pt;}
.y121{bottom:758.149200pt;}
.yfd{bottom:758.282000pt;}
.y20a{bottom:759.719867pt;}
.y1a4{bottom:760.443867pt;}
.ye2{bottom:760.879067pt;}
.yc2{bottom:761.675867pt;}
.ya4{bottom:762.105200pt;}
.y46{bottom:762.350533pt;}
.yb5{bottom:763.730133pt;}
.y11d{bottom:764.497200pt;}
.y4{bottom:764.509333pt;}
.y142{bottom:764.650533pt;}
.y1ea{bottom:764.803867pt;}
.y172{bottom:765.141200pt;}
.y1c6{bottom:766.183867pt;}
.y22{bottom:767.033200pt;}
.y22a{bottom:767.279867pt;}
.y1a5{bottom:776.443867pt;}
.y6a{bottom:777.246800pt;}
.y120{bottom:780.275200pt;}
.yfc{bottom:780.336533pt;}
.ye1{bottom:781.639867pt;}
.yc1{bottom:782.038533pt;}
.ya3{bottom:782.253200pt;}
.y45{bottom:782.375867pt;}
.y1b4{bottom:782.835867pt;}
.y11c{bottom:783.449200pt;}
.y141{bottom:783.525867pt;}
.y1e9{bottom:783.602533pt;}
.y171{bottom:783.771200pt;}
.y3{bottom:783.896000pt;}
.y1c5{bottom:784.292533pt;}
.y209{bottom:785.283867pt;}
.y21{bottom:786.051333pt;}
.yb4{bottom:800.627733pt;}
.y44{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y69{bottom:803.727600pt;}
.y20{bottom:803.731333pt;}
.y1f{bottom:842.834667pt;}
.y43{bottom:858.834667pt;}
.hc{height:33.763396pt;}
.h7{height:39.479167pt;}
.hd{height:44.414062pt;}
.h13{height:49.322917pt;}
.h4{height:49.348958pt;}
.he{height:49.363892pt;}
.h3{height:51.816406pt;}
.h9{height:56.751302pt;}
.hf{height:56.765169pt;}
.hb{height:56.765702pt;}
.h11{height:56.771569pt;}
.ha{height:56.809969pt;}
.h10{height:56.811035pt;}
.h12{height:56.832902pt;}
.h2{height:61.686198pt;}
.h8{height:66.621094pt;}
.h6{height:69.088542pt;}
.h14{height:81.348958pt;}
.h5{height:88.828125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xd{left:71.955467pt;}
.x9{left:73.307733pt;}
.x8{left:74.388133pt;}
.x1{left:75.590533pt;}
.xb{left:83.203467pt;}
.x14{left:91.068267pt;}
.x13{left:92.197733pt;}
.x7{left:93.360533pt;}
.x6{left:94.547200pt;}
.x1c{left:101.598400pt;}
.x17{left:102.543333pt;}
.x16{left:107.474800pt;}
.x10{left:115.946000pt;}
.x11{left:117.326000pt;}
.xe{left:118.660800pt;}
.xa{left:141.283467pt;}
.xc{left:147.243467pt;}
.x15{left:178.654667pt;}
.x12{left:179.861733pt;}
.x1e{left:186.078400pt;}
.xf{left:189.034533pt;}
.x1f{left:198.611733pt;}
.x4{left:203.247467pt;}
.x5{left:205.627067pt;}
.x2{left:207.211600pt;}
.x3{left:208.203067pt;}
.x1d{left:209.985067pt;}
.x18{left:233.223333pt;}
.x19{left:235.383333pt;}
.x1b{left:243.745467pt;}
.x1a{left:245.308533pt;}
.x20{left:354.411733pt;}
.x21{left:441.131733pt;}
}




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