
    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_9902ea514468af965f84f1ca.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_8e70102d77c359e5189fec38.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_9b956c763c3cbf2c16eda7ef.woff')format("woff");}.ff3{font-family:ff3;line-height:1.272949;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_eccfac7ea1980be495bee274.woff')format("woff");}.ff4{font-family:ff4;line-height:1.156889;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_4bb67bfac44604533987beb3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_b1b9039ef00c11bc8e1bdd88.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e33647c6b5a3c1145a43235c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.va{vertical-align:-83.520000px;}
.vb{vertical-align:-41.760000px;}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-8.640000px;}
.v9{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:33.120000px;}
.v1{vertical-align:38.880000px;}
.v6{vertical-align:40.320000px;}
.v5{vertical-align:41.760000px;}
.v8{vertical-align:47.520000px;}
.v4{vertical-align:82.080000px;}
.v7{vertical-align:83.520000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004682px;}
.lsd{letter-spacing:0.083997px;}
.ls6{letter-spacing:0.153549px;}
.ls8{letter-spacing:0.508162px;}
.ls2{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.723183px;}
.ls3{letter-spacing:0.723428px;}
.ls7{letter-spacing:0.724162px;}
.ls5{letter-spacing:2.163183px;}
.lse{letter-spacing:18.006121px;}
.lsf{letter-spacing:28.087835px;}
.lsc{letter-spacing:247.005051px;}
.ls9{letter-spacing:411.192963px;}
.lsa{letter-spacing:421.274677px;}
.lsb{letter-spacing:565.299161px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.ws2{word-spacing:-19.440000px;}
.ws5{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.120000px;}
.ws1{word-spacing:-13.305600px;}
.ws7{word-spacing:-11.880000px;}
.ws3{word-spacing:0.000000px;}
._21{margin-left:-5.029869px;}
._b{margin-left:-3.130560px;}
._0{margin-left:-1.935360px;}
._1{width:1.330560px;}
._5{width:2.520000px;}
._6{width:3.873600px;}
._7{width:5.328000px;}
._9{width:7.286400px;}
._8{width:8.409600px;}
._a{width:9.676066px;}
._1b{width:10.731921px;}
._19{width:11.789413px;}
._17{width:13.737600px;}
._18{width:15.301440px;}
._14{width:17.110927px;}
._13{width:18.446400px;}
._c{width:19.935360px;}
._d{width:21.340800px;}
._1d{width:23.253120px;}
._1c{width:24.408000px;}
._1a{width:25.926955px;}
._12{width:27.405420px;}
._11{width:28.806420px;}
._1e{width:30.231360px;}
._1f{width:31.564800px;}
._20{width:32.932800px;}
._e{width:34.300800px;}
._f{width:35.879040px;}
._10{width:37.198080px;}
._6b{width:39.014725px;}
._4f{width:40.738384px;}
._23{width:41.823360px;}
._22{width:42.998446px;}
._24{width:44.236800px;}
._68{width:46.596006px;}
._69{width:47.872638px;}
._6a{width:49.011354px;}
._38{width:56.917216px;}
._3e{width:74.923337px;}
._4c{width:76.363582px;}
._40{width:78.575721px;}
._3a{width:94.422290px;}
._3b{width:97.359259px;}
._61{width:105.178144px;}
._6c{width:113.981660px;}
._6d{width:115.349357px;}
._25{width:117.225429px;}
._3c{width:119.110173px;}
._66{width:120.776514px;}
._64{width:125.341571px;}
._5f{width:129.495606px;}
._63{width:133.520564px;}
._3f{width:139.397221px;}
._67{width:141.134724px;}
._31{width:145.495334px;}
._27{width:148.578536px;}
._37{width:154.136803px;}
._4d{width:155.577048px;}
._49{width:157.017293px;}
._48{width:159.897783px;}
._41{width:160.935981px;}
._39{width:164.601159px;}
._62{width:169.680234px;}
._2c{width:172.118440px;}
._2b{width:173.558685px;}
._5e{width:176.881458px;}
._2d{width:180.759909px;}
._42{width:183.455805px;}
._34{width:187.684483px;}
._65{width:191.283906px;}
._28{width:198.036726px;}
._44{width:200.473422px;}
._35{width:202.813497px;}
._32{width:208.118440px;}
._50{width:209.558685px;}
._33{width:216.759909px;}
._4{width:220.296321px;}
._51{width:225.143091px;}
._3d{width:226.149045px;}
._4a{width:236.923337px;}
._29{width:248.791966px;}
._30{width:252.073452px;}
._36{width:264.894349px;}
._2f{width:272.236880px;}
._60{width:286.576566px;}
._2e{width:320.899643px;}
._4e{width:332.892266px;}
._58{width:342.676414px;}
._47{width:351.450347px;}
._45{width:362.729929px;}
._57{width:380.689534px;}
._4b{width:392.944137px;}
._59{width:427.503934px;}
._54{width:482.710131px;}
._46{width:521.399238px;}
._52{width:541.332531px;}
._56{width:560.285849px;}
._5d{width:573.295460px;}
._2a{width:593.177079px;}
._43{width:599.354700px;}
._53{width:604.672371px;}
._5c{width:638.256574px;}
._5a{width:696.878974px;}
._5b{width:760.218814px;}
._55{width:925.360371px;}
._26{width:1174.305438px;}
._2{width:1206.725121px;}
._15{width:1208.530881px;}
._3{width:2032.598913px;}
._16{width:2033.794113px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(51,51,51);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs8{font-size:47.520000px;}
.fs4{font-size:54.719940px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:83.520000px;}
.fs2{font-size:119.520000px;}
.y113{bottom:-0.360000px;}
.y0{bottom:0.000000px;}
.y112{bottom:1.800000px;}
.y17d{bottom:2.160000px;}
.y18a{bottom:2.520000px;}
.y8{bottom:3.240000px;}
.y105{bottom:3.600000px;}
.ya{bottom:3.960000px;}
.y141{bottom:4.320000px;}
.y9{bottom:41.040000px;}
.y7{bottom:41.760000px;}
.y6{bottom:58.680000px;}
.y178{bottom:133.200000px;}
.y103{bottom:136.080000px;}
.y12c{bottom:136.440000px;}
.y179{bottom:137.160000px;}
.y177{bottom:137.520000px;}
.y2b{bottom:138.240000px;}
.y200{bottom:145.440000px;}
.y2a{bottom:149.400000px;}
.y9e{bottom:150.840000px;}
.y7a{bottom:151.920000px;}
.y175{bottom:154.800000px;}
.yc4{bottom:155.160000px;}
.y102{bottom:156.960000px;}
.y176{bottom:158.760000px;}
.y174{bottom:159.120000px;}
.y1bf{bottom:161.640000px;}
.y15f{bottom:164.880000px;}
.y1ff{bottom:165.960000px;}
.ye1{bottom:167.040000px;}
.y1d5{bottom:168.840000px;}
.y54{bottom:170.640000px;}
.y1a9{bottom:171.000000px;}
.y9d{bottom:171.360000px;}
.y79{bottom:172.440000px;}
.y12b{bottom:175.320000px;}
.yc3{bottom:176.040000px;}
.y101{bottom:177.480000px;}
.y173{bottom:180.000000px;}
.y172{bottom:180.360000px;}
.y1be{bottom:182.160000px;}
.y29{bottom:184.320000px;}
.y1fe{bottom:186.840000px;}
.y1d4{bottom:189.360000px;}
.y53{bottom:191.160000px;}
.y1a8{bottom:191.880000px;}
.y9c{bottom:192.240000px;}
.y78{bottom:193.320000px;}
.yc2{bottom:196.560000px;}
.y170{bottom:197.640000px;}
.y100{bottom:198.360000px;}
.y171{bottom:201.600000px;}
.y16f{bottom:201.960000px;}
.y1bd{bottom:203.040000px;}
.y28{bottom:204.840000px;}
.ye0{bottom:205.560000px;}
.y1f6{bottom:207.360000px;}
.y1d3{bottom:210.240000px;}
.y9b{bottom:212.760000px;}
.y77{bottom:213.840000px;}
.yc1{bottom:217.440000px;}
.yff{bottom:218.880000px;}
.y16e{bottom:222.840000px;}
.y16d{bottom:223.200000px;}
.y1fd{bottom:225.360000px;}
.y27{bottom:225.720000px;}
.y15e{bottom:227.160000px;}
.y1f5{bottom:228.240000px;}
.y52{bottom:230.040000px;}
.y1a7{bottom:230.400000px;}
.y9a{bottom:233.640000px;}
.y16c{bottom:240.480000px;}
.y1bc{bottom:241.560000px;}
.ydf{bottom:244.440000px;}
.y16b{bottom:244.800000px;}
.y26{bottom:246.240000px;}
.y15d{bottom:248.400000px;}
.y1d2{bottom:248.760000px;}
.y51{bottom:250.560000px;}
.y1b6{bottom:251.640000px;}
.y76{bottom:252.720000px;}
.y99{bottom:254.160000px;}
.yc0{bottom:255.960000px;}
.yfe{bottom:257.760000px;}
.y169{bottom:262.080000px;}
.y1bb{bottom:262.440000px;}
.y16a{bottom:266.040000px;}
.y168{bottom:266.400000px;}
.y1f4{bottom:266.760000px;}
.y15c{bottom:270.000000px;}
.y50{bottom:271.440000px;}
.y1a6{bottom:271.800000px;}
.y1ec{bottom:272.160000px;}
.y75{bottom:273.240000px;}
.y98{bottom:275.040000px;}
.ybf{bottom:276.840000px;}
.yfd{bottom:278.280000px;}
.y15b{bottom:280.800000px;}
.yde{bottom:282.960000px;}
.y25{bottom:284.760000px;}
.y1d1{bottom:287.640000px;}
.y159{bottom:291.240000px;}
.y15a{bottom:291.600000px;}
.y4f{bottom:291.960000px;}
.y1a5{bottom:292.320000px;}
.y1eb{bottom:293.040000px;}
.y12a{bottom:294.120000px;}
.y97{bottom:295.560000px;}
.ybe{bottom:297.360000px;}
.yfc{bottom:299.160000px;}
.y1fc{bottom:305.640000px;}
.y1d0{bottom:308.160000px;}
.y167{bottom:310.320000px;}
.y74{bottom:312.120000px;}
.y4e{bottom:312.840000px;}
.y1a4{bottom:313.920000px;}
.y129{bottom:314.640000px;}
.y96{bottom:316.440000px;}
.yfb{bottom:319.680000px;}
.ydd{bottom:321.840000px;}
.y24{bottom:324.720000px;}
.y1fb{bottom:326.160000px;}
.y1cf{bottom:329.040000px;}
.y1ea{bottom:331.560000px;}
.y73{bottom:332.640000px;}
.y1b5{bottom:333.360000px;}
.y128{bottom:335.520000px;}
.ybd{bottom:336.240000px;}
.y23{bottom:342.000000px;}
.y1ba{bottom:342.360000px;}
.y1a2{bottom:345.240000px;}
.y1f3{bottom:347.040000px;}
.y158{bottom:348.480000px;}
.y4d{bottom:351.360000px;}
.y1e9{bottom:352.440000px;}
.y72{bottom:353.520000px;}
.y1b4{bottom:354.240000px;}
.y95{bottom:354.960000px;}
.y127{bottom:356.040000px;}
.ybc{bottom:356.760000px;}
.yfa{bottom:358.560000px;}
.y22{bottom:359.280000px;}
.ydc{bottom:360.360000px;}
.y1ce{bottom:367.560000px;}
.y4c{bottom:372.240000px;}
.y71{bottom:374.040000px;}
.y1b3{bottom:374.760000px;}
.y94{bottom:375.840000px;}
.y1a3{bottom:376.560000px;}
.ybb{bottom:377.640000px;}
.yf9{bottom:379.080000px;}
.y1b9{bottom:381.240000px;}
.y1fa{bottom:385.560000px;}
.y157{bottom:388.080000px;}
.y1cd{bottom:388.440000px;}
.y1e8{bottom:390.960000px;}
.y4b{bottom:392.760000px;}
.y126{bottom:394.560000px;}
.y21{bottom:395.640000px;}
.y93{bottom:396.360000px;}
.yba{bottom:398.160000px;}
.ydb{bottom:399.240000px;}
.yf8{bottom:399.960000px;}
.y1b8{bottom:401.760000px;}
.y1f2{bottom:406.440000px;}
.y156{bottom:409.680000px;}
.y1e7{bottom:411.840000px;}
.y70{bottom:412.560000px;}
.y184{bottom:413.280000px;}
.y4a{bottom:413.640000px;}
.y125{bottom:415.440000px;}
.y92{bottom:417.240000px;}
.y20{bottom:417.960000px;}
.yda{bottom:419.760000px;}
.yf7{bottom:420.480000px;}
.y1cc{bottom:426.960000px;}
.y6f{bottom:433.440000px;}
.y1b2{bottom:434.160000px;}
.y183{bottom:434.880000px;}
.y124{bottom:435.960000px;}
.yb9{bottom:437.040000px;}
.y91{bottom:437.760000px;}
.yd9{bottom:440.640000px;}
.y155{bottom:446.040000px;}
.y1cb{bottom:447.840000px;}
.y1e6{bottom:450.360000px;}
.y1a1{bottom:451.800000px;}
.y49{bottom:452.160000px;}
.y6e{bottom:453.960000px;}
.y1b1{bottom:455.040000px;}
.y182{bottom:456.120000px;}
.y123{bottom:456.840000px;}
.yb8{bottom:457.560000px;}
.y1f{bottom:457.920000px;}
.y90{bottom:458.640000px;}
.yf6{bottom:459.360000px;}
.yd8{bottom:461.160000px;}
.y1f1{bottom:465.840000px;}
.y1e5{bottom:471.240000px;}
.y1a0{bottom:472.680000px;}
.y48{bottom:473.040000px;}
.y6d{bottom:474.840000px;}
.y1b0{bottom:475.560000px;}
.y181{bottom:477.720000px;}
.yb7{bottom:478.440000px;}
.y1e{bottom:478.800000px;}
.y8f{bottom:479.160000px;}
.yf5{bottom:479.880000px;}
.yd7{bottom:482.040000px;}
.y154{bottom:484.560000px;}
.y1ca{bottom:486.360000px;}
.y19f{bottom:493.200000px;}
.y47{bottom:493.560000px;}
.y6c{bottom:495.360000px;}
.y1af{bottom:496.440000px;}
.yb6{bottom:498.960000px;}
.y1d{bottom:499.320000px;}
.yf4{bottom:500.760000px;}
.yd6{bottom:502.560000px;}
.y153{bottom:505.440000px;}
.y1c9{bottom:507.240000px;}
.y1e4{bottom:509.760000px;}
.y19e{bottom:514.080000px;}
.y46{bottom:514.440000px;}
.y6b{bottom:516.240000px;}
.y1ae{bottom:516.960000px;}
.y8e{bottom:518.040000px;}
.yb5{bottom:519.840000px;}
.y1c{bottom:520.200000px;}
.y180{bottom:520.560000px;}
.yd5{bottom:523.440000px;}
.y1f0{bottom:525.240000px;}
.y152{bottom:525.960000px;}
.y1e3{bottom:530.640000px;}
.y19d{bottom:534.600000px;}
.y45{bottom:534.960000px;}
.y122{bottom:536.760000px;}
.y17f{bottom:537.840000px;}
.y8d{bottom:538.560000px;}
.yf3{bottom:539.280000px;}
.yb4{bottom:540.360000px;}
.y1b{bottom:540.720000px;}
.y17e{bottom:542.160000px;}
.yd4{bottom:543.960000px;}
.y1c8{bottom:545.760000px;}
.y151{bottom:546.840000px;}
.y1e2{bottom:551.160000px;}
.y6a{bottom:554.760000px;}
.y19c{bottom:555.480000px;}
.y44{bottom:555.840000px;}
.y121{bottom:557.640000px;}
.y17c{bottom:559.080000px;}
.y8c{bottom:559.440000px;}
.yf2{bottom:560.160000px;}
.yb3{bottom:561.240000px;}
.y1a{bottom:561.600000px;}
.y17b{bottom:563.400000px;}
.y1c7{bottom:566.640000px;}
.y150{bottom:567.360000px;}
.y69{bottom:575.640000px;}
.y43{bottom:576.360000px;}
.y8b{bottom:579.960000px;}
.yf1{bottom:580.680000px;}
.yb2{bottom:581.760000px;}
.y19{bottom:582.120000px;}
.yd3{bottom:582.840000px;}
.y17a{bottom:584.280000px;}
.y1f9{bottom:587.160000px;}
.y14f{bottom:588.240000px;}
.y1e1{bottom:590.040000px;}
.y19b{bottom:594.000000px;}
.y68{bottom:596.160000px;}
.y42{bottom:597.240000px;}
.y8a{bottom:600.840000px;}
.yf0{bottom:601.560000px;}
.y18{bottom:603.000000px;}
.yd2{bottom:603.360000px;}
.y1c6{bottom:605.160000px;}
.y1e0{bottom:610.560000px;}
.y19a{bottom:614.880000px;}
.y67{bottom:617.040000px;}
.y41{bottom:617.760000px;}
.y1b7{bottom:618.840000px;}
.yb1{bottom:620.640000px;}
.y89{bottom:621.360000px;}
.yef{bottom:622.080000px;}
.y17{bottom:623.520000px;}
.yd1{bottom:624.240000px;}
.y1c5{bottom:626.040000px;}
.y14e{bottom:626.760000px;}
.y1df{bottom:631.440000px;}
.y199{bottom:635.400000px;}
.y66{bottom:637.560000px;}
.y40{bottom:638.640000px;}
.yb0{bottom:641.160000px;}
.y88{bottom:642.240000px;}
.yee{bottom:642.960000px;}
.yd0{bottom:644.760000px;}
.y1ef{bottom:646.560000px;}
.y14d{bottom:647.640000px;}
.y198{bottom:656.280000px;}
.y65{bottom:658.440000px;}
.y3f{bottom:659.160000px;}
.yaf{bottom:662.040000px;}
.y16{bottom:662.400000px;}
.y87{bottom:662.760000px;}
.yed{bottom:663.480000px;}
.y1c4{bottom:664.560000px;}
.ycf{bottom:665.640000px;}
.y1ee{bottom:667.440000px;}
.y14c{bottom:668.160000px;}
.y1de{bottom:669.960000px;}
.y197{bottom:676.800000px;}
.y64{bottom:678.960000px;}
.y3e{bottom:680.040000px;}
.yae{bottom:682.560000px;}
.y1c3{bottom:685.440000px;}
.yce{bottom:686.160000px;}
.y14b{bottom:689.040000px;}
.y1dd{bottom:690.840000px;}
.y166{bottom:696.960000px;}
.y196{bottom:697.680000px;}
.y120{bottom:699.840000px;}
.y3d{bottom:700.560000px;}
.y86{bottom:701.640000px;}
.yec{bottom:702.000000px;}
.y15{bottom:702.720000px;}
.yad{bottom:703.440000px;}
.y1c2{bottom:705.960000px;}
.ycd{bottom:707.040000px;}
.y14a{bottom:709.920000px;}
.y63{bottom:717.840000px;}
.y11f{bottom:720.360000px;}
.y1ad{bottom:721.440000px;}
.y85{bottom:722.160000px;}
.yac{bottom:723.960000px;}
.y1ed{bottom:726.840000px;}
.ycc{bottom:727.560000px;}
.y1dc{bottom:729.360000px;}
.y195{bottom:736.560000px;}
.y62{bottom:738.360000px;}
.y3c{bottom:739.440000px;}
.y1ac{bottom:741.960000px;}
.yeb{bottom:742.680000px;}
.y84{bottom:743.040000px;}
.y14{bottom:743.400000px;}
.yab{bottom:744.840000px;}
.y201{bottom:747.360000px;}
.y149{bottom:749.160000px;}
.y1db{bottom:749.880000px;}
.y61{bottom:759.240000px;}
.y3b{bottom:759.960000px;}
.y83{bottom:763.560000px;}
.y1c1{bottom:765.360000px;}
.y13{bottom:765.720000px;}
.ycb{bottom:766.440000px;}
.y194{bottom:772.920000px;}
.y193{bottom:773.280000px;}
.y192{bottom:777.600000px;}
.y60{bottom:779.760000px;}
.y3a{bottom:780.840000px;}
.yea{bottom:781.200000px;}
.yaa{bottom:783.360000px;}
.y82{bottom:784.440000px;}
.y147{bottom:785.160000px;}
.y1c0{bottom:785.880000px;}
.yca{bottom:786.960000px;}
.y1da{bottom:788.760000px;}
.y148{bottom:789.120000px;}
.y146{bottom:789.480000px;}
.y191{bottom:794.520000px;}
.y190{bottom:798.840000px;}
.y5f{bottom:800.640000px;}
.y39{bottom:801.360000px;}
.y10a{bottom:802.080000px;}
.ya9{bottom:803.880000px;}
.y81{bottom:804.960000px;}
.y12{bottom:806.400000px;}
.y144{bottom:806.760000px;}
.yc9{bottom:807.840000px;}
.y1d9{bottom:809.280000px;}
.y145{bottom:810.720000px;}
.y143{bottom:811.080000px;}
.y18f{bottom:815.760000px;}
.y18e{bottom:816.120000px;}
.y18d{bottom:820.440000px;}
.y5e{bottom:821.160000px;}
.ye9{bottom:821.520000px;}
.y38{bottom:821.880000px;}
.ya8{bottom:824.760000px;}
.y80{bottom:825.840000px;}
.y1f8{bottom:827.280000px;}
.y140{bottom:828.000000px;}
.yc8{bottom:828.360000px;}
.y11{bottom:829.080000px;}
.y142{bottom:831.960000px;}
.y13f{bottom:832.320000px;}
.y18c{bottom:837.360000px;}
.y18b{bottom:841.680000px;}
.y5d{bottom:842.040000px;}
.y1ab{bottom:842.760000px;}
.ya7{bottom:845.280000px;}
.y1d8{bottom:848.160000px;}
.yc7{bottom:849.240000px;}
.y109{bottom:849.960000px;}
.y13c{bottom:853.920000px;}
.y189{bottom:858.600000px;}
.y188{bottom:858.960000px;}
.y13d{bottom:860.040000px;}
.y37{bottom:860.760000px;}
.ye8{bottom:862.200000px;}
.y5c{bottom:862.560000px;}
.y187{bottom:863.280000px;}
.y13e{bottom:864.360000px;}
.y7f{bottom:864.720000px;}
.ya6{bottom:866.160000px;}
.y1d7{bottom:868.680000px;}
.y10{bottom:870.840000px;}
.y13b{bottom:874.440000px;}
.y111{bottom:875.520000px;}
.y11e{bottom:880.920000px;}
.y36{bottom:881.280000px;}
.y5b{bottom:883.440000px;}
.y1aa{bottom:884.160000px;}
.y186{bottom:884.520000px;}
.y1f7{bottom:886.680000px;}
.yc6{bottom:888.120000px;}
.y10f{bottom:888.840000px;}
.yf{bottom:893.520000px;}
.y13a{bottom:896.040000px;}
.y138{bottom:896.400000px;}
.y108{bottom:899.280000px;}
.y165{bottom:901.800000px;}
.y35{bottom:902.160000px;}
.ye7{bottom:902.520000px;}
.y5a{bottom:903.960000px;}
.y7e{bottom:904.680000px;}
.y1d6{bottom:907.560000px;}
.y10e{bottom:911.880000px;}
.y139{bottom:916.560000px;}
.y137{bottom:916.920000px;}
.y110{bottom:920.880000px;}
.y185{bottom:921.240000px;}
.y34{bottom:922.680000px;}
.y59{bottom:924.840000px;}
.y7d{bottom:925.560000px;}
.yc5{bottom:928.080000px;}
.y10d{bottom:933.840000px;}
.ye{bottom:937.440000px;}
.y131{bottom:937.800000px;}
.y134{bottom:938.160000px;}
.y164{bottom:941.760000px;}
.ye6{bottom:942.840000px;}
.y33{bottom:943.560000px;}
.y58{bottom:945.360000px;}
.ya5{bottom:946.080000px;}
.y107{bottom:947.520000px;}
.y136{bottom:958.320000px;}
.y133{bottom:958.680000px;}
.y11d{bottom:961.560000px;}
.y163{bottom:962.640000px;}
.y32{bottom:964.080000px;}
.y57{bottom:966.240000px;}
.ya4{bottom:966.960000px;}
.y114{bottom:978.840000px;}
.y135{bottom:979.200000px;}
.y132{bottom:979.560000px;}
.y115{bottom:980.640000px;}
.y11c{bottom:982.080000px;}
.y162{bottom:983.160000px;}
.ye5{bottom:983.520000px;}
.y31{bottom:984.960000px;}
.ya3{bottom:987.480000px;}
.yd{bottom:990.000000px;}
.y10c{bottom:992.160000px;}
.y11b{bottom:1002.960000px;}
.y161{bottom:1004.040000px;}
.y56{bottom:1005.120000px;}
.y30{bottom:1005.480000px;}
.ya2{bottom:1008.360000px;}
.y10b{bottom:1009.800000px;}
.y130{bottom:1015.920000px;}
.y11a{bottom:1023.480000px;}
.ye4{bottom:1023.840000px;}
.yc{bottom:1024.560000px;}
.y7c{bottom:1026.360000px;}
.ya1{bottom:1028.880000px;}
.y116{bottom:1043.640000px;}
.y2f{bottom:1044.360000px;}
.y55{bottom:1045.080000px;}
.y117{bottom:1045.440000px;}
.y7b{bottom:1046.880000px;}
.y12f{bottom:1051.200000px;}
.ye3{bottom:1064.160000px;}
.y118{bottom:1064.520000px;}
.y2e{bottom:1064.880000px;}
.y106{bottom:1065.960000px;}
.y119{bottom:1066.320000px;}
.ya0{bottom:1067.760000px;}
.y12e{bottom:1069.200000px;}
.yb{bottom:1076.760000px;}
.y104{bottom:1083.960000px;}
.y2d{bottom:1085.760000px;}
.ye2{bottom:1104.480000px;}
.y160{bottom:1104.840000px;}
.y9f{bottom:1105.920000px;}
.y2c{bottom:1106.280000px;}
.y12d{bottom:1106.640000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1161.000000px;}
.y2{bottom:1178.280000px;}
.y1{bottom:1195.560000px;}
.h17{height:10.440000px;}
.h22{height:12.600000px;}
.h24{height:12.960000px;}
.h18{height:16.920000px;}
.h4{height:17.280000px;}
.h6{height:18.000000px;}
.h12{height:18.720000px;}
.h15{height:20.160000px;}
.h1c{height:20.520000px;}
.he{height:38.158594px;}
.h23{height:46.638281px;}
.h16{height:47.891250px;}
.h21{height:49.992188px;}
.h5{height:56.542080px;}
.h1{height:59.357813px;}
.h2{height:60.952500px;}
.h7{height:61.365938px;}
.h13{height:66.757500px;}
.h3{height:67.210313px;}
.h11{height:70.628906px;}
.hd{height:70.664062px;}
.h20{height:71.122500px;}
.h10{height:72.562500px;}
.hf{height:76.279219px;}
.ha{height:76.317188px;}
.hc{height:78.367500px;}
.h25{height:79.758281px;}
.hb{height:81.970312px;}
.h9{height:92.584629px;}
.h1e{height:109.544063px;}
.h1a{height:112.424063px;}
.h1b{height:112.882500px;}
.h1f{height:118.184063px;}
.h8{height:120.453750px;}
.h14{height:149.290312px;}
.h19{height:152.744063px;}
.h1d{height:154.184062px;}
.h0{height:1263.000000px;}
.w17{width:3.240000px;}
.w6{width:4.320000px;}
.wc{width:5.040000px;}
.wa{width:6.120000px;}
.we{width:7.560000px;}
.w15{width:7.920000px;}
.w16{width:8.280000px;}
.w2{width:9.000000px;}
.w9{width:9.720000px;}
.w18{width:10.800000px;}
.w8{width:14.040000px;}
.wb{width:21.960000px;}
.w13{width:23.400000px;}
.wf{width:24.120000px;}
.w1{width:24.840000px;}
.w11{width:33.480000px;}
.w14{width:33.840000px;}
.w10{width:34.920000px;}
.wd{width:41.400000px;}
.w12{width:51.840000px;}
.w7{width:62.280000px;}
.w5{width:96.840000px;}
.w4{width:159.480000px;}
.w3{width:206.280000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:55.800000px;}
.x6b{left:75.960000px;}
.x3{left:80.640000px;}
.x5c{left:81.720000px;}
.x6a{left:83.160000px;}
.x58{left:86.400000px;}
.x61{left:92.160000px;}
.x54{left:110.520000px;}
.x55{left:119.160000px;}
.x65{left:122.400000px;}
.x1{left:127.440000px;}
.x6c{left:133.560000px;}
.x6{left:136.440000px;}
.x93{left:142.200000px;}
.xe{left:148.680000px;}
.x5{left:151.920000px;}
.x2e{left:154.440000px;}
.x48{left:157.320000px;}
.xd{left:159.480000px;}
.x49{left:164.880000px;}
.x84{left:167.040000px;}
.x8b{left:170.640000px;}
.x3e{left:171.720000px;}
.x10{left:175.320000px;}
.x2f{left:176.400000px;}
.x12{left:179.640000px;}
.xc{left:180.720000px;}
.x8{left:194.760000px;}
.x15{left:198.000000px;}
.x13{left:199.800000px;}
.x19{left:204.840000px;}
.x69{left:210.960000px;}
.x66{left:215.280000px;}
.x30{left:222.840000px;}
.x6e{left:225.360000px;}
.x8c{left:228.600000px;}
.x64{left:230.400000px;}
.xb{left:241.920000px;}
.x5d{left:248.040000px;}
.x11{left:253.440000px;}
.x4a{left:268.200000px;}
.x3f{left:273.240000px;}
.x31{left:277.920000px;}
.x83{left:285.480000px;}
.x52{left:293.040000px;}
.x16{left:294.840000px;}
.x4b{left:297.360000px;}
.x17{left:299.160000px;}
.x32{left:302.040000px;}
.x40{left:307.080000px;}
.x92{left:335.160000px;}
.x33{left:336.240000px;}
.x6f{left:346.680000px;}
.x8d{left:351.360000px;}
.x2d{left:353.880000px;}
.xf{left:355.320000px;}
.x8e{left:357.840000px;}
.x14{left:359.280000px;}
.x18{left:361.440000px;}
.x70{left:363.240000px;}
.x63{left:364.320000px;}
.x34{left:371.160000px;}
.x8f{left:378.360000px;}
.x7{left:379.440000px;}
.x4c{left:381.240000px;}
.x67{left:384.840000px;}
.x9{left:385.920000px;}
.x53{left:396.000000px;}
.x71{left:403.560000px;}
.x35{left:406.440000px;}
.xa{left:409.680000px;}
.x4d{left:410.760000px;}
.x72{left:419.760000px;}
.x6d{left:423.720000px;}
.x82{left:426.240000px;}
.x7f{left:437.400000px;}
.x36{left:439.920000px;}
.x2c{left:446.400000px;}
.x4{left:456.840000px;}
.x73{left:460.080000px;}
.x89{left:471.960000px;}
.x37{left:476.640000px;}
.x29{left:480.240000px;}
.x41{left:485.640000px;}
.x8a{left:488.520000px;}
.x4f{left:492.120000px;}
.x2a{left:494.280000px;}
.x74{left:496.800000px;}
.x2b{left:500.400000px;}
.x4e{left:509.040000px;}
.x50{left:515.160000px;}
.x75{left:516.960000px;}
.x42{left:519.480000px;}
.x38{left:528.480000px;}
.x77{left:533.160000px;}
.x85{left:537.840000px;}
.x90{left:547.200000px;}
.x76{left:553.320000px;}
.x68{left:556.920000px;}
.x43{left:565.920000px;}
.x39{left:570.600000px;}
.x78{left:573.480000px;}
.x1e{left:587.520000px;}
.x21{left:589.320000px;}
.x24{left:590.760000px;}
.x27{left:595.080000px;}
.x44{left:599.760000px;}
.x1f{left:601.560000px;}
.x22{left:603.360000px;}
.x25{left:604.800000px;}
.x20{left:607.680000px;}
.x23{left:609.480000px;}
.x26{left:610.920000px;}
.x28{left:615.240000px;}
.x86{left:619.920000px;}
.x91{left:624.960000px;}
.x51{left:627.480000px;}
.x79{left:630.360000px;}
.x87{left:632.880000px;}
.x45{left:634.680000px;}
.x56{left:637.560000px;}
.x3a{left:639.720000px;}
.x81{left:641.160000px;}
.x7b{left:646.560000px;}
.x59{left:654.120000px;}
.x3b{left:663.120000px;}
.x7a{left:666.720000px;}
.x1a{left:668.520000px;}
.x1c{left:671.760000px;}
.x57{left:674.280000px;}
.x7c{left:686.880000px;}
.x1d{left:688.320000px;}
.x1b{left:690.480000px;}
.x5a{left:694.440000px;}
.x46{left:704.160000px;}
.x3c{left:709.560000px;}
.x5e{left:710.640000px;}
.x7d{left:723.600000px;}
.x88{left:725.760000px;}
.x5b{left:730.800000px;}
.x3d{left:732.960000px;}
.x47{left:738.000000px;}
.x80{left:741.600000px;}
.x7e{left:743.760000px;}
.x5f{left:750.960000px;}
.x62{left:769.320000px;}
.x60{left:789.480000px;}
@media print{
.va{vertical-align:-74.240000pt;}
.vb{vertical-align:-37.120000pt;}
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-7.680000pt;}
.v9{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:29.440000pt;}
.v1{vertical-align:34.560000pt;}
.v6{vertical-align:35.840000pt;}
.v5{vertical-align:37.120000pt;}
.v8{vertical-align:42.240000pt;}
.v4{vertical-align:72.960000pt;}
.v7{vertical-align:74.240000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004162pt;}
.lsd{letter-spacing:0.074664pt;}
.ls6{letter-spacing:0.136488pt;}
.ls8{letter-spacing:0.451700pt;}
.ls2{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.642829pt;}
.ls3{letter-spacing:0.643047pt;}
.ls7{letter-spacing:0.643700pt;}
.ls5{letter-spacing:1.922829pt;}
.lse{letter-spacing:16.005441pt;}
.lsf{letter-spacing:24.966964pt;}
.lsc{letter-spacing:219.560045pt;}
.ls9{letter-spacing:365.504856pt;}
.lsa{letter-spacing:374.466379pt;}
.lsb{letter-spacing:502.488143pt;}
.ws6{word-spacing:-64.000000pt;}
.ws2{word-spacing:-17.280000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.440000pt;}
.ws1{word-spacing:-11.827200pt;}
.ws7{word-spacing:-10.560000pt;}
.ws3{word-spacing:0.000000pt;}
._21{margin-left:-4.470994pt;}
._b{margin-left:-2.782720pt;}
._0{margin-left:-1.720320pt;}
._1{width:1.182720pt;}
._5{width:2.240000pt;}
._6{width:3.443200pt;}
._7{width:4.736000pt;}
._9{width:6.476800pt;}
._8{width:7.475200pt;}
._a{width:8.600947pt;}
._1b{width:9.539486pt;}
._19{width:10.479478pt;}
._17{width:12.211200pt;}
._18{width:13.601280pt;}
._14{width:15.209713pt;}
._13{width:16.396800pt;}
._c{width:17.720320pt;}
._d{width:18.969600pt;}
._1d{width:20.669440pt;}
._1c{width:21.696000pt;}
._1a{width:23.046183pt;}
._12{width:24.360373pt;}
._11{width:25.605707pt;}
._1e{width:26.872320pt;}
._1f{width:28.057600pt;}
._20{width:29.273600pt;}
._e{width:30.489600pt;}
._f{width:31.892480pt;}
._10{width:33.064960pt;}
._6b{width:34.679756pt;}
._4f{width:36.211897pt;}
._23{width:37.176320pt;}
._22{width:38.220841pt;}
._24{width:39.321600pt;}
._68{width:41.418672pt;}
._69{width:42.553456pt;}
._6a{width:43.565648pt;}
._38{width:50.593081pt;}
._3e{width:66.598522pt;}
._4c{width:67.878739pt;}
._40{width:69.845085pt;}
._3a{width:83.930924pt;}
._3b{width:86.541564pt;}
._61{width:93.491683pt;}
._6c{width:101.317032pt;}
._6d{width:102.532762pt;}
._25{width:104.200381pt;}
._3c{width:105.875709pt;}
._66{width:107.356901pt;}
._64{width:111.414730pt;}
._5f{width:115.107206pt;}
._63{width:118.684946pt;}
._3f{width:123.908640pt;}
._67{width:125.453088pt;}
._31{width:129.329186pt;}
._27{width:132.069810pt;}
._37{width:137.010492pt;}
._4d{width:138.290709pt;}
._49{width:139.570927pt;}
._48{width:142.131362pt;}
._41{width:143.054205pt;}
._39{width:146.312141pt;}
._62{width:150.826874pt;}
._2c{width:152.994169pt;}
._2b{width:154.274387pt;}
._5e{width:157.227963pt;}
._2d{width:160.675475pt;}
._42{width:163.071827pt;}
._34{width:166.830652pt;}
._65{width:170.030139pt;}
._28{width:176.032646pt;}
._44{width:178.198597pt;}
._35{width:180.278664pt;}
._32{width:184.994169pt;}
._50{width:186.274387pt;}
._33{width:192.675475pt;}
._4{width:195.818952pt;}
._51{width:200.127192pt;}
._3d{width:201.021374pt;}
._4a{width:210.598522pt;}
._29{width:221.148415pt;}
._30{width:224.065291pt;}
._36{width:235.461644pt;}
._2f{width:241.988338pt;}
._60{width:254.734726pt;}
._2e{width:285.244127pt;}
._4e{width:295.904236pt;}
._58{width:304.601257pt;}
._47{width:312.400308pt;}
._45{width:322.426603pt;}
._57{width:338.390697pt;}
._4b{width:349.283678pt;}
._59{width:380.003497pt;}
._54{width:429.075672pt;}
._46{width:463.465989pt;}
._52{width:481.184472pt;}
._56{width:498.031865pt;}
._5d{width:509.595965pt;}
._2a{width:527.268515pt;}
._43{width:532.759734pt;}
._53{width:537.486552pt;}
._5c{width:567.339177pt;}
._5a{width:619.447977pt;}
._5b{width:675.750057pt;}
._55{width:822.542552pt;}
._26{width:1043.827056pt;}
._2{width:1072.644552pt;}
._15{width:1074.249672pt;}
._3{width:1806.754590pt;}
._16{width:1807.816990pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:42.240000pt;}
.fs4{font-size:48.639947pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.240000pt;}
.fs2{font-size:106.240000pt;}
.y113{bottom:-0.320000pt;}
.y0{bottom:0.000000pt;}
.y112{bottom:1.600000pt;}
.y17d{bottom:1.920000pt;}
.y18a{bottom:2.240000pt;}
.y8{bottom:2.880000pt;}
.y105{bottom:3.200000pt;}
.ya{bottom:3.520000pt;}
.y141{bottom:3.840000pt;}
.y9{bottom:36.480000pt;}
.y7{bottom:37.120000pt;}
.y6{bottom:52.160000pt;}
.y178{bottom:118.400000pt;}
.y103{bottom:120.960000pt;}
.y12c{bottom:121.280000pt;}
.y179{bottom:121.920000pt;}
.y177{bottom:122.240000pt;}
.y2b{bottom:122.880000pt;}
.y200{bottom:129.280000pt;}
.y2a{bottom:132.800000pt;}
.y9e{bottom:134.080000pt;}
.y7a{bottom:135.040000pt;}
.y175{bottom:137.600000pt;}
.yc4{bottom:137.920000pt;}
.y102{bottom:139.520000pt;}
.y176{bottom:141.120000pt;}
.y174{bottom:141.440000pt;}
.y1bf{bottom:143.680000pt;}
.y15f{bottom:146.560000pt;}
.y1ff{bottom:147.520000pt;}
.ye1{bottom:148.480000pt;}
.y1d5{bottom:150.080000pt;}
.y54{bottom:151.680000pt;}
.y1a9{bottom:152.000000pt;}
.y9d{bottom:152.320000pt;}
.y79{bottom:153.280000pt;}
.y12b{bottom:155.840000pt;}
.yc3{bottom:156.480000pt;}
.y101{bottom:157.760000pt;}
.y173{bottom:160.000000pt;}
.y172{bottom:160.320000pt;}
.y1be{bottom:161.920000pt;}
.y29{bottom:163.840000pt;}
.y1fe{bottom:166.080000pt;}
.y1d4{bottom:168.320000pt;}
.y53{bottom:169.920000pt;}
.y1a8{bottom:170.560000pt;}
.y9c{bottom:170.880000pt;}
.y78{bottom:171.840000pt;}
.yc2{bottom:174.720000pt;}
.y170{bottom:175.680000pt;}
.y100{bottom:176.320000pt;}
.y171{bottom:179.200000pt;}
.y16f{bottom:179.520000pt;}
.y1bd{bottom:180.480000pt;}
.y28{bottom:182.080000pt;}
.ye0{bottom:182.720000pt;}
.y1f6{bottom:184.320000pt;}
.y1d3{bottom:186.880000pt;}
.y9b{bottom:189.120000pt;}
.y77{bottom:190.080000pt;}
.yc1{bottom:193.280000pt;}
.yff{bottom:194.560000pt;}
.y16e{bottom:198.080000pt;}
.y16d{bottom:198.400000pt;}
.y1fd{bottom:200.320000pt;}
.y27{bottom:200.640000pt;}
.y15e{bottom:201.920000pt;}
.y1f5{bottom:202.880000pt;}
.y52{bottom:204.480000pt;}
.y1a7{bottom:204.800000pt;}
.y9a{bottom:207.680000pt;}
.y16c{bottom:213.760000pt;}
.y1bc{bottom:214.720000pt;}
.ydf{bottom:217.280000pt;}
.y16b{bottom:217.600000pt;}
.y26{bottom:218.880000pt;}
.y15d{bottom:220.800000pt;}
.y1d2{bottom:221.120000pt;}
.y51{bottom:222.720000pt;}
.y1b6{bottom:223.680000pt;}
.y76{bottom:224.640000pt;}
.y99{bottom:225.920000pt;}
.yc0{bottom:227.520000pt;}
.yfe{bottom:229.120000pt;}
.y169{bottom:232.960000pt;}
.y1bb{bottom:233.280000pt;}
.y16a{bottom:236.480000pt;}
.y168{bottom:236.800000pt;}
.y1f4{bottom:237.120000pt;}
.y15c{bottom:240.000000pt;}
.y50{bottom:241.280000pt;}
.y1a6{bottom:241.600000pt;}
.y1ec{bottom:241.920000pt;}
.y75{bottom:242.880000pt;}
.y98{bottom:244.480000pt;}
.ybf{bottom:246.080000pt;}
.yfd{bottom:247.360000pt;}
.y15b{bottom:249.600000pt;}
.yde{bottom:251.520000pt;}
.y25{bottom:253.120000pt;}
.y1d1{bottom:255.680000pt;}
.y159{bottom:258.880000pt;}
.y15a{bottom:259.200000pt;}
.y4f{bottom:259.520000pt;}
.y1a5{bottom:259.840000pt;}
.y1eb{bottom:260.480000pt;}
.y12a{bottom:261.440000pt;}
.y97{bottom:262.720000pt;}
.ybe{bottom:264.320000pt;}
.yfc{bottom:265.920000pt;}
.y1fc{bottom:271.680000pt;}
.y1d0{bottom:273.920000pt;}
.y167{bottom:275.840000pt;}
.y74{bottom:277.440000pt;}
.y4e{bottom:278.080000pt;}
.y1a4{bottom:279.040000pt;}
.y129{bottom:279.680000pt;}
.y96{bottom:281.280000pt;}
.yfb{bottom:284.160000pt;}
.ydd{bottom:286.080000pt;}
.y24{bottom:288.640000pt;}
.y1fb{bottom:289.920000pt;}
.y1cf{bottom:292.480000pt;}
.y1ea{bottom:294.720000pt;}
.y73{bottom:295.680000pt;}
.y1b5{bottom:296.320000pt;}
.y128{bottom:298.240000pt;}
.ybd{bottom:298.880000pt;}
.y23{bottom:304.000000pt;}
.y1ba{bottom:304.320000pt;}
.y1a2{bottom:306.880000pt;}
.y1f3{bottom:308.480000pt;}
.y158{bottom:309.760000pt;}
.y4d{bottom:312.320000pt;}
.y1e9{bottom:313.280000pt;}
.y72{bottom:314.240000pt;}
.y1b4{bottom:314.880000pt;}
.y95{bottom:315.520000pt;}
.y127{bottom:316.480000pt;}
.ybc{bottom:317.120000pt;}
.yfa{bottom:318.720000pt;}
.y22{bottom:319.360000pt;}
.ydc{bottom:320.320000pt;}
.y1ce{bottom:326.720000pt;}
.y4c{bottom:330.880000pt;}
.y71{bottom:332.480000pt;}
.y1b3{bottom:333.120000pt;}
.y94{bottom:334.080000pt;}
.y1a3{bottom:334.720000pt;}
.ybb{bottom:335.680000pt;}
.yf9{bottom:336.960000pt;}
.y1b9{bottom:338.880000pt;}
.y1fa{bottom:342.720000pt;}
.y157{bottom:344.960000pt;}
.y1cd{bottom:345.280000pt;}
.y1e8{bottom:347.520000pt;}
.y4b{bottom:349.120000pt;}
.y126{bottom:350.720000pt;}
.y21{bottom:351.680000pt;}
.y93{bottom:352.320000pt;}
.yba{bottom:353.920000pt;}
.ydb{bottom:354.880000pt;}
.yf8{bottom:355.520000pt;}
.y1b8{bottom:357.120000pt;}
.y1f2{bottom:361.280000pt;}
.y156{bottom:364.160000pt;}
.y1e7{bottom:366.080000pt;}
.y70{bottom:366.720000pt;}
.y184{bottom:367.360000pt;}
.y4a{bottom:367.680000pt;}
.y125{bottom:369.280000pt;}
.y92{bottom:370.880000pt;}
.y20{bottom:371.520000pt;}
.yda{bottom:373.120000pt;}
.yf7{bottom:373.760000pt;}
.y1cc{bottom:379.520000pt;}
.y6f{bottom:385.280000pt;}
.y1b2{bottom:385.920000pt;}
.y183{bottom:386.560000pt;}
.y124{bottom:387.520000pt;}
.yb9{bottom:388.480000pt;}
.y91{bottom:389.120000pt;}
.yd9{bottom:391.680000pt;}
.y155{bottom:396.480000pt;}
.y1cb{bottom:398.080000pt;}
.y1e6{bottom:400.320000pt;}
.y1a1{bottom:401.600000pt;}
.y49{bottom:401.920000pt;}
.y6e{bottom:403.520000pt;}
.y1b1{bottom:404.480000pt;}
.y182{bottom:405.440000pt;}
.y123{bottom:406.080000pt;}
.yb8{bottom:406.720000pt;}
.y1f{bottom:407.040000pt;}
.y90{bottom:407.680000pt;}
.yf6{bottom:408.320000pt;}
.yd8{bottom:409.920000pt;}
.y1f1{bottom:414.080000pt;}
.y1e5{bottom:418.880000pt;}
.y1a0{bottom:420.160000pt;}
.y48{bottom:420.480000pt;}
.y6d{bottom:422.080000pt;}
.y1b0{bottom:422.720000pt;}
.y181{bottom:424.640000pt;}
.yb7{bottom:425.280000pt;}
.y1e{bottom:425.600000pt;}
.y8f{bottom:425.920000pt;}
.yf5{bottom:426.560000pt;}
.yd7{bottom:428.480000pt;}
.y154{bottom:430.720000pt;}
.y1ca{bottom:432.320000pt;}
.y19f{bottom:438.400000pt;}
.y47{bottom:438.720000pt;}
.y6c{bottom:440.320000pt;}
.y1af{bottom:441.280000pt;}
.yb6{bottom:443.520000pt;}
.y1d{bottom:443.840000pt;}
.yf4{bottom:445.120000pt;}
.yd6{bottom:446.720000pt;}
.y153{bottom:449.280000pt;}
.y1c9{bottom:450.880000pt;}
.y1e4{bottom:453.120000pt;}
.y19e{bottom:456.960000pt;}
.y46{bottom:457.280000pt;}
.y6b{bottom:458.880000pt;}
.y1ae{bottom:459.520000pt;}
.y8e{bottom:460.480000pt;}
.yb5{bottom:462.080000pt;}
.y1c{bottom:462.400000pt;}
.y180{bottom:462.720000pt;}
.yd5{bottom:465.280000pt;}
.y1f0{bottom:466.880000pt;}
.y152{bottom:467.520000pt;}
.y1e3{bottom:471.680000pt;}
.y19d{bottom:475.200000pt;}
.y45{bottom:475.520000pt;}
.y122{bottom:477.120000pt;}
.y17f{bottom:478.080000pt;}
.y8d{bottom:478.720000pt;}
.yf3{bottom:479.360000pt;}
.yb4{bottom:480.320000pt;}
.y1b{bottom:480.640000pt;}
.y17e{bottom:481.920000pt;}
.yd4{bottom:483.520000pt;}
.y1c8{bottom:485.120000pt;}
.y151{bottom:486.080000pt;}
.y1e2{bottom:489.920000pt;}
.y6a{bottom:493.120000pt;}
.y19c{bottom:493.760000pt;}
.y44{bottom:494.080000pt;}
.y121{bottom:495.680000pt;}
.y17c{bottom:496.960000pt;}
.y8c{bottom:497.280000pt;}
.yf2{bottom:497.920000pt;}
.yb3{bottom:498.880000pt;}
.y1a{bottom:499.200000pt;}
.y17b{bottom:500.800000pt;}
.y1c7{bottom:503.680000pt;}
.y150{bottom:504.320000pt;}
.y69{bottom:511.680000pt;}
.y43{bottom:512.320000pt;}
.y8b{bottom:515.520000pt;}
.yf1{bottom:516.160000pt;}
.yb2{bottom:517.120000pt;}
.y19{bottom:517.440000pt;}
.yd3{bottom:518.080000pt;}
.y17a{bottom:519.360000pt;}
.y1f9{bottom:521.920000pt;}
.y14f{bottom:522.880000pt;}
.y1e1{bottom:524.480000pt;}
.y19b{bottom:528.000000pt;}
.y68{bottom:529.920000pt;}
.y42{bottom:530.880000pt;}
.y8a{bottom:534.080000pt;}
.yf0{bottom:534.720000pt;}
.y18{bottom:536.000000pt;}
.yd2{bottom:536.320000pt;}
.y1c6{bottom:537.920000pt;}
.y1e0{bottom:542.720000pt;}
.y19a{bottom:546.560000pt;}
.y67{bottom:548.480000pt;}
.y41{bottom:549.120000pt;}
.y1b7{bottom:550.080000pt;}
.yb1{bottom:551.680000pt;}
.y89{bottom:552.320000pt;}
.yef{bottom:552.960000pt;}
.y17{bottom:554.240000pt;}
.yd1{bottom:554.880000pt;}
.y1c5{bottom:556.480000pt;}
.y14e{bottom:557.120000pt;}
.y1df{bottom:561.280000pt;}
.y199{bottom:564.800000pt;}
.y66{bottom:566.720000pt;}
.y40{bottom:567.680000pt;}
.yb0{bottom:569.920000pt;}
.y88{bottom:570.880000pt;}
.yee{bottom:571.520000pt;}
.yd0{bottom:573.120000pt;}
.y1ef{bottom:574.720000pt;}
.y14d{bottom:575.680000pt;}
.y198{bottom:583.360000pt;}
.y65{bottom:585.280000pt;}
.y3f{bottom:585.920000pt;}
.yaf{bottom:588.480000pt;}
.y16{bottom:588.800000pt;}
.y87{bottom:589.120000pt;}
.yed{bottom:589.760000pt;}
.y1c4{bottom:590.720000pt;}
.ycf{bottom:591.680000pt;}
.y1ee{bottom:593.280000pt;}
.y14c{bottom:593.920000pt;}
.y1de{bottom:595.520000pt;}
.y197{bottom:601.600000pt;}
.y64{bottom:603.520000pt;}
.y3e{bottom:604.480000pt;}
.yae{bottom:606.720000pt;}
.y1c3{bottom:609.280000pt;}
.yce{bottom:609.920000pt;}
.y14b{bottom:612.480000pt;}
.y1dd{bottom:614.080000pt;}
.y166{bottom:619.520000pt;}
.y196{bottom:620.160000pt;}
.y120{bottom:622.080000pt;}
.y3d{bottom:622.720000pt;}
.y86{bottom:623.680000pt;}
.yec{bottom:624.000000pt;}
.y15{bottom:624.640000pt;}
.yad{bottom:625.280000pt;}
.y1c2{bottom:627.520000pt;}
.ycd{bottom:628.480000pt;}
.y14a{bottom:631.040000pt;}
.y63{bottom:638.080000pt;}
.y11f{bottom:640.320000pt;}
.y1ad{bottom:641.280000pt;}
.y85{bottom:641.920000pt;}
.yac{bottom:643.520000pt;}
.y1ed{bottom:646.080000pt;}
.ycc{bottom:646.720000pt;}
.y1dc{bottom:648.320000pt;}
.y195{bottom:654.720000pt;}
.y62{bottom:656.320000pt;}
.y3c{bottom:657.280000pt;}
.y1ac{bottom:659.520000pt;}
.yeb{bottom:660.160000pt;}
.y84{bottom:660.480000pt;}
.y14{bottom:660.800000pt;}
.yab{bottom:662.080000pt;}
.y201{bottom:664.320000pt;}
.y149{bottom:665.920000pt;}
.y1db{bottom:666.560000pt;}
.y61{bottom:674.880000pt;}
.y3b{bottom:675.520000pt;}
.y83{bottom:678.720000pt;}
.y1c1{bottom:680.320000pt;}
.y13{bottom:680.640000pt;}
.ycb{bottom:681.280000pt;}
.y194{bottom:687.040000pt;}
.y193{bottom:687.360000pt;}
.y192{bottom:691.200000pt;}
.y60{bottom:693.120000pt;}
.y3a{bottom:694.080000pt;}
.yea{bottom:694.400000pt;}
.yaa{bottom:696.320000pt;}
.y82{bottom:697.280000pt;}
.y147{bottom:697.920000pt;}
.y1c0{bottom:698.560000pt;}
.yca{bottom:699.520000pt;}
.y1da{bottom:701.120000pt;}
.y148{bottom:701.440000pt;}
.y146{bottom:701.760000pt;}
.y191{bottom:706.240000pt;}
.y190{bottom:710.080000pt;}
.y5f{bottom:711.680000pt;}
.y39{bottom:712.320000pt;}
.y10a{bottom:712.960000pt;}
.ya9{bottom:714.560000pt;}
.y81{bottom:715.520000pt;}
.y12{bottom:716.800000pt;}
.y144{bottom:717.120000pt;}
.yc9{bottom:718.080000pt;}
.y1d9{bottom:719.360000pt;}
.y145{bottom:720.640000pt;}
.y143{bottom:720.960000pt;}
.y18f{bottom:725.120000pt;}
.y18e{bottom:725.440000pt;}
.y18d{bottom:729.280000pt;}
.y5e{bottom:729.920000pt;}
.ye9{bottom:730.240000pt;}
.y38{bottom:730.560000pt;}
.ya8{bottom:733.120000pt;}
.y80{bottom:734.080000pt;}
.y1f8{bottom:735.360000pt;}
.y140{bottom:736.000000pt;}
.yc8{bottom:736.320000pt;}
.y11{bottom:736.960000pt;}
.y142{bottom:739.520000pt;}
.y13f{bottom:739.840000pt;}
.y18c{bottom:744.320000pt;}
.y18b{bottom:748.160000pt;}
.y5d{bottom:748.480000pt;}
.y1ab{bottom:749.120000pt;}
.ya7{bottom:751.360000pt;}
.y1d8{bottom:753.920000pt;}
.yc7{bottom:754.880000pt;}
.y109{bottom:755.520000pt;}
.y13c{bottom:759.040000pt;}
.y189{bottom:763.200000pt;}
.y188{bottom:763.520000pt;}
.y13d{bottom:764.480000pt;}
.y37{bottom:765.120000pt;}
.ye8{bottom:766.400000pt;}
.y5c{bottom:766.720000pt;}
.y187{bottom:767.360000pt;}
.y13e{bottom:768.320000pt;}
.y7f{bottom:768.640000pt;}
.ya6{bottom:769.920000pt;}
.y1d7{bottom:772.160000pt;}
.y10{bottom:774.080000pt;}
.y13b{bottom:777.280000pt;}
.y111{bottom:778.240000pt;}
.y11e{bottom:783.040000pt;}
.y36{bottom:783.360000pt;}
.y5b{bottom:785.280000pt;}
.y1aa{bottom:785.920000pt;}
.y186{bottom:786.240000pt;}
.y1f7{bottom:788.160000pt;}
.yc6{bottom:789.440000pt;}
.y10f{bottom:790.080000pt;}
.yf{bottom:794.240000pt;}
.y13a{bottom:796.480000pt;}
.y138{bottom:796.800000pt;}
.y108{bottom:799.360000pt;}
.y165{bottom:801.600000pt;}
.y35{bottom:801.920000pt;}
.ye7{bottom:802.240000pt;}
.y5a{bottom:803.520000pt;}
.y7e{bottom:804.160000pt;}
.y1d6{bottom:806.720000pt;}
.y10e{bottom:810.560000pt;}
.y139{bottom:814.720000pt;}
.y137{bottom:815.040000pt;}
.y110{bottom:818.560000pt;}
.y185{bottom:818.880000pt;}
.y34{bottom:820.160000pt;}
.y59{bottom:822.080000pt;}
.y7d{bottom:822.720000pt;}
.yc5{bottom:824.960000pt;}
.y10d{bottom:830.080000pt;}
.ye{bottom:833.280000pt;}
.y131{bottom:833.600000pt;}
.y134{bottom:833.920000pt;}
.y164{bottom:837.120000pt;}
.ye6{bottom:838.080000pt;}
.y33{bottom:838.720000pt;}
.y58{bottom:840.320000pt;}
.ya5{bottom:840.960000pt;}
.y107{bottom:842.240000pt;}
.y136{bottom:851.840000pt;}
.y133{bottom:852.160000pt;}
.y11d{bottom:854.720000pt;}
.y163{bottom:855.680000pt;}
.y32{bottom:856.960000pt;}
.y57{bottom:858.880000pt;}
.ya4{bottom:859.520000pt;}
.y114{bottom:870.080000pt;}
.y135{bottom:870.400000pt;}
.y132{bottom:870.720000pt;}
.y115{bottom:871.680000pt;}
.y11c{bottom:872.960000pt;}
.y162{bottom:873.920000pt;}
.ye5{bottom:874.240000pt;}
.y31{bottom:875.520000pt;}
.ya3{bottom:877.760000pt;}
.yd{bottom:880.000000pt;}
.y10c{bottom:881.920000pt;}
.y11b{bottom:891.520000pt;}
.y161{bottom:892.480000pt;}
.y56{bottom:893.440000pt;}
.y30{bottom:893.760000pt;}
.ya2{bottom:896.320000pt;}
.y10b{bottom:897.600000pt;}
.y130{bottom:903.040000pt;}
.y11a{bottom:909.760000pt;}
.ye4{bottom:910.080000pt;}
.yc{bottom:910.720000pt;}
.y7c{bottom:912.320000pt;}
.ya1{bottom:914.560000pt;}
.y116{bottom:927.680000pt;}
.y2f{bottom:928.320000pt;}
.y55{bottom:928.960000pt;}
.y117{bottom:929.280000pt;}
.y7b{bottom:930.560000pt;}
.y12f{bottom:934.400000pt;}
.ye3{bottom:945.920000pt;}
.y118{bottom:946.240000pt;}
.y2e{bottom:946.560000pt;}
.y106{bottom:947.520000pt;}
.y119{bottom:947.840000pt;}
.ya0{bottom:949.120000pt;}
.y12e{bottom:950.400000pt;}
.yb{bottom:957.120000pt;}
.y104{bottom:963.520000pt;}
.y2d{bottom:965.120000pt;}
.ye2{bottom:981.760000pt;}
.y160{bottom:982.080000pt;}
.y9f{bottom:983.040000pt;}
.y2c{bottom:983.360000pt;}
.y12d{bottom:983.680000pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1032.000000pt;}
.y2{bottom:1047.360000pt;}
.y1{bottom:1062.720000pt;}
.h17{height:9.280000pt;}
.h22{height:11.200000pt;}
.h24{height:11.520000pt;}
.h18{height:15.040000pt;}
.h4{height:15.360000pt;}
.h6{height:16.000000pt;}
.h12{height:16.640000pt;}
.h15{height:17.920000pt;}
.h1c{height:18.240000pt;}
.he{height:33.918750pt;}
.h23{height:41.456250pt;}
.h16{height:42.570000pt;}
.h21{height:44.437500pt;}
.h5{height:50.259627pt;}
.h1{height:52.762500pt;}
.h2{height:54.180000pt;}
.h7{height:54.547500pt;}
.h13{height:59.340000pt;}
.h3{height:59.742500pt;}
.h11{height:62.781250pt;}
.hd{height:62.812500pt;}
.h20{height:63.220000pt;}
.h10{height:64.500000pt;}
.hf{height:67.803750pt;}
.ha{height:67.837500pt;}
.hc{height:69.660000pt;}
.h25{height:70.896250pt;}
.hb{height:72.862500pt;}
.h9{height:82.297448pt;}
.h1e{height:97.372500pt;}
.h1a{height:99.932500pt;}
.h1b{height:100.340000pt;}
.h1f{height:105.052500pt;}
.h8{height:107.070000pt;}
.h14{height:132.702500pt;}
.h19{height:135.772500pt;}
.h1d{height:137.052500pt;}
.h0{height:1122.666667pt;}
.w17{width:2.880000pt;}
.w6{width:3.840000pt;}
.wc{width:4.480000pt;}
.wa{width:5.440000pt;}
.we{width:6.720000pt;}
.w15{width:7.040000pt;}
.w16{width:7.360000pt;}
.w2{width:8.000000pt;}
.w9{width:8.640000pt;}
.w18{width:9.600000pt;}
.w8{width:12.480000pt;}
.wb{width:19.520000pt;}
.w13{width:20.800000pt;}
.wf{width:21.440000pt;}
.w1{width:22.080000pt;}
.w11{width:29.760000pt;}
.w14{width:30.080000pt;}
.w10{width:31.040000pt;}
.wd{width:36.800000pt;}
.w12{width:46.080000pt;}
.w7{width:55.360000pt;}
.w5{width:86.080000pt;}
.w4{width:141.760000pt;}
.w3{width:183.360000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:49.600000pt;}
.x6b{left:67.520000pt;}
.x3{left:71.680000pt;}
.x5c{left:72.640000pt;}
.x6a{left:73.920000pt;}
.x58{left:76.800000pt;}
.x61{left:81.920000pt;}
.x54{left:98.240000pt;}
.x55{left:105.920000pt;}
.x65{left:108.800000pt;}
.x1{left:113.280000pt;}
.x6c{left:118.720000pt;}
.x6{left:121.280000pt;}
.x93{left:126.400000pt;}
.xe{left:132.160000pt;}
.x5{left:135.040000pt;}
.x2e{left:137.280000pt;}
.x48{left:139.840000pt;}
.xd{left:141.760000pt;}
.x49{left:146.560000pt;}
.x84{left:148.480000pt;}
.x8b{left:151.680000pt;}
.x3e{left:152.640000pt;}
.x10{left:155.840000pt;}
.x2f{left:156.800000pt;}
.x12{left:159.680000pt;}
.xc{left:160.640000pt;}
.x8{left:173.120000pt;}
.x15{left:176.000000pt;}
.x13{left:177.600000pt;}
.x19{left:182.080000pt;}
.x69{left:187.520000pt;}
.x66{left:191.360000pt;}
.x30{left:198.080000pt;}
.x6e{left:200.320000pt;}
.x8c{left:203.200000pt;}
.x64{left:204.800000pt;}
.xb{left:215.040000pt;}
.x5d{left:220.480000pt;}
.x11{left:225.280000pt;}
.x4a{left:238.400000pt;}
.x3f{left:242.880000pt;}
.x31{left:247.040000pt;}
.x83{left:253.760000pt;}
.x52{left:260.480000pt;}
.x16{left:262.080000pt;}
.x4b{left:264.320000pt;}
.x17{left:265.920000pt;}
.x32{left:268.480000pt;}
.x40{left:272.960000pt;}
.x92{left:297.920000pt;}
.x33{left:298.880000pt;}
.x6f{left:308.160000pt;}
.x8d{left:312.320000pt;}
.x2d{left:314.560000pt;}
.xf{left:315.840000pt;}
.x8e{left:318.080000pt;}
.x14{left:319.360000pt;}
.x18{left:321.280000pt;}
.x70{left:322.880000pt;}
.x63{left:323.840000pt;}
.x34{left:329.920000pt;}
.x8f{left:336.320000pt;}
.x7{left:337.280000pt;}
.x4c{left:338.880000pt;}
.x67{left:342.080000pt;}
.x9{left:343.040000pt;}
.x53{left:352.000000pt;}
.x71{left:358.720000pt;}
.x35{left:361.280000pt;}
.xa{left:364.160000pt;}
.x4d{left:365.120000pt;}
.x72{left:373.120000pt;}
.x6d{left:376.640000pt;}
.x82{left:378.880000pt;}
.x7f{left:388.800000pt;}
.x36{left:391.040000pt;}
.x2c{left:396.800000pt;}
.x4{left:406.080000pt;}
.x73{left:408.960000pt;}
.x89{left:419.520000pt;}
.x37{left:423.680000pt;}
.x29{left:426.880000pt;}
.x41{left:431.680000pt;}
.x8a{left:434.240000pt;}
.x4f{left:437.440000pt;}
.x2a{left:439.360000pt;}
.x74{left:441.600000pt;}
.x2b{left:444.800000pt;}
.x4e{left:452.480000pt;}
.x50{left:457.920000pt;}
.x75{left:459.520000pt;}
.x42{left:461.760000pt;}
.x38{left:469.760000pt;}
.x77{left:473.920000pt;}
.x85{left:478.080000pt;}
.x90{left:486.400000pt;}
.x76{left:491.840000pt;}
.x68{left:495.040000pt;}
.x43{left:503.040000pt;}
.x39{left:507.200000pt;}
.x78{left:509.760000pt;}
.x1e{left:522.240000pt;}
.x21{left:523.840000pt;}
.x24{left:525.120000pt;}
.x27{left:528.960000pt;}
.x44{left:533.120000pt;}
.x1f{left:534.720000pt;}
.x22{left:536.320000pt;}
.x25{left:537.600000pt;}
.x20{left:540.160000pt;}
.x23{left:541.760000pt;}
.x26{left:543.040000pt;}
.x28{left:546.880000pt;}
.x86{left:551.040000pt;}
.x91{left:555.520000pt;}
.x51{left:557.760000pt;}
.x79{left:560.320000pt;}
.x87{left:562.560000pt;}
.x45{left:564.160000pt;}
.x56{left:566.720000pt;}
.x3a{left:568.640000pt;}
.x81{left:569.920000pt;}
.x7b{left:574.720000pt;}
.x59{left:581.440000pt;}
.x3b{left:589.440000pt;}
.x7a{left:592.640000pt;}
.x1a{left:594.240000pt;}
.x1c{left:597.120000pt;}
.x57{left:599.360000pt;}
.x7c{left:610.560000pt;}
.x1d{left:611.840000pt;}
.x1b{left:613.760000pt;}
.x5a{left:617.280000pt;}
.x46{left:625.920000pt;}
.x3c{left:630.720000pt;}
.x5e{left:631.680000pt;}
.x7d{left:643.200000pt;}
.x88{left:645.120000pt;}
.x5b{left:649.600000pt;}
.x3d{left:651.520000pt;}
.x47{left:656.000000pt;}
.x80{left:659.200000pt;}
.x7e{left:661.120000pt;}
.x5f{left:667.520000pt;}
.x62{left:683.840000pt;}
.x60{left:701.760000pt;}
}




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