
    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_5acfceba2e83f28a3d99d42a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_8fd91584e5d56ae98cf34b1c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_76ba52a04bcb4cb53812a08c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005371;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_d2b4e09a495421b5d5ddf867.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_86a6516a35d6a2fe28f19c47.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959961;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_43da7b07fa924efb9b6a9a52.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942000;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_834c94ce25f9729621fd3a31.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.041000;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_7418d671fc17c23df659a080.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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_883f479401832c7c1193ac34.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.711000;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_8acfd947f53109a61e98d26d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.930000;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_5ece0b2fe6d3b10edbc1d859.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f0a3f17aaed6d414f2fc43b3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0466021cea41e9065c4ce57f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.943000;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);}
.m2{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-1.200000px;}
.ls6{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.972000px;}
.ls4{letter-spacing:-0.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.899988px;}
.ls1{letter-spacing:155.497508px;}
.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;}
}
.ws0{word-spacing:-18.984000px;}
.ws2{word-spacing:-13.986000px;}
.ws3{word-spacing:-12.720000px;}
.ws7{word-spacing:-12.120000px;}
.ws9{word-spacing:-11.592000px;}
.ws6{word-spacing:-11.520000px;}
.wsb{word-spacing:-11.448000px;}
.wsc{word-spacing:-9.828000px;}
.ws4{word-spacing:-8.819882px;}
.ws5{word-spacing:-8.231765px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:146.004143px;}
.ws8{word-spacing:731.928451px;}
._32{margin-left:-1477.987925px;}
._2{margin-left:-7.353600px;}
._4{margin-left:-6.210000px;}
._3{margin-left:-4.284000px;}
._1{margin-left:-1.996800px;}
._7{width:1.468800px;}
._9{width:2.702400px;}
._5{width:3.712800px;}
._0{width:5.587200px;}
._6{width:6.668400px;}
._d{width:8.016600px;}
._c{width:9.093600px;}
._8{width:10.211400px;}
._11{width:11.364600px;}
._b{width:13.068000px;}
._e{width:14.542200px;}
._f{width:16.416000px;}
._a{width:17.776800px;}
._12{width:18.874800px;}
._14{width:20.004000px;}
._15{width:21.984000px;}
._34{width:23.426400px;}
._13{width:24.642000px;}
._23{width:26.280000px;}
._22{width:27.366000px;}
._37{width:28.852200px;}
._38{width:30.126600px;}
._39{width:31.163400px;}
._35{width:39.387600px;}
._36{width:41.131800px;}
._33{width:78.816600px;}
._10{width:89.797133px;}
._16{width:159.332304px;}
._17{width:179.856105px;}
._2a{width:229.216301px;}
._2c{width:230.363046px;}
._25{width:250.573621px;}
._18{width:284.403506px;}
._2f{width:285.469185px;}
._1b{width:296.261897px;}
._2e{width:302.412673px;}
._1f{width:307.484156px;}
._27{width:311.340562px;}
._2b{width:343.356162px;}
._1d{width:387.758353px;}
._19{width:399.321408px;}
._1a{width:410.562868px;}
._21{width:430.127261px;}
._1c{width:575.793556px;}
._20{width:614.171430px;}
._1e{width:617.020241px;}
._30{width:618.282429px;}
._26{width:628.523147px;}
._2d{width:723.897955px;}
._31{width:740.793744px;}
._29{width:916.121256px;}
._24{width:1014.851314px;}
._28{width:1062.471426px;}
.fc5{color:rgb(0,0,128);}
.fc4{color:rgb(84,119,179);}
.fc3{color:rgb(96,96,91);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:31.314600px;}
.fsa{font-size:36.115800px;}
.fsf{font-size:41.998800px;}
.fsc{font-size:44.999400px;}
.fsd{font-size:47.999400px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs10{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs9{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fse{font-size:66.000600px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs0{font-size:96.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.y65{bottom:35.972230px;}
.y64{bottom:47.962888px;}
.y63{bottom:59.953545px;}
.y1c{bottom:67.597501px;}
.y62{bottom:72.028200px;}
.y1b{bottom:84.097501px;}
.y1b3{bottom:86.315550px;}
.y1da{bottom:86.315850px;}
.y164{bottom:86.316000px;}
.yfc{bottom:86.316450px;}
.yf3{bottom:86.317500px;}
.yb4{bottom:86.319000px;}
.y20d{bottom:86.832000px;}
.y90{bottom:87.592500px;}
.y5f{bottom:88.440900px;}
.y270{bottom:89.461200px;}
.yd0{bottom:91.333498px;}
.y19{bottom:91.590000px;}
.y132{bottom:95.329650px;}
.y113{bottom:99.330000px;}
.y14{bottom:99.795000px;}
.y1b2{bottom:102.812550px;}
.y23a{bottom:102.812850px;}
.ycf{bottom:104.854929px;}
.y1d9{bottom:105.788850px;}
.yfb{bottom:105.789450px;}
.yf2{bottom:105.790500px;}
.y1f7{bottom:105.792000px;}
.yb3{bottom:105.793500px;}
.y26f{bottom:105.959550px;}
.y20c{bottom:106.306500px;}
.y8f{bottom:107.067000px;}
.y18{bottom:113.670000px;}
.y131{bottom:114.804150px;}
.yce{bottom:118.376360px;}
.y112{bottom:118.803000px;}
.y239{bottom:119.311200px;}
.y26e{bottom:122.456550px;}
.yfa{bottom:125.347950px;}
.yf1{bottom:125.349000px;}
.y1f6{bottom:125.350500px;}
.yb2{bottom:125.352000px;}
.y20b{bottom:125.865000px;}
.y8e{bottom:126.625500px;}
.ycd{bottom:131.812592px;}
.y20e{bottom:132.066000px;}
.y1b1{bottom:132.577500px;}
.y10{bottom:133.935000px;}
.y130{bottom:134.277150px;}
.y17{bottom:135.750000px;}
.y238{bottom:135.808200px;}
.y1d8{bottom:136.744500px;}
.y111{bottom:138.363000px;}
.y5e{bottom:138.702000px;}
.y26d{bottom:138.954900px;}
.y163{bottom:144.822000px;}
.yf0{bottom:144.823500px;}
.yb1{bottom:144.825000px;}
.ycc{bottom:145.332823px;}
.y20a{bottom:145.338000px;}
.y8d{bottom:146.100000px;}
.y1b0{bottom:152.050500px;}
.y237{bottom:152.306550px;}
.y1d7{bottom:153.241500px;}
.yf9{bottom:154.602000px;}
.y15{bottom:154.950000px;}
.y26c{bottom:155.451900px;}
.yf{bottom:156.015000px;}
.y16{bottom:157.830000px;}
.y110{bottom:157.836000px;}
.y5d{bottom:158.175000px;}
.ycb{bottom:163.191000px;}
.y12f{bottom:163.531650px;}
.y189{bottom:164.296500px;}
.yef{bottom:164.298000px;}
.yb0{bottom:164.299500px;}
.y209{bottom:164.812500px;}
.y8c{bottom:165.573000px;}
.y236{bottom:168.803550px;}
.y26b{bottom:171.950250px;}
.y162{bottom:175.267500px;}
.y10f{bottom:177.310500px;}
.y5c{bottom:177.735000px;}
.yca{bottom:181.813500px;}
.y1af{bottom:181.815000px;}
.y1d6{bottom:182.496000px;}
.y12e{bottom:183.090000px;}
.yee{bottom:183.856500px;}
.yaf{bottom:183.858000px;}
.y208{bottom:184.371000px;}
.y8b{bottom:185.131500px;}
.y235{bottom:185.301900px;}
.y26a{bottom:188.447250px;}
.y161{bottom:191.764500px;}
.y188{bottom:193.550700px;}
.y10e{bottom:196.869000px;}
.y5b{bottom:197.208000px;}
.y1ae{bottom:198.312000px;}
.y1d5{bottom:198.993000px;}
.y234{bottom:201.798900px;}
.yed{bottom:203.331000px;}
.yae{bottom:203.332500px;}
.y207{bottom:203.845500px;}
.y8a{bottom:204.606000px;}
.y269{bottom:204.945600px;}
.y12d{bottom:212.343000px;}
.y187{bottom:213.024000px;}
.y1ad{bottom:214.809000px;}
.y1d4{bottom:215.490000px;}
.y10d{bottom:216.343500px;}
.y5a{bottom:216.682500px;}
.y233{bottom:218.297250px;}
.y268{bottom:221.442600px;}
.y160{bottom:222.208500px;}
.yec{bottom:222.804000px;}
.yad{bottom:222.805500px;}
.yf8{bottom:222.807000px;}
.y206{bottom:223.320000px;}
.y89{bottom:224.080500px;}
.yc9{bottom:227.482500px;}
.y232{bottom:234.794250px;}
.y10c{bottom:235.816500px;}
.y59{bottom:236.241000px;}
.y267{bottom:237.940950px;}
.y15f{bottom:241.683000px;}
.yeb{bottom:242.278500px;}
.yac{bottom:242.280000px;}
.y205{bottom:242.878500px;}
.y88{bottom:243.553500px;}
.y1ac{bottom:244.573500px;}
.y1d3{bottom:246.360000px;}
.yc8{bottom:247.041000px;}
.y231{bottom:251.292600px;}
.y266{bottom:254.437950px;}
.y10b{bottom:255.376500px;}
.y58{bottom:255.715500px;}
.y15e{bottom:261.156000px;}
.yea{bottom:261.837000px;}
.yab{bottom:261.838500px;}
.yf7{bottom:261.840000px;}
.y186{bottom:262.348500px;}
.y204{bottom:262.351500px;}
.y87{bottom:263.113500px;}
.y1ab{bottom:264.048000px;}
.y1d2{bottom:265.834500px;}
.yc7{bottom:266.515500px;}
.y230{bottom:267.789600px;}
.y12c{bottom:270.088500px;}
.y265{bottom:270.936300px;}
.y10a{bottom:274.849500px;}
.y57{bottom:275.188500px;}
.ye9{bottom:281.311500px;}
.yaa{bottom:281.313000px;}
.y185{bottom:281.821500px;}
.y203{bottom:281.826000px;}
.y86{bottom:282.586500px;}
.y1aa{bottom:283.521000px;}
.y22f{bottom:284.287950px;}
.y1d1{bottom:285.307500px;}
.yc6{bottom:285.990000px;}
.y264{bottom:287.433300px;}
.y12b{bottom:289.563000px;}
.y15d{bottom:291.600750px;}
.y109{bottom:294.324000px;}
.y56{bottom:294.747000px;}
.ye8{bottom:300.784500px;}
.y22e{bottom:300.784950px;}
.y1f5{bottom:300.786000px;}
.ya9{bottom:300.787500px;}
.y184{bottom:301.296000px;}
.y202{bottom:301.384500px;}
.y85{bottom:302.061000px;}
.y263{bottom:303.931650px;}
.y1d0{bottom:304.866000px;}
.yc5{bottom:305.548500px;}
.y15c{bottom:308.097750px;}
.y12a{bottom:309.036000px;}
.y1a9{bottom:313.285500px;}
.y108{bottom:313.797000px;}
.y22d{bottom:317.283300px;}
.ye7{bottom:320.343000px;}
.y1f4{bottom:320.344500px;}
.ya8{bottom:320.346000px;}
.y262{bottom:320.428650px;}
.y183{bottom:320.854500px;}
.y201{bottom:320.859000px;}
.y84{bottom:321.619500px;}
.y55{bottom:324.000000px;}
.y15b{bottom:324.596100px;}
.yc4{bottom:325.021500px;}
.y129{bottom:328.594500px;}
.y1a8{bottom:329.782500px;}
.y107{bottom:333.357000px;}
.y22c{bottom:333.780300px;}
.y1cf{bottom:335.736150px;}
.y261{bottom:336.927000px;}
.y1f3{bottom:339.817500px;}
.ya7{bottom:339.819000px;}
.yf6{bottom:339.820500px;}
.y182{bottom:340.329000px;}
.y200{bottom:340.333500px;}
.y83{bottom:341.094000px;}
.y15a{bottom:341.178150px;}
.yc3{bottom:344.496000px;}
.ya{bottom:344.680500px;}
.y1a7{bottom:346.279500px;}
.y128{bottom:348.069000px;}
.ye6{bottom:349.597500px;}
.y22b{bottom:350.278650px;}
.y1ce{bottom:352.233150px;}
.y106{bottom:352.830000px;}
.y260{bottom:353.424000px;}
.y159{bottom:357.676500px;}
.y1f2{bottom:359.292000px;}
.ya6{bottom:359.293500px;}
.y181{bottom:359.802000px;}
.y1ff{bottom:359.806500px;}
.y82{bottom:360.567000px;}
.yc2{bottom:363.970500px;}
.y22a{bottom:366.860700px;}
.y127{bottom:367.543500px;}
.y1cd{bottom:368.731500px;}
.y25f{bottom:369.921000px;}
.y105{bottom:372.304500px;}
.y158{bottom:374.173500px;}
.y1a6{bottom:376.045500px;}
.y1f1{bottom:378.850500px;}
.ya5{bottom:378.852000px;}
.y1fe{bottom:379.365000px;}
.y81{bottom:380.125500px;}
.y2e{bottom:381.622501px;}
.y229{bottom:383.357700px;}
.yc1{bottom:383.529000px;}
.y1cc{bottom:385.228500px;}
.y25e{bottom:386.419350px;}
.yd{bottom:386.490000px;}
.y126{bottom:387.102000px;}
.y180{bottom:389.055750px;}
.y4d{bottom:390.586800px;}
.y157{bottom:390.670500px;}
.y104{bottom:391.863000px;}
.y1a5{bottom:395.518500px;}
.y9{bottom:395.689500px;}
.y1f0{bottom:398.325000px;}
.ya4{bottom:398.326500px;}
.ye5{bottom:398.583000px;}
.y1fd{bottom:398.839500px;}
.y228{bottom:399.856050px;}
.y25d{bottom:402.916350px;}
.yc0{bottom:403.002000px;}
.y4c{bottom:405.552900px;}
.y17f{bottom:405.554100px;}
.y125{bottom:406.576500px;}
.y80{bottom:409.379700px;}
.y103{bottom:411.337500px;}
.y1cb{bottom:414.483000px;}
.y1a4{bottom:415.077000px;}
.y227{bottom:416.353050px;}
.y1ef{bottom:417.798000px;}
.ya3{bottom:417.801000px;}
.ye4{bottom:418.057500px;}
.y1fc{bottom:418.314000px;}
.y25c{bottom:419.414700px;}
.y4b{bottom:420.605400px;}
.y156{bottom:421.116000px;}
.y17e{bottom:422.051100px;}
.y124{bottom:426.049500px;}
.y7f{bottom:428.853000px;}
.y102{bottom:430.810500px;}
.y1ca{bottom:430.980000px;}
.ybf{bottom:432.255000px;}
.y226{bottom:432.851400px;}
.yb{bottom:434.850000px;}
.y4a{bottom:435.571500px;}
.y25b{bottom:435.911700px;}
.ya2{bottom:437.274000px;}
.ye3{bottom:437.616000px;}
.y1fb{bottom:437.872500px;}
.y17d{bottom:438.549450px;}
.y155{bottom:440.590500px;}
.y1a3{bottom:444.756150px;}
.y123{bottom:445.608000px;}
.y2d{bottom:445.972501px;}
.y8{bottom:446.698500px;}
.y1ee{bottom:447.052500px;}
.y1c9{bottom:447.477000px;}
.y225{bottom:449.348400px;}
.y101{bottom:450.370500px;}
.y49{bottom:450.538950px;}
.y25a{bottom:452.410050px;}
.y17c{bottom:455.046450px;}
.ya1{bottom:456.832500px;}
.yf5{bottom:456.834000px;}
.ye2{bottom:457.090500px;}
.y1fa{bottom:457.345500px;}
.y7e{bottom:458.107500px;}
.y154{bottom:460.065000px;}
.y1a2{bottom:461.254500px;}
.ybe{bottom:461.508000px;}
.y122{bottom:465.082500px;}
.y48{bottom:465.591450px;}
.y224{bottom:465.846750px;}
.y259{bottom:468.992100px;}
.y100{bottom:469.843500px;}
.y17b{bottom:471.628500px;}
.ya0{bottom:476.307000px;}
.ye1{bottom:476.563500px;}
.y1f9{bottom:476.820000px;}
.y1a1{bottom:477.751500px;}
.y1c8{bottom:478.348500px;}
.y153{bottom:479.538000px;}
.y47{bottom:480.557550px;}
.y223{bottom:482.343750px;}
.y121{bottom:484.557000px;}
.y258{bottom:485.490450px;}
.y11{bottom:488.055000px;}
.yff{bottom:489.318000px;}
.y1a0{bottom:494.248500px;}
.y46{bottom:495.610050px;}
.y9f{bottom:495.781500px;}
.ye0{bottom:496.038000px;}
.y1f8{bottom:496.378500px;}
.y7{bottom:497.707500px;}
.y1c7{bottom:497.907000px;}
.y222{bottom:498.842100px;}
.y152{bottom:499.096500px;}
.y17a{bottom:500.799000px;}
.y257{bottom:501.987450px;}
.y120{bottom:504.030000px;}
.y1ed{bottom:504.795000px;}
.yfe{bottom:508.791000px;}
.y2c{bottom:510.322501px;}
.y45{bottom:510.577500px;}
.ybd{bottom:513.043500px;}
.y221{bottom:515.339100px;}
.y9e{bottom:515.340000px;}
.ydf{bottom:515.596500px;}
.y7d{bottom:515.853000px;}
.y1c6{bottom:517.380000px;}
.y256{bottom:518.485800px;}
.y179{bottom:520.357500px;}
.y11f{bottom:523.588500px;}
.y19f{bottom:524.014500px;}
.y1ec{bottom:524.353500px;}
.y44{bottom:525.543600px;}
.y151{bottom:529.542000px;}
.y220{bottom:531.837450px;}
.ybc{bottom:532.518000px;}
.y9d{bottom:534.813000px;}
.yf4{bottom:534.814500px;}
.y255{bottom:534.982800px;}
.yde{bottom:535.071000px;}
.y7c{bottom:535.327500px;}
.y1c5{bottom:536.854500px;}
.y12{bottom:538.230000px;}
.y178{bottom:539.830500px;}
.y43{bottom:540.596100px;}
.y11e{bottom:543.063000px;}
.y19e{bottom:543.487500px;}
.y1eb{bottom:543.828000px;}
.y150{bottom:546.039000px;}
.y21f{bottom:548.334450px;}
.y6{bottom:548.716500px;}
.y254{bottom:551.481150px;}
.ybb{bottom:552.076500px;}
.y9c{bottom:554.287500px;}
.ydd{bottom:554.544000px;}
.y7b{bottom:554.800500px;}
.y42{bottom:555.562200px;}
.y1c4{bottom:556.329000px;}
.y177{bottom:559.305000px;}
.y114{bottom:561.600000px;}
.y14f{bottom:562.536000px;}
.y11d{bottom:562.537500px;}
.y19d{bottom:563.046000px;}
.y1ea{bottom:563.302500px;}
.y21e{bottom:564.832800px;}
.y253{bottom:567.978150px;}
.y41{bottom:570.614700px;}
.yba{bottom:571.549500px;}
.y9b{bottom:573.846000px;}
.ydc{bottom:574.102500px;}
.y7a{bottom:574.359000px;}
.y1c3{bottom:575.887500px;}
.y2b{bottom:577.603500px;}
.y176{bottom:578.863500px;}
.y21d{bottom:581.329800px;}
.y11c{bottom:582.096000px;}
.y1e9{bottom:582.775500px;}
.y252{bottom:584.476500px;}
.y40{bottom:585.582150px;}
.y1a{bottom:589.605000px;}
.yb9{bottom:591.024000px;}
.y19c{bottom:592.810650px;}
.y14e{bottom:592.980000px;}
.y9a{bottom:593.320500px;}
.ydb{bottom:593.577000px;}
.y79{bottom:593.833500px;}
.y1c2{bottom:595.360500px;}
.y21c{bottom:597.828150px;}
.y175{bottom:598.338000px;}
.y5{bottom:599.725500px;}
.y3f{bottom:600.548250px;}
.y251{bottom:600.973500px;}
.y11b{bottom:601.570500px;}
.y1e8{bottom:602.334000px;}
.y19b{bottom:609.307650px;}
.yb8{bottom:610.582500px;}
.y2a{bottom:611.953501px;}
.y14d{bottom:612.454500px;}
.y99{bottom:612.795000px;}
.yda{bottom:613.051500px;}
.y78{bottom:613.308000px;}
.y21b{bottom:614.325150px;}
.y3e{bottom:615.600750px;}
.y54{bottom:615.601106px;}
.y250{bottom:617.471850px;}
.y174{bottom:617.811000px;}
.y11a{bottom:621.043500px;}
.y1e7{bottom:621.808500px;}
.y1c1{bottom:624.614700px;}
.y19a{bottom:625.806000px;}
.yfd{bottom:626.230500px;}
.y29{bottom:626.953501px;}
.y53{bottom:629.037338px;}
.yb7{bottom:630.057000px;}
.y3d{bottom:630.566850px;}
.y21a{bottom:630.823500px;}
.ye{bottom:631.920000px;}
.y14c{bottom:631.927500px;}
.y98{bottom:632.353500px;}
.yd9{bottom:632.610000px;}
.y77{bottom:632.866500px;}
.y24f{bottom:633.968850px;}
.y119{bottom:640.602000px;}
.y1e6{bottom:641.283000px;}
.y28{bottom:641.953500px;}
.y199{bottom:642.303000px;}
.y52{bottom:642.558769px;}
.y1c0{bottom:644.088000px;}
.y3c{bottom:645.534300px;}
.y173{bottom:647.065800px;}
.y219{bottom:647.320500px;}
.yb6{bottom:649.530000px;}
.y24e{bottom:650.467200px;}
.y14b{bottom:651.486000px;}
.y97{bottom:651.826500px;}
.yd8{bottom:652.084500px;}
.y76{bottom:652.341000px;}
.y51{bottom:656.079000px;}
.y198{bottom:658.800000px;}
.y118{bottom:660.076500px;}
.y3b{bottom:660.586800px;}
.y1e5{bottom:660.841500px;}
.y172{bottom:663.562800px;}
.y218{bottom:663.817500px;}
.y24d{bottom:666.964200px;}
.y50{bottom:669.600000px;}
.y96{bottom:671.301000px;}
.yd7{bottom:671.557500px;}
.y75{bottom:671.814000px;}
.y3a{bottom:675.552900px;}
.yb5{bottom:678.784500px;}
.y117{bottom:679.551000px;}
.y171{bottom:680.061150px;}
.y1e4{bottom:680.314500px;}
.y14a{bottom:681.931650px;}
.y24c{bottom:683.461200px;}
.y197{bottom:688.480500px;}
.y39{bottom:690.605400px;}
.y95{bottom:690.775500px;}
.yd6{bottom:691.116000px;}
.y74{bottom:691.372500px;}
.y217{bottom:693.070500px;}
.y4f{bottom:693.581269px;}
.y170{bottom:696.558150px;}
.y149{bottom:698.428650px;}
.y116{bottom:699.109500px;}
.y24b{bottom:699.959550px;}
.y1bf{bottom:701.832000px;}
.y38{bottom:705.571500px;}
.y4e{bottom:707.101500px;}
.y196{bottom:708.039000px;}
.y94{bottom:710.334000px;}
.y1e3{bottom:710.419500px;}
.yd5{bottom:710.590500px;}
.y73{bottom:710.847000px;}
.y16f{bottom:713.056500px;}
.y148{bottom:714.927000px;}
.y24a{bottom:716.456550px;}
.y115{bottom:718.582500px;}
.y37{bottom:720.538500px;}
.y1be{bottom:721.390500px;}
.y27{bottom:723.741002px;}
.y1e2{bottom:726.916500px;}
.y195{bottom:727.512000px;}
.y16e{bottom:729.553500px;}
.y93{bottom:729.807000px;}
.yd4{bottom:730.065000px;}
.y72{bottom:730.321500px;}
.y249{bottom:732.954900px;}
.y216{bottom:740.353500px;}
.y1bd{bottom:740.865000px;}
.y1e1{bottom:743.413500px;}
.y147{bottom:744.180150px;}
.y16d{bottom:746.050500px;}
.y194{bottom:746.986500px;}
.y248{bottom:749.451900px;}
.yd3{bottom:749.538000px;}
.y71{bottom:749.880000px;}
.y26{bottom:754.130994px;}
.y215{bottom:756.850500px;}
.y92{bottom:759.061500px;}
.y1bc{bottom:760.339500px;}
.y146{bottom:760.677150px;}
.y36{bottom:764.163900px;}
.y247{bottom:765.950250px;}
.y193{bottom:766.545000px;}
.yd2{bottom:769.096500px;}
.y70{bottom:769.353000px;}
.y25{bottom:772.191006px;}
.y1e0{bottom:773.604000px;}
.y16c{bottom:775.305000px;}
.y145{bottom:777.175500px;}
.y4{bottom:778.225500px;}
.y35{bottom:779.130000px;}
.y1bb{bottom:779.898000px;}
.y140{bottom:779.982579px;}
.y246{bottom:782.447250px;}
.y34{bottom:783.637500px;}
.y192{bottom:786.019500px;}
.y214{bottom:786.103500px;}
.y6f{bottom:788.827500px;}
.y24{bottom:790.715993px;}
.y1df{bottom:793.078500px;}
.y13f{bottom:793.504010px;}
.y144{bottom:793.672500px;}
.y16b{bottom:794.863500px;}
.yd1{bottom:798.349500px;}
.y245{bottom:798.945600px;}
.y1ba{bottom:799.372500px;}
.y191{bottom:805.492500px;}
.y32{bottom:806.938500px;}
.y13e{bottom:807.025441px;}
.y6e{bottom:808.302000px;}
.y33{bottom:812.380500px;}
.y1de{bottom:812.551500px;}
.y16a{bottom:814.338000px;}
.y244{bottom:815.442600px;}
.y13{bottom:815.670000px;}
.y1b9{bottom:818.845500px;}
.y13d{bottom:820.546872px;}
.y143{bottom:822.927000px;}
.y6d{bottom:827.860500px;}
.y243{bottom:831.940950px;}
.y169{bottom:833.811000px;}
.y13c{bottom:833.983104px;}
.y190{bottom:835.258500px;}
.y31{bottom:835.427100px;}
.y213{bottom:837.808500px;}
.y1b8{bottom:838.404000px;}
.y142{bottom:839.424000px;}
.y1dd{bottom:842.742000px;}
.y23{bottom:843.615002px;}
.y6c{bottom:847.335000px;}
.y13b{bottom:847.503335px;}
.y242{bottom:848.437950px;}
.y18f{bottom:851.755500px;}
.y168{bottom:853.369500px;}
.y212{bottom:854.305500px;}
.y141{bottom:855.921000px;}
.y1b7{bottom:857.878500px;}
.y1dc{bottom:859.239000px;}
.y30{bottom:859.409100px;}
.y13a{bottom:861.024766px;}
.y241{bottom:864.936300px;}
.y6b{bottom:866.808000px;}
.y18e{bottom:868.252500px;}
.y139{bottom:874.546197px;}
.y1db{bottom:875.736000px;}
.y1b6{bottom:877.353000px;}
.y240{bottom:881.433300px;}
.y167{bottom:882.625500px;}
.y2f{bottom:883.389000px;}
.y211{bottom:883.558500px;}
.y6a{bottom:886.366500px;}
.y138{bottom:887.982429px;}
.y1b5{bottom:896.826000px;}
.y23f{bottom:897.931650px;}
.y18d{bottom:898.017000px;}
.y166{bottom:899.122500px;}
.y137{bottom:901.503860px;}
.y3{bottom:905.716500px;}
.y69{bottom:905.841000px;}
.y22{bottom:907.279504px;}
.y23e{bottom:914.428650px;}
.y136{bottom:915.025291px;}
.y165{bottom:915.619500px;}
.y1b4{bottom:916.384500px;}
.y18c{bottom:917.490000px;}
.y68{bottom:925.315500px;}
.y135{bottom:928.545522px;}
.y23d{bottom:930.927000px;}
.y210{bottom:935.263500px;}
.y21{bottom:938.779498px;}
.y67{bottom:944.874000px;}
.y134{bottom:946.318500px;}
.y18b{bottom:947.254500px;}
.y23c{bottom:947.424000px;}
.y61{bottom:955.757804px;}
.y18a{bottom:963.751500px;}
.y23b{bottom:963.921000px;}
.y2{bottom:964.228500px;}
.y66{bottom:964.347000px;}
.y20f{bottom:964.516500px;}
.y133{bottom:965.026500px;}
.y60{bottom:969.193500px;}
.y20{bottom:970.279498px;}
.y1{bottom:989.716500px;}
.y91{bottom:1004.995500px;}
.y1f{bottom:1035.546001px;}
.y1e{bottom:1135.539002px;}
.y1d{bottom:1165.122003px;}
.h17{height:22.389939px;}
.h16{height:29.614956px;}
.h20{height:30.029142px;}
.h19{height:31.499580px;}
.h1f{height:32.174571px;}
.h4{height:33.000000px;}
.h1b{height:34.319571px;}
.h1e{height:34.607567px;}
.he{height:36.726562px;}
.h22{height:36.899508px;}
.h18{height:38.610000px;}
.h23{height:40.755000px;}
.hb{height:41.317383px;}
.h1a{height:44.280000px;}
.h11{height:45.000000px;}
.h21{height:45.423000px;}
.h10{height:45.908203px;}
.h1c{height:47.586433px;}
.h1d{height:49.200000px;}
.h15{height:51.660000px;}
.hd{height:55.089844px;}
.h3{height:58.406250px;}
.h14{height:60.564000px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.hc{height:68.862305px;}
.hf{height:82.634766px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h12{height:1054.488000px;}
.h13{height:1054.500000px;}
.ha{height:1249.500000px;}
.h9{height:1249.560000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.wc{width:739.500000px;}
.wb{width:739.842000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.w9{width:951.480000px;}
.wa{width:951.750000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xe{left:89.971650px;}
.x17{left:93.968400px;}
.x1e{left:96.010734px;}
.x1f{left:102.727500px;}
.x23{left:105.022800px;}
.x1a{left:108.000000px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.xc{left:145.650000px;}
.x5{left:174.105000px;}
.xf{left:178.072500px;}
.x2{left:191.040000px;}
.xd{left:197.700000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.xb{left:235.898996px;}
.x20{left:264.385879px;}
.x10{left:270.340500px;}
.x11{left:276.207000px;}
.xa{left:293.590494px;}
.x1d{left:306.736500px;}
.x12{left:366.859500px;}
.x13{left:372.642000px;}
.x22{left:395.602500px;}
.x1c{left:401.386500px;}
.x14{left:436.507500px;}
.x15{left:446.712000px;}
.x1b{left:514.743000px;}
.x18{left:518.569500px;}
.x19{left:523.077000px;}
.x16{left:553.690500px;}
.x21{left:628.182932px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-1.066667pt;}
.ls6{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.864000pt;}
.ls4{letter-spacing:-0.533333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.799989pt;}
.ls1{letter-spacing:138.220007pt;}
.ws0{word-spacing:-16.874667pt;}
.ws2{word-spacing:-12.432000pt;}
.ws3{word-spacing:-11.306667pt;}
.ws7{word-spacing:-10.773333pt;}
.ws9{word-spacing:-10.304000pt;}
.ws6{word-spacing:-10.240000pt;}
.wsb{word-spacing:-10.176000pt;}
.wsc{word-spacing:-8.736000pt;}
.ws4{word-spacing:-7.839895pt;}
.ws5{word-spacing:-7.317124pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:129.781460pt;}
.ws8{word-spacing:650.603067pt;}
._32{margin-left:-1313.767044pt;}
._2{margin-left:-6.536533pt;}
._4{margin-left:-5.520000pt;}
._3{margin-left:-3.808000pt;}
._1{margin-left:-1.774933pt;}
._7{width:1.305600pt;}
._9{width:2.402133pt;}
._5{width:3.300267pt;}
._0{width:4.966400pt;}
._6{width:5.927467pt;}
._d{width:7.125867pt;}
._c{width:8.083200pt;}
._8{width:9.076800pt;}
._11{width:10.101867pt;}
._b{width:11.616000pt;}
._e{width:12.926400pt;}
._f{width:14.592000pt;}
._a{width:15.801600pt;}
._12{width:16.777600pt;}
._14{width:17.781333pt;}
._15{width:19.541333pt;}
._34{width:20.823467pt;}
._13{width:21.904000pt;}
._23{width:23.360000pt;}
._22{width:24.325333pt;}
._37{width:25.646400pt;}
._38{width:26.779200pt;}
._39{width:27.700800pt;}
._35{width:35.011200pt;}
._36{width:36.561600pt;}
._33{width:70.059200pt;}
._10{width:79.819674pt;}
._16{width:141.628715pt;}
._17{width:159.872094pt;}
._2a{width:203.747823pt;}
._2c{width:204.767152pt;}
._25{width:222.732108pt;}
._18{width:252.803116pt;}
._2f{width:253.750387pt;}
._1b{width:263.343908pt;}
._2e{width:268.811265pt;}
._1f{width:273.319250pt;}
._27{width:276.747166pt;}
._2b{width:305.205477pt;}
._1d{width:344.674092pt;}
._19{width:354.952363pt;}
._1a{width:364.944771pt;}
._21{width:382.335343pt;}
._1c{width:511.816494pt;}
._20{width:545.930160pt;}
._1e{width:548.462436pt;}
._30{width:549.584381pt;}
._26{width:558.687242pt;}
._2d{width:643.464849pt;}
._31{width:658.483328pt;}
._29{width:814.330005pt;}
._24{width:902.090057pt;}
._28{width:944.419045pt;}
.fsb{font-size:27.835200pt;}
.fsa{font-size:32.102933pt;}
.fsf{font-size:37.332267pt;}
.fsc{font-size:39.999467pt;}
.fsd{font-size:42.666133pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs10{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs9{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fse{font-size:58.667200pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs0{font-size:85.333333pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.y65{bottom:31.975316pt;}
.y64{bottom:42.633678pt;}
.y63{bottom:53.292040pt;}
.y1c{bottom:60.086668pt;}
.y62{bottom:64.025067pt;}
.y1b{bottom:74.753335pt;}
.y1b3{bottom:76.724933pt;}
.y1da{bottom:76.725200pt;}
.y164{bottom:76.725333pt;}
.yfc{bottom:76.725733pt;}
.yf3{bottom:76.726667pt;}
.yb4{bottom:76.728000pt;}
.y20d{bottom:77.184000pt;}
.y90{bottom:77.860000pt;}
.y5f{bottom:78.614133pt;}
.y270{bottom:79.521067pt;}
.yd0{bottom:81.185332pt;}
.y19{bottom:81.413333pt;}
.y132{bottom:84.737467pt;}
.y113{bottom:88.293333pt;}
.y14{bottom:88.706667pt;}
.y1b2{bottom:91.388933pt;}
.y23a{bottom:91.389200pt;}
.ycf{bottom:93.204382pt;}
.y1d9{bottom:94.034533pt;}
.yfb{bottom:94.035067pt;}
.yf2{bottom:94.036000pt;}
.y1f7{bottom:94.037333pt;}
.yb3{bottom:94.038667pt;}
.y26f{bottom:94.186267pt;}
.y20c{bottom:94.494667pt;}
.y8f{bottom:95.170667pt;}
.y18{bottom:101.040000pt;}
.y131{bottom:102.048133pt;}
.yce{bottom:105.223431pt;}
.y112{bottom:105.602667pt;}
.y239{bottom:106.054400pt;}
.y26e{bottom:108.850267pt;}
.yfa{bottom:111.420400pt;}
.yf1{bottom:111.421333pt;}
.y1f6{bottom:111.422667pt;}
.yb2{bottom:111.424000pt;}
.y20b{bottom:111.880000pt;}
.y8e{bottom:112.556000pt;}
.ycd{bottom:117.166749pt;}
.y20e{bottom:117.392000pt;}
.y1b1{bottom:117.846667pt;}
.y10{bottom:119.053333pt;}
.y130{bottom:119.357467pt;}
.y17{bottom:120.666667pt;}
.y238{bottom:120.718400pt;}
.y1d8{bottom:121.550667pt;}
.y111{bottom:122.989333pt;}
.y5e{bottom:123.290667pt;}
.y26d{bottom:123.515467pt;}
.y163{bottom:128.730667pt;}
.yf0{bottom:128.732000pt;}
.yb1{bottom:128.733333pt;}
.ycc{bottom:129.184732pt;}
.y20a{bottom:129.189333pt;}
.y8d{bottom:129.866667pt;}
.y1b0{bottom:135.156000pt;}
.y237{bottom:135.383600pt;}
.y1d7{bottom:136.214667pt;}
.yf9{bottom:137.424000pt;}
.y15{bottom:137.733333pt;}
.y26c{bottom:138.179467pt;}
.yf{bottom:138.680000pt;}
.y16{bottom:140.293333pt;}
.y110{bottom:140.298667pt;}
.y5d{bottom:140.600000pt;}
.ycb{bottom:145.058667pt;}
.y12f{bottom:145.361467pt;}
.y189{bottom:146.041333pt;}
.yef{bottom:146.042667pt;}
.yb0{bottom:146.044000pt;}
.y209{bottom:146.500000pt;}
.y8c{bottom:147.176000pt;}
.y236{bottom:150.047600pt;}
.y26b{bottom:152.844667pt;}
.y162{bottom:155.793333pt;}
.y10f{bottom:157.609333pt;}
.y5c{bottom:157.986667pt;}
.yca{bottom:161.612000pt;}
.y1af{bottom:161.613333pt;}
.y1d6{bottom:162.218667pt;}
.y12e{bottom:162.746667pt;}
.yee{bottom:163.428000pt;}
.yaf{bottom:163.429333pt;}
.y208{bottom:163.885333pt;}
.y8b{bottom:164.561333pt;}
.y235{bottom:164.712800pt;}
.y26a{bottom:167.508667pt;}
.y161{bottom:170.457333pt;}
.y188{bottom:172.045067pt;}
.y10e{bottom:174.994667pt;}
.y5b{bottom:175.296000pt;}
.y1ae{bottom:176.277333pt;}
.y1d5{bottom:176.882667pt;}
.y234{bottom:179.376800pt;}
.yed{bottom:180.738667pt;}
.yae{bottom:180.740000pt;}
.y207{bottom:181.196000pt;}
.y8a{bottom:181.872000pt;}
.y269{bottom:182.173867pt;}
.y12d{bottom:188.749333pt;}
.y187{bottom:189.354667pt;}
.y1ad{bottom:190.941333pt;}
.y1d4{bottom:191.546667pt;}
.y10d{bottom:192.305333pt;}
.y5a{bottom:192.606667pt;}
.y233{bottom:194.042000pt;}
.y268{bottom:196.837867pt;}
.y160{bottom:197.518667pt;}
.yec{bottom:198.048000pt;}
.yad{bottom:198.049333pt;}
.yf8{bottom:198.050667pt;}
.y206{bottom:198.506667pt;}
.y89{bottom:199.182667pt;}
.yc9{bottom:202.206667pt;}
.y232{bottom:208.706000pt;}
.y10c{bottom:209.614667pt;}
.y59{bottom:209.992000pt;}
.y267{bottom:211.503067pt;}
.y15f{bottom:214.829333pt;}
.yeb{bottom:215.358667pt;}
.yac{bottom:215.360000pt;}
.y205{bottom:215.892000pt;}
.y88{bottom:216.492000pt;}
.y1ac{bottom:217.398667pt;}
.y1d3{bottom:218.986667pt;}
.yc8{bottom:219.592000pt;}
.y231{bottom:223.371200pt;}
.y266{bottom:226.167067pt;}
.y10b{bottom:227.001333pt;}
.y58{bottom:227.302667pt;}
.y15e{bottom:232.138667pt;}
.yea{bottom:232.744000pt;}
.yab{bottom:232.745333pt;}
.yf7{bottom:232.746667pt;}
.y186{bottom:233.198667pt;}
.y204{bottom:233.201333pt;}
.y87{bottom:233.878667pt;}
.y1ab{bottom:234.709333pt;}
.y1d2{bottom:236.297333pt;}
.yc7{bottom:236.902667pt;}
.y230{bottom:238.035200pt;}
.y12c{bottom:240.078667pt;}
.y265{bottom:240.832267pt;}
.y10a{bottom:244.310667pt;}
.y57{bottom:244.612000pt;}
.ye9{bottom:250.054667pt;}
.yaa{bottom:250.056000pt;}
.y185{bottom:250.508000pt;}
.y203{bottom:250.512000pt;}
.y86{bottom:251.188000pt;}
.y1aa{bottom:252.018667pt;}
.y22f{bottom:252.700400pt;}
.y1d1{bottom:253.606667pt;}
.yc6{bottom:254.213333pt;}
.y264{bottom:255.496267pt;}
.y12b{bottom:257.389333pt;}
.y15d{bottom:259.200667pt;}
.y109{bottom:261.621333pt;}
.y56{bottom:261.997333pt;}
.ye8{bottom:267.364000pt;}
.y22e{bottom:267.364400pt;}
.y1f5{bottom:267.365333pt;}
.ya9{bottom:267.366667pt;}
.y184{bottom:267.818667pt;}
.y202{bottom:267.897333pt;}
.y85{bottom:268.498667pt;}
.y263{bottom:270.161467pt;}
.y1d0{bottom:270.992000pt;}
.yc5{bottom:271.598667pt;}
.y15c{bottom:273.864667pt;}
.y12a{bottom:274.698667pt;}
.y1a9{bottom:278.476000pt;}
.y108{bottom:278.930667pt;}
.y22d{bottom:282.029600pt;}
.ye7{bottom:284.749333pt;}
.y1f4{bottom:284.750667pt;}
.ya8{bottom:284.752000pt;}
.y262{bottom:284.825467pt;}
.y183{bottom:285.204000pt;}
.y201{bottom:285.208000pt;}
.y84{bottom:285.884000pt;}
.y55{bottom:288.000000pt;}
.y15b{bottom:288.529867pt;}
.yc4{bottom:288.908000pt;}
.y129{bottom:292.084000pt;}
.y1a8{bottom:293.140000pt;}
.y107{bottom:296.317333pt;}
.y22c{bottom:296.693600pt;}
.y1cf{bottom:298.432133pt;}
.y261{bottom:299.490667pt;}
.y1f3{bottom:302.060000pt;}
.ya7{bottom:302.061333pt;}
.yf6{bottom:302.062667pt;}
.y182{bottom:302.514667pt;}
.y200{bottom:302.518667pt;}
.y83{bottom:303.194667pt;}
.y15a{bottom:303.269467pt;}
.yc3{bottom:306.218667pt;}
.ya{bottom:306.382667pt;}
.y1a7{bottom:307.804000pt;}
.y128{bottom:309.394667pt;}
.ye6{bottom:310.753333pt;}
.y22b{bottom:311.358800pt;}
.y1ce{bottom:313.096133pt;}
.y106{bottom:313.626667pt;}
.y260{bottom:314.154667pt;}
.y159{bottom:317.934667pt;}
.y1f2{bottom:319.370667pt;}
.ya6{bottom:319.372000pt;}
.y181{bottom:319.824000pt;}
.y1ff{bottom:319.828000pt;}
.y82{bottom:320.504000pt;}
.yc2{bottom:323.529333pt;}
.y22a{bottom:326.098400pt;}
.y127{bottom:326.705333pt;}
.y1cd{bottom:327.761333pt;}
.y25f{bottom:328.818667pt;}
.y105{bottom:330.937333pt;}
.y158{bottom:332.598667pt;}
.y1a6{bottom:334.262667pt;}
.y1f1{bottom:336.756000pt;}
.ya5{bottom:336.757333pt;}
.y1fe{bottom:337.213333pt;}
.y81{bottom:337.889333pt;}
.y2e{bottom:339.220001pt;}
.y229{bottom:340.762400pt;}
.yc1{bottom:340.914667pt;}
.y1cc{bottom:342.425333pt;}
.y25e{bottom:343.483867pt;}
.yd{bottom:343.546667pt;}
.y126{bottom:344.090667pt;}
.y180{bottom:345.827333pt;}
.y4d{bottom:347.188267pt;}
.y157{bottom:347.262667pt;}
.y104{bottom:348.322667pt;}
.y1a5{bottom:351.572000pt;}
.y9{bottom:351.724000pt;}
.y1f0{bottom:354.066667pt;}
.ya4{bottom:354.068000pt;}
.ye5{bottom:354.296000pt;}
.y1fd{bottom:354.524000pt;}
.y228{bottom:355.427600pt;}
.y25d{bottom:358.147867pt;}
.yc0{bottom:358.224000pt;}
.y4c{bottom:360.491467pt;}
.y17f{bottom:360.492533pt;}
.y125{bottom:361.401333pt;}
.y80{bottom:363.893067pt;}
.y103{bottom:365.633333pt;}
.y1cb{bottom:368.429333pt;}
.y1a4{bottom:368.957333pt;}
.y227{bottom:370.091600pt;}
.y1ef{bottom:371.376000pt;}
.ya3{bottom:371.378667pt;}
.ye4{bottom:371.606667pt;}
.y1fc{bottom:371.834667pt;}
.y25c{bottom:372.813067pt;}
.y4b{bottom:373.871467pt;}
.y156{bottom:374.325333pt;}
.y17e{bottom:375.156533pt;}
.y124{bottom:378.710667pt;}
.y7f{bottom:381.202667pt;}
.y102{bottom:382.942667pt;}
.y1ca{bottom:383.093333pt;}
.ybf{bottom:384.226667pt;}
.y226{bottom:384.756800pt;}
.yb{bottom:386.533333pt;}
.y4a{bottom:387.174667pt;}
.y25b{bottom:387.477067pt;}
.ya2{bottom:388.688000pt;}
.ye3{bottom:388.992000pt;}
.y1fb{bottom:389.220000pt;}
.y17d{bottom:389.821733pt;}
.y155{bottom:391.636000pt;}
.y1a3{bottom:395.338800pt;}
.y123{bottom:396.096000pt;}
.y2d{bottom:396.420001pt;}
.y8{bottom:397.065333pt;}
.y1ee{bottom:397.380000pt;}
.y1c9{bottom:397.757333pt;}
.y225{bottom:399.420800pt;}
.y101{bottom:400.329333pt;}
.y49{bottom:400.479067pt;}
.y25a{bottom:402.142267pt;}
.y17c{bottom:404.485733pt;}
.ya1{bottom:406.073333pt;}
.yf5{bottom:406.074667pt;}
.ye2{bottom:406.302667pt;}
.y1fa{bottom:406.529333pt;}
.y7e{bottom:407.206667pt;}
.y154{bottom:408.946667pt;}
.y1a2{bottom:410.004000pt;}
.ybe{bottom:410.229333pt;}
.y122{bottom:413.406667pt;}
.y48{bottom:413.859067pt;}
.y224{bottom:414.086000pt;}
.y259{bottom:416.881867pt;}
.y100{bottom:417.638667pt;}
.y17b{bottom:419.225333pt;}
.ya0{bottom:423.384000pt;}
.ye1{bottom:423.612000pt;}
.y1f9{bottom:423.840000pt;}
.y1a1{bottom:424.668000pt;}
.y1c8{bottom:425.198667pt;}
.y153{bottom:426.256000pt;}
.y47{bottom:427.162267pt;}
.y223{bottom:428.750000pt;}
.y121{bottom:430.717333pt;}
.y258{bottom:431.547067pt;}
.y11{bottom:433.826667pt;}
.yff{bottom:434.949333pt;}
.y1a0{bottom:439.332000pt;}
.y46{bottom:440.542267pt;}
.y9f{bottom:440.694667pt;}
.ye0{bottom:440.922667pt;}
.y1f8{bottom:441.225333pt;}
.y7{bottom:442.406667pt;}
.y1c7{bottom:442.584000pt;}
.y222{bottom:443.415200pt;}
.y152{bottom:443.641333pt;}
.y17a{bottom:445.154667pt;}
.y257{bottom:446.211067pt;}
.y120{bottom:448.026667pt;}
.y1ed{bottom:448.706667pt;}
.yfe{bottom:452.258667pt;}
.y2c{bottom:453.620001pt;}
.y45{bottom:453.846667pt;}
.ybd{bottom:456.038667pt;}
.y221{bottom:458.079200pt;}
.y9e{bottom:458.080000pt;}
.ydf{bottom:458.308000pt;}
.y7d{bottom:458.536000pt;}
.y1c6{bottom:459.893333pt;}
.y256{bottom:460.876267pt;}
.y179{bottom:462.540000pt;}
.y11f{bottom:465.412000pt;}
.y19f{bottom:465.790667pt;}
.y1ec{bottom:466.092000pt;}
.y44{bottom:467.149867pt;}
.y151{bottom:470.704000pt;}
.y220{bottom:472.744400pt;}
.ybc{bottom:473.349333pt;}
.y9d{bottom:475.389333pt;}
.yf4{bottom:475.390667pt;}
.y255{bottom:475.540267pt;}
.yde{bottom:475.618667pt;}
.y7c{bottom:475.846667pt;}
.y1c5{bottom:477.204000pt;}
.y12{bottom:478.426667pt;}
.y178{bottom:479.849333pt;}
.y43{bottom:480.529867pt;}
.y11e{bottom:482.722667pt;}
.y19e{bottom:483.100000pt;}
.y1eb{bottom:483.402667pt;}
.y150{bottom:485.368000pt;}
.y21f{bottom:487.408400pt;}
.y6{bottom:487.748000pt;}
.y254{bottom:490.205467pt;}
.ybb{bottom:490.734667pt;}
.y9c{bottom:492.700000pt;}
.ydd{bottom:492.928000pt;}
.y7b{bottom:493.156000pt;}
.y42{bottom:493.833067pt;}
.y1c4{bottom:494.514667pt;}
.y177{bottom:497.160000pt;}
.y114{bottom:499.200000pt;}
.y14f{bottom:500.032000pt;}
.y11d{bottom:500.033333pt;}
.y19d{bottom:500.485333pt;}
.y1ea{bottom:500.713333pt;}
.y21e{bottom:502.073600pt;}
.y253{bottom:504.869467pt;}
.y41{bottom:507.213067pt;}
.yba{bottom:508.044000pt;}
.y9b{bottom:510.085333pt;}
.ydc{bottom:510.313333pt;}
.y7a{bottom:510.541333pt;}
.y1c3{bottom:511.900000pt;}
.y2b{bottom:513.425333pt;}
.y176{bottom:514.545333pt;}
.y21d{bottom:516.737600pt;}
.y11c{bottom:517.418667pt;}
.y1e9{bottom:518.022667pt;}
.y252{bottom:519.534667pt;}
.y40{bottom:520.517467pt;}
.y1a{bottom:524.093333pt;}
.yb9{bottom:525.354667pt;}
.y19c{bottom:526.942800pt;}
.y14e{bottom:527.093333pt;}
.y9a{bottom:527.396000pt;}
.ydb{bottom:527.624000pt;}
.y79{bottom:527.852000pt;}
.y1c2{bottom:529.209333pt;}
.y21c{bottom:531.402800pt;}
.y175{bottom:531.856000pt;}
.y5{bottom:533.089333pt;}
.y3f{bottom:533.820667pt;}
.y251{bottom:534.198667pt;}
.y11b{bottom:534.729333pt;}
.y1e8{bottom:535.408000pt;}
.y19b{bottom:541.606800pt;}
.yb8{bottom:542.740000pt;}
.y2a{bottom:543.958668pt;}
.y14d{bottom:544.404000pt;}
.y99{bottom:544.706667pt;}
.yda{bottom:544.934667pt;}
.y78{bottom:545.162667pt;}
.y21b{bottom:546.066800pt;}
.y3e{bottom:547.200667pt;}
.y54{bottom:547.200983pt;}
.y250{bottom:548.863867pt;}
.y174{bottom:549.165333pt;}
.y11a{bottom:552.038667pt;}
.y1e7{bottom:552.718667pt;}
.y1c1{bottom:555.213067pt;}
.y19a{bottom:556.272000pt;}
.yfd{bottom:556.649333pt;}
.y29{bottom:557.292001pt;}
.y53{bottom:559.144300pt;}
.yb7{bottom:560.050667pt;}
.y3d{bottom:560.503867pt;}
.y21a{bottom:560.732000pt;}
.ye{bottom:561.706667pt;}
.y14c{bottom:561.713333pt;}
.y98{bottom:562.092000pt;}
.yd9{bottom:562.320000pt;}
.y77{bottom:562.548000pt;}
.y24f{bottom:563.527867pt;}
.y119{bottom:569.424000pt;}
.y1e6{bottom:570.029333pt;}
.y28{bottom:570.625333pt;}
.y199{bottom:570.936000pt;}
.y52{bottom:571.163350pt;}
.y1c0{bottom:572.522667pt;}
.y3c{bottom:573.808267pt;}
.y173{bottom:575.169600pt;}
.y219{bottom:575.396000pt;}
.yb6{bottom:577.360000pt;}
.y24e{bottom:578.193067pt;}
.y14b{bottom:579.098667pt;}
.y97{bottom:579.401333pt;}
.yd8{bottom:579.630667pt;}
.y76{bottom:579.858667pt;}
.y51{bottom:583.181333pt;}
.y198{bottom:585.600000pt;}
.y118{bottom:586.734667pt;}
.y3b{bottom:587.188267pt;}
.y1e5{bottom:587.414667pt;}
.y172{bottom:589.833600pt;}
.y218{bottom:590.060000pt;}
.y24d{bottom:592.857067pt;}
.y50{bottom:595.200000pt;}
.y96{bottom:596.712000pt;}
.yd7{bottom:596.940000pt;}
.y75{bottom:597.168000pt;}
.y3a{bottom:600.491467pt;}
.yb5{bottom:603.364000pt;}
.y117{bottom:604.045333pt;}
.y171{bottom:604.498800pt;}
.y1e4{bottom:604.724000pt;}
.y14a{bottom:606.161467pt;}
.y24c{bottom:607.521067pt;}
.y197{bottom:611.982667pt;}
.y39{bottom:613.871467pt;}
.y95{bottom:614.022667pt;}
.yd6{bottom:614.325333pt;}
.y74{bottom:614.553333pt;}
.y217{bottom:616.062667pt;}
.y4f{bottom:616.516684pt;}
.y170{bottom:619.162800pt;}
.y149{bottom:620.825467pt;}
.y116{bottom:621.430667pt;}
.y24b{bottom:622.186267pt;}
.y1bf{bottom:623.850667pt;}
.y38{bottom:627.174667pt;}
.y4e{bottom:628.534667pt;}
.y196{bottom:629.368000pt;}
.y94{bottom:631.408000pt;}
.y1e3{bottom:631.484000pt;}
.yd5{bottom:631.636000pt;}
.y73{bottom:631.864000pt;}
.y16f{bottom:633.828000pt;}
.y148{bottom:635.490667pt;}
.y24a{bottom:636.850267pt;}
.y115{bottom:638.740000pt;}
.y37{bottom:640.478667pt;}
.y1be{bottom:641.236000pt;}
.y27{bottom:643.325335pt;}
.y1e2{bottom:646.148000pt;}
.y195{bottom:646.677333pt;}
.y16e{bottom:648.492000pt;}
.y93{bottom:648.717333pt;}
.yd4{bottom:648.946667pt;}
.y72{bottom:649.174667pt;}
.y249{bottom:651.515467pt;}
.y216{bottom:658.092000pt;}
.y1bd{bottom:658.546667pt;}
.y1e1{bottom:660.812000pt;}
.y147{bottom:661.493467pt;}
.y16d{bottom:663.156000pt;}
.y194{bottom:663.988000pt;}
.y248{bottom:666.179467pt;}
.yd3{bottom:666.256000pt;}
.y71{bottom:666.560000pt;}
.y26{bottom:670.338661pt;}
.y215{bottom:672.756000pt;}
.y92{bottom:674.721333pt;}
.y1bc{bottom:675.857333pt;}
.y146{bottom:676.157467pt;}
.y36{bottom:679.256800pt;}
.y247{bottom:680.844667pt;}
.y193{bottom:681.373333pt;}
.yd2{bottom:683.641333pt;}
.y70{bottom:683.869333pt;}
.y25{bottom:686.392006pt;}
.y1e0{bottom:687.648000pt;}
.y16c{bottom:689.160000pt;}
.y145{bottom:690.822667pt;}
.y4{bottom:691.756000pt;}
.y35{bottom:692.560000pt;}
.y1bb{bottom:693.242667pt;}
.y140{bottom:693.317848pt;}
.y246{bottom:695.508667pt;}
.y34{bottom:696.566667pt;}
.y192{bottom:698.684000pt;}
.y214{bottom:698.758667pt;}
.y6f{bottom:701.180000pt;}
.y24{bottom:702.858660pt;}
.y1df{bottom:704.958667pt;}
.y13f{bottom:705.336898pt;}
.y144{bottom:705.486667pt;}
.y16b{bottom:706.545333pt;}
.yd1{bottom:709.644000pt;}
.y245{bottom:710.173867pt;}
.y1ba{bottom:710.553333pt;}
.y191{bottom:715.993333pt;}
.y32{bottom:717.278667pt;}
.y13e{bottom:717.355948pt;}
.y6e{bottom:718.490667pt;}
.y33{bottom:722.116000pt;}
.y1de{bottom:722.268000pt;}
.y16a{bottom:723.856000pt;}
.y244{bottom:724.837867pt;}
.y13{bottom:725.040000pt;}
.y1b9{bottom:727.862667pt;}
.y13d{bottom:729.374997pt;}
.y143{bottom:731.490667pt;}
.y6d{bottom:735.876000pt;}
.y243{bottom:739.503067pt;}
.y169{bottom:741.165333pt;}
.y13c{bottom:741.318315pt;}
.y190{bottom:742.452000pt;}
.y31{bottom:742.601867pt;}
.y213{bottom:744.718667pt;}
.y1b8{bottom:745.248000pt;}
.y142{bottom:746.154667pt;}
.y1dd{bottom:749.104000pt;}
.y23{bottom:749.880002pt;}
.y6c{bottom:753.186667pt;}
.y13b{bottom:753.336298pt;}
.y242{bottom:754.167067pt;}
.y18f{bottom:757.116000pt;}
.y168{bottom:758.550667pt;}
.y212{bottom:759.382667pt;}
.y141{bottom:760.818667pt;}
.y1b7{bottom:762.558667pt;}
.y1dc{bottom:763.768000pt;}
.y30{bottom:763.919200pt;}
.y13a{bottom:765.355348pt;}
.y241{bottom:768.832267pt;}
.y6b{bottom:770.496000pt;}
.y18e{bottom:771.780000pt;}
.y139{bottom:777.374397pt;}
.y1db{bottom:778.432000pt;}
.y1b6{bottom:779.869333pt;}
.y240{bottom:783.496267pt;}
.y167{bottom:784.556000pt;}
.y2f{bottom:785.234667pt;}
.y211{bottom:785.385333pt;}
.y6a{bottom:787.881333pt;}
.y138{bottom:789.317715pt;}
.y1b5{bottom:797.178667pt;}
.y23f{bottom:798.161467pt;}
.y18d{bottom:798.237333pt;}
.y166{bottom:799.220000pt;}
.y137{bottom:801.336765pt;}
.y3{bottom:805.081333pt;}
.y69{bottom:805.192000pt;}
.y22{bottom:806.470670pt;}
.y23e{bottom:812.825467pt;}
.y136{bottom:813.355814pt;}
.y165{bottom:813.884000pt;}
.y1b4{bottom:814.564000pt;}
.y18c{bottom:815.546667pt;}
.y68{bottom:822.502667pt;}
.y135{bottom:825.373797pt;}
.y23d{bottom:827.490667pt;}
.y210{bottom:831.345333pt;}
.y21{bottom:834.470665pt;}
.y67{bottom:839.888000pt;}
.y134{bottom:841.172000pt;}
.y18b{bottom:842.004000pt;}
.y23c{bottom:842.154667pt;}
.y61{bottom:849.562493pt;}
.y18a{bottom:856.668000pt;}
.y23b{bottom:856.818667pt;}
.y2{bottom:857.092000pt;}
.y66{bottom:857.197333pt;}
.y20f{bottom:857.348000pt;}
.y133{bottom:857.801333pt;}
.y60{bottom:861.505333pt;}
.y20{bottom:862.470665pt;}
.y1{bottom:879.748000pt;}
.y91{bottom:893.329333pt;}
.y1f{bottom:920.485335pt;}
.y1e{bottom:1009.368002pt;}
.y1d{bottom:1035.664002pt;}
.h17{height:19.902168pt;}
.h16{height:26.324405pt;}
.h20{height:26.692571pt;}
.h19{height:27.999627pt;}
.h1f{height:28.599619pt;}
.h4{height:29.333333pt;}
.h1b{height:30.506285pt;}
.h1e{height:30.762282pt;}
.he{height:32.645833pt;}
.h22{height:32.799563pt;}
.h18{height:34.320000pt;}
.h23{height:36.226667pt;}
.hb{height:36.726562pt;}
.h1a{height:39.360000pt;}
.h11{height:40.000000pt;}
.h21{height:40.376000pt;}
.h10{height:40.807292pt;}
.h1c{height:42.299051pt;}
.h1d{height:43.733333pt;}
.h15{height:45.920000pt;}
.hd{height:48.968750pt;}
.h3{height:51.916667pt;}
.h14{height:53.834667pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.hc{height:61.210938pt;}
.hf{height:73.453125pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h12{height:937.322667pt;}
.h13{height:937.333333pt;}
.ha{height:1110.666667pt;}
.h9{height:1110.720000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.wc{width:657.333333pt;}
.wb{width:657.637333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.w9{width:845.760000pt;}
.wa{width:846.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xe{left:79.974800pt;}
.x17{left:83.527467pt;}
.x1e{left:85.342875pt;}
.x1f{left:91.313333pt;}
.x23{left:93.353600pt;}
.x1a{left:96.000000pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.xc{left:129.466667pt;}
.x5{left:154.760000pt;}
.xf{left:158.286667pt;}
.x2{left:169.813333pt;}
.xd{left:175.733333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.xb{left:209.687996pt;}
.x20{left:235.009670pt;}
.x10{left:240.302667pt;}
.x11{left:245.517333pt;}
.xa{left:260.969328pt;}
.x1d{left:272.654667pt;}
.x12{left:326.097333pt;}
.x13{left:331.237333pt;}
.x22{left:351.646667pt;}
.x1c{left:356.788000pt;}
.x14{left:388.006667pt;}
.x15{left:397.077333pt;}
.x1b{left:457.549333pt;}
.x18{left:460.950667pt;}
.x19{left:464.957333pt;}
.x16{left:492.169333pt;}
.x21{left:558.384828pt;}
}




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