
    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_f6bec3bd9d7c31926b2e9be6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_510efa54a4aa6230f6f69a78.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_39a347b2e4c39d942bd044f6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_ad30b7281519e3d0852b8198.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.239258;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_0cc411bcdfaf1cbdb2afb3ec.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.856934;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_e3e0a53c89282ccd4fecbbe9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_58d0f191f9bef26992d5e404.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.575000;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.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.159910px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.285124px;}
.lsd{letter-spacing:0.286276px;}
.lsb{letter-spacing:0.286282px;}
.lsc{letter-spacing:17.995229px;}
.lse{letter-spacing:17.995235px;}
.lsf{letter-spacing:17.995319px;}
.ls10{letter-spacing:20.372973px;}
.ls3{letter-spacing:23.252720px;}
.ls7{letter-spacing:32.610496px;}
.ls6{letter-spacing:39.811401px;}
.ls2{letter-spacing:45.222721px;}
.ls9{letter-spacing:56.370129px;}
.ls8{letter-spacing:56.370135px;}
.ls5{letter-spacing:74.943630px;}
.lsa{letter-spacing:85.959630px;}
.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;}
}
.ws3{word-spacing:-27.174240px;}
.ws1{word-spacing:-21.641760px;}
.ws28{word-spacing:-19.038240px;}
.ws1b{word-spacing:-16.488000px;}
.ws7{word-spacing:-16.272000px;}
.ws19{word-spacing:-14.970240px;}
.ws23{word-spacing:-13.505760px;}
.ws2c{word-spacing:-0.639820px;}
.ws2d{word-spacing:-0.639814px;}
.ws2e{word-spacing:-0.639730px;}
.ws3f{word-spacing:-0.218710px;}
.ws40{word-spacing:-0.218704px;}
.ws12{word-spacing:-0.200425px;}
.ws31{word-spacing:-0.080746px;}
.ws32{word-spacing:-0.080698px;}
.ws30{word-spacing:-0.080692px;}
.ws0{word-spacing:0.000000px;}
.ws14{word-spacing:0.013590px;}
.ws41{word-spacing:0.057841px;}
.ws11{word-spacing:0.347491px;}
.ws1a{word-spacing:0.375613px;}
.wse{word-spacing:0.584586px;}
.ws3c{word-spacing:0.624448px;}
.ws18{word-spacing:1.000354px;}
.ws36{word-spacing:1.353879px;}
.ws38{word-spacing:1.353885px;}
.ws3a{word-spacing:1.353969px;}
.ws37{word-spacing:1.507815px;}
.ws3e{word-spacing:2.010211px;}
.wsc{word-spacing:2.024504px;}
.ws39{word-spacing:2.282215px;}
.ws35{word-spacing:2.282257px;}
.ws34{word-spacing:2.639543px;}
.ws13{word-spacing:3.227292px;}
.ws1d{word-spacing:4.015908px;}
.ws27{word-spacing:6.895661px;}
.ws26{word-spacing:6.895703px;}
.ws25{word-spacing:6.895709px;}
.ws2{word-spacing:9.980506px;}
.ws33{word-spacing:10.711590px;}
.wsf{word-spacing:12.213943px;}
.ws9{word-spacing:12.217799px;}
.ws15{word-spacing:12.221655px;}
.ws16{word-spacing:12.232006px;}
.wsd{word-spacing:12.242170px;}
.wsa{word-spacing:12.243574px;}
.ws10{word-spacing:12.244803px;}
.wsb{word-spacing:12.251292px;}
.ws8{word-spacing:12.949467px;}
.ws5{word-spacing:12.950691px;}
.ws6{word-spacing:12.959632px;}
.ws3d{word-spacing:13.529354px;}
.ws1e{word-spacing:13.734954px;}
.ws2b{word-spacing:15.534961px;}
.ws2a{word-spacing:15.535009px;}
.ws20{word-spacing:16.254918px;}
.ws1f{word-spacing:16.254924px;}
.ws29{word-spacing:16.543428px;}
.ws1c{word-spacing:16.961387px;}
.ws24{word-spacing:20.414679px;}
.ws21{word-spacing:23.591300px;}
.ws22{word-spacing:23.591306px;}
.ws3b{word-spacing:23.608573px;}
.ws17{word-spacing:29.368121px;}
.ws4{word-spacing:32.967830px;}
.ws2f{word-spacing:65.867860px;}
._2{margin-left:-1.263600px;}
._0{width:1.198800px;}
._1a{width:2.222722px;}
._8{width:3.234918px;}
._f{width:4.350282px;}
._e{width:5.400000px;}
._12{width:6.530400px;}
._13{width:7.664400px;}
._7{width:9.111600px;}
._6{width:10.512000px;}
._15{width:11.664000px;}
._5{width:13.248000px;}
._4{width:14.976000px;}
._25{width:16.364316px;}
._3{width:17.527462px;}
._11{width:18.648000px;}
._10{width:19.872000px;}
._27{width:20.952000px;}
._14{width:21.960000px;}
._d{width:23.112000px;}
._b{width:24.408000px;}
._c{width:25.416000px;}
._9{width:26.977353px;}
._1c{width:28.336376px;}
._1d{width:29.448000px;}
._26{width:30.656824px;}
._a{width:31.779520px;}
._1b{width:32.904000px;}
._2d{width:34.510212px;}
._1f{width:35.740494px;}
._1e{width:36.906512px;}
._22{width:38.298818px;}
._1{width:39.317182px;}
._2a{width:40.396472px;}
._18{width:41.472000px;}
._16{width:42.768000px;}
._21{width:43.851046px;}
._19{width:45.136158px;}
._28{width:46.902619px;}
._2b{width:48.570916px;}
._2f{width:50.334882px;}
._20{width:52.695668px;}
._24{width:53.953859px;}
._23{width:56.376704px;}
._2e{width:57.794286px;}
._17{width:59.573576px;}
._2c{width:61.915304px;}
._30{width:64.296000px;}
._29{width:73.800000px;}
._31{width:82.331115px;}
.fc2{color:transparent;}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(33,33,33);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(148,54,52);}
.fs9{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.fs6{font-size:120.240000px;}
.fs3{font-size:167.760000px;}
.fs0{font-size:239.760000px;}
.y9{bottom:-1225.262824px;}
.y1ca{bottom:-384.842853px;}
.y1d1{bottom:-383.582812px;}
.y1c9{bottom:-360.182848px;}
.y1d0{bottom:-358.922809px;}
.y1c8{bottom:-335.342853px;}
.y1cf{bottom:-334.262805px;}
.y191{bottom:-317.342853px;}
.y190{bottom:-289.982868px;}
.y18f{bottom:-262.442889px;}
.y18e{bottom:-235.082812px;}
.y18d{bottom:-207.542835px;}
.y18c{bottom:-180.002856px;}
.y0{bottom:0.000000px;}
.y13{bottom:0.000029px;}
.ya4{bottom:1.800003px;}
.y9d{bottom:3.599993px;}
.ya9{bottom:4.500008px;}
.y80{bottom:4.860000px;}
.y7d{bottom:4.860003px;}
.y84{bottom:4.860006px;}
.y82{bottom:4.860008px;}
.y87{bottom:5.040003px;}
.y9f{bottom:5.760013px;}
.y1ce{bottom:9.359990px;}
.y1c7{bottom:10.080030px;}
.y7b{bottom:11.340011px;}
.ya8{bottom:24.660011px;}
.y7{bottom:25.379997px;}
.y9c{bottom:25.560015px;}
.y1cd{bottom:34.019994px;}
.y1c6{bottom:34.740033px;}
.ya3{bottom:36.720001px;}
.y12{bottom:37.437175px;}
.y14{bottom:37.439999px;}
.ya7{bottom:44.819991px;}
.y1cc{bottom:58.859990px;}
.y1c5{bottom:59.400038px;}
.y198{bottom:67.319990px;}
.ya2{bottom:72.000008px;}
.ya6{bottom:75.059997px;}
.y6{bottom:83.879997px;}
.y197{bottom:94.679975px;}
.ya1{bottom:102.599998px;}
.y196{bottom:122.219954px;}
.y4{bottom:129.059990px;}
.yf7{bottom:132.297168px;}
.y1a3{bottom:132.479994px;}
.y225{bottom:135.539996px;}
.y1c3{bottom:135.717179px;}
.y14a{bottom:135.720000px;}
.yc6{bottom:136.079995px;}
.y64{bottom:142.740000px;}
.y18b{bottom:143.457173px;}
.ye3{bottom:145.079995px;}
.y16b{bottom:148.679998px;}
.y195{bottom:149.580030px;}
.y10f{bottom:151.557174px;}
.y1e6{bottom:156.599997px;}
.y179{bottom:157.497174px;}
.y1a2{bottom:159.839991px;}
.y12d{bottom:164.159999px;}
.yf6{bottom:165.237168px;}
.y2f{bottom:166.320001px;}
.y1b2{bottom:167.577176px;}
.y219{bottom:168.479994px;}
.y1c2{bottom:168.657177px;}
.y149{bottom:168.659999px;}
.yc5{bottom:168.839991px;}
.y103{bottom:169.019995px;}
.y88{bottom:170.819991px;}
.y9a{bottom:173.879991px;}
.y136{bottom:174.237168px;}
.y63{bottom:175.679998px;}
.y18a{bottom:176.397171px;}
.y194{bottom:177.120007px;}
.ye2{bottom:178.199998px;}
.y1b8{bottom:178.559995px;}
.y48{bottom:179.459994px;}
.y16a{bottom:181.619997px;}
.y10e{bottom:184.497174px;}
.y11e{bottom:185.937173px;}
.y22b{bottom:186.479994px;}
.y1e5{bottom:189.539996px;}
.y178{bottom:190.617175px;}
.y5{bottom:194.937173px;}
.y86{bottom:195.120024px;}
.y12c{bottom:197.099985px;}
.yf5{bottom:198.177177px;}
.y2e{bottom:199.259989px;}
.y99{bottom:201.419992px;}
.y1c1{bottom:201.597176px;}
.y224{bottom:201.599985px;}
.y135{bottom:201.777168px;}
.yc4{bottom:201.780001px;}
.y102{bottom:201.959994px;}
.y3{bottom:202.320029px;}
.y193{bottom:204.659987px;}
.y62{bottom:208.619997px;}
.y189{bottom:209.337182px;}
.ye1{bottom:211.139986px;}
.y1b7{bottom:211.499994px;}
.y11d{bottom:213.477172px;}
.y169{bottom:214.559985px;}
.y10d{bottom:217.617165px;}
.y85{bottom:218.340024px;}
.y22a{bottom:219.419992px;}
.y47{bottom:219.780001px;}
.y1e4{bottom:222.659999px;}
.y177{bottom:223.557174px;}
.y134{bottom:229.317170px;}
.y12b{bottom:230.039996px;}
.yf4{bottom:231.117165px;}
.ya5{bottom:233.280023px;}
.ya0{bottom:233.820023px;}
.y218{bottom:234.360003px;}
.y1c0{bottom:234.537164px;}
.yc3{bottom:234.719988px;}
.y101{bottom:234.900003px;}
.y19d{bottom:236.159999px;}
.y152{bottom:237.777168px;}
.y83{bottom:241.380022px;}
.y61{bottom:241.559985px;}
.ye0{bottom:244.079996px;}
.y204{bottom:244.440005px;}
.y1b6{bottom:244.619997px;}
.y168{bottom:247.499994px;}
.y1f4{bottom:250.379991px;}
.y10c{bottom:250.557174px;}
.y223{bottom:252.360003px;}
.y148{bottom:252.539996px;}
.y1e3{bottom:255.599985px;}
.y176{bottom:256.497162px;}
.y133{bottom:256.677177px;}
.y188{bottom:257.217179px;}
.y46{bottom:259.019984px;}
.y12a{bottom:262.979982px;}
.y19c{bottom:263.519984px;}
.yf3{bottom:264.057174px;}
.y81{bottom:264.420022px;}
.y151{bottom:265.137177px;}
.yc2{bottom:267.659999px;}
.y100{bottom:267.839991px;}
.y60{bottom:274.499994px;}
.y2{bottom:275.579978px;}
.ydf{bottom:277.019984px;}
.y203{bottom:277.379991px;}
.y1b5{bottom:277.559985px;}
.y167{bottom:280.440005px;}
.y1f3{bottom:283.499994px;}
.y217{bottom:285.299989px;}
.y1bf{bottom:285.477172px;}
.y147{bottom:285.479982px;}
.y7f{bottom:287.640022px;}
.y1e2{bottom:288.539996px;}
.y175{bottom:289.437173px;}
.y187{bottom:290.337182px;}
.y2d{bottom:292.499994px;}
.y150{bottom:292.677177px;}
.y129{bottom:296.099985px;}
.y45{bottom:296.639987px;}
.y10b{bottom:298.437173px;}
.yff{bottom:300.780002px;}
.y229{bottom:303.299989px;}
.y5f{bottom:307.439982px;}
.yde{bottom:309.959994px;}
.y1b4{bottom:310.499994px;}
.y7e{bottom:310.680021px;}
.y166{bottom:313.379991px;}
.yc1{bottom:314.459994px;}
.yf2{bottom:314.997162px;}
.y1f2{bottom:316.439982px;}
.y216{bottom:318.240000px;}
.y1be{bottom:318.417161px;}
.y146{bottom:318.419993px;}
.y14f{bottom:320.037164px;}
.y1e1{bottom:321.479982px;}
.y174{bottom:322.377159px;}
.y186{bottom:323.277168px;}
.y2c{bottom:325.439982px;}
.y44{bottom:326.879991px;}
.y202{bottom:328.320002px;}
.y128{bottom:329.039996px;}
.y10a{bottom:331.557174px;}
.y7c{bottom:333.720021px;}
.yfe{bottom:333.900003px;}
.y222{bottom:336.240000px;}
.y5e{bottom:340.379991px;}
.yc0{bottom:341.999994px;}
.ydd{bottom:342.899981px;}
.y165{bottom:346.320002px;}
.y14e{bottom:347.577163px;}
.y145{bottom:351.360003px;}
.y1e0{bottom:354.419993px;}
.y173{bottom:355.317170px;}
.y185{bottom:356.217179px;}
.y7a{bottom:356.940020px;}
.y2b{bottom:358.379991px;}
.y201{bottom:361.259990px;}
.yf1{bottom:363.417161px;}
.y1f1{bottom:364.320002px;}
.y43{bottom:364.679987px;}
.y1bd{bottom:366.837157px;}
.yfd{bottom:366.839991px;}
.y215{bottom:369.360003px;}
.ybf{bottom:369.539996px;}
.y5d{bottom:373.320002px;}
.y14d{bottom:375.117165px;}
.ydc{bottom:375.839991px;}
.y109{bottom:376.737168px;}
.y127{bottom:376.919993px;}
.y164{bottom:379.259990px;}
.y9e{bottom:382.680020px;}
.y1df{bottom:387.360003px;}
.y172{bottom:388.257156px;}
.y184{bottom:389.157165px;}
.yf0{bottom:390.957184px;}
.y2a{bottom:391.319979px;}
.y200{bottom:394.199998px;}
.y1bc{bottom:394.377181px;}
.y1f0{bottom:397.260012px;}
.y144{bottom:399.419970px;}
.y42{bottom:402.299989px;}
.y108{bottom:404.277145px;}
.y5c{bottom:406.260012px;}
.ydb{bottom:408.780002px;}
.y126{bottom:409.860003px;}
.y163{bottom:412.379991px;}
.yfc{bottom:414.719988px;}
.y11{bottom:416.157165px;}
.yef{bottom:418.317169px;}
.y1de{bottom:420.299989px;}
.y171{bottom:421.197189px;}
.y1bb{bottom:421.737168px;}
.y183{bottom:422.097153px;}
.y29{bottom:424.260012px;}
.y1ef{bottom:430.199998px;}
.y107{bottom:431.637177px;}
.y143{bottom:432.360003px;}
.y41{bottom:440.100007px;}
.yda{bottom:441.719988px;}
.y125{bottom:442.799989px;}
.y11c{bottom:444.237168px;}
.y1ff{bottom:445.139986px;}
.y162{bottom:445.319979px;}
.yee{bottom:445.857147px;}
.y1ba{bottom:449.277145px;}
.y79{bottom:450.360003px;}
.y214{bottom:453.239978px;}
.y5b{bottom:454.319979px;}
.y182{bottom:455.037186px;}
.y28{bottom:457.379991px;}
.y106{bottom:459.177154px;}
.yfb{bottom:460.079973px;}
.y1ee{bottom:463.139986px;}
.y10{bottom:464.037186px;}
.y142{bottom:465.299989px;}
.y9b{bottom:466.380018px;}
.y1dd{bottom:468.360003px;}
.y170{bottom:472.137177px;}
.yd9{bottom:474.659974px;}
.y124{bottom:475.739978px;}
.y1b9{bottom:476.637177px;}
.y11b{bottom:477.357147px;}
.y40{bottom:477.719988px;}
.y161{bottom:478.260012px;}
.y78{bottom:483.299989px;}
.y213{bottom:486.180010px;}
.y5a{bottom:487.259966px;}
.yfa{bottom:487.619997px;}
.y181{bottom:487.977172px;}
.y1b3{bottom:490.319979px;}
.y141{bottom:498.239978px;}
.y1dc{bottom:501.299989px;}
.y221{bottom:504.180010px;}
.y27{bottom:505.259966px;}
.yd8{bottom:507.780002px;}
.y123{bottom:508.860003px;}
.y11a{bottom:510.297180px;}
.y1ed{bottom:511.199998px;}
.yf{bottom:512.097153px;}
.yf9{bottom:514.979982px;}
.y3f{bottom:515.520006px;}
.y77{bottom:516.239978px;}
.y59{bottom:520.199998px;}
.y16f{bottom:520.557174px;}
.y180{bottom:520.917160px;}
.y160{bottom:526.139986px;}
.y140{bottom:531.180010px;}
.y1b1{bottom:534.237168px;}
.y1db{bottom:534.239978px;}
.y212{bottom:537.119997px;}
.y26{bottom:538.199998px;}
.yd7{bottom:540.719988px;}
.y122{bottom:541.799989px;}
.yf8{bottom:542.520006px;}
.y119{bottom:543.237168px;}
.y1ec{bottom:544.139986px;}
.y16e{bottom:548.097153px;}
.y76{bottom:549.180010px;}
.y3e{bottom:553.139986px;}
.y17f{bottom:553.857147px;}
.y15f{bottom:559.079973px;}
.ye{bottom:559.977172px;}
.y1fe{bottom:562.139986px;}
.y13f{bottom:564.119997px;}
.y98{bottom:565.739978px;}
.y1b0{bottom:567.177154px;}
.y1da{bottom:567.179964px;}
.y211{bottom:570.059985px;}
.y25{bottom:571.139986px;}
.y1a1{bottom:573.659974px;}
.y121{bottom:574.739978px;}
.y16d{bottom:575.457184px;}
.y118{bottom:576.177154px;}
.y1eb{bottom:577.079973px;}
.y75{bottom:582.119997px;}
.y58{bottom:586.079973px;}
.y220{bottom:588.059985px;}
.y3d{bottom:590.940004px;}
.yd6{bottom:593.100007px;}
.y1fd{bottom:595.079973px;}
.y13e{bottom:597.239978px;}
.y97{bottom:598.679964px;}
.y1af{bottom:600.117141px;}
.y1d9{bottom:600.119997px;}
.y228{bottom:602.999972px;}
.y24{bottom:604.079973px;}
.y17e{bottom:604.437148px;}
.y1a0{bottom:606.600007px;}
.y15e{bottom:607.139986px;}
.yd{bottom:608.037186px;}
.y117{bottom:609.117141px;}
.y74{bottom:615.059985px;}
.y57{bottom:619.020006px;}
.y210{bottom:620.999972px;}
.y120{bottom:622.619997px;}
.y1ea{bottom:625.139986px;}
.y3c{bottom:628.559985px;}
.y13d{bottom:630.179964px;}
.y96{bottom:631.619997px;}
.y1ae{bottom:633.057174px;}
.y23{bottom:637.020006px;}
.y19f{bottom:639.539995px;}
.y15d{bottom:640.079973px;}
.yd5{bottom:641.159974px;}
.y116{bottom:642.057174px;}
.y1fc{bottom:646.020006px;}
.y132{bottom:647.997162px;}
.y73{bottom:647.999972px;}
.y20f{bottom:653.940004px;}
.yc{bottom:655.917160px;}
.y1e9{bottom:658.079973px;}
.y17d{bottom:662.757156px;}
.y95{bottom:664.559985px;}
.y1ad{bottom:665.997162px;}
.y56{bottom:667.079973px;}
.y3b{bottom:669.059985px;}
.y22{bottom:670.139986px;}
.yb8{bottom:671.039995px;}
.y21f{bottom:671.940004px;}
.y15c{bottom:673.020006px;}
.yd4{bottom:674.099963px;}
.y1{bottom:674.457162px;}
.y115{bottom:674.997162px;}
.y13c{bottom:678.059985px;}
.y1fb{bottom:678.959994px;}
.y131{bottom:681.117141px;}
.y72{bottom:681.119997px;}
.y227{bottom:686.879991px;}
.y19e{bottom:690.119997px;}
.y17c{bottom:695.877181px;}
.y94{bottom:697.499972px;}
.y11f{bottom:698.399980px;}
.y1ac{bottom:698.937148px;}
.y55{bottom:700.020006px;}
.y21{bottom:703.079973px;}
.yb7{bottom:703.979982px;}
.y20e{bottom:704.879991px;}
.y15b{bottom:705.959994px;}
.yb{bottom:706.497162px;}
.yd3{bottom:707.039995px;}
.y114{bottom:707.937148px;}
.y3a{bottom:710.999972px;}
.y130{bottom:714.057174px;}
.y71{bottom:714.059985px;}
.y19b{bottom:728.099963px;}
.y17b{bottom:728.817169px;}
.y1fa{bottom:729.899980px;}
.y93{bottom:730.440004px;}
.y54{bottom:732.959994px;}
.y20{bottom:736.019961px;}
.yb6{bottom:737.099963px;}
.y20d{bottom:737.999972px;}
.y15a{bottom:738.899980px;}
.yd2{bottom:739.979982px;}
.y113{bottom:740.877181px;}
.y235{bottom:741.239978px;}
.y13b{bottom:743.940004px;}
.y12f{bottom:746.997162px;}
.y70{bottom:746.999972px;}
.y39{bottom:751.499972px;}
.y21e{bottom:755.999972px;}
.y19a{bottom:761.039995px;}
.y17a{bottom:761.757156px;}
.y1f9{bottom:762.839969px;}
.y92{bottom:763.379991px;}
.y53{bottom:765.899980px;}
.y1f{bottom:768.959994px;}
.yb5{bottom:770.039949px;}
.y20c{bottom:770.940004px;}
.y159{bottom:771.839968px;}
.yd1{bottom:772.920015px;}
.y112{bottom:773.997162px;}
.y234{bottom:774.179964px;}
.y14c{bottom:776.877137px;}
.y13a{bottom:776.879946px;}
.y12e{bottom:779.937195px;}
.y6f{bottom:779.940004px;}
.y21d{bottom:788.940004px;}
.y38{bottom:791.999972px;}
.y199{bottom:793.979982px;}
.y1ab{bottom:794.877137px;}
.y1f8{bottom:795.780001px;}
.ybe{bottom:796.319979px;}
.y91{bottom:796.499972px;}
.y52{bottom:798.839968px;}
.y1e{bottom:801.900027px;}
.y158{bottom:804.780001px;}
.yd0{bottom:805.859957px;}
.y111{bottom:806.937195px;}
.y14b{bottom:809.997162px;}
.y139{bottom:809.999972px;}
.y1d8{bottom:812.879946px;}
.yb4{bottom:817.920015px;}
.y1e8{bottom:819.900027px;}
.y20b{bottom:821.879946px;}
.y233{bottom:825.119997px;}
.y105{bottom:827.817169px;}
.y6e{bottom:827.819979px;}
.y90{bottom:829.440004px;}
.y51{bottom:831.780001px;}
.y37{bottom:832.499972px;}
.y1d{bottom:834.839968px;}
.y157{bottom:837.719942px;}
.ycf{bottom:838.799990px;}
.yed{bottom:842.937195px;}
.y138{bottom:842.940004px;}
.ya{bottom:845.637177px;}
.y1d7{bottom:845.819979px;}
.y1f7{bottom:846.719942px;}
.yb3{bottom:850.859957px;}
.y1e7{bottom:852.839968px;}
.y20a{bottom:854.819979px;}
.y232{bottom:858.059939px;}
.y104{bottom:860.757202px;}
.y6d{bottom:860.760012px;}
.y110{bottom:860.937195px;}
.y8f{bottom:862.379946px;}
.yad{bottom:867.780001px;}
.y1cb{bottom:868.497157px;}
.y1c4{bottom:869.037157px;}
.y36{bottom:871.559939px;}
.yce{bottom:871.740023px;}
.y21c{bottom:872.819979px;}
.yec{bottom:875.877137px;}
.y137{bottom:875.879946px;}
.y192{bottom:878.037157px;}
.y1d6{bottom:878.760012px;}
.y50{bottom:879.839968px;}
.y1c{bottom:882.719942px;}
.y156{bottom:885.780001px;}
.y209{bottom:887.760012px;}
.y1aa{bottom:893.877137px;}
.y6c{bottom:893.879946px;}
.ybd{bottom:895.319979px;}
.yb2{bottom:898.920015px;}
.yac{bottom:900.719942px;}
.ycd{bottom:904.679964px;}
.y21b{bottom:905.760012px;}
.yeb{bottom:908.817169px;}
.y8e{bottom:908.819979px;}
.y231{bottom:908.999972px;}
.y35{bottom:909.359957px;}
.y1d5{bottom:911.699954px;}
.y4f{bottom:912.780001px;}
.y1b{bottom:915.839968px;}
.y155{bottom:918.719942px;}
.y1a9{bottom:926.817169px;}
.y6b{bottom:926.819979px;}
.ybc{bottom:928.260012px;}
.yb1{bottom:931.859957px;}
.yab{bottom:933.659974px;}
.ycc{bottom:937.799990px;}
.y208{bottom:938.699954px;}
.yea{bottom:941.757111px;}
.y8d{bottom:941.760012px;}
.y230{bottom:942.119997px;}
.y1d4{bottom:944.639986px;}
.y4e{bottom:945.719942px;}
.y34{bottom:948.420015px;}
.y1a{bottom:948.780001px;}
.y1a8{bottom:959.757111px;}
.y6a{bottom:959.760012px;}
.ybb{bottom:961.199954px;}
.y1f6{bottom:963.719942px;}
.yb0{bottom:964.799990px;}
.yaa{bottom:966.600007px;}
.y154{bottom:966.780001px;}
.ycb{bottom:970.740023px;}
.y207{bottom:971.639986px;}
.ye9{bottom:974.697144px;}
.y8c{bottom:974.699954px;}
.y22f{bottom:975.059939px;}
.y4d{bottom:978.659974px;}
.y19{bottom:981.719942px;}
.y33{bottom:988.920015px;}
.y21a{bottom:989.639986px;}
.y1a7{bottom:992.697144px;}
.y69{bottom:992.699954px;}
.yba{bottom:994.139986px;}
.y1f5{bottom:996.659974px;}
.yaf{bottom:997.740023px;}
.yca{bottom:1003.679964px;}
.ye8{bottom:1007.637177px;}
.y8b{bottom:1007.639986px;}
.y16c{bottom:1007.817169px;}
.y4c{bottom:1011.600007px;}
.y18{bottom:1014.659974px;}
.y206{bottom:1022.580020px;}
.y1a6{bottom:1025.637177px;}
.y68{bottom:1025.639986px;}
.yb9{bottom:1027.080019px;}
.y32{bottom:1029.239931px;}
.y22e{bottom:1029.600007px;}
.yae{bottom:1031.760012px;}
.yc9{bottom:1036.619997px;}
.ye7{bottom:1040.577119px;}
.y8a{bottom:1040.580019px;}
.y4b{bottom:1044.539949px;}
.y17{bottom:1047.600007px;}
.y22d{bottom:1051.559939px;}
.y205{bottom:1055.519961px;}
.y1a5{bottom:1058.577119px;}
.y67{bottom:1058.580019px;}
.y31{bottom:1069.739931px;}
.ye6{bottom:1073.517152px;}
.y89{bottom:1073.519961px;}
.y4a{bottom:1077.659974px;}
.y16{bottom:1080.539949px;}
.yc8{bottom:1084.499971px;}
.y226{bottom:1088.459994px;}
.y1a4{bottom:1091.517152px;}
.y1d3{bottom:1091.519961px;}
.y153{bottom:1098.179964px;}
.ye5{bottom:1106.457185px;}
.y66{bottom:1106.459994px;}
.y22c{bottom:1117.619997px;}
.y30{bottom:1128.239931px;}
.y15{bottom:1133.819979px;}
.y49{bottom:1133.999971px;}
.yc7{bottom:1136.699953px;}
.y1d2{bottom:1139.399936px;}
.ye4{bottom:1139.577119px;}
.y65{bottom:1139.580019px;}
.y8{bottom:1262.700000px;}
.h6{height:-1208.162824px;}
.h27{height:-322.562844px;}
.h29{height:-321.482844px;}
.h21{height:-165.782848px;}
.h16{height:21.959998px;}
.h15{height:21.960000px;}
.h17{height:22.140000px;}
.h1b{height:22.860000px;}
.h14{height:28.440000px;}
.h26{height:38.759766px;}
.h1a{height:42.659999px;}
.h19{height:42.894141px;}
.h25{height:44.534180px;}
.h13{height:47.545313px;}
.h1f{height:48.937500px;}
.h12{height:48.972656px;}
.h18{height:49.284492px;}
.h7{height:51.679688px;}
.h2a{height:53.839598px;}
.hb{height:54.537176px;}
.hc{height:54.539998px;}
.h11{height:54.628594px;}
.hf{height:59.378906px;}
.h1e{height:66.691406px;}
.h20{height:69.086250px;}
.ha{height:69.473320px;}
.h28{height:71.639999px;}
.h24{height:72.179999px;}
.h23{height:76.824000px;}
.h5{height:77.519531px;}
.he{height:78.973945px;}
.h1d{height:90.539998px;}
.h10{height:99.162773px;}
.h4{height:109.439997px;}
.h1c{height:128.699997px;}
.h9{height:138.352852px;}
.h3{height:197.731758px;}
.h22{height:218.879994px;}
.h2{height:332.639993px;}
.h8{height:1262.877148px;}
.hd{height:1262.879971px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:-735.456150px;}
.w7{width:-735.302913px;}
.w16{width:-481.322919px;}
.w1a{width:-478.262919px;}
.w1d{width:-210.942587px;}
.wa{width:37.962590px;}
.wc{width:37.979999px;}
.w6{width:57.942589px;}
.w1b{width:67.836165px;}
.w11{width:85.499998px;}
.w1e{width:85.842589px;}
.w18{width:99.162589px;}
.w19{width:111.957067px;}
.w12{width:130.679997px;}
.w3{width:134.637067px;}
.w15{width:154.439995px;}
.w13{width:156.059997px;}
.w17{width:163.979997px;}
.w10{width:165.419997px;}
.w1c{width:167.039997px;}
.w14{width:167.399997px;}
.we{width:190.259995px;}
.w5{width:191.862587px;}
.wb{width:247.500015px;}
.w2{width:259.197065px;}
.w8{width:322.917063px;}
.w4{width:322.919993px;}
.wf{width:424.259991px;}
.wd{width:892.979981px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x52{left:-517.697396px;}
.x11{left:-513.377400px;}
.x53{left:-496.457402px;}
.x55{left:-492.137394px;}
.x62{left:-487.277399px;}
.x5a{left:-475.217397px;}
.x58{left:-466.757397px;}
.xf{left:-455.597394px;}
.x28{left:-417.437389px;}
.x29{left:-385.397389px;}
.x26{left:-383.597394px;}
.x12{left:-379.997403px;}
.x2d{left:-332.657406px;}
.x13{left:-320.237409px;}
.x2b{left:-318.797399px;}
.x2a{left:-304.577405px;}
.x27{left:-303.317411px;}
.x2c{left:-299.717397px;}
.x10{left:-210.437414px;}
.x50{left:-194.963823px;}
.xb{left:-190.643827px;}
.x51{left:-173.723829px;}
.x54{left:-169.403833px;}
.x60{left:-164.543826px;}
.x63{left:-156.077427px;}
.x59{left:-152.483824px;}
.x57{left:-144.023824px;}
.x9{left:-132.863833px;}
.x61{left:-100.823832px;}
.x20{left:-94.703829px;}
.x21{left:-62.663829px;}
.x1e{left:-60.863833px;}
.xc{left:-57.263842px;}
.x25{left:-9.923823px;}
.x0{left:0.000000px;}
.xd{left:2.496176px;}
.x23{left:3.936162px;}
.x4f{left:8.819990px;}
.x48{left:10.799979px;}
.x15{left:13.319989px;}
.x22{left:18.156156px;}
.x1f{left:19.416174px;}
.x24{left:23.016165px;}
.x3a{left:28.079990px;}
.x45{left:41.039996px;}
.x34{left:50.399995px;}
.x3d{left:52.919995px;}
.x38{left:60.839984px;}
.x3c{left:62.279992px;}
.x1{left:63.722928px;}
.x4{left:68.220000px;}
.x39{left:71.460009px;}
.x37{left:73.800004px;}
.x6{left:77.039990px;}
.x3f{left:79.739992px;}
.xa{left:112.296171px;}
.x36{left:115.560000px;}
.x2{left:125.999996px;}
.x2e{left:127.620003px;}
.x5c{left:131.040001px;}
.x3e{left:134.640002px;}
.x7{left:136.800006px;}
.x33{left:138.779997px;}
.x2f{left:144.179992px;}
.x42{left:149.219994px;}
.x4b{left:153.179997px;}
.x4d{left:154.619991px;}
.x5d{left:158.040001px;}
.x32{left:160.560001px;}
.x3b{left:161.640002px;}
.x30{left:164.339997px;}
.x43{left:170.099991px;}
.x41{left:171.179981px;}
.x4c{left:175.679992px;}
.x40{left:176.939974px;}
.x56{left:178.560002px;}
.x4e{left:181.619991px;}
.x31{left:185.399997px;}
.x5{left:188.282925px;}
.x5e{left:210.962925px;}
.x18{left:227.879997px;}
.x19{left:259.919998px;}
.x16{left:261.719994px;}
.x46{left:264.239994px;}
.x1d{left:312.660005px;}
.x8{left:322.739992px;}
.x4a{left:323.999992px;}
.x1b{left:326.519990px;}
.x35{left:330.119992px;}
.x1a{left:340.739984px;}
.x17{left:342.000000px;}
.x1c{left:345.599991px;}
.x3{left:371.159976px;}
.x44{left:383.399991px;}
.x5f{left:478.442919px;}
.x5b{left:481.502919px;}
.x47{left:568.259988px;}
.x49{left:598.499986px;}
.xe{left:645.479985px;}
.x14{left:735.482913px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.919920pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.253444pt;}
.lsd{letter-spacing:0.254468pt;}
.lsb{letter-spacing:0.254473pt;}
.lsc{letter-spacing:15.995759pt;}
.lse{letter-spacing:15.995765pt;}
.lsf{letter-spacing:15.995839pt;}
.ls10{letter-spacing:18.109309pt;}
.ls3{letter-spacing:20.669084pt;}
.ls7{letter-spacing:28.987107pt;}
.ls6{letter-spacing:35.387912pt;}
.ls2{letter-spacing:40.197975pt;}
.ls9{letter-spacing:50.106782pt;}
.ls8{letter-spacing:50.106787pt;}
.ls5{letter-spacing:66.616560pt;}
.lsa{letter-spacing:76.408560pt;}
.ws3{word-spacing:-24.154880pt;}
.ws1{word-spacing:-19.237120pt;}
.ws28{word-spacing:-16.922880pt;}
.ws1b{word-spacing:-14.656000pt;}
.ws7{word-spacing:-14.464000pt;}
.ws19{word-spacing:-13.306880pt;}
.ws23{word-spacing:-12.005120pt;}
.ws2c{word-spacing:-0.568729pt;}
.ws2d{word-spacing:-0.568723pt;}
.ws2e{word-spacing:-0.568649pt;}
.ws3f{word-spacing:-0.194409pt;}
.ws40{word-spacing:-0.194404pt;}
.ws12{word-spacing:-0.178155pt;}
.ws31{word-spacing:-0.071774pt;}
.ws32{word-spacing:-0.071732pt;}
.ws30{word-spacing:-0.071726pt;}
.ws0{word-spacing:0.000000pt;}
.ws14{word-spacing:0.012080pt;}
.ws41{word-spacing:0.051415pt;}
.ws11{word-spacing:0.308881pt;}
.ws1a{word-spacing:0.333878pt;}
.wse{word-spacing:0.519632pt;}
.ws3c{word-spacing:0.555065pt;}
.ws18{word-spacing:0.889204pt;}
.ws36{word-spacing:1.203448pt;}
.ws38{word-spacing:1.203454pt;}
.ws3a{word-spacing:1.203528pt;}
.ws37{word-spacing:1.340280pt;}
.ws3e{word-spacing:1.786854pt;}
.wsc{word-spacing:1.799560pt;}
.ws39{word-spacing:2.028636pt;}
.ws35{word-spacing:2.028673pt;}
.ws34{word-spacing:2.346260pt;}
.ws13{word-spacing:2.868704pt;}
.ws1d{word-spacing:3.569696pt;}
.ws27{word-spacing:6.129476pt;}
.ws26{word-spacing:6.129514pt;}
.ws25{word-spacing:6.129519pt;}
.ws2{word-spacing:8.871561pt;}
.ws33{word-spacing:9.521413pt;}
.wsf{word-spacing:10.856839pt;}
.ws9{word-spacing:10.860266pt;}
.ws15{word-spacing:10.863694pt;}
.ws16{word-spacing:10.872894pt;}
.wsd{word-spacing:10.881929pt;}
.wsa{word-spacing:10.883177pt;}
.ws10{word-spacing:10.884269pt;}
.wsb{word-spacing:10.890037pt;}
.ws8{word-spacing:11.510638pt;}
.ws5{word-spacing:11.511725pt;}
.ws6{word-spacing:11.519673pt;}
.ws3d{word-spacing:12.026093pt;}
.ws1e{word-spacing:12.208848pt;}
.ws2b{word-spacing:13.808855pt;}
.ws2a{word-spacing:13.808897pt;}
.ws20{word-spacing:14.448816pt;}
.ws1f{word-spacing:14.448821pt;}
.ws29{word-spacing:14.705270pt;}
.ws1c{word-spacing:15.076789pt;}
.ws24{word-spacing:18.146381pt;}
.ws21{word-spacing:20.970044pt;}
.ws22{word-spacing:20.970050pt;}
.ws3b{word-spacing:20.985398pt;}
.ws17{word-spacing:26.104996pt;}
.ws4{word-spacing:29.304737pt;}
.ws2f{word-spacing:58.549209pt;}
._2{margin-left:-1.123200pt;}
._0{width:1.065600pt;}
._1a{width:1.975753pt;}
._8{width:2.875483pt;}
._f{width:3.866917pt;}
._e{width:4.800000pt;}
._12{width:5.804800pt;}
._13{width:6.812800pt;}
._7{width:8.099200pt;}
._6{width:9.344000pt;}
._15{width:10.368000pt;}
._5{width:11.776000pt;}
._4{width:13.312000pt;}
._25{width:14.546058pt;}
._3{width:15.579966pt;}
._11{width:16.576000pt;}
._10{width:17.664000pt;}
._27{width:18.624000pt;}
._14{width:19.520000pt;}
._d{width:20.544000pt;}
._b{width:21.696000pt;}
._c{width:22.592000pt;}
._9{width:23.979869pt;}
._1c{width:25.187890pt;}
._1d{width:26.176000pt;}
._26{width:27.250510pt;}
._a{width:28.248462pt;}
._1b{width:29.248000pt;}
._2d{width:30.675744pt;}
._1f{width:31.769328pt;}
._1e{width:32.805789pt;}
._22{width:34.043394pt;}
._1{width:34.948606pt;}
._2a{width:35.907975pt;}
._18{width:36.864000pt;}
._16{width:38.016000pt;}
._21{width:38.978708pt;}
._19{width:40.121030pt;}
._28{width:41.691217pt;}
._2b{width:43.174148pt;}
._2f{width:44.742117pt;}
._20{width:46.840594pt;}
._24{width:47.958985pt;}
._23{width:50.112626pt;}
._2e{width:51.372699pt;}
._17{width:52.954290pt;}
._2c{width:55.035826pt;}
._30{width:57.152000pt;}
._29{width:65.600000pt;}
._31{width:73.183213pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.fs6{font-size:106.880000pt;}
.fs3{font-size:149.120000pt;}
.fs0{font-size:213.120000pt;}
.y9{bottom:-1089.122511pt;}
.y1ca{bottom:-342.082536pt;}
.y1d1{bottom:-340.962500pt;}
.y1c9{bottom:-320.162532pt;}
.y1d0{bottom:-319.042497pt;}
.y1c8{bottom:-298.082536pt;}
.y1cf{bottom:-297.122493pt;}
.y191{bottom:-282.082536pt;}
.y190{bottom:-257.762549pt;}
.y18f{bottom:-233.282568pt;}
.y18e{bottom:-208.962500pt;}
.y18d{bottom:-184.482520pt;}
.y18c{bottom:-160.002539pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:0.000025pt;}
.ya4{bottom:1.600003pt;}
.y9d{bottom:3.199993pt;}
.ya9{bottom:4.000007pt;}
.y80{bottom:4.320000pt;}
.y7d{bottom:4.320003pt;}
.y84{bottom:4.320005pt;}
.y82{bottom:4.320007pt;}
.y87{bottom:4.480003pt;}
.y9f{bottom:5.120012pt;}
.y1ce{bottom:8.319991pt;}
.y1c7{bottom:8.960027pt;}
.y7b{bottom:10.080009pt;}
.ya8{bottom:21.920009pt;}
.y7{bottom:22.559997pt;}
.y9c{bottom:22.720013pt;}
.y1cd{bottom:30.239995pt;}
.y1c6{bottom:30.880029pt;}
.ya3{bottom:32.640001pt;}
.y12{bottom:33.277489pt;}
.y14{bottom:33.279999pt;}
.ya7{bottom:39.839992pt;}
.y1cc{bottom:52.319991pt;}
.y1c5{bottom:52.800033pt;}
.y198{bottom:59.839991pt;}
.ya2{bottom:64.000007pt;}
.ya6{bottom:66.719997pt;}
.y6{bottom:74.559997pt;}
.y197{bottom:84.159977pt;}
.ya1{bottom:91.199999pt;}
.y196{bottom:108.639959pt;}
.y4{bottom:114.719991pt;}
.yf7{bottom:117.597483pt;}
.y1a3{bottom:117.759995pt;}
.y225{bottom:120.479996pt;}
.y1c3{bottom:120.637492pt;}
.y14a{bottom:120.640000pt;}
.yc6{bottom:120.959996pt;}
.y64{bottom:126.880000pt;}
.y18b{bottom:127.517487pt;}
.ye3{bottom:128.959996pt;}
.y16b{bottom:132.159999pt;}
.y195{bottom:132.960027pt;}
.y10f{bottom:134.717488pt;}
.y1e6{bottom:139.199997pt;}
.y179{bottom:139.997488pt;}
.y1a2{bottom:142.079992pt;}
.y12d{bottom:145.919999pt;}
.yf6{bottom:146.877483pt;}
.y2f{bottom:147.840001pt;}
.y1b2{bottom:148.957489pt;}
.y219{bottom:149.759995pt;}
.y1c2{bottom:149.917491pt;}
.y149{bottom:149.919999pt;}
.yc5{bottom:150.079992pt;}
.y103{bottom:150.239996pt;}
.y88{bottom:151.839992pt;}
.y9a{bottom:154.559992pt;}
.y136{bottom:154.877483pt;}
.y63{bottom:156.159999pt;}
.y18a{bottom:156.797485pt;}
.y194{bottom:157.440007pt;}
.ye2{bottom:158.399999pt;}
.y1b8{bottom:158.719996pt;}
.y48{bottom:159.519995pt;}
.y16a{bottom:161.439997pt;}
.y10e{bottom:163.997488pt;}
.y11e{bottom:165.277487pt;}
.y22b{bottom:165.759995pt;}
.y1e5{bottom:168.479996pt;}
.y178{bottom:169.437489pt;}
.y5{bottom:173.277487pt;}
.y86{bottom:173.440021pt;}
.y12c{bottom:175.199987pt;}
.yf5{bottom:176.157491pt;}
.y2e{bottom:177.119991pt;}
.y99{bottom:179.039993pt;}
.y1c1{bottom:179.197489pt;}
.y224{bottom:179.199987pt;}
.y135{bottom:179.357483pt;}
.yc4{bottom:179.360001pt;}
.y102{bottom:179.519995pt;}
.y3{bottom:179.840025pt;}
.y193{bottom:181.919988pt;}
.y62{bottom:185.439997pt;}
.y189{bottom:186.077495pt;}
.ye1{bottom:187.679988pt;}
.y1b7{bottom:187.999995pt;}
.y11d{bottom:189.757487pt;}
.y169{bottom:190.719987pt;}
.y10d{bottom:193.437480pt;}
.y85{bottom:194.080021pt;}
.y22a{bottom:195.039993pt;}
.y47{bottom:195.360001pt;}
.y1e4{bottom:197.919999pt;}
.y177{bottom:198.717488pt;}
.y134{bottom:203.837484pt;}
.y12b{bottom:204.479996pt;}
.yf4{bottom:205.437480pt;}
.ya5{bottom:207.360020pt;}
.ya0{bottom:207.840020pt;}
.y218{bottom:208.320003pt;}
.y1c0{bottom:208.477479pt;}
.yc3{bottom:208.639989pt;}
.y101{bottom:208.800003pt;}
.y19d{bottom:209.919999pt;}
.y152{bottom:211.357483pt;}
.y83{bottom:214.560020pt;}
.y61{bottom:214.719987pt;}
.ye0{bottom:216.959996pt;}
.y204{bottom:217.280004pt;}
.y1b6{bottom:217.439997pt;}
.y168{bottom:219.999995pt;}
.y1f4{bottom:222.559992pt;}
.y10c{bottom:222.717488pt;}
.y223{bottom:224.320003pt;}
.y148{bottom:224.479996pt;}
.y1e3{bottom:227.199987pt;}
.y176{bottom:227.997477pt;}
.y133{bottom:228.157491pt;}
.y188{bottom:228.637492pt;}
.y46{bottom:230.239985pt;}
.y12a{bottom:233.759984pt;}
.y19c{bottom:234.239985pt;}
.yf3{bottom:234.717488pt;}
.y81{bottom:235.040020pt;}
.y151{bottom:235.677491pt;}
.yc2{bottom:237.919999pt;}
.y100{bottom:238.079992pt;}
.y60{bottom:243.999995pt;}
.y2{bottom:244.959980pt;}
.ydf{bottom:246.239985pt;}
.y203{bottom:246.559992pt;}
.y1b5{bottom:246.719987pt;}
.y167{bottom:249.280004pt;}
.y1f3{bottom:251.999995pt;}
.y217{bottom:253.599991pt;}
.y1bf{bottom:253.757487pt;}
.y147{bottom:253.759984pt;}
.y7f{bottom:255.680020pt;}
.y1e2{bottom:256.479996pt;}
.y175{bottom:257.277487pt;}
.y187{bottom:258.077495pt;}
.y2d{bottom:259.999995pt;}
.y150{bottom:260.157491pt;}
.y129{bottom:263.199987pt;}
.y45{bottom:263.679988pt;}
.y10b{bottom:265.277487pt;}
.yff{bottom:267.360001pt;}
.y229{bottom:269.599991pt;}
.y5f{bottom:273.279984pt;}
.yde{bottom:275.519995pt;}
.y1b4{bottom:275.999995pt;}
.y7e{bottom:276.160019pt;}
.y166{bottom:278.559992pt;}
.yc1{bottom:279.519995pt;}
.yf2{bottom:279.997477pt;}
.y1f2{bottom:281.279984pt;}
.y216{bottom:282.880000pt;}
.y1be{bottom:283.037476pt;}
.y146{bottom:283.039993pt;}
.y14f{bottom:284.477479pt;}
.y1e1{bottom:285.759984pt;}
.y174{bottom:286.557475pt;}
.y186{bottom:287.357483pt;}
.y2c{bottom:289.279984pt;}
.y44{bottom:290.559992pt;}
.y202{bottom:291.840001pt;}
.y128{bottom:292.479996pt;}
.y10a{bottom:294.717488pt;}
.y7c{bottom:296.640019pt;}
.yfe{bottom:296.800003pt;}
.y222{bottom:298.880000pt;}
.y5e{bottom:302.559992pt;}
.yc0{bottom:303.999995pt;}
.ydd{bottom:304.799983pt;}
.y165{bottom:307.840001pt;}
.y14e{bottom:308.957479pt;}
.y145{bottom:312.320003pt;}
.y1e0{bottom:315.039993pt;}
.y173{bottom:315.837484pt;}
.y185{bottom:316.637492pt;}
.y7a{bottom:317.280017pt;}
.y2b{bottom:318.559992pt;}
.y201{bottom:321.119991pt;}
.yf1{bottom:323.037476pt;}
.y1f1{bottom:323.840001pt;}
.y43{bottom:324.159988pt;}
.y1bd{bottom:326.077473pt;}
.yfd{bottom:326.079992pt;}
.y215{bottom:328.320003pt;}
.ybf{bottom:328.479996pt;}
.y5d{bottom:331.840001pt;}
.y14d{bottom:333.437480pt;}
.ydc{bottom:334.079992pt;}
.y109{bottom:334.877483pt;}
.y127{bottom:335.039993pt;}
.y164{bottom:337.119991pt;}
.y9e{bottom:340.160017pt;}
.y1df{bottom:344.320003pt;}
.y172{bottom:345.117472pt;}
.y184{bottom:345.917480pt;}
.yf0{bottom:347.517497pt;}
.y2a{bottom:347.839981pt;}
.y200{bottom:350.399999pt;}
.y1bc{bottom:350.557495pt;}
.y1f0{bottom:353.120011pt;}
.y144{bottom:355.039973pt;}
.y42{bottom:357.599991pt;}
.y108{bottom:359.357463pt;}
.y5c{bottom:361.120011pt;}
.ydb{bottom:363.360001pt;}
.y126{bottom:364.320003pt;}
.y163{bottom:366.559992pt;}
.yfc{bottom:368.639989pt;}
.y11{bottom:369.917480pt;}
.yef{bottom:371.837484pt;}
.y1de{bottom:373.599991pt;}
.y171{bottom:374.397501pt;}
.y1bb{bottom:374.877483pt;}
.y183{bottom:375.197469pt;}
.y29{bottom:377.120011pt;}
.y1ef{bottom:382.399999pt;}
.y107{bottom:383.677491pt;}
.y143{bottom:384.320003pt;}
.y41{bottom:391.200007pt;}
.yda{bottom:392.639989pt;}
.y125{bottom:393.599991pt;}
.y11c{bottom:394.877483pt;}
.y1ff{bottom:395.679988pt;}
.y162{bottom:395.839981pt;}
.yee{bottom:396.317464pt;}
.y1ba{bottom:399.357463pt;}
.y79{bottom:400.320003pt;}
.y214{bottom:402.879980pt;}
.y5b{bottom:403.839981pt;}
.y182{bottom:404.477499pt;}
.y28{bottom:406.559992pt;}
.y106{bottom:408.157471pt;}
.yfb{bottom:408.959976pt;}
.y1ee{bottom:411.679988pt;}
.y10{bottom:412.477499pt;}
.y142{bottom:413.599991pt;}
.y9b{bottom:414.560016pt;}
.y1dd{bottom:416.320003pt;}
.y170{bottom:419.677491pt;}
.yd9{bottom:421.919977pt;}
.y124{bottom:422.879980pt;}
.y1b9{bottom:423.677491pt;}
.y11b{bottom:424.317464pt;}
.y40{bottom:424.639989pt;}
.y161{bottom:425.120011pt;}
.y78{bottom:429.599991pt;}
.y213{bottom:432.160009pt;}
.y5a{bottom:433.119969pt;}
.yfa{bottom:433.439997pt;}
.y181{bottom:433.757487pt;}
.y1b3{bottom:435.839981pt;}
.y141{bottom:442.879980pt;}
.y1dc{bottom:445.599991pt;}
.y221{bottom:448.160009pt;}
.y27{bottom:449.119969pt;}
.yd8{bottom:451.360001pt;}
.y123{bottom:452.320003pt;}
.y11a{bottom:453.597493pt;}
.y1ed{bottom:454.399999pt;}
.yf{bottom:455.197469pt;}
.yf9{bottom:457.759984pt;}
.y3f{bottom:458.240005pt;}
.y77{bottom:458.879980pt;}
.y59{bottom:462.399999pt;}
.y16f{bottom:462.717488pt;}
.y180{bottom:463.037476pt;}
.y160{bottom:467.679988pt;}
.y140{bottom:472.160009pt;}
.y1b1{bottom:474.877483pt;}
.y1db{bottom:474.879980pt;}
.y212{bottom:477.439997pt;}
.y26{bottom:478.399999pt;}
.yd7{bottom:480.639989pt;}
.y122{bottom:481.599991pt;}
.yf8{bottom:482.240005pt;}
.y119{bottom:482.877483pt;}
.y1ec{bottom:483.679988pt;}
.y16e{bottom:487.197469pt;}
.y76{bottom:488.160009pt;}
.y3e{bottom:491.679988pt;}
.y17f{bottom:492.317464pt;}
.y15f{bottom:496.959976pt;}
.ye{bottom:497.757487pt;}
.y1fe{bottom:499.679988pt;}
.y13f{bottom:501.439997pt;}
.y98{bottom:502.879980pt;}
.y1b0{bottom:504.157471pt;}
.y1da{bottom:504.159968pt;}
.y211{bottom:506.719987pt;}
.y25{bottom:507.679988pt;}
.y1a1{bottom:509.919977pt;}
.y121{bottom:510.879980pt;}
.y16d{bottom:511.517497pt;}
.y118{bottom:512.157471pt;}
.y1eb{bottom:512.959976pt;}
.y75{bottom:517.439997pt;}
.y58{bottom:520.959976pt;}
.y220{bottom:522.719987pt;}
.y3d{bottom:525.280004pt;}
.yd6{bottom:527.200007pt;}
.y1fd{bottom:528.959976pt;}
.y13e{bottom:530.879980pt;}
.y97{bottom:532.159968pt;}
.y1af{bottom:533.437459pt;}
.y1d9{bottom:533.439997pt;}
.y228{bottom:535.999975pt;}
.y24{bottom:536.959976pt;}
.y17e{bottom:537.277465pt;}
.y1a0{bottom:539.200007pt;}
.y15e{bottom:539.679988pt;}
.yd{bottom:540.477499pt;}
.y117{bottom:541.437459pt;}
.y74{bottom:546.719987pt;}
.y57{bottom:550.240005pt;}
.y210{bottom:551.999975pt;}
.y120{bottom:553.439997pt;}
.y1ea{bottom:555.679988pt;}
.y3c{bottom:558.719987pt;}
.y13d{bottom:560.159968pt;}
.y96{bottom:561.439997pt;}
.y1ae{bottom:562.717488pt;}
.y23{bottom:566.240005pt;}
.y19f{bottom:568.479996pt;}
.y15d{bottom:568.959976pt;}
.yd5{bottom:569.919977pt;}
.y116{bottom:570.717488pt;}
.y1fc{bottom:574.240005pt;}
.y132{bottom:575.997477pt;}
.y73{bottom:575.999975pt;}
.y20f{bottom:581.280004pt;}
.yc{bottom:583.037476pt;}
.y1e9{bottom:584.959976pt;}
.y17d{bottom:589.117472pt;}
.y95{bottom:590.719987pt;}
.y1ad{bottom:591.997477pt;}
.y56{bottom:592.959976pt;}
.y3b{bottom:594.719987pt;}
.y22{bottom:595.679988pt;}
.yb8{bottom:596.479996pt;}
.y21f{bottom:597.280004pt;}
.y15c{bottom:598.240005pt;}
.yd4{bottom:599.199967pt;}
.y1{bottom:599.517477pt;}
.y115{bottom:599.997477pt;}
.y13c{bottom:602.719987pt;}
.y1fb{bottom:603.519995pt;}
.y131{bottom:605.437459pt;}
.y72{bottom:605.439997pt;}
.y227{bottom:610.559992pt;}
.y19e{bottom:613.439997pt;}
.y17c{bottom:618.557495pt;}
.y94{bottom:619.999975pt;}
.y11f{bottom:620.799983pt;}
.y1ac{bottom:621.277465pt;}
.y55{bottom:622.240005pt;}
.y21{bottom:624.959976pt;}
.yb7{bottom:625.759984pt;}
.y20e{bottom:626.559992pt;}
.y15b{bottom:627.519995pt;}
.yb{bottom:627.997477pt;}
.yd3{bottom:628.479996pt;}
.y114{bottom:629.277465pt;}
.y3a{bottom:631.999975pt;}
.y130{bottom:634.717488pt;}
.y71{bottom:634.719987pt;}
.y19b{bottom:647.199967pt;}
.y17b{bottom:647.837484pt;}
.y1fa{bottom:648.799983pt;}
.y93{bottom:649.280004pt;}
.y54{bottom:651.519995pt;}
.y20{bottom:654.239965pt;}
.yb6{bottom:655.199967pt;}
.y20d{bottom:655.999975pt;}
.y15a{bottom:656.799983pt;}
.yd2{bottom:657.759984pt;}
.y113{bottom:658.557495pt;}
.y235{bottom:658.879980pt;}
.y13b{bottom:661.280004pt;}
.y12f{bottom:663.997477pt;}
.y70{bottom:663.999975pt;}
.y39{bottom:667.999975pt;}
.y21e{bottom:671.999975pt;}
.y19a{bottom:676.479996pt;}
.y17a{bottom:677.117472pt;}
.y1f9{bottom:678.079972pt;}
.y92{bottom:678.559992pt;}
.y53{bottom:680.799983pt;}
.y1f{bottom:683.519995pt;}
.yb5{bottom:684.479955pt;}
.y20c{bottom:685.280004pt;}
.y159{bottom:686.079972pt;}
.yd1{bottom:687.040013pt;}
.y112{bottom:687.997477pt;}
.y234{bottom:688.159968pt;}
.y14c{bottom:690.557455pt;}
.y13a{bottom:690.559952pt;}
.y12e{bottom:693.277507pt;}
.y6f{bottom:693.280004pt;}
.y21d{bottom:701.280004pt;}
.y38{bottom:703.999975pt;}
.y199{bottom:705.759984pt;}
.y1ab{bottom:706.557455pt;}
.y1f8{bottom:707.360001pt;}
.ybe{bottom:707.839981pt;}
.y91{bottom:707.999975pt;}
.y52{bottom:710.079972pt;}
.y1e{bottom:712.800024pt;}
.y158{bottom:715.360001pt;}
.yd0{bottom:716.319961pt;}
.y111{bottom:717.277507pt;}
.y14b{bottom:719.997477pt;}
.y139{bottom:719.999975pt;}
.y1d8{bottom:722.559952pt;}
.yb4{bottom:727.040013pt;}
.y1e8{bottom:728.800024pt;}
.y20b{bottom:730.559952pt;}
.y233{bottom:733.439997pt;}
.y105{bottom:735.837484pt;}
.y6e{bottom:735.839981pt;}
.y90{bottom:737.280004pt;}
.y51{bottom:739.360001pt;}
.y37{bottom:739.999975pt;}
.y1d{bottom:742.079972pt;}
.y157{bottom:744.639948pt;}
.ycf{bottom:745.599991pt;}
.yed{bottom:749.277507pt;}
.y138{bottom:749.280004pt;}
.ya{bottom:751.677491pt;}
.y1d7{bottom:751.839981pt;}
.y1f7{bottom:752.639948pt;}
.yb3{bottom:756.319961pt;}
.y1e7{bottom:758.079972pt;}
.y20a{bottom:759.839981pt;}
.y232{bottom:762.719945pt;}
.y104{bottom:765.117513pt;}
.y6d{bottom:765.120011pt;}
.y110{bottom:765.277507pt;}
.y8f{bottom:766.559952pt;}
.yad{bottom:771.360001pt;}
.y1cb{bottom:771.997473pt;}
.y1c4{bottom:772.477473pt;}
.y36{bottom:774.719945pt;}
.yce{bottom:774.880020pt;}
.y21c{bottom:775.839981pt;}
.yec{bottom:778.557455pt;}
.y137{bottom:778.559952pt;}
.y192{bottom:780.477473pt;}
.y1d6{bottom:781.120011pt;}
.y50{bottom:782.079972pt;}
.y1c{bottom:784.639948pt;}
.y156{bottom:787.360001pt;}
.y209{bottom:789.120011pt;}
.y1aa{bottom:794.557455pt;}
.y6c{bottom:794.559952pt;}
.ybd{bottom:795.839981pt;}
.yb2{bottom:799.040013pt;}
.yac{bottom:800.639948pt;}
.ycd{bottom:804.159968pt;}
.y21b{bottom:805.120011pt;}
.yeb{bottom:807.837484pt;}
.y8e{bottom:807.839981pt;}
.y231{bottom:807.999975pt;}
.y35{bottom:808.319961pt;}
.y1d5{bottom:810.399959pt;}
.y4f{bottom:811.360001pt;}
.y1b{bottom:814.079972pt;}
.y155{bottom:816.639948pt;}
.y1a9{bottom:823.837484pt;}
.y6b{bottom:823.839981pt;}
.ybc{bottom:825.120011pt;}
.yb1{bottom:828.319961pt;}
.yab{bottom:829.919977pt;}
.ycc{bottom:833.599991pt;}
.y208{bottom:834.399959pt;}
.yea{bottom:837.117432pt;}
.y8d{bottom:837.120011pt;}
.y230{bottom:837.439997pt;}
.y1d4{bottom:839.679988pt;}
.y4e{bottom:840.639948pt;}
.y34{bottom:843.040013pt;}
.y1a{bottom:843.360001pt;}
.y1a8{bottom:853.117432pt;}
.y6a{bottom:853.120011pt;}
.ybb{bottom:854.399959pt;}
.y1f6{bottom:856.639948pt;}
.yb0{bottom:857.599991pt;}
.yaa{bottom:859.200007pt;}
.y154{bottom:859.360001pt;}
.ycb{bottom:862.880020pt;}
.y207{bottom:863.679988pt;}
.ye9{bottom:866.397461pt;}
.y8c{bottom:866.399959pt;}
.y22f{bottom:866.719945pt;}
.y4d{bottom:869.919977pt;}
.y19{bottom:872.639948pt;}
.y33{bottom:879.040013pt;}
.y21a{bottom:879.679988pt;}
.y1a7{bottom:882.397461pt;}
.y69{bottom:882.399959pt;}
.yba{bottom:883.679988pt;}
.y1f5{bottom:885.919977pt;}
.yaf{bottom:886.880020pt;}
.yca{bottom:892.159968pt;}
.ye8{bottom:895.677491pt;}
.y8b{bottom:895.679988pt;}
.y16c{bottom:895.837484pt;}
.y4c{bottom:899.200007pt;}
.y18{bottom:901.919977pt;}
.y206{bottom:908.960017pt;}
.y1a6{bottom:911.677491pt;}
.y68{bottom:911.679988pt;}
.yb9{bottom:912.960017pt;}
.y32{bottom:914.879939pt;}
.y22e{bottom:915.200007pt;}
.yae{bottom:917.120011pt;}
.yc9{bottom:921.439997pt;}
.ye7{bottom:924.957439pt;}
.y8a{bottom:924.960017pt;}
.y4b{bottom:928.479955pt;}
.y17{bottom:931.200007pt;}
.y22d{bottom:934.719945pt;}
.y205{bottom:938.239965pt;}
.y1a5{bottom:940.957439pt;}
.y67{bottom:940.960017pt;}
.y31{bottom:950.879939pt;}
.ye6{bottom:954.237468pt;}
.y89{bottom:954.239965pt;}
.y4a{bottom:957.919977pt;}
.y16{bottom:960.479955pt;}
.yc8{bottom:963.999975pt;}
.y226{bottom:967.519995pt;}
.y1a4{bottom:970.237468pt;}
.y1d3{bottom:970.239965pt;}
.y153{bottom:976.159968pt;}
.ye5{bottom:983.517497pt;}
.y66{bottom:983.519995pt;}
.y22c{bottom:993.439997pt;}
.y30{bottom:1002.879939pt;}
.y15{bottom:1007.839981pt;}
.y49{bottom:1007.999975pt;}
.yc7{bottom:1010.399959pt;}
.y1d2{bottom:1012.799943pt;}
.ye4{bottom:1012.957439pt;}
.y65{bottom:1012.960017pt;}
.y8{bottom:1122.400000pt;}
.h6{height:-1073.922511pt;}
.h27{height:-286.722528pt;}
.h29{height:-285.762528pt;}
.h21{height:-147.362532pt;}
.h16{height:19.519999pt;}
.h15{height:19.520000pt;}
.h17{height:19.680000pt;}
.h1b{height:20.320000pt;}
.h14{height:25.280000pt;}
.h26{height:34.453125pt;}
.h1a{height:37.919999pt;}
.h19{height:38.128125pt;}
.h25{height:39.585938pt;}
.h13{height:42.262500pt;}
.h1f{height:43.500000pt;}
.h12{height:43.531250pt;}
.h18{height:43.808438pt;}
.h7{height:45.937500pt;}
.h2a{height:47.857420pt;}
.hb{height:48.477489pt;}
.hc{height:48.479999pt;}
.h11{height:48.558750pt;}
.hf{height:52.781250pt;}
.h1e{height:59.281250pt;}
.h20{height:61.410000pt;}
.ha{height:61.754063pt;}
.h28{height:63.679999pt;}
.h24{height:64.159999pt;}
.h23{height:68.288000pt;}
.h5{height:68.906250pt;}
.he{height:70.199062pt;}
.h1d{height:80.479999pt;}
.h10{height:88.144688pt;}
.h4{height:97.279997pt;}
.h1c{height:114.399997pt;}
.h9{height:122.980312pt;}
.h3{height:175.761562pt;}
.h22{height:194.559995pt;}
.h2{height:295.679993pt;}
.h8{height:1122.557465pt;}
.hd{height:1122.559975pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:-653.738800pt;}
.w7{width:-653.602589pt;}
.w16{width:-427.842595pt;}
.w1a{width:-425.122595pt;}
.w1d{width:-187.504521pt;}
.wa{width:33.744524pt;}
.wc{width:33.759999pt;}
.w6{width:51.504524pt;}
.w1b{width:60.298813pt;}
.w11{width:75.999999pt;}
.w1e{width:76.304524pt;}
.w18{width:88.144524pt;}
.w19{width:99.517393pt;}
.w12{width:116.159997pt;}
.w3{width:119.677393pt;}
.w15{width:137.279996pt;}
.w13{width:138.719997pt;}
.w17{width:145.759997pt;}
.w10{width:147.039997pt;}
.w1c{width:148.479997pt;}
.w14{width:148.799997pt;}
.we{width:169.119996pt;}
.w5{width:170.544521pt;}
.wb{width:220.000013pt;}
.w2{width:230.397391pt;}
.w8{width:287.037389pt;}
.w4{width:287.039993pt;}
.wf{width:377.119992pt;}
.wd{width:793.759983pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x52{left:-460.175463pt;}
.x11{left:-456.335467pt;}
.x53{left:-441.295468pt;}
.x55{left:-437.455461pt;}
.x62{left:-433.135465pt;}
.x5a{left:-422.415464pt;}
.x58{left:-414.895464pt;}
.xf{left:-404.975461pt;}
.x28{left:-371.055457pt;}
.x29{left:-342.575457pt;}
.x26{left:-340.975461pt;}
.x12{left:-337.775469pt;}
.x2d{left:-295.695472pt;}
.x13{left:-284.655475pt;}
.x2b{left:-283.375465pt;}
.x2a{left:-270.735471pt;}
.x27{left:-269.615476pt;}
.x2c{left:-266.415464pt;}
.x10{left:-187.055479pt;}
.x50{left:-173.301176pt;}
.xb{left:-169.461180pt;}
.x51{left:-154.421181pt;}
.x54{left:-150.581185pt;}
.x60{left:-146.261179pt;}
.x63{left:-138.735491pt;}
.x59{left:-135.541177pt;}
.x57{left:-128.021177pt;}
.x9{left:-118.101185pt;}
.x61{left:-89.621184pt;}
.x20{left:-84.181181pt;}
.x21{left:-55.701181pt;}
.x1e{left:-54.101185pt;}
.xc{left:-50.901193pt;}
.x25{left:-8.821176pt;}
.x0{left:0.000000pt;}
.xd{left:2.218823pt;}
.x23{left:3.498811pt;}
.x4f{left:7.839991pt;}
.x48{left:9.599981pt;}
.x15{left:11.839991pt;}
.x22{left:16.138805pt;}
.x1f{left:17.258821pt;}
.x24{left:20.458813pt;}
.x3a{left:24.959991pt;}
.x45{left:36.479996pt;}
.x34{left:44.799996pt;}
.x3d{left:47.039996pt;}
.x38{left:54.079985pt;}
.x3c{left:55.359993pt;}
.x1{left:56.642603pt;}
.x4{left:60.640000pt;}
.x39{left:63.520008pt;}
.x37{left:65.600004pt;}
.x6{left:68.479991pt;}
.x3f{left:70.879993pt;}
.xa{left:99.818819pt;}
.x36{left:102.720000pt;}
.x2{left:111.999996pt;}
.x2e{left:113.440003pt;}
.x5c{left:116.480001pt;}
.x3e{left:119.680001pt;}
.x7{left:121.600005pt;}
.x33{left:123.359997pt;}
.x2f{left:128.159993pt;}
.x42{left:132.639995pt;}
.x4b{left:136.159997pt;}
.x4d{left:137.439992pt;}
.x5d{left:140.480001pt;}
.x32{left:142.720001pt;}
.x3b{left:143.680001pt;}
.x30{left:146.079997pt;}
.x43{left:151.199992pt;}
.x41{left:152.159983pt;}
.x4c{left:156.159993pt;}
.x40{left:157.279977pt;}
.x56{left:158.720001pt;}
.x4e{left:161.439992pt;}
.x31{left:164.799997pt;}
.x5{left:167.362600pt;}
.x5e{left:187.522600pt;}
.x18{left:202.559997pt;}
.x19{left:231.039999pt;}
.x16{left:232.639995pt;}
.x46{left:234.879995pt;}
.x1d{left:277.920004pt;}
.x8{left:286.879993pt;}
.x4a{left:287.999993pt;}
.x1b{left:290.239991pt;}
.x35{left:293.439993pt;}
.x1a{left:302.879985pt;}
.x17{left:304.000000pt;}
.x1c{left:307.199992pt;}
.x3{left:329.919979pt;}
.x44{left:340.799992pt;}
.x5f{left:425.282595pt;}
.x5b{left:428.002595pt;}
.x47{left:505.119989pt;}
.x49{left:531.999988pt;}
.xe{left:573.759987pt;}
.x14{left:653.762589pt;}
}




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