
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_58ad03aa90e874c49ac5797c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_e6c5f700b7e776da64a83e4f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_8fab806374a5d81d44e61963.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_3596a8ddc49d949ae78fc665.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_0efb0cf82daa71354597549f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.060059;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_1ca565c7ec1997bdc87d640b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d15566df4540041b50ba4cf7.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f6c139868247a527648ffe37.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_76953e76073ce0ab01bd4fe7.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_384ab4545abfdd0d1dc62ef8.woff')format("woff");}.ffb{font-family:ffb;line-height:0.987305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1c{letter-spacing:-0.438000px;}
.ls1f{letter-spacing:-0.262200px;}
.lsf{letter-spacing:-0.186600px;}
.lsd{letter-spacing:-0.164400px;}
.ls11{letter-spacing:-0.159600px;}
.ls9{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls1e{letter-spacing:-0.078000px;}
.ls19{letter-spacing:-0.063600px;}
.ls22{letter-spacing:-0.014760px;}
.ls1a{letter-spacing:-0.007560px;}
.ls6{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.011160px;}
.ls4{letter-spacing:0.014760px;}
.ls24{letter-spacing:0.023040px;}
.ls14{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls5{letter-spacing:0.049200px;}
.ls15{letter-spacing:0.064800px;}
.ls20{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls21{letter-spacing:0.098400px;}
.ls3{letter-spacing:0.099600px;}
.ls12{letter-spacing:0.115800px;}
.ls23{letter-spacing:0.143400px;}
.ls7{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.164400px;}
.ls10{letter-spacing:0.173400px;}
.ls13{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.181200px;}
.ls18{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls1b{letter-spacing:1.173600px;}
.ls27{letter-spacing:4.053600px;}
.ls26{letter-spacing:47.726640px;}
.ls16{letter-spacing:63.566640px;}
.ls25{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.wsd{word-spacing:-14.372400px;}
.wse{word-spacing:-13.425600px;}
.ws9{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.390800px;}
.ws18{word-spacing:-13.369800px;}
.wsc{word-spacing:-13.342200px;}
.ws16{word-spacing:-13.324800px;}
.ws15{word-spacing:-13.300800px;}
.ws5{word-spacing:-13.275600px;}
.wsb{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.218840px;}
.ws17{word-spacing:-13.211640px;}
.wsf{word-spacing:-13.162800px;}
.ws13{word-spacing:-13.148400px;}
.wsa{word-spacing:-13.066800px;}
.ws6{word-spacing:-13.062000px;}
.ws8{word-spacing:-13.039800px;}
.ws14{word-spacing:-12.964200px;}
.ws11{word-spacing:-12.788400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws1a{word-spacing:-8.576640px;}
.ws19{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._b{margin-left:-3.877812px;}
._2{margin-left:-2.767788px;}
._0{margin-left:-1.110000px;}
._1{width:1.086084px;}
._5{width:2.255701px;}
._6{width:3.366600px;}
._7{width:4.442559px;}
._4{width:5.470800px;}
._a{width:6.553200px;}
._d{width:7.598160px;}
._9{width:8.898000px;}
._c{width:10.307999px;}
._3{width:11.783400px;}
._8{width:14.548800px;}
._e{width:15.577441px;}
._12{width:17.462640px;}
._14{width:19.058040px;}
._13{width:20.080080px;}
._f{width:21.643200px;}
._10{width:22.653120px;}
._11{width:24.348600px;}
._15{width:26.092080px;}
._16{width:27.114120px;}
._1f{width:28.979400px;}
._42{width:30.008880px;}
._1e{width:31.021920px;}
._22{width:32.825520px;}
._1a{width:35.651160px;}
._2c{width:37.154160px;}
._40{width:38.504640px;}
._3b{width:39.739320px;}
._34{width:40.941720px;}
._2e{width:42.504840px;}
._19{width:44.368560px;}
._2b{width:45.830520px;}
._26{width:47.013840px;}
._3f{width:50.140080px;}
._48{width:51.162120px;}
._21{width:53.446680px;}
._36{width:55.009800px;}
._18{width:56.272320px;}
._45{width:57.414600px;}
._35{width:59.338440px;}
._3d{width:64.629000px;}
._30{width:65.979480px;}
._17{width:67.995720px;}
._1c{width:69.077880px;}
._47{width:70.155600px;}
._44{width:71.182080px;}
._31{width:76.111920px;}
._28{width:77.194080px;}
._29{width:79.298280px;}
._20{width:91.683000px;}
._3a{width:96.552720px;}
._2a{width:99.318240px;}
._43{width:100.580760px;}
._39{width:103.586760px;}
._24{width:105.871320px;}
._1b{width:108.817200px;}
._1d{width:119.097720px;}
._2f{width:124.448400px;}
._27{width:133.105680px;}
._25{width:137.494440px;}
._33{width:138.696840px;}
._2d{width:144.889200px;}
._3c{width:146.813040px;}
._46{width:148.135680px;}
._41{width:158.115600px;}
._38{width:169.959240px;}
._37{width:176.873040px;}
._32{width:181.522800px;}
._23{width:191.903040px;}
._3e{width:213.185520px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y99{bottom:2.250000px;}
.y9c{bottom:3.330000px;}
.ya6{bottom:3.420000px;}
.y59{bottom:7.830000px;}
.y60{bottom:7.860000px;}
.y57{bottom:7.920000px;}
.y9b{bottom:20.970000px;}
.y5b{bottom:25.380000px;}
.y5d{bottom:25.470000px;}
.ya5{bottom:38.520000px;}
.y63{bottom:43.020000px;}
.y65{bottom:43.110000px;}
.y6b{bottom:43.140000px;}
.ya2{bottom:60.570000px;}
.yab{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.ya9{bottom:78.210000px;}
.y1{bottom:101.640000px;}
.ya4{bottom:110.820000px;}
.y202{bottom:112.530000px;}
.y1ac{bottom:118.650000px;}
.y90{bottom:123.960000px;}
.y54{bottom:124.050000px;}
.y148{bottom:125.220000px;}
.yd0{bottom:126.660000px;}
.y1d4{bottom:128.910000px;}
.y201{bottom:130.170000px;}
.yfe{bottom:130.980000px;}
.y1ab{bottom:136.200000px;}
.y28{bottom:140.250000px;}
.y8f{bottom:141.510000px;}
.y53{bottom:141.690000px;}
.y147{bottom:142.860000px;}
.ycf{bottom:144.210000px;}
.y200{bottom:147.720000px;}
.yfd{bottom:148.530000px;}
.y1aa{bottom:153.840000px;}
.y1d3{bottom:155.820000px;}
.y67{bottom:157.350000px;}
.y27{bottom:157.800000px;}
.y8e{bottom:159.060000px;}
.y52{bottom:159.240000px;}
.y146{bottom:160.410000px;}
.yce{bottom:161.850000px;}
.ya3{bottom:168.870000px;}
.y163{bottom:170.040000px;}
.y1a9{bottom:171.390000px;}
.y184{bottom:172.470000px;}
.y1ff{bottom:174.270000px;}
.yfc{bottom:175.170000px;}
.y26{bottom:175.350000px;}
.y51{bottom:176.790000px;}
.y145{bottom:178.050000px;}
.ycd{bottom:179.400000px;}
.y8d{bottom:185.700000px;}
.y162{bottom:187.590000px;}
.y125{bottom:188.490000px;}
.y1a8{bottom:189.030000px;}
.y1fe{bottom:191.910000px;}
.y25{bottom:192.990000px;}
.y1d2{bottom:193.170000px;}
.y50{bottom:194.430000px;}
.y144{bottom:195.600000px;}
.ycc{bottom:196.950000px;}
.y161{bottom:205.230000px;}
.y1a7{bottom:206.580000px;}
.y183{bottom:208.020000px;}
.y1fd{bottom:209.460000px;}
.y24{bottom:210.540000px;}
.yfb{bottom:210.720000px;}
.y4f{bottom:211.980000px;}
.y143{bottom:213.150000px;}
.y66{bottom:219.900000px;}
.y8c{bottom:221.250000px;}
.y160{bottom:222.780000px;}
.ycb{bottom:223.590000px;}
.y124{bottom:224.040000px;}
.y1a6{bottom:224.130000px;}
.y182{bottom:226.380000px;}
.y23{bottom:228.090000px;}
.yfa{bottom:228.270000px;}
.y4e{bottom:229.620000px;}
.y142{bottom:230.790000px;}
.y1fc{bottom:236.100000px;}
.y8b{bottom:238.890000px;}
.y15f{bottom:241.230000px;}
.y1d1{bottom:241.500000px;}
.y123{bottom:241.680000px;}
.y1a5{bottom:242.580000px;}
.y181{bottom:244.830000px;}
.y22{bottom:245.730000px;}
.yf9{bottom:245.910000px;}
.y4d{bottom:247.170000px;}
.y141{bottom:248.340000px;}
.ya1{bottom:248.970000px;}
.y1fb{bottom:253.650000px;}
.y15e{bottom:258.780000px;}
.y1d0{bottom:259.050000px;}
.yca{bottom:259.140000px;}
.y122{bottom:259.230000px;}
.y1a4{bottom:260.130000px;}
.y21{bottom:263.280000px;}
.yf8{bottom:263.460000px;}
.y4c{bottom:264.720000px;}
.y140{bottom:265.980000px;}
.y1fa{bottom:271.200000px;}
.y8a{bottom:274.440000px;}
.y1cf{bottom:276.600000px;}
.yc9{bottom:276.780000px;}
.y121{bottom:276.870000px;}
.y1a3{bottom:277.770000px;}
.y20{bottom:280.920000px;}
.yf7{bottom:281.100000px;}
.y180{bottom:281.280000px;}
.y4b{bottom:282.360000px;}
.y13f{bottom:283.530000px;}
.y89{bottom:292.800000px;}
.y1ce{bottom:294.240000px;}
.yc8{bottom:294.330000px;}
.y120{bottom:294.420000px;}
.y15d{bottom:295.230000px;}
.y1a2{bottom:295.320000px;}
.y1f9{bottom:297.840000px;}
.y1f{bottom:298.470000px;}
.yf6{bottom:298.650000px;}
.y4a{bottom:299.910000px;}
.y13e{bottom:301.080000px;}
.y17f{bottom:307.830000px;}
.y64{bottom:309.720000px;}
.y88{bottom:311.250000px;}
.y1cd{bottom:311.790000px;}
.yc7{bottom:311.880000px;}
.y11f{bottom:311.970000px;}
.y1a1{bottom:312.960000px;}
.y1f8{bottom:315.390000px;}
.y1e{bottom:316.020000px;}
.yf5{bottom:316.200000px;}
.y13d{bottom:318.720000px;}
.y15c{bottom:321.780000px;}
.y49{bottom:326.550000px;}
.ya0{bottom:329.070000px;}
.y1cc{bottom:329.430000px;}
.yc6{bottom:329.520000px;}
.y11e{bottom:329.610000px;}
.y1a0{bottom:330.510000px;}
.y1f7{bottom:332.940000px;}
.y1d{bottom:333.660000px;}
.yf4{bottom:333.840000px;}
.y13c{bottom:336.270000px;}
.y17e{bottom:343.380000px;}
.y1cb{bottom:346.980000px;}
.y11d{bottom:347.160000px;}
.y87{bottom:347.700000px;}
.y19f{bottom:348.060000px;}
.y1c{bottom:351.210000px;}
.yf3{bottom:351.390000px;}
.y15b{bottom:354.360000px;}
.y62{bottom:354.630000px;}
.y1f6{bottom:359.580000px;}
.y48{bottom:362.100000px;}
.y13b{bottom:362.910000px;}
.y11c{bottom:364.800000px;}
.yc5{bottom:365.070000px;}
.y86{bottom:365.250000px;}
.y19e{bottom:365.700000px;}
.yf2{bottom:368.940000px;}
.y15a{bottom:372.810000px;}
.y1ca{bottom:373.890000px;}
.y1f5{bottom:377.130000px;}
.y1b{bottom:377.850000px;}
.y17d{bottom:378.930000px;}
.y11b{bottom:382.350000px;}
.yc4{bottom:382.620000px;}
.y19d{bottom:383.250000px;}
.yf1{bottom:386.580000px;}
.y159{bottom:391.170000px;}
.y85{bottom:391.800000px;}
.y47{bottom:394.320000px;}
.y1f4{bottom:394.770000px;}
.y9f{bottom:395.310000px;}
.y17c{bottom:397.380000px;}
.y13a{bottom:398.460000px;}
.y11a{bottom:399.900000px;}
.yc3{bottom:400.260000px;}
.y19c{bottom:400.800000px;}
.yf0{bottom:404.130000px;}
.y158{bottom:409.620000px;}
.y1a{bottom:413.760000px;}
.y17b{bottom:415.830000px;}
.y61{bottom:417.090000px;}
.y119{bottom:417.540000px;}
.yc2{bottom:417.810000px;}
.y19b{bottom:418.440000px;}
.y9e{bottom:418.530000px;}
.y1f3{bottom:421.320000px;}
.yef{bottom:421.770000px;}
.y1c9{bottom:422.130000px;}
.y84{bottom:424.470000px;}
.y139{bottom:430.680000px;}
.y118{bottom:435.090000px;}
.yc1{bottom:435.450000px;}
.y19a{bottom:435.990000px;}
.y1f2{bottom:438.870000px;}
.yee{bottom:439.320000px;}
.y1c8{bottom:439.770000px;}
.y83{bottom:442.020000px;}
.y157{bottom:446.070000px;}
.y218{bottom:451.920000px;}
.y17a{bottom:452.280000px;}
.y117{bottom:452.730000px;}
.y199{bottom:453.540000px;}
.y1f1{bottom:456.510000px;}
.yed{bottom:456.870000px;}
.y1c7{bottom:457.320000px;}
.y82{bottom:459.570000px;}
.yc0{bottom:462.000000px;}
.y5f{bottom:462.090000px;}
.y19{bottom:462.360000px;}
.y9d{bottom:462.720000px;}
.y217{bottom:469.470000px;}
.y116{bottom:470.310000px;}
.y198{bottom:472.020000px;}
.y156{bottom:472.650000px;}
.yec{bottom:474.540000px;}
.y1c6{bottom:474.900000px;}
.y81{bottom:477.150000px;}
.y179{bottom:478.860000px;}
.y1f0{bottom:483.090000px;}
.y216{bottom:487.140000px;}
.y115{bottom:487.860000px;}
.y5e{bottom:489.390000px;}
.y197{bottom:489.660000px;}
.yeb{bottom:492.090000px;}
.y1c5{bottom:492.540000px;}
.y80{bottom:495.600000px;}
.ybf{bottom:497.580000px;}
.y18{bottom:499.380000px;}
.y1ef{bottom:500.730000px;}
.y155{bottom:505.230000px;}
.y114{bottom:505.500000px;}
.y196{bottom:507.210000px;}
.yea{bottom:509.730000px;}
.y1c4{bottom:510.090000px;}
.y7f{bottom:513.240000px;}
.y215{bottom:513.690000px;}
.y178{bottom:514.410000px;}
.ybe{bottom:515.220000px;}
.y17{bottom:516.930000px;}
.y1ee{bottom:518.280000px;}
.y154{bottom:522.870000px;}
.y113{bottom:523.050000px;}
.y195{bottom:524.760000px;}
.ye9{bottom:527.280000px;}
.y1c3{bottom:527.730000px;}
.y7e{bottom:530.790000px;}
.y214{bottom:531.330000px;}
.ybd{bottom:532.770000px;}
.y5c{bottom:534.300000px;}
.y16{bottom:534.570000px;}
.y153{bottom:540.420000px;}
.y194{bottom:542.400000px;}
.ye8{bottom:544.830000px;}
.y1c2{bottom:545.280000px;}
.y7d{bottom:548.340000px;}
.y112{bottom:549.690000px;}
.y177{bottom:549.960000px;}
.ybc{bottom:550.410000px;}
.y15{bottom:552.120000px;}
.y213{bottom:557.880000px;}
.y152{bottom:558.780000px;}
.y193{bottom:559.950000px;}
.ye7{bottom:562.470000px;}
.y1c1{bottom:562.830000px;}
.y7c{bottom:566.790000px;}
.ybb{bottom:567.960000px;}
.y176{bottom:568.410000px;}
.y14{bottom:569.670000px;}
.y212{bottom:575.430000px;}
.y192{bottom:577.590000px;}
.y5a{bottom:579.300000px;}
.ye6{bottom:580.020000px;}
.y7b{bottom:584.340000px;}
.y111{bottom:585.240000px;}
.yba{bottom:585.510000px;}
.y175{bottom:586.860000px;}
.y13{bottom:587.310000px;}
.y1c0{bottom:589.740000px;}
.y211{bottom:593.070000px;}
.y191{bottom:595.140000px;}
.y151{bottom:595.230000px;}
.ye5{bottom:597.660000px;}
.y7a{bottom:601.980000px;}
.yb9{bottom:603.150000px;}
.y12{bottom:604.860000px;}
.y1ed{bottom:606.660000px;}
.y190{bottom:612.690000px;}
.y150{bottom:612.780000px;}
.ye4{bottom:615.210000px;}
.y110{bottom:617.460000px;}
.y79{bottom:619.530000px;}
.y210{bottom:619.620000px;}
.y11{bottom:622.500000px;}
.y174{bottom:623.310000px;}
.y58{bottom:624.210000px;}
.y138{bottom:625.290000px;}
.y18f{bottom:630.330000px;}
.ye3{bottom:632.760000px;}
.y20f{bottom:637.260000px;}
.y1bf{bottom:638.070000px;}
.yb8{bottom:638.700000px;}
.y14f{bottom:639.420000px;}
.y10{bottom:640.050000px;}
.y1ec{bottom:641.760000px;}
.y137{bottom:642.930000px;}
.y18e{bottom:647.880000px;}
.y173{bottom:649.860000px;}
.ye2{bottom:650.400000px;}
.y56{bottom:651.480000px;}
.y1be{bottom:655.620000px;}
.y78{bottom:655.980000px;}
.yb7{bottom:656.340000px;}
.yf{bottom:657.600000px;}
.y136{bottom:660.480000px;}
.y20e{bottom:663.810000px;}
.y46{bottom:665.430000px;}
.ye1{bottom:667.950000px;}
.y1eb{bottom:668.400000px;}
.y77{bottom:673.530000px;}
.yb6{bottom:673.890000px;}
.y14e{bottom:674.970000px;}
.ye{bottom:675.240000px;}
.y135{bottom:678.030000px;}
.y20d{bottom:681.360000px;}
.y45{bottom:683.070000px;}
.y18d{bottom:684.330000px;}
.y172{bottom:685.410000px;}
.ye0{bottom:685.590000px;}
.y1ea{bottom:685.950000px;}
.y76{bottom:691.170000px;}
.y1bd{bottom:691.260000px;}
.yb5{bottom:691.440000px;}
.y14d{bottom:692.610000px;}
.yd{bottom:692.790000px;}
.y134{bottom:695.670000px;}
.y20c{bottom:699.000000px;}
.y55{bottom:700.260000px;}
.y44{bottom:700.620000px;}
.y9a{bottom:701.250000px;}
.y18c{bottom:701.880000px;}
.ydf{bottom:703.140000px;}
.y1bc{bottom:708.810000px;}
.yb4{bottom:709.080000px;}
.y14c{bottom:710.160000px;}
.yc{bottom:710.430000px;}
.y1e9{bottom:712.590000px;}
.y133{bottom:713.220000px;}
.y75{bottom:717.720000px;}
.y43{bottom:718.260000px;}
.yde{bottom:720.690000px;}
.y171{bottom:720.960000px;}
.y20b{bottom:725.550000px;}
.y1bb{bottom:726.360000px;}
.yb3{bottom:726.630000px;}
.y18b{bottom:728.520000px;}
.y1e8{bottom:730.140000px;}
.y132{bottom:730.860000px;}
.y42{bottom:735.810000px;}
.y14b{bottom:736.710000px;}
.yb{bottom:737.340000px;}
.ydd{bottom:738.330000px;}
.y170{bottom:739.410000px;}
.y20a{bottom:743.190000px;}
.y1ba{bottom:744.000000px;}
.yb2{bottom:744.270000px;}
.y98{bottom:745.440000px;}
.y1e7{bottom:747.690000px;}
.y131{bottom:748.410000px;}
.y74{bottom:753.270000px;}
.y41{bottom:753.360000px;}
.y16f{bottom:757.860000px;}
.y209{bottom:760.740000px;}
.y18a{bottom:761.460000px;}
.y1b9{bottom:761.550000px;}
.ydc{bottom:764.880000px;}
.y130{bottom:765.960000px;}
.yb1{bottom:770.820000px;}
.y73{bottom:770.910000px;}
.y40{bottom:771.000000px;}
.y14a{bottom:772.350000px;}
.y1e6{bottom:774.330000px;}
.y1b8{bottom:779.190000px;}
.y12f{bottom:783.600000px;}
.ya{bottom:785.580000px;}
.y208{bottom:787.290000px;}
.y72{bottom:788.460000px;}
.y3f{bottom:788.550000px;}
.y1e5{bottom:791.880000px;}
.y16e{bottom:794.310000px;}
.y1b7{bottom:796.740000px;}
.ydb{bottom:800.790000px;}
.y12e{bottom:801.150000px;}
.y149{bottom:804.570000px;}
.y207{bottom:804.930000px;}
.y71{bottom:806.100000px;}
.y3e{bottom:806.190000px;}
.yb0{bottom:806.370000px;}
.y1e4{bottom:809.520000px;}
.y1b6{bottom:814.290000px;}
.y12d{bottom:818.790000px;}
.y16d{bottom:820.860000px;}
.y9{bottom:821.130000px;}
.y206{bottom:822.480000px;}
.y70{bottom:823.650000px;}
.y3d{bottom:823.740000px;}
.y189{bottom:823.920000px;}
.yaf{bottom:824.010000px;}
.y1b5{bottom:831.930000px;}
.y10f{bottom:832.290000px;}
.y1e3{bottom:836.070000px;}
.y12c{bottom:836.340000px;}
.y6f{bottom:841.200000px;}
.y3c{bottom:841.290000px;}
.yae{bottom:841.560000px;}
.yda{bottom:849.030000px;}
.y1b4{bottom:849.480000px;}
.y10e{bottom:849.930000px;}
.y1e2{bottom:853.620000px;}
.y12b{bottom:853.890000px;}
.y16c{bottom:856.770000px;}
.y8{bottom:856.950000px;}
.y6e{bottom:858.840000px;}
.y3b{bottom:858.930000px;}
.yad{bottom:859.200000px;}
.yd9{bottom:866.670000px;}
.y1b3{bottom:867.030000px;}
.y10d{bottom:867.480000px;}
.y1e1{bottom:871.260000px;}
.y12a{bottom:871.530000px;}
.y3a{bottom:876.480000px;}
.yd8{bottom:884.220000px;}
.y1b2{bottom:884.670000px;}
.y10c{bottom:885.030000px;}
.y6d{bottom:885.390000px;}
.yac{bottom:885.750000px;}
.y188{bottom:886.470000px;}
.y129{bottom:889.080000px;}
.y7{bottom:892.950000px;}
.y39{bottom:894.030000px;}
.y1e0{bottom:897.810000px;}
.yd7{bottom:901.860000px;}
.y1b1{bottom:902.220000px;}
.y10b{bottom:902.670000px;}
.y16b{bottom:905.010000px;}
.y205{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y38{bottom:911.670000px;}
.y1df{bottom:915.450000px;}
.y128{bottom:915.720000px;}
.yaa{bottom:918.690000px;}
.yd6{bottom:919.410000px;}
.y1b0{bottom:919.860000px;}
.y10a{bottom:920.220000px;}
.y6c{bottom:921.300000px;}
.y16a{bottom:923.370000px;}
.y204{bottom:928.410000px;}
.y37{bottom:929.220000px;}
.y1de{bottom:933.000000px;}
.y1af{bottom:937.410000px;}
.y109{bottom:937.860000px;}
.y169{bottom:941.820000px;}
.y36{bottom:946.860000px;}
.y5{bottom:947.040000px;}
.y187{bottom:948.930000px;}
.y127{bottom:951.270000px;}
.yd5{bottom:954.960000px;}
.y108{bottom:955.410000px;}
.y1dd{bottom:959.550000px;}
.y35{bottom:964.410000px;}
.y6a{bottom:966.930000px;}
.yd4{bottom:972.600000px;}
.y107{bottom:972.960000px;}
.y1dc{bottom:977.190000px;}
.y168{bottom:978.270000px;}
.y34{bottom:981.960000px;}
.y126{bottom:983.490000px;}
.y4{bottom:985.380000px;}
.yd3{bottom:990.150000px;}
.y106{bottom:990.600000px;}
.y33{bottom:999.600000px;}
.y1db{bottom:1003.740000px;}
.y167{bottom:1004.820000px;}
.yd2{bottom:1007.790000px;}
.y105{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.y186{bottom:1011.510000px;}
.y97{bottom:1014.300000px;}
.ya8{bottom:1016.460000px;}
.y203{bottom:1016.820000px;}
.y32{bottom:1017.180000px;}
.y1da{bottom:1021.320000px;}
.y1ae{bottom:1025.370000px;}
.y104{bottom:1025.820000px;}
.y69{bottom:1029.510000px;}
.y96{bottom:1031.850000px;}
.yd1{bottom:1034.370000px;}
.y31{bottom:1034.820000px;}
.y1d9{bottom:1038.960000px;}
.y166{bottom:1040.400000px;}
.y103{bottom:1043.370000px;}
.y95{bottom:1049.490000px;}
.y1ad{bottom:1051.920000px;}
.y30{bottom:1052.370000px;}
.y165{bottom:1058.850000px;}
.y102{bottom:1060.920000px;}
.y1d8{bottom:1065.510000px;}
.y94{bottom:1067.040000px;}
.y2f{bottom:1069.920000px;}
.y185{bottom:1073.970000px;}
.y164{bottom:1077.300000px;}
.y101{bottom:1078.560000px;}
.y1d7{bottom:1083.150000px;}
.y2e{bottom:1087.560000px;}
.y68{bottom:1091.970000px;}
.y100{bottom:1096.110000px;}
.y1d6{bottom:1100.700000px;}
.y93{bottom:1102.590000px;}
.y2d{bottom:1105.110000px;}
.yff{bottom:1113.750000px;}
.ya7{bottom:1114.110000px;}
.y92{bottom:1121.040000px;}
.y2c{bottom:1122.750000px;}
.y1d5{bottom:1127.610000px;}
.y91{bottom:1139.400000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.ha{height:26.550000px;}
.hd{height:26.580000px;}
.h9{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h18{height:39.690000px;}
.hb{height:44.100000px;}
.hc{height:44.190000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h17{height:57.240000px;}
.h12{height:59.973223px;}
.h7{height:60.960938px;}
.he{height:61.740000px;}
.h13{height:61.793886px;}
.hf{height:61.830000px;}
.h10{height:61.860000px;}
.h8{height:62.585859px;}
.h11{height:68.582109px;}
.h4{height:71.019492px;}
.h16{height:79.290000px;}
.h19{height:96.930000px;}
.h1a{height:96.960000px;}
.h15{height:238.530000px;}
.h14{height:247.500000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wc{width:116.580000px;}
.we{width:123.300000px;}
.wf{width:144.750000px;}
.w13{width:151.020000px;}
.w14{width:156.510000px;}
.w11{width:158.520000px;}
.w10{width:173.430000px;}
.w3{width:186.150000px;}
.wd{width:194.490000px;}
.w5{width:205.470000px;}
.w9{width:231.390000px;}
.w8{width:262.740000px;}
.w7{width:263.010000px;}
.w12{width:287.490000px;}
.w4{width:362.550000px;}
.wb{width:362.730000px;}
.wa{width:394.410000px;}
.w6{width:755.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x19{left:14.040000px;}
.x13{left:15.300000px;}
.x10{left:27.720000px;}
.x18{left:35.730000px;}
.x12{left:40.140000px;}
.x14{left:53.910000px;}
.x1{left:68.040000px;}
.x9{left:95.039987px;}
.x11{left:98.220000px;}
.x26{left:111.239987px;}
.xa{left:122.039987px;}
.x1a{left:160.500000px;}
.x1b{left:186.150000px;}
.x2{left:192.719987px;}
.xf{left:228.600000px;}
.xb{left:247.440000px;}
.x7{left:255.630000px;}
.xd{left:260.130000px;}
.x5{left:294.059987px;}
.x17{left:314.040000px;}
.xc{left:331.050000px;}
.x20{left:345.179987px;}
.x22{left:348.059987px;}
.x1c{left:381.450000px;}
.x15{left:395.130000px;}
.x16{left:462.450000px;}
.x1d{left:505.560000px;}
.x24{left:516.210000px;}
.x23{left:587.309987px;}
.x1f{left:589.559987px;}
.xe{left:593.790000px;}
.x21{left:600.809987px;}
.x4{left:608.639987px;}
.x8{left:618.990000px;}
.x1e{left:651.030000px;}
.x25{left:667.950000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1c{letter-spacing:-0.389333pt;}
.ls1f{letter-spacing:-0.233067pt;}
.lsf{letter-spacing:-0.165867pt;}
.lsd{letter-spacing:-0.146133pt;}
.ls11{letter-spacing:-0.141867pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls1e{letter-spacing:-0.069333pt;}
.ls19{letter-spacing:-0.056533pt;}
.ls22{letter-spacing:-0.013120pt;}
.ls1a{letter-spacing:-0.006720pt;}
.ls6{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.009920pt;}
.ls4{letter-spacing:0.013120pt;}
.ls24{letter-spacing:0.020480pt;}
.ls14{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls5{letter-spacing:0.043733pt;}
.ls15{letter-spacing:0.057600pt;}
.ls20{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls21{letter-spacing:0.087467pt;}
.ls3{letter-spacing:0.088533pt;}
.ls12{letter-spacing:0.102933pt;}
.ls23{letter-spacing:0.127467pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.146133pt;}
.ls10{letter-spacing:0.154133pt;}
.ls13{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.161067pt;}
.ls18{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:1.043200pt;}
.ls27{letter-spacing:3.603200pt;}
.ls26{letter-spacing:42.423680pt;}
.ls16{letter-spacing:56.503680pt;}
.ls25{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.wsd{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.933867pt;}
.ws9{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.902933pt;}
.ws18{word-spacing:-11.884267pt;}
.wsc{word-spacing:-11.859733pt;}
.ws16{word-spacing:-11.844267pt;}
.ws15{word-spacing:-11.822933pt;}
.ws5{word-spacing:-11.800533pt;}
.wsb{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.750080pt;}
.ws17{word-spacing:-11.743680pt;}
.wsf{word-spacing:-11.700267pt;}
.ws13{word-spacing:-11.687467pt;}
.wsa{word-spacing:-11.614933pt;}
.ws6{word-spacing:-11.610667pt;}
.ws8{word-spacing:-11.590933pt;}
.ws14{word-spacing:-11.523733pt;}
.ws11{word-spacing:-11.367467pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws1a{word-spacing:-7.623680pt;}
.ws19{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._b{margin-left:-3.446944pt;}
._2{margin-left:-2.460256pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.965408pt;}
._5{width:2.005067pt;}
._6{width:2.992533pt;}
._7{width:3.948941pt;}
._4{width:4.862933pt;}
._a{width:5.825067pt;}
._d{width:6.753920pt;}
._9{width:7.909334pt;}
._c{width:9.162666pt;}
._3{width:10.474133pt;}
._8{width:12.932266pt;}
._e{width:13.846615pt;}
._12{width:15.522347pt;}
._14{width:16.940480pt;}
._13{width:17.848960pt;}
._f{width:19.238400pt;}
._10{width:20.136107pt;}
._11{width:21.643200pt;}
._15{width:23.192960pt;}
._16{width:24.101440pt;}
._1f{width:25.759467pt;}
._42{width:26.674560pt;}
._1e{width:27.575040pt;}
._22{width:29.178240pt;}
._1a{width:31.689920pt;}
._2c{width:33.025920pt;}
._40{width:34.226347pt;}
._3b{width:35.323840pt;}
._34{width:36.392640pt;}
._2e{width:37.782080pt;}
._19{width:39.438720pt;}
._2b{width:40.738240pt;}
._26{width:41.790080pt;}
._3f{width:44.568960pt;}
._48{width:45.477440pt;}
._21{width:47.508160pt;}
._36{width:48.897600pt;}
._18{width:50.019840pt;}
._45{width:51.035200pt;}
._35{width:52.745280pt;}
._3d{width:57.448000pt;}
._30{width:58.648427pt;}
._17{width:60.440640pt;}
._1c{width:61.402560pt;}
._47{width:62.360533pt;}
._44{width:63.272960pt;}
._31{width:67.655040pt;}
._28{width:68.616960pt;}
._29{width:70.487360pt;}
._20{width:81.496000pt;}
._3a{width:85.824640pt;}
._2a{width:88.282880pt;}
._43{width:89.405120pt;}
._39{width:92.077120pt;}
._24{width:94.107840pt;}
._1b{width:96.726400pt;}
._1d{width:105.864640pt;}
._2f{width:110.620800pt;}
._27{width:118.316160pt;}
._25{width:122.217280pt;}
._33{width:123.286080pt;}
._2d{width:128.790400pt;}
._3c{width:130.500480pt;}
._46{width:131.676160pt;}
._41{width:140.547200pt;}
._38{width:151.074880pt;}
._37{width:157.220480pt;}
._32{width:161.353600pt;}
._23{width:170.580480pt;}
._3e{width:189.498240pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:2.000000pt;}
.y9c{bottom:2.960000pt;}
.ya6{bottom:3.040000pt;}
.y59{bottom:6.960000pt;}
.y60{bottom:6.986667pt;}
.y57{bottom:7.040000pt;}
.y9b{bottom:18.640000pt;}
.y5b{bottom:22.560000pt;}
.y5d{bottom:22.640000pt;}
.ya5{bottom:34.240000pt;}
.y63{bottom:38.240000pt;}
.y65{bottom:38.320000pt;}
.y6b{bottom:38.346667pt;}
.ya2{bottom:53.840000pt;}
.yab{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.ya9{bottom:69.520000pt;}
.y1{bottom:90.346667pt;}
.ya4{bottom:98.506667pt;}
.y202{bottom:100.026667pt;}
.y1ac{bottom:105.466667pt;}
.y90{bottom:110.186667pt;}
.y54{bottom:110.266667pt;}
.y148{bottom:111.306667pt;}
.yd0{bottom:112.586667pt;}
.y1d4{bottom:114.586667pt;}
.y201{bottom:115.706667pt;}
.yfe{bottom:116.426667pt;}
.y1ab{bottom:121.066667pt;}
.y28{bottom:124.666667pt;}
.y8f{bottom:125.786667pt;}
.y53{bottom:125.946667pt;}
.y147{bottom:126.986667pt;}
.ycf{bottom:128.186667pt;}
.y200{bottom:131.306667pt;}
.yfd{bottom:132.026667pt;}
.y1aa{bottom:136.746667pt;}
.y1d3{bottom:138.506667pt;}
.y67{bottom:139.866667pt;}
.y27{bottom:140.266667pt;}
.y8e{bottom:141.386667pt;}
.y52{bottom:141.546667pt;}
.y146{bottom:142.586667pt;}
.yce{bottom:143.866667pt;}
.ya3{bottom:150.106667pt;}
.y163{bottom:151.146667pt;}
.y1a9{bottom:152.346667pt;}
.y184{bottom:153.306667pt;}
.y1ff{bottom:154.906667pt;}
.yfc{bottom:155.706667pt;}
.y26{bottom:155.866667pt;}
.y51{bottom:157.146667pt;}
.y145{bottom:158.266667pt;}
.ycd{bottom:159.466667pt;}
.y8d{bottom:165.066667pt;}
.y162{bottom:166.746667pt;}
.y125{bottom:167.546667pt;}
.y1a8{bottom:168.026667pt;}
.y1fe{bottom:170.586667pt;}
.y25{bottom:171.546667pt;}
.y1d2{bottom:171.706667pt;}
.y50{bottom:172.826667pt;}
.y144{bottom:173.866667pt;}
.ycc{bottom:175.066667pt;}
.y161{bottom:182.426667pt;}
.y1a7{bottom:183.626667pt;}
.y183{bottom:184.906667pt;}
.y1fd{bottom:186.186667pt;}
.y24{bottom:187.146667pt;}
.yfb{bottom:187.306667pt;}
.y4f{bottom:188.426667pt;}
.y143{bottom:189.466667pt;}
.y66{bottom:195.466667pt;}
.y8c{bottom:196.666667pt;}
.y160{bottom:198.026667pt;}
.ycb{bottom:198.746667pt;}
.y124{bottom:199.146667pt;}
.y1a6{bottom:199.226667pt;}
.y182{bottom:201.226667pt;}
.y23{bottom:202.746667pt;}
.yfa{bottom:202.906667pt;}
.y4e{bottom:204.106667pt;}
.y142{bottom:205.146667pt;}
.y1fc{bottom:209.866667pt;}
.y8b{bottom:212.346667pt;}
.y15f{bottom:214.426667pt;}
.y1d1{bottom:214.666667pt;}
.y123{bottom:214.826667pt;}
.y1a5{bottom:215.626667pt;}
.y181{bottom:217.626667pt;}
.y22{bottom:218.426667pt;}
.yf9{bottom:218.586667pt;}
.y4d{bottom:219.706667pt;}
.y141{bottom:220.746667pt;}
.ya1{bottom:221.306667pt;}
.y1fb{bottom:225.466667pt;}
.y15e{bottom:230.026667pt;}
.y1d0{bottom:230.266667pt;}
.yca{bottom:230.346667pt;}
.y122{bottom:230.426667pt;}
.y1a4{bottom:231.226667pt;}
.y21{bottom:234.026667pt;}
.yf8{bottom:234.186667pt;}
.y4c{bottom:235.306667pt;}
.y140{bottom:236.426667pt;}
.y1fa{bottom:241.066667pt;}
.y8a{bottom:243.946667pt;}
.y1cf{bottom:245.866667pt;}
.yc9{bottom:246.026667pt;}
.y121{bottom:246.106667pt;}
.y1a3{bottom:246.906667pt;}
.y20{bottom:249.706667pt;}
.yf7{bottom:249.866667pt;}
.y180{bottom:250.026667pt;}
.y4b{bottom:250.986667pt;}
.y13f{bottom:252.026667pt;}
.y89{bottom:260.266667pt;}
.y1ce{bottom:261.546667pt;}
.yc8{bottom:261.626667pt;}
.y120{bottom:261.706667pt;}
.y15d{bottom:262.426667pt;}
.y1a2{bottom:262.506667pt;}
.y1f9{bottom:264.746667pt;}
.y1f{bottom:265.306667pt;}
.yf6{bottom:265.466667pt;}
.y4a{bottom:266.586667pt;}
.y13e{bottom:267.626667pt;}
.y17f{bottom:273.626667pt;}
.y64{bottom:275.306667pt;}
.y88{bottom:276.666667pt;}
.y1cd{bottom:277.146667pt;}
.yc7{bottom:277.226667pt;}
.y11f{bottom:277.306667pt;}
.y1a1{bottom:278.186667pt;}
.y1f8{bottom:280.346667pt;}
.y1e{bottom:280.906667pt;}
.yf5{bottom:281.066667pt;}
.y13d{bottom:283.306667pt;}
.y15c{bottom:286.026667pt;}
.y49{bottom:290.266667pt;}
.ya0{bottom:292.506667pt;}
.y1cc{bottom:292.826667pt;}
.yc6{bottom:292.906667pt;}
.y11e{bottom:292.986667pt;}
.y1a0{bottom:293.786667pt;}
.y1f7{bottom:295.946667pt;}
.y1d{bottom:296.586667pt;}
.yf4{bottom:296.746667pt;}
.y13c{bottom:298.906667pt;}
.y17e{bottom:305.226667pt;}
.y1cb{bottom:308.426667pt;}
.y11d{bottom:308.586667pt;}
.y87{bottom:309.066667pt;}
.y19f{bottom:309.386667pt;}
.y1c{bottom:312.186667pt;}
.yf3{bottom:312.346667pt;}
.y15b{bottom:314.986667pt;}
.y62{bottom:315.226667pt;}
.y1f6{bottom:319.626667pt;}
.y48{bottom:321.866667pt;}
.y13b{bottom:322.586667pt;}
.y11c{bottom:324.266667pt;}
.yc5{bottom:324.506667pt;}
.y86{bottom:324.666667pt;}
.y19e{bottom:325.066667pt;}
.yf2{bottom:327.946667pt;}
.y15a{bottom:331.386667pt;}
.y1ca{bottom:332.346667pt;}
.y1f5{bottom:335.226667pt;}
.y1b{bottom:335.866667pt;}
.y17d{bottom:336.826667pt;}
.y11b{bottom:339.866667pt;}
.yc4{bottom:340.106667pt;}
.y19d{bottom:340.666667pt;}
.yf1{bottom:343.626667pt;}
.y159{bottom:347.706667pt;}
.y85{bottom:348.266667pt;}
.y47{bottom:350.506667pt;}
.y1f4{bottom:350.906667pt;}
.y9f{bottom:351.386667pt;}
.y17c{bottom:353.226667pt;}
.y13a{bottom:354.186667pt;}
.y11a{bottom:355.466667pt;}
.yc3{bottom:355.786667pt;}
.y19c{bottom:356.266667pt;}
.yf0{bottom:359.226667pt;}
.y158{bottom:364.106667pt;}
.y1a{bottom:367.786667pt;}
.y17b{bottom:369.626667pt;}
.y61{bottom:370.746667pt;}
.y119{bottom:371.146667pt;}
.yc2{bottom:371.386667pt;}
.y19b{bottom:371.946667pt;}
.y9e{bottom:372.026667pt;}
.y1f3{bottom:374.506667pt;}
.yef{bottom:374.906667pt;}
.y1c9{bottom:375.226667pt;}
.y84{bottom:377.306667pt;}
.y139{bottom:382.826667pt;}
.y118{bottom:386.746667pt;}
.yc1{bottom:387.066667pt;}
.y19a{bottom:387.546667pt;}
.y1f2{bottom:390.106667pt;}
.yee{bottom:390.506667pt;}
.y1c8{bottom:390.906667pt;}
.y83{bottom:392.906667pt;}
.y157{bottom:396.506667pt;}
.y218{bottom:401.706667pt;}
.y17a{bottom:402.026667pt;}
.y117{bottom:402.426667pt;}
.y199{bottom:403.146667pt;}
.y1f1{bottom:405.786667pt;}
.yed{bottom:406.106667pt;}
.y1c7{bottom:406.506667pt;}
.y82{bottom:408.506667pt;}
.yc0{bottom:410.666667pt;}
.y5f{bottom:410.746667pt;}
.y19{bottom:410.986667pt;}
.y9d{bottom:411.306667pt;}
.y217{bottom:417.306667pt;}
.y116{bottom:418.053333pt;}
.y198{bottom:419.573333pt;}
.y156{bottom:420.133333pt;}
.yec{bottom:421.813333pt;}
.y1c6{bottom:422.133333pt;}
.y81{bottom:424.133333pt;}
.y179{bottom:425.653333pt;}
.y1f0{bottom:429.413333pt;}
.y216{bottom:433.013333pt;}
.y115{bottom:433.653333pt;}
.y5e{bottom:435.013333pt;}
.y197{bottom:435.253333pt;}
.yeb{bottom:437.413333pt;}
.y1c5{bottom:437.813333pt;}
.y80{bottom:440.533333pt;}
.ybf{bottom:442.293333pt;}
.y18{bottom:443.893333pt;}
.y1ef{bottom:445.093333pt;}
.y155{bottom:449.093333pt;}
.y114{bottom:449.333333pt;}
.y196{bottom:450.853333pt;}
.yea{bottom:453.093333pt;}
.y1c4{bottom:453.413333pt;}
.y7f{bottom:456.213333pt;}
.y215{bottom:456.613333pt;}
.y178{bottom:457.253333pt;}
.ybe{bottom:457.973333pt;}
.y17{bottom:459.493333pt;}
.y1ee{bottom:460.693333pt;}
.y154{bottom:464.773333pt;}
.y113{bottom:464.933333pt;}
.y195{bottom:466.453333pt;}
.ye9{bottom:468.693333pt;}
.y1c3{bottom:469.093333pt;}
.y7e{bottom:471.813333pt;}
.y214{bottom:472.293333pt;}
.ybd{bottom:473.573333pt;}
.y5c{bottom:474.933333pt;}
.y16{bottom:475.173333pt;}
.y153{bottom:480.373333pt;}
.y194{bottom:482.133333pt;}
.ye8{bottom:484.293333pt;}
.y1c2{bottom:484.693333pt;}
.y7d{bottom:487.413333pt;}
.y112{bottom:488.613333pt;}
.y177{bottom:488.853333pt;}
.ybc{bottom:489.253333pt;}
.y15{bottom:490.773333pt;}
.y213{bottom:495.893333pt;}
.y152{bottom:496.693333pt;}
.y193{bottom:497.733333pt;}
.ye7{bottom:499.973333pt;}
.y1c1{bottom:500.293333pt;}
.y7c{bottom:503.813333pt;}
.ybb{bottom:504.853333pt;}
.y176{bottom:505.253333pt;}
.y14{bottom:506.373333pt;}
.y212{bottom:511.493333pt;}
.y192{bottom:513.413333pt;}
.y5a{bottom:514.933333pt;}
.ye6{bottom:515.573333pt;}
.y7b{bottom:519.413333pt;}
.y111{bottom:520.213333pt;}
.yba{bottom:520.453333pt;}
.y175{bottom:521.653333pt;}
.y13{bottom:522.053333pt;}
.y1c0{bottom:524.213333pt;}
.y211{bottom:527.173333pt;}
.y191{bottom:529.013333pt;}
.y151{bottom:529.093333pt;}
.ye5{bottom:531.253333pt;}
.y7a{bottom:535.093333pt;}
.yb9{bottom:536.133333pt;}
.y12{bottom:537.653333pt;}
.y1ed{bottom:539.253333pt;}
.y190{bottom:544.613333pt;}
.y150{bottom:544.693333pt;}
.ye4{bottom:546.853333pt;}
.y110{bottom:548.853333pt;}
.y79{bottom:550.693333pt;}
.y210{bottom:550.773333pt;}
.y11{bottom:553.333333pt;}
.y174{bottom:554.053333pt;}
.y58{bottom:554.853333pt;}
.y138{bottom:555.813333pt;}
.y18f{bottom:560.293333pt;}
.ye3{bottom:562.453333pt;}
.y20f{bottom:566.453333pt;}
.y1bf{bottom:567.173333pt;}
.yb8{bottom:567.733333pt;}
.y14f{bottom:568.373333pt;}
.y10{bottom:568.933333pt;}
.y1ec{bottom:570.453333pt;}
.y137{bottom:571.493333pt;}
.y18e{bottom:575.893333pt;}
.y173{bottom:577.653333pt;}
.ye2{bottom:578.133333pt;}
.y56{bottom:579.093333pt;}
.y1be{bottom:582.773333pt;}
.y78{bottom:583.093333pt;}
.yb7{bottom:583.413333pt;}
.yf{bottom:584.533333pt;}
.y136{bottom:587.093333pt;}
.y20e{bottom:590.053333pt;}
.y46{bottom:591.493333pt;}
.ye1{bottom:593.733333pt;}
.y1eb{bottom:594.133333pt;}
.y77{bottom:598.693333pt;}
.yb6{bottom:599.013333pt;}
.y14e{bottom:599.973333pt;}
.ye{bottom:600.213333pt;}
.y135{bottom:602.693333pt;}
.y20d{bottom:605.653333pt;}
.y45{bottom:607.173333pt;}
.y18d{bottom:608.293333pt;}
.y172{bottom:609.253333pt;}
.ye0{bottom:609.413333pt;}
.y1ea{bottom:609.733333pt;}
.y76{bottom:614.373333pt;}
.y1bd{bottom:614.453333pt;}
.yb5{bottom:614.613333pt;}
.y14d{bottom:615.653333pt;}
.yd{bottom:615.813333pt;}
.y134{bottom:618.373333pt;}
.y20c{bottom:621.333333pt;}
.y55{bottom:622.453333pt;}
.y44{bottom:622.773333pt;}
.y9a{bottom:623.333333pt;}
.y18c{bottom:623.893333pt;}
.ydf{bottom:625.013333pt;}
.y1bc{bottom:630.053333pt;}
.yb4{bottom:630.293333pt;}
.y14c{bottom:631.253333pt;}
.yc{bottom:631.493333pt;}
.y1e9{bottom:633.413333pt;}
.y133{bottom:633.973333pt;}
.y75{bottom:637.973333pt;}
.y43{bottom:638.453333pt;}
.yde{bottom:640.613333pt;}
.y171{bottom:640.853333pt;}
.y20b{bottom:644.933333pt;}
.y1bb{bottom:645.653333pt;}
.yb3{bottom:645.893333pt;}
.y18b{bottom:647.573333pt;}
.y1e8{bottom:649.013333pt;}
.y132{bottom:649.653333pt;}
.y42{bottom:654.053333pt;}
.y14b{bottom:654.853333pt;}
.yb{bottom:655.413333pt;}
.ydd{bottom:656.293333pt;}
.y170{bottom:657.253333pt;}
.y20a{bottom:660.613333pt;}
.y1ba{bottom:661.333333pt;}
.yb2{bottom:661.573333pt;}
.y98{bottom:662.613333pt;}
.y1e7{bottom:664.613333pt;}
.y131{bottom:665.253333pt;}
.y74{bottom:669.573333pt;}
.y41{bottom:669.653333pt;}
.y16f{bottom:673.653333pt;}
.y209{bottom:676.213333pt;}
.y18a{bottom:676.853333pt;}
.y1b9{bottom:676.933333pt;}
.ydc{bottom:679.893333pt;}
.y130{bottom:680.853333pt;}
.yb1{bottom:685.173333pt;}
.y73{bottom:685.253333pt;}
.y40{bottom:685.333333pt;}
.y14a{bottom:686.533333pt;}
.y1e6{bottom:688.293333pt;}
.y1b8{bottom:692.613333pt;}
.y12f{bottom:696.533333pt;}
.ya{bottom:698.293333pt;}
.y208{bottom:699.813333pt;}
.y72{bottom:700.853333pt;}
.y3f{bottom:700.933333pt;}
.y1e5{bottom:703.893333pt;}
.y16e{bottom:706.053333pt;}
.y1b7{bottom:708.213333pt;}
.ydb{bottom:711.813333pt;}
.y12e{bottom:712.133333pt;}
.y149{bottom:715.173333pt;}
.y207{bottom:715.493333pt;}
.y71{bottom:716.533333pt;}
.y3e{bottom:716.613333pt;}
.yb0{bottom:716.773333pt;}
.y1e4{bottom:719.573333pt;}
.y1b6{bottom:723.813333pt;}
.y12d{bottom:727.813333pt;}
.y16d{bottom:729.653333pt;}
.y9{bottom:729.893333pt;}
.y206{bottom:731.093333pt;}
.y70{bottom:732.133333pt;}
.y3d{bottom:732.213333pt;}
.y189{bottom:732.373333pt;}
.yaf{bottom:732.453333pt;}
.y1b5{bottom:739.493333pt;}
.y10f{bottom:739.813333pt;}
.y1e3{bottom:743.173333pt;}
.y12c{bottom:743.413333pt;}
.y6f{bottom:747.733333pt;}
.y3c{bottom:747.813333pt;}
.yae{bottom:748.053333pt;}
.yda{bottom:754.693333pt;}
.y1b4{bottom:755.093333pt;}
.y10e{bottom:755.493333pt;}
.y1e2{bottom:758.773333pt;}
.y12b{bottom:759.013333pt;}
.y16c{bottom:761.573333pt;}
.y8{bottom:761.733333pt;}
.y6e{bottom:763.413333pt;}
.y3b{bottom:763.493333pt;}
.yad{bottom:763.733333pt;}
.yd9{bottom:770.373333pt;}
.y1b3{bottom:770.693333pt;}
.y10d{bottom:771.093333pt;}
.y1e1{bottom:774.453333pt;}
.y12a{bottom:774.693333pt;}
.y3a{bottom:779.093333pt;}
.yd8{bottom:785.973333pt;}
.y1b2{bottom:786.373333pt;}
.y10c{bottom:786.693333pt;}
.y6d{bottom:787.013333pt;}
.yac{bottom:787.333333pt;}
.y188{bottom:787.973333pt;}
.y129{bottom:790.293333pt;}
.y7{bottom:793.733333pt;}
.y39{bottom:794.693333pt;}
.y1e0{bottom:798.053333pt;}
.yd7{bottom:801.653333pt;}
.y1b1{bottom:801.973333pt;}
.y10b{bottom:802.373333pt;}
.y16b{bottom:804.453333pt;}
.y205{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y38{bottom:810.373333pt;}
.y1df{bottom:813.733333pt;}
.y128{bottom:813.973333pt;}
.yaa{bottom:816.613333pt;}
.yd6{bottom:817.253333pt;}
.y1b0{bottom:817.653333pt;}
.y10a{bottom:817.973333pt;}
.y6c{bottom:818.933333pt;}
.y16a{bottom:820.773333pt;}
.y204{bottom:825.253333pt;}
.y37{bottom:825.973333pt;}
.y1de{bottom:829.333333pt;}
.y1af{bottom:833.253333pt;}
.y109{bottom:833.653333pt;}
.y169{bottom:837.173333pt;}
.y36{bottom:841.653333pt;}
.y5{bottom:841.813333pt;}
.y187{bottom:843.493333pt;}
.y127{bottom:845.573333pt;}
.yd5{bottom:848.853333pt;}
.y108{bottom:849.253333pt;}
.y1dd{bottom:852.933333pt;}
.y35{bottom:857.253333pt;}
.y6a{bottom:859.493333pt;}
.yd4{bottom:864.533333pt;}
.y107{bottom:864.853333pt;}
.y1dc{bottom:868.613333pt;}
.y168{bottom:869.573333pt;}
.y34{bottom:872.853333pt;}
.y126{bottom:874.213333pt;}
.y4{bottom:875.893333pt;}
.yd3{bottom:880.133333pt;}
.y106{bottom:880.533333pt;}
.y33{bottom:888.533333pt;}
.y1db{bottom:892.213333pt;}
.y167{bottom:893.173333pt;}
.yd2{bottom:895.813333pt;}
.y105{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.y186{bottom:899.120000pt;}
.y97{bottom:901.600000pt;}
.ya8{bottom:903.520000pt;}
.y203{bottom:903.840000pt;}
.y32{bottom:904.160000pt;}
.y1da{bottom:907.840000pt;}
.y1ae{bottom:911.440000pt;}
.y104{bottom:911.840000pt;}
.y69{bottom:915.120000pt;}
.y96{bottom:917.200000pt;}
.yd1{bottom:919.440000pt;}
.y31{bottom:919.840000pt;}
.y1d9{bottom:923.520000pt;}
.y166{bottom:924.800000pt;}
.y103{bottom:927.440000pt;}
.y95{bottom:932.880000pt;}
.y1ad{bottom:935.040000pt;}
.y30{bottom:935.440000pt;}
.y165{bottom:941.200000pt;}
.y102{bottom:943.040000pt;}
.y1d8{bottom:947.120000pt;}
.y94{bottom:948.480000pt;}
.y2f{bottom:951.040000pt;}
.y185{bottom:954.640000pt;}
.y164{bottom:957.600000pt;}
.y101{bottom:958.720000pt;}
.y1d7{bottom:962.800000pt;}
.y2e{bottom:966.720000pt;}
.y68{bottom:970.640000pt;}
.y100{bottom:974.320000pt;}
.y1d6{bottom:978.400000pt;}
.y93{bottom:980.080000pt;}
.y2d{bottom:982.320000pt;}
.yff{bottom:990.000000pt;}
.ya7{bottom:990.320000pt;}
.y92{bottom:996.480000pt;}
.y2c{bottom:998.000000pt;}
.y1d5{bottom:1002.320000pt;}
.y91{bottom:1012.800000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.hd{height:23.626667pt;}
.h9{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h18{height:35.280000pt;}
.hb{height:39.200000pt;}
.hc{height:39.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h17{height:50.880000pt;}
.h12{height:53.309531pt;}
.h7{height:54.187500pt;}
.he{height:54.880000pt;}
.h13{height:54.927899pt;}
.hf{height:54.960000pt;}
.h10{height:54.986667pt;}
.h8{height:55.631875pt;}
.h11{height:60.961875pt;}
.h4{height:63.128437pt;}
.h16{height:70.480000pt;}
.h19{height:86.160000pt;}
.h1a{height:86.186667pt;}
.h15{height:212.026667pt;}
.h14{height:220.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wc{width:103.626667pt;}
.we{width:109.600000pt;}
.wf{width:128.666667pt;}
.w13{width:134.240000pt;}
.w14{width:139.120000pt;}
.w11{width:140.906667pt;}
.w10{width:154.160000pt;}
.w3{width:165.466667pt;}
.wd{width:172.880000pt;}
.w5{width:182.640000pt;}
.w9{width:205.680000pt;}
.w8{width:233.546667pt;}
.w7{width:233.786667pt;}
.w12{width:255.546667pt;}
.w4{width:322.266667pt;}
.wb{width:322.426667pt;}
.wa{width:350.586667pt;}
.w6{width:671.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x19{left:12.480000pt;}
.x13{left:13.600000pt;}
.x10{left:24.640000pt;}
.x18{left:31.760000pt;}
.x12{left:35.680000pt;}
.x14{left:47.920000pt;}
.x1{left:60.480000pt;}
.x9{left:84.479988pt;}
.x11{left:87.306667pt;}
.x26{left:98.879988pt;}
.xa{left:108.479988pt;}
.x1a{left:142.666667pt;}
.x1b{left:165.466667pt;}
.x2{left:171.306655pt;}
.xf{left:203.200000pt;}
.xb{left:219.946667pt;}
.x7{left:227.226667pt;}
.xd{left:231.226667pt;}
.x5{left:261.386655pt;}
.x17{left:279.146667pt;}
.xc{left:294.266667pt;}
.x20{left:306.826655pt;}
.x22{left:309.386655pt;}
.x1c{left:339.066667pt;}
.x15{left:351.226667pt;}
.x16{left:411.066667pt;}
.x1d{left:449.386667pt;}
.x24{left:458.853333pt;}
.x23{left:522.053322pt;}
.x1f{left:524.053322pt;}
.xe{left:527.813333pt;}
.x21{left:534.053322pt;}
.x4{left:541.013322pt;}
.x8{left:550.213333pt;}
.x1e{left:578.693333pt;}
.x25{left:593.733333pt;}
.x3{left:711.413322pt;}
}




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