
    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_bdf8d43b9e111d49cb8d5d8e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_7de8fb88e51cafe77b45a9f0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7946e11fc2670e3d47e59cc0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.838379;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_4b5da9b2d4d00fa4703f4389.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b6ebcd3fb5069b1e5faee74f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.363000;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_5977c97647e79c066e92e93d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.010620px;}
.ls7{letter-spacing:0.019560px;}
.ls6{letter-spacing:0.021240px;}
.ls1{letter-spacing:0.316500px;}
.lse{letter-spacing:9.376136px;}
.ls2{letter-spacing:18.021233px;}
.lsb{letter-spacing:89.488572px;}
.lsa{letter-spacing:125.509810px;}
.ls4{letter-spacing:132.714058px;}
.lsf{letter-spacing:142.800004px;}
.lsc{letter-spacing:159.369774px;}
.ls9{letter-spacing:165.133172px;}
.ls5{letter-spacing:168.735296px;}
.ls0{letter-spacing:194.525322px;}
.ls8{letter-spacing:598.828871px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-230.525308px;}
.ws6{word-spacing:-116.363473px;}
.wsa{word-spacing:-73.965210px;}
.ws2{word-spacing:-60.419496px;}
.ws1{word-spacing:-60.119976px;}
.ws8{word-spacing:-56.260477px;}
.ws7{word-spacing:-55.943978px;}
.ws39{word-spacing:-43.447783px;}
.ws37{word-spacing:-42.245263px;}
.wsc{word-spacing:-41.524843px;}
.ws3b{word-spacing:-40.804424px;}
.ws45{word-spacing:-39.845384px;}
.ws3e{word-spacing:-39.363584px;}
.ws3f{word-spacing:-38.643165px;}
.ws3{word-spacing:-38.063625px;}
.ws9{word-spacing:-37.922745px;}
.ws3d{word-spacing:-37.202325px;}
.ws10{word-spacing:-36.021226px;}
.ws0{word-spacing:-35.999986px;}
.ws40{word-spacing:-35.041006px;}
.ws43{word-spacing:-33.600167px;}
.ws44{word-spacing:-32.879747px;}
.ws1b{word-spacing:-32.159327px;}
.ws41{word-spacing:-28.557229px;}
.ws42{word-spacing:-26.395909px;}
.ws11{word-spacing:-23.742111px;}
.ws3a{word-spacing:-23.503791px;}
.ws23{word-spacing:-23.021691px;}
.wsd{word-spacing:-22.301271px;}
.wse{word-spacing:-21.580851px;}
.ws13{word-spacing:-20.860432px;}
.ws1a{word-spacing:-20.140012px;}
.ws3c{word-spacing:-19.912132px;}
.ws38{word-spacing:-19.901392px;}
.ws14{word-spacing:-19.419592px;}
.ws20{word-spacing:-19.180792px;}
.ws1e{word-spacing:-18.699173px;}
.ws27{word-spacing:-17.978753px;}
.ws18{word-spacing:-17.258333px;}
.ws19{word-spacing:-16.537913px;}
.ws12{word-spacing:-15.817494px;}
.ws29{word-spacing:-15.097014px;}
.ws33{word-spacing:-14.939994px;}
.ws26{word-spacing:-14.376594px;}
.ws24{word-spacing:-13.656175px;}
.wsf{word-spacing:-12.935755px;}
.ws17{word-spacing:-12.215335px;}
.ws16{word-spacing:-11.494915px;}
.ws1c{word-spacing:-10.774496px;}
.ws28{word-spacing:-10.054076px;}
.ws25{word-spacing:-9.333656px;}
.ws2a{word-spacing:-8.613237px;}
.ws21{word-spacing:-7.892817px;}
.ws22{word-spacing:-7.172397px;}
.ws2b{word-spacing:-6.451917px;}
.ws2d{word-spacing:-5.731498px;}
.ws34{word-spacing:-5.011078px;}
.ws15{word-spacing:-4.290658px;}
.ws30{word-spacing:-3.570239px;}
.ws1d{word-spacing:-1.408979px;}
.ws32{word-spacing:-0.688560px;}
.wsb{word-spacing:0.000000px;}
.ws2e{word-spacing:0.031860px;}
.ws1f{word-spacing:2.193179px;}
.ws36{word-spacing:4.354438px;}
.ws2c{word-spacing:5.074858px;}
.ws2f{word-spacing:5.795278px;}
.ws31{word-spacing:12.278995px;}
.ws35{word-spacing:31.730387px;}
.ws5{word-spacing:158.525337px;}
._d{margin-left:-194.525322px;}
._14{margin-left:-66.654573px;}
._11{margin-left:-57.940717px;}
._1{margin-left:-53.802758px;}
._31{margin-left:-43.889742px;}
._2f{margin-left:-42.866983px;}
._f{margin-left:-41.439703px;}
._3b{margin-left:-40.201844px;}
._1a{margin-left:-38.049285px;}
._18{margin-left:-36.537825px;}
._1e{margin-left:-35.081386px;}
._40{margin-left:-34.067926px;}
._26{margin-left:-33.023687px;}
._1d{margin-left:-32.006747px;}
._1f{margin-left:-30.595728px;}
._1c{margin-left:-28.836228px;}
._16{margin-left:-27.098509px;}
._21{margin-left:-25.208630px;}
._15{margin-left:-24.038210px;}
._23{margin-left:-22.753791px;}
._36{margin-left:-21.636471px;}
._1b{margin-left:-20.611612px;}
._4{margin-left:-19.223272px;}
._6{margin-left:-17.869793px;}
._22{margin-left:-16.690613px;}
._10{margin-left:-15.492954px;}
._2{margin-left:-14.042874px;}
._c{margin-left:-12.579055px;}
._24{margin-left:-11.424715px;}
._39{margin-left:-10.331156px;}
._3e{margin-left:-9.306956px;}
._13{margin-left:-8.300517px;}
._20{margin-left:-7.292757px;}
._0{margin-left:-6.255477px;}
._17{margin-left:-4.073398px;}
._19{margin-left:-2.628119px;}
._3{margin-left:-1.177020px;}
._12{width:1.086480px;}
._7{width:2.977079px;}
._b{width:4.080178px;}
._27{width:5.644977px;}
._8{width:7.267317px;}
._9{width:8.402697px;}
._25{width:10.350356px;}
._5{width:11.608435px;}
._2a{width:13.604815px;}
._35{width:14.987934px;}
._30{width:17.041133px;}
._2e{width:18.068393px;}
._34{width:19.935532px;}
._29{width:20.946652px;}
._a{width:22.158291px;}
._32{width:23.244171px;}
._28{width:24.998150px;}
._2d{width:26.214170px;}
._3a{width:27.275449px;}
._33{width:28.945548px;}
._2c{width:30.093828px;}
._37{width:31.802687px;}
._2b{width:33.032807px;}
._3f{width:37.233345px;}
._3d{width:39.470864px;}
._38{width:42.280483px;}
._3c{width:49.504840px;}
._e{width:407.050637px;}
.fc1{color:rgb(0,0,101);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:45.359982px;}
.fs2{font-size:53.999978px;}
.fs7{font-size:59.759976px;}
.fs4{font-size:63.359975px;}
.fs0{font-size:71.999971px;}
.fs3{font-size:77.759969px;}
.fs6{font-size:89.999964px;}
.fs1{font-size:120.239952px;}
.fs5{font-size:149.759940px;}
.y0{bottom:0.000000px;}
.y1f4{bottom:110.819956px;}
.y25c{bottom:114.059954px;}
.y12f{bottom:114.959954px;}
.y34{bottom:115.679954px;}
.y5e{bottom:116.759953px;}
.y159{bottom:117.119953px;}
.y1bb{bottom:118.019953px;}
.y1e4{bottom:118.919952px;}
.y247{bottom:119.819952px;}
.y20e{bottom:121.619951px;}
.yc4{bottom:122.699951px;}
.yda{bottom:123.059951px;}
.y196{bottom:123.959950px;}
.y21b{bottom:126.119950px;}
.y24b{bottom:127.019949px;}
.y1ff{bottom:127.560399px;}
.y13c{bottom:127.919949px;}
.y1fb{bottom:127.920399px;}
.y1a1{bottom:132.059947px;}
.y1e1{bottom:132.959947px;}
.y236{bottom:135.659946px;}
.y258{bottom:136.019946px;}
.y33{bottom:136.379945px;}
.y10d{bottom:136.559945px;}
.y100{bottom:136.919945px;}
.y4e{bottom:138.719945px;}
.y16e{bottom:139.079944px;}
.y21c{bottom:140.699944px;}
.y11a{bottom:141.059944px;}
.y203{bottom:141.060394px;}
.y1f3{bottom:141.959943px;}
.y25b{bottom:145.019942px;}
.y141{bottom:145.559942px;}
.y12e{bottom:145.919942px;}
.y24c{bottom:148.079941px;}
.y19a{bottom:150.059940px;}
.y246{bottom:150.959940px;}
.y1b3{bottom:154.559938px;}
.y195{bottom:154.919938px;}
.y5d{bottom:156.719937px;}
.y32{bottom:157.079937px;}
.y1ba{bottom:157.979937px;}
.y1a3{bottom:158.699937px;}
.y13b{bottom:159.059936px;}
.y20d{bottom:162.119935px;}
.yd9{bottom:162.659935px;}
.yc3{bottom:163.019935px;}
.y185{bottom:163.919934px;}
.y21a{bottom:166.079934px;}
.yeb{bottom:166.979933px;}
.y237{bottom:167.699933px;}
.yff{bottom:168.059933px;}
.y1da{bottom:168.959932px;}
.yef{bottom:172.019931px;}
.y1f2{bottom:172.919931px;}
.y255{bottom:175.079930px;}
.y235{bottom:175.979930px;}
.y1b4{bottom:176.699929px;}
.y10c{bottom:177.059929px;}
.y31{bottom:177.779929px;}
.y4d{bottom:178.859928px;}
.y16d{bottom:179.219928px;}
.y9c{bottom:180.119928px;}
.y137{bottom:181.019928px;}
.y245{bottom:181.919927px;}
.y25a{bottom:184.979926px;}
.y140{bottom:186.059926px;}
.y13a{bottom:190.019924px;}
.y180{bottom:193.979922px;}
.y184{bottom:195.059922px;}
.y5c{bottom:196.859921px;}
.y158{bottom:197.219921px;}
.yea{bottom:198.119921px;}
.y1a2{bottom:198.659921px;}
.y30{bottom:198.839920px;}
.yfe{bottom:199.019920px;}
.y1d9{bottom:199.919920px;}
.y20c{bottom:202.079919px;}
.yb2{bottom:202.979919px;}
.y205{bottom:204.059918px;}
.y234{bottom:207.119917px;}
.y10b{bottom:208.019917px;}
.y9b{bottom:211.079916px;}
.y199{bottom:211.979915px;}
.y1f1{bottom:213.059915px;}
.y254{bottom:215.219914px;}
.y259{bottom:216.119914px;}
.y13f{bottom:217.019913px;}
.y4c{bottom:218.819912px;}
.y16c{bottom:219.179912px;}
.y2f{bottom:219.539912px;}
.y202{bottom:220.619912px;}
.y136{bottom:220.979912px;}
.y17f{bottom:225.119910px;}
.y1dc{bottom:225.659910px;}
.y183{bottom:226.019910px;}
.y60{bottom:227.819909px;}
.y219{bottom:228.179909px;}
.ye9{bottom:229.079908px;}
.y197{bottom:229.619908px;}
.y120{bottom:229.979908px;}
.y1d8{bottom:231.059908px;}
.yb1{bottom:234.119906px;}
.y228{bottom:235.019906px;}
.y5b{bottom:236.819905px;}
.y157{bottom:237.179905px;}
.y1b9{bottom:238.079905px;}
.y1fe{bottom:238.619905px;}
.yfd{bottom:238.979904px;}
.y2e{bottom:239.879904px;}
.y20b{bottom:242.219903px;}
.y119{bottom:242.759903px;}
.yd8{bottom:243.119903px;}
.y1f0{bottom:244.019902px;}
.y1c6{bottom:247.079901px;}
.y1f5{bottom:247.619901px;}
.y10a{bottom:247.979901px;}
.y9a{bottom:251.219900px;}
.y1e3{bottom:251.759899px;}
.y198{bottom:252.119899px;}
.y253{bottom:255.179898px;}
.y17e{bottom:256.079898px;}
.y194{bottom:256.619897px;}
.y182{bottom:256.979897px;}
.y4b{bottom:258.959896px;}
.y16b{bottom:259.319896px;}
.ye8{bottom:260.219896px;}
.y2d{bottom:260.399896px;}
.y135{bottom:261.119896px;}
.y1d7{bottom:262.019895px;}
.y242{bottom:264.179894px;}
.y1aa{bottom:265.079894px;}
.y1db{bottom:265.979894px;}
.y5f{bottom:267.959893px;}
.y218{bottom:268.319893px;}
.y233{bottom:269.219892px;}
.y11f{bottom:269.759892px;}
.yfc{bottom:270.119892px;}
.yee{bottom:273.719891px;}
.yb0{bottom:274.079890px;}
.y1ef{bottom:274.979890px;}
.y5a{bottom:276.959889px;}
.y156{bottom:277.319889px;}
.y1b8{bottom:278.219889px;}
.y1b1{bottom:278.759888px;}
.y109{bottom:279.119888px;}
.y2c{bottom:281.099888px;}
.y20a{bottom:282.179887px;}
.yd7{bottom:283.079887px;}
.y252{bottom:286.319885px;}
.y1ae{bottom:287.219885px;}
.y13e{bottom:288.119885px;}
.y99{bottom:291.179884px;}
.y1e2{bottom:291.719883px;}
.y134{bottom:292.079883px;}
.y1d6{bottom:292.979883px;}
.y241{bottom:295.319882px;}
.y17d{bottom:295.859882px;}
.y1a0{bottom:296.219882px;}
.y193{bottom:297.119881px;}
.y4a{bottom:298.919880px;}
.y16a{bottom:299.279880px;}
.y232{bottom:300.179880px;}
.y1c7{bottom:300.719880px;}
.y12a{bottom:301.079880px;}
.y2b{bottom:302.159879px;}
.y22c{bottom:304.859878px;}
.yaf{bottom:305.219878px;}
.y1ee{bottom:306.119878px;}
.y175{bottom:308.279877px;}
.y1c5{bottom:309.179876px;}
.y123{bottom:309.719876px;}
.yfb{bottom:310.079876px;}
.yc2{bottom:314.219874px;}
.y59{bottom:316.919873px;}
.y24f{bottom:317.279873px;}
.y1b7{bottom:318.179873px;}
.y13d{bottom:319.079872px;}
.y98{bottom:322.319871px;}
.y2a{bottom:322.859871px;}
.yd6{bottom:323.219871px;}
.y1d5{bottom:324.119870px;}
.y251{bottom:326.279869px;}
.y1a5{bottom:327.179869px;}
.y192{bottom:328.079869px;}
.ye7{bottom:331.319867px;}
.y129{bottom:332.219867px;}
.y240{bottom:335.279866px;}
.yae{bottom:336.179866px;}
.y1ed{bottom:337.079865px;}
.y49{bottom:339.059864px;}
.y169{bottom:339.419864px;}
.y1c4{bottom:340.319864px;}
.y1b0{bottom:340.859864px;}
.yfa{bottom:341.219864px;}
.y29{bottom:343.199863px;}
.yc1{bottom:345.179862px;}
.y217{bottom:348.059861px;}
.y174{bottom:348.419861px;}
.y257{bottom:349.319860px;}
.y12d{bottom:349.859860px;}
.y108{bottom:350.219860px;}
.yd5{bottom:354.179858px;}
.y1d4{bottom:355.079858px;}
.y58{bottom:357.059857px;}
.y155{bottom:357.419857px;}
.y1b6{bottom:357.959857px;}
.y1a9{bottom:358.319857px;}
.y191{bottom:359.219856px;}
.y97{bottom:362.279855px;}
.y139{bottom:362.819855px;}
.y128{bottom:363.179855px;}
.y28{bottom:363.899854px;}
.y250{bottom:366.419853px;}
.y1ad{bottom:366.959853px;}
.y17c{bottom:367.319853px;}
.y1ec{bottom:368.219853px;}
.y207{bottom:371.819851px;}
.yf9{bottom:372.179851px;}
.y23f{bottom:375.419850px;}
.yad{bottom:376.319849px;}
.y48{bottom:379.019848px;}
.y168{bottom:379.379848px;}
.y1c3{bottom:380.279848px;}
.y1fd{bottom:380.819848px;}
.y107{bottom:381.179848px;}
.y221{bottom:384.959846px;}
.yc0{bottom:385.319846px;}
.y27{bottom:386.039846px;}
.y1d3{bottom:386.219846px;}
.y173{bottom:388.379845px;}
.y12c{bottom:390.179844px;}
.y96{bottom:393.419843px;}
.y127{bottom:394.319842px;}
.y57{bottom:397.019841px;}
.y154{bottom:397.379841px;}
.y115{bottom:398.279841px;}
.y1eb{bottom:399.179840px;}
.y231{bottom:402.059839px;}
.y209{bottom:402.419839px;}
.y188{bottom:402.959839px;}
.yf8{bottom:403.319839px;}
.y23e{bottom:406.379837px;}
.y1f9{bottom:406.919837px;}
.yac{bottom:407.279837px;}
.y227{bottom:408.179837px;}
.y26{bottom:411.959835px;}
.y106{bottom:412.319835px;}
.y24a{bottom:415.919834px;}
.ybf{bottom:416.279833px;}
.y1d2{bottom:417.179833px;}
.y47{bottom:419.159832px;}
.y167{bottom:419.519832px;}
.y1c2{bottom:420.419832px;}
.y21d{bottom:420.959832px;}
.y12b{bottom:421.319831px;}
.y133{bottom:424.919830px;}
.yd4{bottom:425.279830px;}
.y172{bottom:428.159829px;}
.y216{bottom:428.519829px;}
.y114{bottom:429.419828px;}
.y1ea{bottom:430.319828px;}
.ye6{bottom:433.019827px;}
.y95{bottom:433.379827px;}
.y126{bottom:433.919826px;}
.y11e{bottom:434.279826px;}
.y56{bottom:437.159825px;}
.y153{bottom:437.519825px;}
.y25{bottom:437.879825px;}
.yab{bottom:438.419825px;}
.y226{bottom:439.319824px;}
.y208{bottom:442.379823px;}
.yf7{bottom:443.279823px;}
.y23d{bottom:446.519821px;}
.y22b{bottom:447.059821px;}
.y118{bottom:447.419821px;}
.y1d1{bottom:448.319821px;}
.y1c1{bottom:451.379819px;}
.y1b2{bottom:451.919819px;}
.y105{bottom:452.279819px;}
.y19f{bottom:456.059818px;}
.ybe{bottom:456.419817px;}
.y46{bottom:459.119816px;}
.y166{bottom:459.479816px;}
.y113{bottom:460.379816px;}
.y1e0{bottom:461.279815px;}
.y24{bottom:463.619815px;}
.yd3{bottom:465.419814px;}
.y85{bottom:467.039813px;}
.y171{bottom:468.479813px;}
.y17b{bottom:469.379812px;}
.y225{bottom:470.279812px;}
.y94{bottom:473.519811px;}
.y125{bottom:474.059810px;}
.yf6{bottom:474.419810px;}
.y55{bottom:477.119809px;}
.y152{bottom:477.479809px;}
.yed{bottom:478.019809px;}
.yaa{bottom:478.379809px;}
.y1d0{bottom:479.279808px;}
.y1c0{bottom:482.519807px;}
.y104{bottom:483.419807px;}
.y23c{bottom:486.479805px;}
.y22a{bottom:487.019805px;}
.ybd{bottom:487.379805px;}
.y23{bottom:489.539804px;}
.y256{bottom:491.519803px;}
.y19d{bottom:492.419803px;}
.y24e{bottom:495.479802px;}
.y19e{bottom:496.019802px;}
.y73{bottom:496.379801px;}
.y84{bottom:497.999801px;}
.y45{bottom:499.259800px;}
.y165{bottom:499.619800px;}
.y112{bottom:500.519800px;}
.y224{bottom:501.419799px;}
.y93{bottom:504.479798px;}
.y204{bottom:505.019798px;}
.yf5{bottom:505.379798px;}
.y170{bottom:508.619797px;}
.ya9{bottom:509.519796px;}
.y1cf{bottom:510.419796px;}
.y230{bottom:513.119795px;}
.y103{bottom:514.379794px;}
.y22{bottom:515.459794px;}
.y54{bottom:517.259793px;}
.y151{bottom:517.619793px;}
.ybc{bottom:518.519793px;}
.y1bf{bottom:522.479791px;}
.y145{bottom:523.379791px;}
.y23b{bottom:526.259789px;}
.y220{bottom:527.159789px;}
.y132{bottom:527.519789px;}
.y17a{bottom:531.479787px;}
.y223{bottom:532.379787px;}
.y24d{bottom:535.619786px;}
.yd2{bottom:536.159786px;}
.y72{bottom:536.519785px;}
.y83{bottom:538.139785px;}
.y44{bottom:539.219784px;}
.y164{bottom:539.579784px;}
.y1a8{bottom:540.119784px;}
.ya8{bottom:540.479784px;}
.y1ce{bottom:541.379783px;}
.y21{bottom:543.899782px;}
.y92{bottom:544.619782px;}
.yf4{bottom:545.519782px;}
.y53{bottom:548.219781px;}
.y16f{bottom:548.579781px;}
.y117{bottom:549.479780px;}
.y22f{bottom:553.619779px;}
.y190{bottom:554.159778px;}
.y144{bottom:554.519778px;}
.y150{bottom:557.579777px;}
.ybb{bottom:558.479777px;}
.y179{bottom:562.619775px;}
.y222{bottom:563.519775px;}
.y23a{bottom:566.579773px;}
.y148{bottom:567.119773px;}
.y11d{bottom:567.479773px;}
.y82{bottom:569.279772px;}
.y1f8{bottom:571.619771px;}
.y1cd{bottom:572.519771px;}
.ye5{bottom:575.579770px;}
.y1b5{bottom:576.119770px;}
.y71{bottom:576.479769px;}
.y43{bottom:579.359768px;}
.y163{bottom:579.719768px;}
.y1a7{bottom:580.259768px;}
.ya7{bottom:580.619768px;}
.y91{bottom:584.579766px;}
.y143{bottom:585.479766px;}
.y20{bottom:587.099765px;}
.y52{bottom:588.359765px;}
.y215{bottom:588.719765px;}
.y249{bottom:589.259764px;}
.yba{bottom:589.619764px;}
.y1be{bottom:593.579763px;}
.y18f{bottom:594.479762px;}
.y14f{bottom:597.719761px;}
.y1ac{bottom:598.259761px;}
.y11c{bottom:598.619761px;}
.y178{bottom:602.579759px;}
.y1cc{bottom:603.479759px;}
.y239{bottom:606.719757px;}
.y1a4{bottom:607.259757px;}
.yd1{bottom:607.619757px;}
.y81{bottom:610.499756px;}
.ya6{bottom:611.579755px;}
.ye4{bottom:615.719754px;}
.y1fa{bottom:616.259753px;}
.y70{bottom:616.619753px;}
.y42{bottom:619.319752px;}
.y162{bottom:619.679752px;}
.yb9{bottom:620.579752px;}
.y90{bottom:624.719750px;}
.y1f{bottom:625.259750px;}
.y18e{bottom:625.619750px;}
.y51{bottom:628.319749px;}
.y214{bottom:628.679749px;}
.y8d{bottom:629.579748px;}
.y177{bottom:633.719747px;}
.y1cb{bottom:634.619746px;}
.y14e{bottom:637.679745px;}
.y1ab{bottom:638.219745px;}
.yd0{bottom:638.579745px;}
.y1e{bottom:640.739744px;}
.y1f7{bottom:642.359743px;}
.ya5{bottom:642.719743px;}
.y238{bottom:646.679741px;}
.y1fc{bottom:647.219741px;}
.y6f{bottom:647.579741px;}
.yb8{bottom:651.719739px;}
.y80{bottom:651.899739px;}
.y22e{bottom:655.319738px;}
.ye3{bottom:655.679738px;}
.y1d{bottom:656.399737px;}
.y18d{bottom:656.579737px;}
.y41{bottom:659.459736px;}
.y161{bottom:659.819736px;}
.y8c{bottom:660.719736px;}
.y8f{bottom:664.679734px;}
.y1ca{bottom:665.579734px;}
.y50{bottom:668.459733px;}
.y213{bottom:668.819732px;}
.y131{bottom:669.359732px;}
.y11b{bottom:669.719732px;}
.y1c{bottom:671.879731px;}
.y1e9{bottom:673.679731px;}
.y14d{bottom:677.819729px;}
.ycf{bottom:678.359729px;}
.y6e{bottom:678.719729px;}
.ya4{bottom:682.679727px;}
.ye2{bottom:686.819725px;}
.y1b{bottom:687.359725px;}
.y18c{bottom:687.719725px;}
.yb7{bottom:691.319723px;}
.y8b{bottom:691.679723px;}
.y7f{bottom:693.299723px;}
.y1bd{bottom:695.819722px;}
.y1c9{bottom:696.719721px;}
.y40{bottom:699.419720px;}
.y160{bottom:699.779720px;}
.y187{bottom:700.319720px;}
.y111{bottom:700.679720px;}
.y1a{bottom:702.839719px;}
.y176{bottom:704.459718px;}
.y8e{bottom:704.819718px;}
.y4f{bottom:708.419717px;}
.y212{bottom:708.779716px;}
.y6d{bottom:709.679716px;}
.y1e8{bottom:713.459715px;}
.y7c{bottom:713.819714px;}
.y14c{bottom:717.779713px;}
.y19{bottom:718.499713px;}
.yce{bottom:718.679713px;}
.y1a6{bottom:722.459711px;}
.y8a{bottom:722.819711px;}
.ye1{bottom:726.779709px;}
.y1c8{bottom:727.679709px;}
.y21f{bottom:731.459707px;}
.yb6{bottom:731.819707px;}
.y18{bottom:733.979706px;}
.y7e{bottom:734.519706px;}
.y22d{bottom:735.419706px;}
.y1bc{bottom:735.779706px;}
.y3f{bottom:739.559704px;}
.y15f{bottom:739.919704px;}
.y110{bottom:740.459704px;}
.y6c{bottom:740.819704px;}
.y7b{bottom:744.779702px;}
.y211{bottom:748.919700px;}
.y17{bottom:749.459700px;}
.ycd{bottom:749.819700px;}
.y1f6{bottom:753.419699px;}
.y89{bottom:753.779698px;}
.y14b{bottom:757.919697px;}
.y19c{bottom:758.819696px;}
.y147{bottom:762.419695px;}
.yb5{bottom:762.779695px;}
.y16{bottom:764.939694px;}
.ye0{bottom:766.919693px;}
.y1e6{bottom:771.419691px;}
.y6b{bottom:771.779691px;}
.y7a{bottom:775.919690px;}
.y3e{bottom:779.519688px;}
.y15e{bottom:779.879688px;}
.y122{bottom:780.419688px;}
.y15{bottom:780.599688px;}
.ycc{bottom:780.779688px;}
.y88{bottom:784.919686px;}
.y210{bottom:788.879684px;}
.y1df{bottom:789.419684px;}
.y19b{bottom:789.779684px;}
.y229{bottom:793.559683px;}
.yb4{bottom:793.919682px;}
.y14{bottom:796.079682px;}
.ydf{bottom:797.879681px;}
.y206{bottom:802.559679px;}
.y6a{bottom:802.919679px;}
.y201{bottom:806.879677px;}
.y13{bottom:811.559675px;}
.yf3{bottom:811.919675px;}
.ya3{bottom:815.519674px;}
.y79{bottom:815.879674px;}
.y3d{bottom:819.659672px;}
.y15d{bottom:820.019672px;}
.y248{bottom:820.559672px;}
.ycb{bottom:820.919672px;}
.y1e7{bottom:824.519670px;}
.y87{bottom:824.879670px;}
.y12{bottom:827.039669px;}
.yde{bottom:829.019668px;}
.y1de{bottom:829.919668px;}
.y69{bottom:833.879666px;}
.y14a{bottom:838.019665px;}
.y130{bottom:842.519663px;}
.y11{bottom:842.699663px;}
.yf2{bottom:842.879663px;}
.y200{bottom:846.659661px;}
.y78{bottom:847.019661px;}
.y18b{bottom:851.519659px;}
.yca{bottom:851.879659px;}
.ya2{bottom:855.659658px;}
.y86{bottom:856.019658px;}
.y10{bottom:858.179657px;}
.y3c{bottom:859.619656px;}
.y15c{bottom:859.979656px;}
.y1dd{bottom:860.879656px;}
.y1af{bottom:864.659654px;}
.y68{bottom:865.019654px;}
.ydd{bottom:868.619653px;}
.y20f{bottom:868.979652px;}
.yf{bottom:873.659651px;}
.yf1{bottom:874.019650px;}
.y149{bottom:877.979649px;}
.yc9{bottom:883.019647px;}
.y116{bottom:886.619645px;}
.y77{bottom:886.979645px;}
.ye{bottom:890.399644px;}
.y18a{bottom:892.019643px;}
.y1e5{bottom:895.619642px;}
.y67{bottom:895.979642px;}
.y3b{bottom:899.759640px;}
.y15b{bottom:900.119640px;}
.y186{bottom:904.619638px;}
.y10f{bottom:904.979638px;}
.ydc{bottom:909.119636px;}
.yd{bottom:911.099636px;}
.yc8{bottom:913.979634px;}
.y243{bottom:917.759633px;}
.y76{bottom:918.119633px;}
.y189{bottom:922.979631px;}
.y138{bottom:926.759629px;}
.y66{bottom:927.119629px;}
.yc{bottom:931.619627px;}
.y21e{bottom:935.759626px;}
.y10e{bottom:936.119626px;}
.y3a{bottom:939.719624px;}
.ydb{bottom:940.079624px;}
.y142{bottom:944.759622px;}
.yc7{bottom:945.119622px;}
.y75{bottom:949.079620px;}
.yb{bottom:953.939618px;}
.y121{bottom:954.119618px;}
.y65{bottom:958.079617px;}
.ya1{bottom:967.079613px;}
.yc6{bottom:976.079610px;}
.ya{bottom:976.439609px;}
.y39{bottom:979.859608px;}
.y15a{bottom:980.219608px;}
.y102{bottom:985.079606px;}
.y64{bottom:989.219604px;}
.yb3{bottom:997.859601px;}
.y7d{bottom:998.219601px;}
.y9{bottom:998.759600px;}
.y124{bottom:1006.859597px;}
.yc5{bottom:1007.219597px;}
.y101{bottom:1016.219594px;}
.y38{bottom:1019.819592px;}
.y74{bottom:1020.179592px;}
.y8{bottom:1021.259591px;}
.y244{bottom:1028.819588px;}
.y63{bottom:1029.179588px;}
.y146{bottom:1037.819585px;}
.ya0{bottom:1038.179585px;}
.y7{bottom:1043.759582px;}
.yf0{bottom:1047.179581px;}
.y37{bottom:1059.959576px;}
.y62{bottom:1060.319576px;}
.y6{bottom:1066.079574px;}
.y181{bottom:1068.959572px;}
.yec{bottom:1069.319572px;}
.y9f{bottom:1078.319569px;}
.y5{bottom:1088.579565px;}
.y36{bottom:1099.919560px;}
.y61{bottom:1100.279560px;}
.y9e{bottom:1109.279556px;}
.y4{bottom:1109.999556px;}
.y3{bottom:1129.259548px;}
.y35{bottom:1140.059544px;}
.y9d{bottom:1140.419544px;}
.y2{bottom:1172.999531px;}
.y1{bottom:1193.699523px;}
.hc{height:30.955668px;}
.hd{height:39.800726px;}
.h3{height:47.381817px;}
.h8{height:48.796855px;}
.h5{height:56.275290px;}
.h1{height:63.175756px;}
.ha{height:63.177556px;}
.hb{height:63.351537px;}
.h9{height:63.949193px;}
.h4{height:69.065129px;}
.h7{height:78.969695px;}
.h2{height:105.503512px;}
.h6{height:133.014322px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.619935px;}
.x24{left:136.619945px;}
.x3{left:137.699945px;}
.x25{left:140.399944px;}
.x5{left:166.139934px;}
.x19{left:180.719229px;}
.x10{left:182.520091px;}
.x27{left:187.199832px;}
.x14{left:190.259924px;}
.x1d{left:191.339694px;}
.x15{left:202.320201px;}
.x1b{left:234.717534px;}
.x1e{left:236.160027px;}
.x11{left:237.600085px;}
.x28{left:240.299919px;}
.x1c{left:244.618645px;}
.x6{left:278.099889px;}
.x7{left:284.939886px;}
.x1f{left:286.919885px;}
.xe{left:302.039879px;}
.x20{left:348.479861px;}
.x21{left:352.259859px;}
.xf{left:376.199778px;}
.x18{left:403.019243px;}
.x13{left:408.779384px;}
.x4{left:446.399821px;}
.x8{left:453.959818px;}
.x9{left:460.799816px;}
.x12{left:461.879815px;}
.x17{left:542.339783px;}
.xa{left:584.279766px;}
.xb{left:591.119764px;}
.xc{left:623.879750px;}
.xd{left:630.719748px;}
.x22{left:643.679743px;}
.x23{left:647.459741px;}
.x16{left:690.659724px;}
.x26{left:738.359705px;}
.x1a{left:747.359701px;}
.x1{left:756.359697px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.009440pt;}
.ls7{letter-spacing:0.017387pt;}
.ls6{letter-spacing:0.018880pt;}
.ls1{letter-spacing:0.281333pt;}
.lse{letter-spacing:8.334343pt;}
.ls2{letter-spacing:16.018874pt;}
.lsb{letter-spacing:79.545397pt;}
.lsa{letter-spacing:111.564276pt;}
.ls4{letter-spacing:117.968051pt;}
.lsf{letter-spacing:126.933337pt;}
.lsc{letter-spacing:141.662021pt;}
.ls9{letter-spacing:146.785042pt;}
.ls5{letter-spacing:149.986930pt;}
.ls0{letter-spacing:172.911398pt;}
.ls8{letter-spacing:532.292330pt;}
.ws4{word-spacing:-204.911385pt;}
.ws6{word-spacing:-103.434199pt;}
.wsa{word-spacing:-65.746854pt;}
.ws2{word-spacing:-53.706219pt;}
.ws1{word-spacing:-53.439979pt;}
.ws8{word-spacing:-50.009313pt;}
.ws7{word-spacing:-49.727980pt;}
.ws39{word-spacing:-38.620251pt;}
.ws37{word-spacing:-37.551345pt;}
.wsc{word-spacing:-36.910972pt;}
.ws3b{word-spacing:-36.270599pt;}
.ws45{word-spacing:-35.418119pt;}
.ws3e{word-spacing:-34.989853pt;}
.ws3f{word-spacing:-34.349480pt;}
.ws3{word-spacing:-33.834333pt;}
.ws9{word-spacing:-33.709107pt;}
.ws3d{word-spacing:-33.068733pt;}
.ws10{word-spacing:-32.018867pt;}
.ws0{word-spacing:-31.999987pt;}
.ws40{word-spacing:-31.147561pt;}
.ws43{word-spacing:-29.866815pt;}
.ws44{word-spacing:-29.226442pt;}
.ws1b{word-spacing:-28.586069pt;}
.ws41{word-spacing:-25.384203pt;}
.ws42{word-spacing:-23.463031pt;}
.ws11{word-spacing:-21.104098pt;}
.ws3a{word-spacing:-20.892258pt;}
.ws23{word-spacing:-20.463725pt;}
.wsd{word-spacing:-19.823352pt;}
.wse{word-spacing:-19.182979pt;}
.ws13{word-spacing:-18.542606pt;}
.ws1a{word-spacing:-17.902233pt;}
.ws3c{word-spacing:-17.699673pt;}
.ws38{word-spacing:-17.690126pt;}
.ws14{word-spacing:-17.261860pt;}
.ws20{word-spacing:-17.049593pt;}
.ws1e{word-spacing:-16.621487pt;}
.ws27{word-spacing:-15.981114pt;}
.ws18{word-spacing:-15.340741pt;}
.ws19{word-spacing:-14.700367pt;}
.ws12{word-spacing:-14.059994pt;}
.ws29{word-spacing:-13.419568pt;}
.ws33{word-spacing:-13.279995pt;}
.ws26{word-spacing:-12.779195pt;}
.ws24{word-spacing:-12.138822pt;}
.wsf{word-spacing:-11.498449pt;}
.ws17{word-spacing:-10.858076pt;}
.ws16{word-spacing:-10.217703pt;}
.ws1c{word-spacing:-9.577330pt;}
.ws28{word-spacing:-8.936956pt;}
.ws25{word-spacing:-8.296583pt;}
.ws2a{word-spacing:-7.656210pt;}
.ws21{word-spacing:-7.015837pt;}
.ws22{word-spacing:-6.375464pt;}
.ws2b{word-spacing:-5.735038pt;}
.ws2d{word-spacing:-5.094665pt;}
.ws34{word-spacing:-4.454292pt;}
.ws15{word-spacing:-3.813918pt;}
.ws30{word-spacing:-3.173545pt;}
.ws1d{word-spacing:-1.252426pt;}
.ws32{word-spacing:-0.612053pt;}
.wsb{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.028320pt;}
.ws1f{word-spacing:1.949493pt;}
.ws36{word-spacing:3.870612pt;}
.ws2c{word-spacing:4.510985pt;}
.ws2f{word-spacing:5.151358pt;}
.ws31{word-spacing:10.914662pt;}
.ws35{word-spacing:28.204789pt;}
.ws5{word-spacing:140.911410pt;}
._d{margin-left:-172.911398pt;}
._14{margin-left:-59.248510pt;}
._11{margin-left:-51.502859pt;}
._1{margin-left:-47.824674pt;}
._31{margin-left:-39.013104pt;}
._2f{margin-left:-38.103985pt;}
._f{margin-left:-36.835292pt;}
._3b{margin-left:-35.734972pt;}
._1a{margin-left:-33.821586pt;}
._18{margin-left:-32.478067pt;}
._1e{margin-left:-31.183454pt;}
._40{margin-left:-30.282601pt;}
._26{margin-left:-29.354388pt;}
._1d{margin-left:-28.450442pt;}
._1f{margin-left:-27.196202pt;}
._1c{margin-left:-25.632203pt;}
._16{margin-left:-24.087564pt;}
._21{margin-left:-22.407671pt;}
._15{margin-left:-21.367298pt;}
._23{margin-left:-20.225592pt;}
._36{margin-left:-19.232419pt;}
._1b{margin-left:-18.321433pt;}
._4{margin-left:-17.087353pt;}
._6{margin-left:-15.884260pt;}
._22{margin-left:-14.836101pt;}
._10{margin-left:-13.771514pt;}
._2{margin-left:-12.482555pt;}
._c{margin-left:-11.181382pt;}
._24{margin-left:-10.155303pt;}
._39{margin-left:-9.183250pt;}
._3e{margin-left:-8.272850pt;}
._13{margin-left:-7.378237pt;}
._20{margin-left:-6.482451pt;}
._0{margin-left:-5.560424pt;}
._17{margin-left:-3.620799pt;}
._19{margin-left:-2.336106pt;}
._3{margin-left:-1.046240pt;}
._12{width:0.965760pt;}
._7{width:2.646292pt;}
._b{width:3.626825pt;}
._27{width:5.017757pt;}
._8{width:6.459837pt;}
._9{width:7.469064pt;}
._25{width:9.200316pt;}
._5{width:10.318609pt;}
._2a{width:12.093168pt;}
._35{width:13.322608pt;}
._30{width:15.147674pt;}
._2e{width:16.060794pt;}
._34{width:17.720473pt;}
._29{width:18.619246pt;}
._a{width:19.696259pt;}
._32{width:20.661485pt;}
._28{width:22.220578pt;}
._2d{width:23.301484pt;}
._3a{width:24.244844pt;}
._33{width:25.729376pt;}
._2c{width:26.750069pt;}
._37{width:28.269055pt;}
._2b{width:29.362495pt;}
._3f{width:33.096307pt;}
._3d{width:35.085213pt;}
._38{width:37.582652pt;}
._3c{width:44.004302pt;}
._e{width:361.822789pt;}
.fs8{font-size:40.319984pt;}
.fs2{font-size:47.999981pt;}
.fs7{font-size:53.119979pt;}
.fs4{font-size:56.319977pt;}
.fs0{font-size:63.999974pt;}
.fs3{font-size:69.119972pt;}
.fs6{font-size:79.999968pt;}
.fs1{font-size:106.879957pt;}
.fs5{font-size:133.119947pt;}
.y0{bottom:0.000000pt;}
.y1f4{bottom:98.506627pt;}
.y25c{bottom:101.386626pt;}
.y12f{bottom:102.186626pt;}
.y34{bottom:102.826626pt;}
.y5e{bottom:103.786625pt;}
.y159{bottom:104.106625pt;}
.y1bb{bottom:104.906625pt;}
.y1e4{bottom:105.706624pt;}
.y247{bottom:106.506624pt;}
.y20e{bottom:108.106623pt;}
.yc4{bottom:109.066623pt;}
.yda{bottom:109.386623pt;}
.y196{bottom:110.186623pt;}
.y21b{bottom:112.106622pt;}
.y24b{bottom:112.906622pt;}
.y1ff{bottom:113.387021pt;}
.y13c{bottom:113.706621pt;}
.y1fb{bottom:113.707021pt;}
.y1a1{bottom:117.386620pt;}
.y1e1{bottom:118.186619pt;}
.y236{bottom:120.586618pt;}
.y258{bottom:120.906618pt;}
.y33{bottom:121.226618pt;}
.y10d{bottom:121.386618pt;}
.y100{bottom:121.706618pt;}
.y4e{bottom:123.306617pt;}
.y16e{bottom:123.626617pt;}
.y21c{bottom:125.066617pt;}
.y11a{bottom:125.386617pt;}
.y203{bottom:125.387017pt;}
.y1f3{bottom:126.186616pt;}
.y25b{bottom:128.906615pt;}
.y141{bottom:129.386615pt;}
.y12e{bottom:129.706615pt;}
.y24c{bottom:131.626614pt;}
.y19a{bottom:133.386613pt;}
.y246{bottom:134.186613pt;}
.y1b3{bottom:137.386612pt;}
.y195{bottom:137.706612pt;}
.y5d{bottom:139.306611pt;}
.y32{bottom:139.626611pt;}
.y1ba{bottom:140.426610pt;}
.y1a3{bottom:141.066610pt;}
.y13b{bottom:141.386610pt;}
.y20d{bottom:144.106609pt;}
.yd9{bottom:144.586609pt;}
.yc3{bottom:144.906609pt;}
.y185{bottom:145.706608pt;}
.y21a{bottom:147.626608pt;}
.yeb{bottom:148.426607pt;}
.y237{bottom:149.066607pt;}
.yff{bottom:149.386607pt;}
.y1da{bottom:150.186607pt;}
.yef{bottom:152.906606pt;}
.y1f2{bottom:153.706605pt;}
.y255{bottom:155.626604pt;}
.y235{bottom:156.426604pt;}
.y1b4{bottom:157.066604pt;}
.y10c{bottom:157.386604pt;}
.y31{bottom:158.026603pt;}
.y4d{bottom:158.986603pt;}
.y16d{bottom:159.306603pt;}
.y9c{bottom:160.106603pt;}
.y137{bottom:160.906602pt;}
.y245{bottom:161.706602pt;}
.y25a{bottom:164.426601pt;}
.y140{bottom:165.386601pt;}
.y13a{bottom:168.906599pt;}
.y180{bottom:172.426598pt;}
.y184{bottom:173.386597pt;}
.y5c{bottom:174.986597pt;}
.y158{bottom:175.306597pt;}
.yea{bottom:176.106596pt;}
.y1a2{bottom:176.586596pt;}
.y30{bottom:176.746596pt;}
.yfe{bottom:176.906596pt;}
.y1d9{bottom:177.706596pt;}
.y20c{bottom:179.626595pt;}
.yb2{bottom:180.426594pt;}
.y205{bottom:181.386594pt;}
.y234{bottom:184.106593pt;}
.y10b{bottom:184.906593pt;}
.y9b{bottom:187.626592pt;}
.y199{bottom:188.426591pt;}
.y1f1{bottom:189.386591pt;}
.y254{bottom:191.306590pt;}
.y259{bottom:192.106590pt;}
.y13f{bottom:192.906590pt;}
.y4c{bottom:194.506589pt;}
.y16c{bottom:194.826589pt;}
.y2f{bottom:195.146589pt;}
.y202{bottom:196.106588pt;}
.y136{bottom:196.426588pt;}
.y17f{bottom:200.106587pt;}
.y1dc{bottom:200.586586pt;}
.y183{bottom:200.906586pt;}
.y60{bottom:202.506586pt;}
.y219{bottom:202.826586pt;}
.ye9{bottom:203.626585pt;}
.y197{bottom:204.106585pt;}
.y120{bottom:204.426585pt;}
.y1d8{bottom:205.386585pt;}
.yb1{bottom:208.106583pt;}
.y228{bottom:208.906583pt;}
.y5b{bottom:210.506582pt;}
.y157{bottom:210.826582pt;}
.y1b9{bottom:211.626582pt;}
.y1fe{bottom:212.106582pt;}
.yfd{bottom:212.426582pt;}
.y2e{bottom:213.226581pt;}
.y20b{bottom:215.306581pt;}
.y119{bottom:215.786580pt;}
.yd8{bottom:216.106580pt;}
.y1f0{bottom:216.906580pt;}
.y1c6{bottom:219.626579pt;}
.y1f5{bottom:220.106579pt;}
.y10a{bottom:220.426578pt;}
.y9a{bottom:223.306577pt;}
.y1e3{bottom:223.786577pt;}
.y198{bottom:224.106577pt;}
.y253{bottom:226.826576pt;}
.y17e{bottom:227.626576pt;}
.y194{bottom:228.106575pt;}
.y182{bottom:228.426575pt;}
.y4b{bottom:230.186575pt;}
.y16b{bottom:230.506574pt;}
.ye8{bottom:231.306574pt;}
.y2d{bottom:231.466574pt;}
.y135{bottom:232.106574pt;}
.y1d7{bottom:232.906574pt;}
.y242{bottom:234.826573pt;}
.y1aa{bottom:235.626572pt;}
.y1db{bottom:236.426572pt;}
.y5f{bottom:238.186571pt;}
.y218{bottom:238.506571pt;}
.y233{bottom:239.306571pt;}
.y11f{bottom:239.786571pt;}
.yfc{bottom:240.106571pt;}
.yee{bottom:243.306569pt;}
.yb0{bottom:243.626569pt;}
.y1ef{bottom:244.426569pt;}
.y5a{bottom:246.186568pt;}
.y156{bottom:246.506568pt;}
.y1b8{bottom:247.306568pt;}
.y1b1{bottom:247.786568pt;}
.y109{bottom:248.106567pt;}
.y2c{bottom:249.866567pt;}
.y20a{bottom:250.826566pt;}
.yd7{bottom:251.626566pt;}
.y252{bottom:254.506565pt;}
.y1ae{bottom:255.306565pt;}
.y13e{bottom:256.106564pt;}
.y99{bottom:258.826563pt;}
.y1e2{bottom:259.306563pt;}
.y134{bottom:259.626563pt;}
.y1d6{bottom:260.426562pt;}
.y241{bottom:262.506562pt;}
.y17d{bottom:262.986561pt;}
.y1a0{bottom:263.306561pt;}
.y193{bottom:264.106561pt;}
.y4a{bottom:265.706560pt;}
.y16a{bottom:266.026560pt;}
.y232{bottom:266.826560pt;}
.y1c7{bottom:267.306560pt;}
.y12a{bottom:267.626560pt;}
.y2b{bottom:268.586559pt;}
.y22c{bottom:270.986558pt;}
.yaf{bottom:271.306558pt;}
.y1ee{bottom:272.106558pt;}
.y175{bottom:274.026557pt;}
.y1c5{bottom:274.826557pt;}
.y123{bottom:275.306557pt;}
.yfb{bottom:275.626556pt;}
.yc2{bottom:279.306555pt;}
.y59{bottom:281.706554pt;}
.y24f{bottom:282.026554pt;}
.y1b7{bottom:282.826554pt;}
.y13d{bottom:283.626553pt;}
.y98{bottom:286.506552pt;}
.y2a{bottom:286.986552pt;}
.yd6{bottom:287.306552pt;}
.y1d5{bottom:288.106551pt;}
.y251{bottom:290.026551pt;}
.y1a5{bottom:290.826550pt;}
.y192{bottom:291.626550pt;}
.ye7{bottom:294.506549pt;}
.y129{bottom:295.306549pt;}
.y240{bottom:298.026547pt;}
.yae{bottom:298.826547pt;}
.y1ed{bottom:299.626547pt;}
.y49{bottom:301.386546pt;}
.y169{bottom:301.706546pt;}
.y1c4{bottom:302.506546pt;}
.y1b0{bottom:302.986545pt;}
.yfa{bottom:303.306545pt;}
.y29{bottom:305.066545pt;}
.yc1{bottom:306.826544pt;}
.y217{bottom:309.386543pt;}
.y174{bottom:309.706543pt;}
.y257{bottom:310.506542pt;}
.y12d{bottom:310.986542pt;}
.y108{bottom:311.306542pt;}
.yd5{bottom:314.826541pt;}
.y1d4{bottom:315.626540pt;}
.y58{bottom:317.386540pt;}
.y155{bottom:317.706540pt;}
.y1b6{bottom:318.186539pt;}
.y1a9{bottom:318.506539pt;}
.y191{bottom:319.306539pt;}
.y97{bottom:322.026538pt;}
.y139{bottom:322.506538pt;}
.y128{bottom:322.826538pt;}
.y28{bottom:323.466537pt;}
.y250{bottom:325.706536pt;}
.y1ad{bottom:326.186536pt;}
.y17c{bottom:326.506536pt;}
.y1ec{bottom:327.306536pt;}
.y207{bottom:330.506534pt;}
.yf9{bottom:330.826534pt;}
.y23f{bottom:333.706533pt;}
.yad{bottom:334.506533pt;}
.y48{bottom:336.906532pt;}
.y168{bottom:337.226532pt;}
.y1c3{bottom:338.026531pt;}
.y1fd{bottom:338.506531pt;}
.y107{bottom:338.826531pt;}
.y221{bottom:342.186530pt;}
.yc0{bottom:342.506530pt;}
.y27{bottom:343.146529pt;}
.y1d3{bottom:343.306529pt;}
.y173{bottom:345.226529pt;}
.y12c{bottom:346.826528pt;}
.y96{bottom:349.706527pt;}
.y127{bottom:350.506526pt;}
.y57{bottom:352.906526pt;}
.y154{bottom:353.226525pt;}
.y115{bottom:354.026525pt;}
.y1eb{bottom:354.826525pt;}
.y231{bottom:357.386524pt;}
.y209{bottom:357.706524pt;}
.y188{bottom:358.186523pt;}
.yf8{bottom:358.506523pt;}
.y23e{bottom:361.226522pt;}
.y1f9{bottom:361.706522pt;}
.yac{bottom:362.026522pt;}
.y227{bottom:362.826522pt;}
.y26{bottom:366.186520pt;}
.y106{bottom:366.506520pt;}
.y24a{bottom:369.706519pt;}
.ybf{bottom:370.026519pt;}
.y1d2{bottom:370.826518pt;}
.y47{bottom:372.586518pt;}
.y167{bottom:372.906518pt;}
.y1c2{bottom:373.706517pt;}
.y21d{bottom:374.186517pt;}
.y12b{bottom:374.506517pt;}
.y133{bottom:377.706516pt;}
.yd4{bottom:378.026515pt;}
.y172{bottom:380.586514pt;}
.y216{bottom:380.906514pt;}
.y114{bottom:381.706514pt;}
.y1ea{bottom:382.506514pt;}
.ye6{bottom:384.906513pt;}
.y95{bottom:385.226513pt;}
.y126{bottom:385.706512pt;}
.y11e{bottom:386.026512pt;}
.y56{bottom:388.586511pt;}
.y153{bottom:388.906511pt;}
.y25{bottom:389.226511pt;}
.yab{bottom:389.706511pt;}
.y226{bottom:390.506510pt;}
.y208{bottom:393.226509pt;}
.yf7{bottom:394.026509pt;}
.y23d{bottom:396.906508pt;}
.y22b{bottom:397.386508pt;}
.y118{bottom:397.706508pt;}
.y1d1{bottom:398.506507pt;}
.y1c1{bottom:401.226506pt;}
.y1b2{bottom:401.706506pt;}
.y105{bottom:402.026506pt;}
.y19f{bottom:405.386505pt;}
.ybe{bottom:405.706504pt;}
.y46{bottom:408.106503pt;}
.y166{bottom:408.426503pt;}
.y113{bottom:409.226503pt;}
.y1e0{bottom:410.026503pt;}
.y24{bottom:412.106502pt;}
.yd3{bottom:413.706501pt;}
.y85{bottom:415.146501pt;}
.y171{bottom:416.426500pt;}
.y17b{bottom:417.226500pt;}
.y225{bottom:418.026499pt;}
.y94{bottom:420.906498pt;}
.y125{bottom:421.386498pt;}
.yf6{bottom:421.706498pt;}
.y55{bottom:424.106497pt;}
.y152{bottom:424.426497pt;}
.yed{bottom:424.906497pt;}
.yaa{bottom:425.226497pt;}
.y1d0{bottom:426.026496pt;}
.y1c0{bottom:428.906495pt;}
.y104{bottom:429.706495pt;}
.y23c{bottom:432.426494pt;}
.y22a{bottom:432.906494pt;}
.ybd{bottom:433.226493pt;}
.y23{bottom:435.146493pt;}
.y256{bottom:436.906492pt;}
.y19d{bottom:437.706492pt;}
.y24e{bottom:440.426490pt;}
.y19e{bottom:440.906490pt;}
.y73{bottom:441.226490pt;}
.y84{bottom:442.666490pt;}
.y45{bottom:443.786489pt;}
.y165{bottom:444.106489pt;}
.y112{bottom:444.906489pt;}
.y224{bottom:445.706488pt;}
.y93{bottom:448.426487pt;}
.y204{bottom:448.906487pt;}
.yf5{bottom:449.226487pt;}
.y170{bottom:452.106486pt;}
.ya9{bottom:452.906486pt;}
.y1cf{bottom:453.706485pt;}
.y230{bottom:456.106484pt;}
.y103{bottom:457.226484pt;}
.y22{bottom:458.186483pt;}
.y54{bottom:459.786483pt;}
.y151{bottom:460.106483pt;}
.ybc{bottom:460.906482pt;}
.y1bf{bottom:464.426481pt;}
.y145{bottom:465.226481pt;}
.y23b{bottom:467.786480pt;}
.y220{bottom:468.586479pt;}
.y132{bottom:468.906479pt;}
.y17a{bottom:472.426478pt;}
.y223{bottom:473.226477pt;}
.y24d{bottom:476.106476pt;}
.yd2{bottom:476.586476pt;}
.y72{bottom:476.906476pt;}
.y83{bottom:478.346475pt;}
.y44{bottom:479.306475pt;}
.y164{bottom:479.626475pt;}
.y1a8{bottom:480.106475pt;}
.ya8{bottom:480.426474pt;}
.y1ce{bottom:481.226474pt;}
.y21{bottom:483.466473pt;}
.y92{bottom:484.106473pt;}
.yf4{bottom:484.906473pt;}
.y53{bottom:487.306472pt;}
.y16f{bottom:487.626472pt;}
.y117{bottom:488.426471pt;}
.y22f{bottom:492.106470pt;}
.y190{bottom:492.586470pt;}
.y144{bottom:492.906470pt;}
.y150{bottom:495.626468pt;}
.ybb{bottom:496.426468pt;}
.y179{bottom:500.106467pt;}
.y222{bottom:500.906466pt;}
.y23a{bottom:503.626465pt;}
.y148{bottom:504.106465pt;}
.y11d{bottom:504.426465pt;}
.y82{bottom:506.026464pt;}
.y1f8{bottom:508.106463pt;}
.y1cd{bottom:508.906463pt;}
.ye5{bottom:511.626462pt;}
.y1b5{bottom:512.106462pt;}
.y71{bottom:512.426462pt;}
.y43{bottom:514.986461pt;}
.y163{bottom:515.306461pt;}
.y1a7{bottom:515.786460pt;}
.ya7{bottom:516.106460pt;}
.y91{bottom:519.626459pt;}
.y143{bottom:520.426458pt;}
.y20{bottom:521.866458pt;}
.y52{bottom:522.986457pt;}
.y215{bottom:523.306457pt;}
.y249{bottom:523.786457pt;}
.yba{bottom:524.106457pt;}
.y1be{bottom:527.626456pt;}
.y18f{bottom:528.426455pt;}
.y14f{bottom:531.306454pt;}
.y1ac{bottom:531.786454pt;}
.y11c{bottom:532.106454pt;}
.y178{bottom:535.626452pt;}
.y1cc{bottom:536.426452pt;}
.y239{bottom:539.306451pt;}
.y1a4{bottom:539.786451pt;}
.yd1{bottom:540.106451pt;}
.y81{bottom:542.666450pt;}
.ya6{bottom:543.626449pt;}
.ye4{bottom:547.306448pt;}
.y1fa{bottom:547.786448pt;}
.y70{bottom:548.106447pt;}
.y42{bottom:550.506446pt;}
.y162{bottom:550.826446pt;}
.yb9{bottom:551.626446pt;}
.y90{bottom:555.306445pt;}
.y1f{bottom:555.786444pt;}
.y18e{bottom:556.106444pt;}
.y51{bottom:558.506443pt;}
.y214{bottom:558.826443pt;}
.y8d{bottom:559.626443pt;}
.y177{bottom:563.306441pt;}
.y1cb{bottom:564.106441pt;}
.y14e{bottom:566.826440pt;}
.y1ab{bottom:567.306440pt;}
.yd0{bottom:567.626440pt;}
.y1e{bottom:569.546439pt;}
.y1f7{bottom:570.986438pt;}
.ya5{bottom:571.306438pt;}
.y238{bottom:574.826437pt;}
.y1fc{bottom:575.306437pt;}
.y6f{bottom:575.626436pt;}
.yb8{bottom:579.306435pt;}
.y80{bottom:579.466435pt;}
.y22e{bottom:582.506434pt;}
.ye3{bottom:582.826434pt;}
.y1d{bottom:583.466433pt;}
.y18d{bottom:583.626433pt;}
.y41{bottom:586.186432pt;}
.y161{bottom:586.506432pt;}
.y8c{bottom:587.306432pt;}
.y8f{bottom:590.826430pt;}
.y1ca{bottom:591.626430pt;}
.y50{bottom:594.186429pt;}
.y213{bottom:594.506429pt;}
.y131{bottom:594.986429pt;}
.y11b{bottom:595.306429pt;}
.y1c{bottom:597.226428pt;}
.y1e9{bottom:598.826427pt;}
.y14d{bottom:602.506426pt;}
.ycf{bottom:602.986425pt;}
.y6e{bottom:603.306425pt;}
.ya4{bottom:606.826424pt;}
.ye2{bottom:610.506422pt;}
.y1b{bottom:610.986422pt;}
.y18c{bottom:611.306422pt;}
.yb7{bottom:614.506421pt;}
.y8b{bottom:614.826421pt;}
.y7f{bottom:616.266420pt;}
.y1bd{bottom:618.506419pt;}
.y1c9{bottom:619.306419pt;}
.y40{bottom:621.706418pt;}
.y160{bottom:622.026418pt;}
.y187{bottom:622.506418pt;}
.y111{bottom:622.826418pt;}
.y1a{bottom:624.746417pt;}
.y176{bottom:626.186416pt;}
.y8e{bottom:626.506416pt;}
.y4f{bottom:629.706415pt;}
.y212{bottom:630.026415pt;}
.y6d{bottom:630.826414pt;}
.y1e8{bottom:634.186413pt;}
.y7c{bottom:634.506413pt;}
.y14c{bottom:638.026411pt;}
.y19{bottom:638.666411pt;}
.yce{bottom:638.826411pt;}
.y1a6{bottom:642.186410pt;}
.y8a{bottom:642.506410pt;}
.ye1{bottom:646.026408pt;}
.y1c8{bottom:646.826408pt;}
.y21f{bottom:650.186407pt;}
.yb6{bottom:650.506406pt;}
.y18{bottom:652.426406pt;}
.y7e{bottom:652.906406pt;}
.y22d{bottom:653.706405pt;}
.y1bc{bottom:654.026405pt;}
.y3f{bottom:657.386404pt;}
.y15f{bottom:657.706404pt;}
.y110{bottom:658.186403pt;}
.y6c{bottom:658.506403pt;}
.y7b{bottom:662.026402pt;}
.y211{bottom:665.706400pt;}
.y17{bottom:666.186400pt;}
.ycd{bottom:666.506400pt;}
.y1f6{bottom:669.706399pt;}
.y89{bottom:670.026399pt;}
.y14b{bottom:673.706397pt;}
.y19c{bottom:674.506397pt;}
.y147{bottom:677.706396pt;}
.yb5{bottom:678.026395pt;}
.y16{bottom:679.946395pt;}
.ye0{bottom:681.706394pt;}
.y1e6{bottom:685.706392pt;}
.y6b{bottom:686.026392pt;}
.y7a{bottom:689.706391pt;}
.y3e{bottom:692.906390pt;}
.y15e{bottom:693.226389pt;}
.y122{bottom:693.706389pt;}
.y15{bottom:693.866389pt;}
.ycc{bottom:694.026389pt;}
.y88{bottom:697.706388pt;}
.y210{bottom:701.226386pt;}
.y1df{bottom:701.706386pt;}
.y19b{bottom:702.026386pt;}
.y229{bottom:705.386385pt;}
.yb4{bottom:705.706384pt;}
.y14{bottom:707.626384pt;}
.ydf{bottom:709.226383pt;}
.y206{bottom:713.386381pt;}
.y6a{bottom:713.706381pt;}
.y201{bottom:717.226380pt;}
.y13{bottom:721.386378pt;}
.yf3{bottom:721.706378pt;}
.ya3{bottom:724.906377pt;}
.y79{bottom:725.226377pt;}
.y3d{bottom:728.586375pt;}
.y15d{bottom:728.906375pt;}
.y248{bottom:729.386375pt;}
.ycb{bottom:729.706375pt;}
.y1e7{bottom:732.906374pt;}
.y87{bottom:733.226373pt;}
.y12{bottom:735.146373pt;}
.yde{bottom:736.906372pt;}
.y1de{bottom:737.706372pt;}
.y69{bottom:741.226370pt;}
.y14a{bottom:744.906369pt;}
.y130{bottom:748.906367pt;}
.y11{bottom:749.066367pt;}
.yf2{bottom:749.226367pt;}
.y200{bottom:752.586366pt;}
.y78{bottom:752.906366pt;}
.y18b{bottom:756.906364pt;}
.yca{bottom:757.226364pt;}
.ya2{bottom:760.586362pt;}
.y86{bottom:760.906362pt;}
.y10{bottom:762.826362pt;}
.y3c{bottom:764.106361pt;}
.y15c{bottom:764.426361pt;}
.y1dd{bottom:765.226361pt;}
.y1af{bottom:768.586359pt;}
.y68{bottom:768.906359pt;}
.ydd{bottom:772.106358pt;}
.y20f{bottom:772.426358pt;}
.yf{bottom:776.586356pt;}
.yf1{bottom:776.906356pt;}
.y149{bottom:780.426354pt;}
.yc9{bottom:784.906353pt;}
.y116{bottom:788.106351pt;}
.y77{bottom:788.426351pt;}
.ye{bottom:791.466350pt;}
.y18a{bottom:792.906350pt;}
.y1e5{bottom:796.106348pt;}
.y67{bottom:796.426348pt;}
.y3b{bottom:799.786347pt;}
.y15b{bottom:800.106347pt;}
.y186{bottom:804.106345pt;}
.y10f{bottom:804.426345pt;}
.ydc{bottom:808.106343pt;}
.yd{bottom:809.866343pt;}
.yc8{bottom:812.426342pt;}
.y243{bottom:815.786340pt;}
.y76{bottom:816.106340pt;}
.y189{bottom:820.426338pt;}
.y138{bottom:823.786337pt;}
.y66{bottom:824.106337pt;}
.yc{bottom:828.106335pt;}
.y21e{bottom:831.786334pt;}
.y10e{bottom:832.106334pt;}
.y3a{bottom:835.306333pt;}
.ydb{bottom:835.626332pt;}
.y142{bottom:839.786331pt;}
.yc7{bottom:840.106331pt;}
.y75{bottom:843.626329pt;}
.yb{bottom:847.946327pt;}
.y121{bottom:848.106327pt;}
.y65{bottom:851.626326pt;}
.ya1{bottom:859.626323pt;}
.yc6{bottom:867.626320pt;}
.ya{bottom:867.946319pt;}
.y39{bottom:870.986318pt;}
.y15a{bottom:871.306318pt;}
.y102{bottom:875.626316pt;}
.y64{bottom:879.306315pt;}
.yb3{bottom:886.986312pt;}
.y7d{bottom:887.306312pt;}
.y9{bottom:887.786312pt;}
.y124{bottom:894.986309pt;}
.yc5{bottom:895.306309pt;}
.y101{bottom:903.306305pt;}
.y38{bottom:906.506304pt;}
.y74{bottom:906.826304pt;}
.y8{bottom:907.786304pt;}
.y244{bottom:914.506301pt;}
.y63{bottom:914.826301pt;}
.y146{bottom:922.506298pt;}
.ya0{bottom:922.826298pt;}
.y7{bottom:927.786296pt;}
.yf0{bottom:930.826294pt;}
.y37{bottom:942.186290pt;}
.y62{bottom:942.506290pt;}
.y6{bottom:947.626288pt;}
.y181{bottom:950.186287pt;}
.yec{bottom:950.506286pt;}
.y9f{bottom:958.506283pt;}
.y5{bottom:967.626280pt;}
.y36{bottom:977.706276pt;}
.y61{bottom:978.026275pt;}
.y9e{bottom:986.026272pt;}
.y4{bottom:986.666272pt;}
.y3{bottom:1003.786265pt;}
.y35{bottom:1013.386261pt;}
.y9d{bottom:1013.706261pt;}
.y2{bottom:1042.666250pt;}
.y1{bottom:1061.066242pt;}
.hc{height:27.516149pt;}
.hd{height:35.378423pt;}
.h3{height:42.117171pt;}
.h8{height:43.374983pt;}
.h5{height:50.022480pt;}
.h1{height:56.156228pt;}
.ha{height:56.157828pt;}
.hb{height:56.312477pt;}
.h9{height:56.843727pt;}
.h4{height:61.391225pt;}
.h7{height:70.195284pt;}
.h2{height:93.780900pt;}
.h6{height:118.234953pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.439942pt;}
.x24{left:121.439951pt;}
.x3{left:122.399951pt;}
.x25{left:124.799950pt;}
.x5{left:147.679941pt;}
.x19{left:160.639314pt;}
.x10{left:162.240081pt;}
.x27{left:166.399850pt;}
.x14{left:169.119932pt;}
.x1d{left:170.079728pt;}
.x15{left:179.840179pt;}
.x1b{left:208.637808pt;}
.x1e{left:209.920024pt;}
.x11{left:211.200076pt;}
.x28{left:213.599928pt;}
.x1c{left:217.438795pt;}
.x6{left:247.199901pt;}
.x7{left:253.279899pt;}
.x1f{left:255.039898pt;}
.xe{left:268.479893pt;}
.x20{left:309.759876pt;}
.x21{left:313.119875pt;}
.xf{left:334.399802pt;}
.x18{left:358.239327pt;}
.x13{left:363.359453pt;}
.x4{left:396.799841pt;}
.x8{left:403.519839pt;}
.x9{left:409.599836pt;}
.x12{left:410.559836pt;}
.x17{left:482.079807pt;}
.xa{left:519.359792pt;}
.xb{left:525.439790pt;}
.xc{left:554.559778pt;}
.xd{left:560.639776pt;}
.x22{left:572.159771pt;}
.x23{left:575.519770pt;}
.x16{left:613.919754pt;}
.x26{left:656.319737pt;}
.x1a{left:664.319734pt;}
.x1{left:672.319731pt;}
}




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