
    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_9c0a98cbae5f29355725de05.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.207031;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_086d13bdd3addd0c2e258e31.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_5238e3654632bbe2ec68a3f6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_8646573f2bf7917aa072436e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_7e8f37ea19e3ec0fcb207267.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_e185fdeb8f09f1e8e81d6f29.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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_eac7ca3f675b360903faf0d6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.000000px;}
.v2{vertical-align:72.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.240000px;}
.ls9{letter-spacing:47.100000px;}
.ls1{letter-spacing:59.700000px;}
.ls8{letter-spacing:86.700000px;}
.lsa{letter-spacing:93.300000px;}
.ls4{letter-spacing:108.300000px;}
.ls7{letter-spacing:137.100000px;}
.ls5{letter-spacing:194.100000px;}
.ls2{letter-spacing:197.700000px;}
.ls6{letter-spacing:245.700000px;}
.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;}
}
.ws1{word-spacing:-24.552000px;}
.wsa{word-spacing:-21.300000px;}
.ws2{word-spacing:-21.060000px;}
.ws3{word-spacing:-20.460000px;}
.ws11{word-spacing:-17.690400px;}
.ws0{word-spacing:-14.742000px;}
.ws13{word-spacing:-13.296000px;}
.ws12{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.wse{word-spacing:34.140000px;}
.wsd{word-spacing:51.540000px;}
.ws7{word-spacing:60.540000px;}
.ws10{word-spacing:62.100000px;}
.wsf{word-spacing:98.700000px;}
.ws9{word-spacing:106.740000px;}
.wsb{word-spacing:108.540000px;}
.ws6{word-spacing:139.140000px;}
.ws8{word-spacing:149.520000px;}
.wsc{word-spacing:153.540000px;}
.ws5{word-spacing:178.440000px;}
._35{margin-left:-560.280000px;}
._31{margin-left:-210.240000px;}
._34{margin-left:-40.680000px;}
._33{margin-left:-21.000000px;}
._37{margin-left:-19.800000px;}
._44{margin-left:-9.294000px;}
._f{margin-left:-7.986000px;}
._12{margin-left:-6.054000px;}
._1b{margin-left:-5.040000px;}
._2{margin-left:-3.450000px;}
._d{margin-left:-2.100000px;}
._1{margin-left:-1.050000px;}
._0{width:1.134000px;}
._5{width:2.880000px;}
._4{width:3.900000px;}
._b{width:5.280000px;}
._3{width:6.660000px;}
._a{width:8.070000px;}
._10{width:9.156000px;}
._8{width:10.170000px;}
._6{width:11.460000px;}
._7{width:12.660000px;}
._14{width:13.806000px;}
._c{width:15.000000px;}
._15{width:16.320000px;}
._9{width:17.646000px;}
._2b{width:18.906000px;}
._13{width:20.034000px;}
._11{width:22.890000px;}
._2c{width:24.900000px;}
._2d{width:26.400000px;}
._3d{width:28.380000px;}
._e{width:30.120000px;}
._4a{width:32.700000px;}
._3a{width:34.446000px;}
._3b{width:35.694000px;}
._40{width:37.050000px;}
._4e{width:38.160000px;}
._30{width:39.360000px;}
._49{width:41.406000px;}
._43{width:53.100000px;}
._42{width:54.420000px;}
._3e{width:55.740000px;}
._1e{width:58.200000px;}
._3f{width:60.480000px;}
._4b{width:66.114000px;}
._3c{width:70.218000px;}
._28{width:73.200000px;}
._4f{width:77.040000px;}
._25{width:80.400000px;}
._45{width:81.540000px;}
._52{width:84.300000px;}
._51{width:85.560000px;}
._48{width:100.326000px;}
._46{width:101.880000px;}
._41{width:107.820000px;}
._4d{width:109.200000px;}
._39{width:115.560000px;}
._21{width:130.674000px;}
._29{width:139.446000px;}
._1f{width:147.300000px;}
._26{width:155.700000px;}
._23{width:166.986000px;}
._50{width:169.860000px;}
._32{width:188.880000px;}
._1a{width:191.100000px;}
._47{width:203.220000px;}
._4c{width:217.140000px;}
._1d{width:218.910000px;}
._2f{width:223.680000px;}
._38{width:229.980000px;}
._20{width:270.180000px;}
._2e{width:272.400000px;}
._27{width:274.950000px;}
._24{width:284.070000px;}
._18{width:325.860000px;}
._2a{width:327.276000px;}
._19{width:404.040000px;}
._22{width:407.760000px;}
._1c{width:498.300000px;}
._36{width:538.680000px;}
._17{width:669.480000px;}
._16{width:723.000000px;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(0,0,102);}
.fc2{color:rgb(0,0,128);}
.fc4{color:rgb(208,4,3);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,153,0);}
.fs0{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:50.400000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y1f{bottom:75.750000px;}
.y42{bottom:82.350000px;}
.y1e{bottom:111.150000px;}
.y19d{bottom:125.250000px;}
.y115{bottom:127.500000px;}
.ye9{bottom:128.100000px;}
.y41{bottom:128.850000px;}
.y203{bottom:137.100000px;}
.y1d{bottom:138.450000px;}
.y1c4{bottom:138.750000px;}
.y19c{bottom:145.050000px;}
.y114{bottom:147.300000px;}
.yca{bottom:153.150000px;}
.y24d{bottom:154.050000px;}
.ye8{bottom:155.400000px;}
.y40{bottom:156.150000px;}
.y23f{bottom:159.600000px;}
.y19b{bottom:163.200000px;}
.y60{bottom:163.800000px;}
.y113{bottom:165.450000px;}
.y1c{bottom:165.750000px;}
.y26c{bottom:172.650000px;}
.y1e3{bottom:173.400000px;}
.y202{bottom:173.550000px;}
.y24c{bottom:177.600000px;}
.y286{bottom:178.800000px;}
.yc9{bottom:180.450000px;}
.y19a{bottom:181.500000px;}
.y3f{bottom:183.450000px;}
.y112{bottom:183.750000px;}
.ye7{bottom:184.350000px;}
.y1c3{bottom:186.600000px;}
.y23e{bottom:186.900000px;}
.y5f{bottom:192.750000px;}
.y1b{bottom:193.050000px;}
.y201{bottom:193.350000px;}
.y26b{bottom:196.200000px;}
.y199{bottom:201.300000px;}
.y1e2{bottom:202.200000px;}
.y111{bottom:203.550000px;}
.y1c2{bottom:204.900000px;}
.y285{bottom:206.100000px;}
.yc8{bottom:207.750000px;}
.y3e{bottom:210.750000px;}
.ye6{bottom:211.650000px;}
.y200{bottom:213.150000px;}
.y23d{bottom:214.200000px;}
.y72{bottom:214.350000px;}
.y198{bottom:219.450000px;}
.y5e{bottom:220.050000px;}
.y1a{bottom:220.350000px;}
.y291{bottom:220.650000px;}
.y110{bottom:221.700000px;}
.y142{bottom:223.050000px;}
.y26a{bottom:223.500000px;}
.y1c1{bottom:224.700000px;}
.y1e1{bottom:229.500000px;}
.y1ff{bottom:231.450000px;}
.y24b{bottom:232.200000px;}
.y284{bottom:233.400000px;}
.yc7{bottom:235.050000px;}
.y3d{bottom:238.050000px;}
.ye5{bottom:238.950000px;}
.y197{bottom:239.250000px;}
.y10f{bottom:240.000000px;}
.y290{bottom:241.350000px;}
.y23c{bottom:241.500000px;}
.y71{bottom:241.650000px;}
.y141{bottom:242.850000px;}
.y5d{bottom:247.350000px;}
.y19{bottom:247.650000px;}
.y21a{bottom:249.000000px;}
.y269{bottom:250.800000px;}
.y1fe{bottom:251.250000px;}
.y16a{bottom:256.650000px;}
.y1e0{bottom:256.800000px;}
.y196{bottom:257.550000px;}
.y24a{bottom:259.500000px;}
.y10e{bottom:259.800000px;}
.y283{bottom:260.700000px;}
.y140{bottom:261.150000px;}
.y28f{bottom:262.050000px;}
.yc6{bottom:262.350000px;}
.y1c0{bottom:262.650000px;}
.y8b{bottom:263.400000px;}
.y3c{bottom:265.350000px;}
.ye4{bottom:267.750000px;}
.y23b{bottom:268.800000px;}
.y70{bottom:268.950000px;}
.y1fd{bottom:271.050000px;}
.y5c{bottom:276.150000px;}
.y219{bottom:276.300000px;}
.y195{bottom:277.350000px;}
.y10d{bottom:277.950000px;}
.y268{bottom:278.100000px;}
.y13f{bottom:279.300000px;}
.y1bf{bottom:282.450000px;}
.y169{bottom:283.950000px;}
.y1df{bottom:285.750000px;}
.y249{bottom:286.800000px;}
.y282{bottom:288.000000px;}
.y18{bottom:288.150000px;}
.y1fc{bottom:289.200000px;}
.y8a{bottom:290.700000px;}
.y3b{bottom:292.650000px;}
.ye3{bottom:295.050000px;}
.y6f{bottom:296.250000px;}
.y13e{bottom:299.100000px;}
.y1be{bottom:300.750000px;}
.y5b{bottom:303.450000px;}
.y218{bottom:303.600000px;}
.y267{bottom:305.400000px;}
.yc5{bottom:307.050000px;}
.y1fb{bottom:309.000000px;}
.y168{bottom:311.250000px;}
.y248{bottom:312.150000px;}
.y1de{bottom:313.050000px;}
.y23a{bottom:313.500000px;}
.y194{bottom:315.300000px;}
.y17{bottom:315.450000px;}
.y10c{bottom:316.050000px;}
.y13d{bottom:317.400000px;}
.y89{bottom:318.000000px;}
.y3a{bottom:319.950000px;}
.y1bd{bottom:320.550000px;}
.ye2{bottom:322.350000px;}
.y6e{bottom:323.550000px;}
.y1fa{bottom:327.300000px;}
.y266{bottom:330.750000px;}
.y217{bottom:330.900000px;}
.y5a{bottom:332.400000px;}
.y10b{bottom:334.200000px;}
.yc2{bottom:334.500000px;}
.y193{bottom:335.100000px;}
.y247{bottom:335.550000px;}
.y13c{bottom:337.200000px;}
.y167{bottom:338.550000px;}
.y1bc{bottom:338.700000px;}
.y239{bottom:340.800000px;}
.y1dd{bottom:341.850000px;}
.y281{bottom:342.600000px;}
.y16{bottom:342.750000px;}
.yc4{bottom:343.650000px;}
.y88{bottom:345.300000px;}
.y1f9{bottom:347.100000px;}
.y6d{bottom:350.850000px;}
.ye1{bottom:351.300000px;}
.y10a{bottom:352.500000px;}
.yc0{bottom:352.650000px;}
.y192{bottom:353.250000px;}
.y265{bottom:354.150000px;}
.y13b{bottom:357.000000px;}
.y216{bottom:358.200000px;}
.y1bb{bottom:358.500000px;}
.y59{bottom:359.700000px;}
.yc3{bottom:361.800000px;}
.y246{bottom:362.850000px;}
.y39{bottom:364.650000px;}
.y166{bottom:365.850000px;}
.y1f8{bottom:366.900000px;}
.y238{bottom:368.100000px;}
.y1dc{bottom:369.150000px;}
.y280{bottom:369.900000px;}
.y15{bottom:370.050000px;}
.yc1{bottom:370.950000px;}
.y109{bottom:372.300000px;}
.y87{bottom:372.600000px;}
.y191{bottom:373.050000px;}
.y13a{bottom:376.800000px;}
.y6c{bottom:378.150000px;}
.ye0{bottom:378.600000px;}
.y264{bottom:381.450000px;}
.y215{bottom:385.500000px;}
.y1f7{bottom:386.700000px;}
.y58{bottom:387.000000px;}
.y245{bottom:388.200000px;}
.ybf{bottom:389.850000px;}
.y108{bottom:390.450000px;}
.y190{bottom:391.350000px;}
.y38{bottom:391.950000px;}
.y139{bottom:394.950000px;}
.y237{bottom:395.400000px;}
.y27f{bottom:397.200000px;}
.y14{bottom:397.350000px;}
.y1db{bottom:398.100000px;}
.ybd{bottom:399.000000px;}
.y86{bottom:399.900000px;}
.y165{bottom:401.550000px;}
.y6b{bottom:405.450000px;}
.ydf{bottom:405.900000px;}
.y1f6{bottom:406.500000px;}
.y263{bottom:406.800000px;}
.ybc{bottom:408.150000px;}
.y107{bottom:410.250000px;}
.y18f{bottom:411.150000px;}
.y244{bottom:411.750000px;}
.y214{bottom:412.800000px;}
.y138{bottom:414.750000px;}
.y57{bottom:415.800000px;}
.y37{bottom:419.250000px;}
.y236{bottom:422.700000px;}
.y27e{bottom:424.500000px;}
.y1f5{bottom:424.650000px;}
.y1da{bottom:425.400000px;}
.ybe{bottom:426.300000px;}
.y106{bottom:428.550000px;}
.y18e{bottom:429.300000px;}
.y262{bottom:430.350000px;}
.y6a{bottom:432.750000px;}
.y137{bottom:433.050000px;}
.yde{bottom:433.200000px;}
.y13{bottom:437.850000px;}
.y243{bottom:439.050000px;}
.y213{bottom:440.100000px;}
.y1f4{bottom:444.450000px;}
.y85{bottom:444.600000px;}
.ybb{bottom:445.350000px;}
.y36{bottom:446.550000px;}
.y164{bottom:446.850000px;}
.y105{bottom:448.350000px;}
.y18d{bottom:449.100000px;}
.y1ba{bottom:451.200000px;}
.y27d{bottom:451.800000px;}
.y56{bottom:452.100000px;}
.y1d9{bottom:452.700000px;}
.y136{bottom:452.850000px;}
.yba{bottom:454.500000px;}
.y261{bottom:457.650000px;}
.y235{bottom:458.400000px;}
.y69{bottom:460.050000px;}
.ydd{bottom:460.500000px;}
.y1f3{bottom:462.750000px;}
.y28e{bottom:463.350000px;}
.y242{bottom:464.400000px;}
.y12{bottom:465.150000px;}
.y104{bottom:467.250000px;}
.y18c{bottom:468.900000px;}
.y135{bottom:471.000000px;}
.y84{bottom:471.900000px;}
.y35{bottom:473.850000px;}
.y212{bottom:475.800000px;}
.y27c{bottom:479.100000px;}
.y55{bottom:479.400000px;}
.y1d8{bottom:481.500000px;}
.yb9{bottom:482.550000px;}
.y260{bottom:484.950000px;}
.y68{bottom:487.350000px;}
.ydc{bottom:487.800000px;}
.y18b{bottom:488.700000px;}
.y134{bottom:489.300000px;}
.y28d{bottom:490.650000px;}
.yb6{bottom:491.700000px;}
.y11{bottom:492.450000px;}
.y163{bottom:493.050000px;}
.y83{bottom:499.200000px;}
.yb5{bottom:500.700000px;}
.y34{bottom:501.150000px;}
.y1f2{bottom:501.450000px;}
.y103{bottom:506.100000px;}
.y27b{bottom:506.400000px;}
.y18a{bottom:508.500000px;}
.y133{bottom:509.100000px;}
.yb7{bottom:509.850000px;}
.y25f{bottom:512.250000px;}
.y162{bottom:512.850000px;}
.y67{bottom:514.650000px;}
.y54{bottom:515.100000px;}
.y1d7{bottom:517.800000px;}
.y28c{bottom:517.950000px;}
.yb8{bottom:519.000000px;}
.y102{bottom:524.250000px;}
.y82{bottom:526.500000px;}
.y132{bottom:527.250000px;}
.y189{bottom:528.300000px;}
.y33{bottom:528.450000px;}
.y1b9{bottom:528.900000px;}
.y211{bottom:530.250000px;}
.y161{bottom:532.650000px;}
.y10{bottom:532.950000px;}
.y27a{bottom:533.700000px;}
.yb3{bottom:537.900000px;}
.y1f1{bottom:538.650000px;}
.y25e{bottom:539.550000px;}
.ydb{bottom:542.400000px;}
.y28b{bottom:543.300000px;}
.y101{bottom:544.050000px;}
.y188{bottom:546.600000px;}
.yb2{bottom:547.050000px;}
.y160{bottom:552.450000px;}
.y234{bottom:552.600000px;}
.yb4{bottom:556.200000px;}
.y1f0{bottom:558.450000px;}
.y66{bottom:559.350000px;}
.yf{bottom:560.250000px;}
.y279{bottom:561.000000px;}
.y100{bottom:562.350000px;}
.y1d6{bottom:562.500000px;}
.y187{bottom:566.400000px;}
.y131{bottom:566.850000px;}
.y53{bottom:569.250000px;}
.yda{bottom:569.700000px;}
.y210{bottom:570.000000px;}
.y15f{bottom:570.750000px;}
.y81{bottom:571.200000px;}
.y32{bottom:573.150000px;}
.yaf{bottom:575.100000px;}
.y1ef{bottom:578.250000px;}
.yff{bottom:580.500000px;}
.yb1{bottom:584.250000px;}
.y186{bottom:584.550000px;}
.y130{bottom:585.150000px;}
.y1b8{bottom:585.900000px;}
.y65{bottom:586.650000px;}
.ye{bottom:587.550000px;}
.y278{bottom:588.300000px;}
.y233{bottom:589.050000px;}
.y1d5{bottom:589.800000px;}
.y15e{bottom:590.550000px;}
.yad{bottom:593.400000px;}
.y25d{bottom:594.150000px;}
.y52{bottom:596.550000px;}
.yd9{bottom:597.000000px;}
.y1ee{bottom:598.050000px;}
.y80{bottom:598.500000px;}
.yfe{bottom:600.300000px;}
.y31{bottom:600.450000px;}
.yb0{bottom:602.550000px;}
.y185{bottom:602.850000px;}
.y12f{bottom:604.950000px;}
.y1b7{bottom:606.450000px;}
.y232{bottom:607.200000px;}
.y15d{bottom:608.700000px;}
.y20f{bottom:609.600000px;}
.yae{bottom:611.550000px;}
.y64{bottom:613.950000px;}
.yd{bottom:614.850000px;}
.y277{bottom:615.600000px;}
.y1d4{bottom:617.100000px;}
.y1ed{bottom:617.850000px;}
.yfd{bottom:618.600000px;}
.y25c{bottom:621.450000px;}
.y184{bottom:622.650000px;}
.y12e{bottom:623.100000px;}
.y51{bottom:623.850000px;}
.yd8{bottom:625.800000px;}
.y1b6{bottom:626.250000px;}
.y30{bottom:627.750000px;}
.y15c{bottom:628.500000px;}
.yac{bottom:630.600000px;}
.y1ec{bottom:637.650000px;}
.yfc{bottom:638.400000px;}
.y183{bottom:640.800000px;}
.y63{bottom:641.250000px;}
.y12d{bottom:641.400000px;}
.yc{bottom:642.150000px;}
.y276{bottom:642.900000px;}
.y7f{bottom:643.200000px;}
.y231{bottom:644.400000px;}
.y1b5{bottom:646.050000px;}
.y15b{bottom:646.800000px;}
.yab{bottom:648.750000px;}
.y241{bottom:651.150000px;}
.y1d3{bottom:652.800000px;}
.y2f{bottom:655.050000px;}
.y1eb{bottom:657.450000px;}
.ya8{bottom:657.900000px;}
.yfb{bottom:658.200000px;}
.y12c{bottom:659.550000px;}
.y182{bottom:660.600000px;}
.yd7{bottom:662.100000px;}
.y230{bottom:662.700000px;}
.y1b4{bottom:665.850000px;}
.y15a{bottom:666.600000px;}
.yaa{bottom:667.050000px;}
.y50{bottom:668.550000px;}
.y275{bottom:670.200000px;}
.y7e{bottom:670.500000px;}
.y25b{bottom:676.050000px;}
.y1ea{bottom:677.250000px;}
.yfa{bottom:678.000000px;}
.yb{bottom:678.300000px;}
.y181{bottom:678.900000px;}
.y12b{bottom:679.350000px;}
.y22f{bottom:680.850000px;}
.y2e{bottom:682.350000px;}
.y1b3{bottom:684.000000px;}
.y159{bottom:684.750000px;}
.ya9{bottom:685.200000px;}
.y20e{bottom:685.650000px;}
.yd6{bottom:689.400000px;}
.y4f{bottom:695.850000px;}
.yf9{bottom:696.150000px;}
.y180{bottom:697.050000px;}
.y274{bottom:697.500000px;}
.y12a{bottom:697.650000px;}
.y7d{bottom:697.800000px;}
.y1d2{bottom:698.100000px;}
.y22e{bottom:699.150000px;}
.y25a{bottom:703.350000px;}
.y1b2{bottom:703.800000px;}
.ya7{bottom:704.250000px;}
.y158{bottom:704.550000px;}
.y2d{bottom:709.650000px;}
.ya5{bottom:713.400000px;}
.yf8{bottom:714.450000px;}
.y1e9{bottom:715.350000px;}
.y129{bottom:715.800000px;}
.yd5{bottom:716.700000px;}
.y17f{bottom:716.850000px;}
.y22d{bottom:718.050000px;}
.ya4{bottom:722.400000px;}
.y4e{bottom:723.150000px;}
.y1b1{bottom:723.600000px;}
.y157{bottom:724.350000px;}
.y273{bottom:724.800000px;}
.y7c{bottom:725.100000px;}
.y1d1{bottom:725.400000px;}
.y259{bottom:730.650000px;}
.y128{bottom:734.100000px;}
.yf7{bottom:734.250000px;}
.y17e{bottom:735.150000px;}
.y22c{bottom:736.350000px;}
.y2c{bottom:736.950000px;}
.ya6{bottom:740.700000px;}
.y1b0{bottom:741.900000px;}
.yd4{bottom:744.000000px;}
.y156{bottom:744.150000px;}
.y4d{bottom:750.450000px;}
.y272{bottom:752.100000px;}
.y7b{bottom:752.400000px;}
.y1d0{bottom:752.700000px;}
.y1e8{bottom:753.300000px;}
.y127{bottom:753.900000px;}
.y22b{bottom:754.500000px;}
.y17d{bottom:754.950000px;}
.y28a{bottom:756.000000px;}
.y258{bottom:757.950000px;}
.y20d{bottom:760.050000px;}
.ya3{bottom:760.650000px;}
.y1af{bottom:761.700000px;}
.y155{bottom:762.450000px;}
.y2b{bottom:764.250000px;}
.ya2{bottom:769.800000px;}
.y1e7{bottom:771.600000px;}
.yf6{bottom:772.200000px;}
.y126{bottom:772.800000px;}
.y17c{bottom:773.100000px;}
.y4c{bottom:777.750000px;}
.y271{bottom:779.400000px;}
.y7a{bottom:779.700000px;}
.y20c{bottom:779.850000px;}
.y1cf{bottom:780.000000px;}
.y1ae{bottom:781.500000px;}
.y154{bottom:782.250000px;}
.y257{bottom:783.300000px;}
.yf5{bottom:790.500000px;}
.y22a{bottom:790.950000px;}
.y17b{bottom:791.400000px;}
.y2a{bottom:791.550000px;}
.ya{bottom:793.650000px;}
.y20b{bottom:798.150000px;}
.ya1{bottom:798.900000px;}
.y153{bottom:800.400000px;}
.y1ad{bottom:801.300000px;}
.y4b{bottom:805.050000px;}
.y256{bottom:806.700000px;}
.y9f{bottom:808.050000px;}
.yf4{bottom:808.650000px;}
.y1ce{bottom:808.800000px;}
.y229{bottom:809.250000px;}
.y1e6{bottom:809.550000px;}
.y17a{bottom:811.200000px;}
.y125{bottom:811.650000px;}
.y9e{bottom:817.050000px;}
.y9{bottom:817.200000px;}
.y20a{bottom:817.950000px;}
.y29{bottom:818.850000px;}
.y1ac{bottom:819.450000px;}
.y152{bottom:820.200000px;}
.y79{bottom:824.400000px;}
.y228{bottom:828.150000px;}
.yf3{bottom:828.450000px;}
.y179{bottom:829.350000px;}
.y124{bottom:831.450000px;}
.y289{bottom:832.050000px;}
.y62{bottom:832.350000px;}
.yd3{bottom:833.850000px;}
.y255{bottom:834.000000px;}
.ya0{bottom:835.350000px;}
.y1cd{bottom:836.100000px;}
.y151{bottom:838.500000px;}
.y1ab{bottom:839.250000px;}
.y28{bottom:846.150000px;}
.y227{bottom:846.450000px;}
.yf2{bottom:847.500000px;}
.y1e5{bottom:847.650000px;}
.y178{bottom:849.150000px;}
.y4a{bottom:849.750000px;}
.y123{bottom:851.250000px;}
.y78{bottom:851.700000px;}
.y9d{bottom:854.250000px;}
.y288{bottom:855.600000px;}
.y209{bottom:855.900000px;}
.y1aa{bottom:857.550000px;}
.y150{bottom:858.300000px;}
.y254{bottom:859.350000px;}
.y61{bottom:859.650000px;}
.yd2{bottom:861.150000px;}
.y270{bottom:861.300000px;}
.y8{bottom:863.100000px;}
.y9b{bottom:863.400000px;}
.y226{bottom:864.600000px;}
.y177{bottom:867.450000px;}
.y122{bottom:871.050000px;}
.y9a{bottom:872.550000px;}
.y208{bottom:874.950000px;}
.yf1{bottom:875.550000px;}
.y1a9{bottom:875.700000px;}
.y14f{bottom:876.450000px;}
.y49{bottom:877.050000px;}
.y77{bottom:879.000000px;}
.y27{bottom:881.850000px;}
.y225{bottom:882.900000px;}
.y176{bottom:885.600000px;}
.y240{bottom:886.950000px;}
.yd1{bottom:888.450000px;}
.y26f{bottom:888.600000px;}
.y9c{bottom:890.700000px;}
.y121{bottom:890.850000px;}
.y1cc{bottom:892.350000px;}
.y14e{bottom:894.750000px;}
.y1a8{bottom:895.500000px;}
.y224{bottom:901.050000px;}
.y7{bottom:903.600000px;}
.y48{bottom:904.350000px;}
.y175{bottom:905.400000px;}
.y76{bottom:906.300000px;}
.y99{bottom:909.750000px;}
.y253{bottom:910.200000px;}
.y120{bottom:910.650000px;}
.y207{bottom:912.150000px;}
.y26e{bottom:913.950000px;}
.y14d{bottom:914.550000px;}
.y96{bottom:918.900000px;}
.y223{bottom:919.350000px;}
.y1cb{bottom:919.650000px;}
.y174{bottom:923.700000px;}
.y95{bottom:927.900000px;}
.y11f{bottom:928.800000px;}
.yf0{bottom:930.150000px;}
.y47{bottom:931.650000px;}
.y206{bottom:931.950000px;}
.y14c{bottom:932.700000px;}
.yd0{bottom:933.150000px;}
.y1a7{bottom:933.450000px;}
.y6{bottom:935.550000px;}
.y97{bottom:937.050000px;}
.y222{bottom:937.500000px;}
.y75{bottom:942.000000px;}
.y173{bottom:943.500000px;}
.y98{bottom:946.200000px;}
.y1ca{bottom:948.450000px;}
.y11e{bottom:948.600000px;}
.y205{bottom:950.100000px;}
.y1a6{bottom:951.750000px;}
.y14b{bottom:952.500000px;}
.y221{bottom:955.800000px;}
.yef{bottom:957.450000px;}
.y46{bottom:958.950000px;}
.ycf{bottom:960.450000px;}
.y172{bottom:961.650000px;}
.y287{bottom:962.850000px;}
.y26{bottom:963.600000px;}
.y252{bottom:964.800000px;}
.y94{bottom:965.100000px;}
.y11d{bottom:966.900000px;}
.y204{bottom:969.900000px;}
.y14a{bottom:970.800000px;}
.y1a5{bottom:971.550000px;}
.y93{bottom:974.250000px;}
.y220{bottom:974.700000px;}
.y1c9{bottom:975.750000px;}
.y1e4{bottom:979.950000px;}
.y171{bottom:981.450000px;}
.yee{bottom:984.750000px;}
.y11c{bottom:985.050000px;}
.y45{bottom:986.250000px;}
.y5{bottom:987.150000px;}
.yce{bottom:987.750000px;}
.y149{bottom:988.950000px;}
.y1a4{bottom:989.700000px;}
.y26d{bottom:990.150000px;}
.y251{bottom:992.100000px;}
.y21f{bottom:993.000000px;}
.y74{bottom:996.150000px;}
.y170{bottom:999.750000px;}
.y25{bottom:1000.050000px;}
.y91{bottom:1002.300000px;}
.y1c8{bottom:1003.050000px;}
.y11b{bottom:1004.850000px;}
.y148{bottom:1008.750000px;}
.y1a3{bottom:1009.500000px;}
.y21e{bottom:1011.150000px;}
.y90{bottom:1011.450000px;}
.yed{bottom:1012.050000px;}
.y44{bottom:1013.550000px;}
.ycd{bottom:1015.050000px;}
.y16f{bottom:1017.900000px;}
.y24{bottom:1018.350000px;}
.y250{bottom:1019.400000px;}
.y4{bottom:1020.000000px;}
.y92{bottom:1020.600000px;}
.y73{bottom:1023.450000px;}
.y11a{bottom:1023.900000px;}
.y147{bottom:1027.050000px;}
.y1a2{bottom:1027.800000px;}
.y21d{bottom:1029.450000px;}
.y1c7{bottom:1030.350000px;}
.y16e{bottom:1037.700000px;}
.yec{bottom:1039.350000px;}
.y43{bottom:1040.850000px;}
.y8e{bottom:1042.350000px;}
.y1a1{bottom:1045.950000px;}
.y24f{bottom:1046.700000px;}
.y146{bottom:1046.850000px;}
.y21c{bottom:1047.600000px;}
.y8d{bottom:1051.500000px;}
.y16d{bottom:1056.000000px;}
.y1c6{bottom:1057.650000px;}
.ycc{bottom:1059.750000px;}
.y8f{bottom:1060.500000px;}
.y119{bottom:1062.600000px;}
.y145{bottom:1065.000000px;}
.y1a0{bottom:1065.750000px;}
.y21b{bottom:1065.900000px;}
.yeb{bottom:1066.650000px;}
.y23{bottom:1068.150000px;}
.y24e{bottom:1072.050000px;}
.y16c{bottom:1075.800000px;}
.y118{bottom:1082.400000px;}
.y144{bottom:1083.300000px;}
.y19f{bottom:1084.050000px;}
.y8c{bottom:1085.850000px;}
.y1c5{bottom:1086.600000px;}
.ycb{bottom:1087.050000px;}
.yea{bottom:1093.950000px;}
.y16b{bottom:1094.700000px;}
.y22{bottom:1095.450000px;}
.y117{bottom:1102.200000px;}
.y143{bottom:1103.100000px;}
.y19e{bottom:1103.850000px;}
.y3{bottom:1105.650000px;}
.y116{bottom:1122.000000px;}
.y21{bottom:1122.750000px;}
.y2{bottom:1124.850000px;}
.y20{bottom:1163.100000px;}
.hc{height:34.945312px;}
.h6{height:36.703125px;}
.h2{height:42.020508px;}
.h5{height:45.878906px;}
.hb{height:50.424609px;}
.h3{height:55.054688px;}
.h4{height:60.029297px;}
.h7{height:96.029297px;}
.h9{height:96.629297px;}
.h8{height:132.629297px;}
.ha{height:133.229297px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x10{left:83.850000px;}
.x8{left:85.200000px;}
.x3e{left:91.650000px;}
.xe{left:93.750000px;}
.x51{left:97.950000px;}
.x3d{left:100.200000px;}
.xd{left:102.150000px;}
.x48{left:106.200000px;}
.x3{left:109.350000px;}
.x46{left:111.000000px;}
.x45{left:117.450000px;}
.x31{left:119.850000px;}
.x3a{left:123.750000px;}
.x47{left:128.850000px;}
.x14{left:130.200000px;}
.xf{left:133.350000px;}
.x4d{left:135.600000px;}
.x27{left:136.650000px;}
.x9{left:137.700000px;}
.xa{left:139.050000px;}
.x39{left:143.250000px;}
.x32{left:145.950000px;}
.x1a{left:148.350000px;}
.x2e{left:150.450000px;}
.x3b{left:153.300000px;}
.x49{left:160.650000px;}
.x44{left:227.700000px;}
.x40{left:231.450000px;}
.x15{left:238.200000px;}
.x1e{left:239.250000px;}
.x2f{left:241.500000px;}
.x3c{left:243.600000px;}
.x2b{left:249.900000px;}
.x33{left:251.700000px;}
.x26{left:255.000000px;}
.x38{left:257.700000px;}
.x2a{left:258.900000px;}
.x11{left:263.250000px;}
.x28{left:264.300000px;}
.x29{left:267.600000px;}
.x7{left:270.000000px;}
.x23{left:271.500000px;}
.x22{left:274.650000px;}
.x1b{left:277.350000px;}
.x21{left:287.100000px;}
.x37{left:291.600000px;}
.x34{left:293.550000px;}
.x42{left:294.900000px;}
.x12{left:304.050000px;}
.xc{left:305.550000px;}
.x52{left:310.200000px;}
.x2c{left:311.850000px;}
.x53{left:315.000000px;}
.x16{left:323.700000px;}
.x30{left:325.050000px;}
.x43{left:326.250000px;}
.x41{left:328.650000px;}
.x50{left:334.350000px;}
.x5{left:335.700000px;}
.x6{left:342.000000px;}
.x4c{left:345.750000px;}
.x18{left:347.700000px;}
.x4a{left:349.350000px;}
.x1f{left:360.450000px;}
.x4b{left:362.250000px;}
.x3f{left:383.850000px;}
.x1{left:388.050000px;}
.x4{left:391.350000px;}
.xb{left:431.850000px;}
.x4e{left:566.850000px;}
.x4f{left:575.250000px;}
.x20{left:595.650000px;}
.x2{left:629.100000px;}
.x24{left:648.300000px;}
.x13{left:654.150000px;}
.x25{left:657.150000px;}
.x19{left:667.200000px;}
.x35{left:670.950000px;}
.x1d{left:673.050000px;}
.x1c{left:682.950000px;}
.x36{left:685.200000px;}
.x2d{left:686.400000px;}
.x17{left:689.100000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.000000pt;}
.v2{vertical-align:64.533333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.213333pt;}
.ls9{letter-spacing:41.866667pt;}
.ls1{letter-spacing:53.066667pt;}
.ls8{letter-spacing:77.066667pt;}
.lsa{letter-spacing:82.933333pt;}
.ls4{letter-spacing:96.266667pt;}
.ls7{letter-spacing:121.866667pt;}
.ls5{letter-spacing:172.533333pt;}
.ls2{letter-spacing:175.733333pt;}
.ls6{letter-spacing:218.400000pt;}
.ws1{word-spacing:-21.824000pt;}
.wsa{word-spacing:-18.933333pt;}
.ws2{word-spacing:-18.720000pt;}
.ws3{word-spacing:-18.186667pt;}
.ws11{word-spacing:-15.724800pt;}
.ws0{word-spacing:-13.104000pt;}
.ws13{word-spacing:-11.818667pt;}
.ws12{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.wse{word-spacing:30.346667pt;}
.wsd{word-spacing:45.813333pt;}
.ws7{word-spacing:53.813333pt;}
.ws10{word-spacing:55.200000pt;}
.wsf{word-spacing:87.733333pt;}
.ws9{word-spacing:94.880000pt;}
.wsb{word-spacing:96.480000pt;}
.ws6{word-spacing:123.680000pt;}
.ws8{word-spacing:132.906667pt;}
.wsc{word-spacing:136.480000pt;}
.ws5{word-spacing:158.613333pt;}
._35{margin-left:-498.026667pt;}
._31{margin-left:-186.880000pt;}
._34{margin-left:-36.160000pt;}
._33{margin-left:-18.666667pt;}
._37{margin-left:-17.600000pt;}
._44{margin-left:-8.261333pt;}
._f{margin-left:-7.098667pt;}
._12{margin-left:-5.381333pt;}
._1b{margin-left:-4.480000pt;}
._2{margin-left:-3.066667pt;}
._d{margin-left:-1.866667pt;}
._1{margin-left:-0.933333pt;}
._0{width:1.008000pt;}
._5{width:2.560000pt;}
._4{width:3.466667pt;}
._b{width:4.693333pt;}
._3{width:5.920000pt;}
._a{width:7.173333pt;}
._10{width:8.138667pt;}
._8{width:9.040000pt;}
._6{width:10.186667pt;}
._7{width:11.253333pt;}
._14{width:12.272000pt;}
._c{width:13.333333pt;}
._15{width:14.506667pt;}
._9{width:15.685333pt;}
._2b{width:16.805333pt;}
._13{width:17.808000pt;}
._11{width:20.346667pt;}
._2c{width:22.133333pt;}
._2d{width:23.466667pt;}
._3d{width:25.226667pt;}
._e{width:26.773333pt;}
._4a{width:29.066667pt;}
._3a{width:30.618667pt;}
._3b{width:31.728000pt;}
._40{width:32.933333pt;}
._4e{width:33.920000pt;}
._30{width:34.986667pt;}
._49{width:36.805333pt;}
._43{width:47.200000pt;}
._42{width:48.373333pt;}
._3e{width:49.546667pt;}
._1e{width:51.733333pt;}
._3f{width:53.760000pt;}
._4b{width:58.768000pt;}
._3c{width:62.416000pt;}
._28{width:65.066667pt;}
._4f{width:68.480000pt;}
._25{width:71.466667pt;}
._45{width:72.480000pt;}
._52{width:74.933333pt;}
._51{width:76.053333pt;}
._48{width:89.178667pt;}
._46{width:90.560000pt;}
._41{width:95.840000pt;}
._4d{width:97.066667pt;}
._39{width:102.720000pt;}
._21{width:116.154667pt;}
._29{width:123.952000pt;}
._1f{width:130.933333pt;}
._26{width:138.400000pt;}
._23{width:148.432000pt;}
._50{width:150.986667pt;}
._32{width:167.893333pt;}
._1a{width:169.866667pt;}
._47{width:180.640000pt;}
._4c{width:193.013333pt;}
._1d{width:194.586667pt;}
._2f{width:198.826667pt;}
._38{width:204.426667pt;}
._20{width:240.160000pt;}
._2e{width:242.133333pt;}
._27{width:244.400000pt;}
._24{width:252.506667pt;}
._18{width:289.653333pt;}
._2a{width:290.912000pt;}
._19{width:359.146667pt;}
._22{width:362.453333pt;}
._1c{width:442.933333pt;}
._36{width:478.826667pt;}
._17{width:595.093333pt;}
._16{width:642.666667pt;}
.fs0{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:44.800000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y1f{bottom:67.333333pt;}
.y42{bottom:73.200000pt;}
.y1e{bottom:98.800000pt;}
.y19d{bottom:111.333333pt;}
.y115{bottom:113.333333pt;}
.ye9{bottom:113.866667pt;}
.y41{bottom:114.533333pt;}
.y203{bottom:121.866667pt;}
.y1d{bottom:123.066667pt;}
.y1c4{bottom:123.333333pt;}
.y19c{bottom:128.933333pt;}
.y114{bottom:130.933333pt;}
.yca{bottom:136.133333pt;}
.y24d{bottom:136.933333pt;}
.ye8{bottom:138.133333pt;}
.y40{bottom:138.800000pt;}
.y23f{bottom:141.866667pt;}
.y19b{bottom:145.066667pt;}
.y60{bottom:145.600000pt;}
.y113{bottom:147.066667pt;}
.y1c{bottom:147.333333pt;}
.y26c{bottom:153.466667pt;}
.y1e3{bottom:154.133333pt;}
.y202{bottom:154.266667pt;}
.y24c{bottom:157.866667pt;}
.y286{bottom:158.933333pt;}
.yc9{bottom:160.400000pt;}
.y19a{bottom:161.333333pt;}
.y3f{bottom:163.066667pt;}
.y112{bottom:163.333333pt;}
.ye7{bottom:163.866667pt;}
.y1c3{bottom:165.866667pt;}
.y23e{bottom:166.133333pt;}
.y5f{bottom:171.333333pt;}
.y1b{bottom:171.600000pt;}
.y201{bottom:171.866667pt;}
.y26b{bottom:174.400000pt;}
.y199{bottom:178.933333pt;}
.y1e2{bottom:179.733333pt;}
.y111{bottom:180.933333pt;}
.y1c2{bottom:182.133333pt;}
.y285{bottom:183.200000pt;}
.yc8{bottom:184.666667pt;}
.y3e{bottom:187.333333pt;}
.ye6{bottom:188.133333pt;}
.y200{bottom:189.466667pt;}
.y23d{bottom:190.400000pt;}
.y72{bottom:190.533333pt;}
.y198{bottom:195.066667pt;}
.y5e{bottom:195.600000pt;}
.y1a{bottom:195.866667pt;}
.y291{bottom:196.133333pt;}
.y110{bottom:197.066667pt;}
.y142{bottom:198.266667pt;}
.y26a{bottom:198.666667pt;}
.y1c1{bottom:199.733333pt;}
.y1e1{bottom:204.000000pt;}
.y1ff{bottom:205.733333pt;}
.y24b{bottom:206.400000pt;}
.y284{bottom:207.466667pt;}
.yc7{bottom:208.933333pt;}
.y3d{bottom:211.600000pt;}
.ye5{bottom:212.400000pt;}
.y197{bottom:212.666667pt;}
.y10f{bottom:213.333333pt;}
.y290{bottom:214.533333pt;}
.y23c{bottom:214.666667pt;}
.y71{bottom:214.800000pt;}
.y141{bottom:215.866667pt;}
.y5d{bottom:219.866667pt;}
.y19{bottom:220.133333pt;}
.y21a{bottom:221.333333pt;}
.y269{bottom:222.933333pt;}
.y1fe{bottom:223.333333pt;}
.y16a{bottom:228.133333pt;}
.y1e0{bottom:228.266667pt;}
.y196{bottom:228.933333pt;}
.y24a{bottom:230.666667pt;}
.y10e{bottom:230.933333pt;}
.y283{bottom:231.733333pt;}
.y140{bottom:232.133333pt;}
.y28f{bottom:232.933333pt;}
.yc6{bottom:233.200000pt;}
.y1c0{bottom:233.466667pt;}
.y8b{bottom:234.133333pt;}
.y3c{bottom:235.866667pt;}
.ye4{bottom:238.000000pt;}
.y23b{bottom:238.933333pt;}
.y70{bottom:239.066667pt;}
.y1fd{bottom:240.933333pt;}
.y5c{bottom:245.466667pt;}
.y219{bottom:245.600000pt;}
.y195{bottom:246.533333pt;}
.y10d{bottom:247.066667pt;}
.y268{bottom:247.200000pt;}
.y13f{bottom:248.266667pt;}
.y1bf{bottom:251.066667pt;}
.y169{bottom:252.400000pt;}
.y1df{bottom:254.000000pt;}
.y249{bottom:254.933333pt;}
.y282{bottom:256.000000pt;}
.y18{bottom:256.133333pt;}
.y1fc{bottom:257.066667pt;}
.y8a{bottom:258.400000pt;}
.y3b{bottom:260.133333pt;}
.ye3{bottom:262.266667pt;}
.y6f{bottom:263.333333pt;}
.y13e{bottom:265.866667pt;}
.y1be{bottom:267.333333pt;}
.y5b{bottom:269.733333pt;}
.y218{bottom:269.866667pt;}
.y267{bottom:271.466667pt;}
.yc5{bottom:272.933333pt;}
.y1fb{bottom:274.666667pt;}
.y168{bottom:276.666667pt;}
.y248{bottom:277.466667pt;}
.y1de{bottom:278.266667pt;}
.y23a{bottom:278.666667pt;}
.y194{bottom:280.266667pt;}
.y17{bottom:280.400000pt;}
.y10c{bottom:280.933333pt;}
.y13d{bottom:282.133333pt;}
.y89{bottom:282.666667pt;}
.y3a{bottom:284.400000pt;}
.y1bd{bottom:284.933333pt;}
.ye2{bottom:286.533333pt;}
.y6e{bottom:287.600000pt;}
.y1fa{bottom:290.933333pt;}
.y266{bottom:294.000000pt;}
.y217{bottom:294.133333pt;}
.y5a{bottom:295.466667pt;}
.y10b{bottom:297.066667pt;}
.yc2{bottom:297.333333pt;}
.y193{bottom:297.866667pt;}
.y247{bottom:298.266667pt;}
.y13c{bottom:299.733333pt;}
.y167{bottom:300.933333pt;}
.y1bc{bottom:301.066667pt;}
.y239{bottom:302.933333pt;}
.y1dd{bottom:303.866667pt;}
.y281{bottom:304.533333pt;}
.y16{bottom:304.666667pt;}
.yc4{bottom:305.466667pt;}
.y88{bottom:306.933333pt;}
.y1f9{bottom:308.533333pt;}
.y6d{bottom:311.866667pt;}
.ye1{bottom:312.266667pt;}
.y10a{bottom:313.333333pt;}
.yc0{bottom:313.466667pt;}
.y192{bottom:314.000000pt;}
.y265{bottom:314.800000pt;}
.y13b{bottom:317.333333pt;}
.y216{bottom:318.400000pt;}
.y1bb{bottom:318.666667pt;}
.y59{bottom:319.733333pt;}
.yc3{bottom:321.600000pt;}
.y246{bottom:322.533333pt;}
.y39{bottom:324.133333pt;}
.y166{bottom:325.200000pt;}
.y1f8{bottom:326.133333pt;}
.y238{bottom:327.200000pt;}
.y1dc{bottom:328.133333pt;}
.y280{bottom:328.800000pt;}
.y15{bottom:328.933333pt;}
.yc1{bottom:329.733333pt;}
.y109{bottom:330.933333pt;}
.y87{bottom:331.200000pt;}
.y191{bottom:331.600000pt;}
.y13a{bottom:334.933333pt;}
.y6c{bottom:336.133333pt;}
.ye0{bottom:336.533333pt;}
.y264{bottom:339.066667pt;}
.y215{bottom:342.666667pt;}
.y1f7{bottom:343.733333pt;}
.y58{bottom:344.000000pt;}
.y245{bottom:345.066667pt;}
.ybf{bottom:346.533333pt;}
.y108{bottom:347.066667pt;}
.y190{bottom:347.866667pt;}
.y38{bottom:348.400000pt;}
.y139{bottom:351.066667pt;}
.y237{bottom:351.466667pt;}
.y27f{bottom:353.066667pt;}
.y14{bottom:353.200000pt;}
.y1db{bottom:353.866667pt;}
.ybd{bottom:354.666667pt;}
.y86{bottom:355.466667pt;}
.y165{bottom:356.933333pt;}
.y6b{bottom:360.400000pt;}
.ydf{bottom:360.800000pt;}
.y1f6{bottom:361.333333pt;}
.y263{bottom:361.600000pt;}
.ybc{bottom:362.800000pt;}
.y107{bottom:364.666667pt;}
.y18f{bottom:365.466667pt;}
.y244{bottom:366.000000pt;}
.y214{bottom:366.933333pt;}
.y138{bottom:368.666667pt;}
.y57{bottom:369.600000pt;}
.y37{bottom:372.666667pt;}
.y236{bottom:375.733333pt;}
.y27e{bottom:377.333333pt;}
.y1f5{bottom:377.466667pt;}
.y1da{bottom:378.133333pt;}
.ybe{bottom:378.933333pt;}
.y106{bottom:380.933333pt;}
.y18e{bottom:381.600000pt;}
.y262{bottom:382.533333pt;}
.y6a{bottom:384.666667pt;}
.y137{bottom:384.933333pt;}
.yde{bottom:385.066667pt;}
.y13{bottom:389.200000pt;}
.y243{bottom:390.266667pt;}
.y213{bottom:391.200000pt;}
.y1f4{bottom:395.066667pt;}
.y85{bottom:395.200000pt;}
.ybb{bottom:395.866667pt;}
.y36{bottom:396.933333pt;}
.y164{bottom:397.200000pt;}
.y105{bottom:398.533333pt;}
.y18d{bottom:399.200000pt;}
.y1ba{bottom:401.066667pt;}
.y27d{bottom:401.600000pt;}
.y56{bottom:401.866667pt;}
.y1d9{bottom:402.400000pt;}
.y136{bottom:402.533333pt;}
.yba{bottom:404.000000pt;}
.y261{bottom:406.800000pt;}
.y235{bottom:407.466667pt;}
.y69{bottom:408.933333pt;}
.ydd{bottom:409.333333pt;}
.y1f3{bottom:411.333333pt;}
.y28e{bottom:411.866667pt;}
.y242{bottom:412.800000pt;}
.y12{bottom:413.466667pt;}
.y104{bottom:415.333333pt;}
.y18c{bottom:416.800000pt;}
.y135{bottom:418.666667pt;}
.y84{bottom:419.466667pt;}
.y35{bottom:421.200000pt;}
.y212{bottom:422.933333pt;}
.y27c{bottom:425.866667pt;}
.y55{bottom:426.133333pt;}
.y1d8{bottom:428.000000pt;}
.yb9{bottom:428.933333pt;}
.y260{bottom:431.066667pt;}
.y68{bottom:433.200000pt;}
.ydc{bottom:433.600000pt;}
.y18b{bottom:434.400000pt;}
.y134{bottom:434.933333pt;}
.y28d{bottom:436.133333pt;}
.yb6{bottom:437.066667pt;}
.y11{bottom:437.733333pt;}
.y163{bottom:438.266667pt;}
.y83{bottom:443.733333pt;}
.yb5{bottom:445.066667pt;}
.y34{bottom:445.466667pt;}
.y1f2{bottom:445.733333pt;}
.y103{bottom:449.866667pt;}
.y27b{bottom:450.133333pt;}
.y18a{bottom:452.000000pt;}
.y133{bottom:452.533333pt;}
.yb7{bottom:453.200000pt;}
.y25f{bottom:455.333333pt;}
.y162{bottom:455.866667pt;}
.y67{bottom:457.466667pt;}
.y54{bottom:457.866667pt;}
.y1d7{bottom:460.266667pt;}
.y28c{bottom:460.400000pt;}
.yb8{bottom:461.333333pt;}
.y102{bottom:466.000000pt;}
.y82{bottom:468.000000pt;}
.y132{bottom:468.666667pt;}
.y189{bottom:469.600000pt;}
.y33{bottom:469.733333pt;}
.y1b9{bottom:470.133333pt;}
.y211{bottom:471.333333pt;}
.y161{bottom:473.466667pt;}
.y10{bottom:473.733333pt;}
.y27a{bottom:474.400000pt;}
.yb3{bottom:478.133333pt;}
.y1f1{bottom:478.800000pt;}
.y25e{bottom:479.600000pt;}
.ydb{bottom:482.133333pt;}
.y28b{bottom:482.933333pt;}
.y101{bottom:483.600000pt;}
.y188{bottom:485.866667pt;}
.yb2{bottom:486.266667pt;}
.y160{bottom:491.066667pt;}
.y234{bottom:491.200000pt;}
.yb4{bottom:494.400000pt;}
.y1f0{bottom:496.400000pt;}
.y66{bottom:497.200000pt;}
.yf{bottom:498.000000pt;}
.y279{bottom:498.666667pt;}
.y100{bottom:499.866667pt;}
.y1d6{bottom:500.000000pt;}
.y187{bottom:503.466667pt;}
.y131{bottom:503.866667pt;}
.y53{bottom:506.000000pt;}
.yda{bottom:506.400000pt;}
.y210{bottom:506.666667pt;}
.y15f{bottom:507.333333pt;}
.y81{bottom:507.733333pt;}
.y32{bottom:509.466667pt;}
.yaf{bottom:511.200000pt;}
.y1ef{bottom:514.000000pt;}
.yff{bottom:516.000000pt;}
.yb1{bottom:519.333333pt;}
.y186{bottom:519.600000pt;}
.y130{bottom:520.133333pt;}
.y1b8{bottom:520.800000pt;}
.y65{bottom:521.466667pt;}
.ye{bottom:522.266667pt;}
.y278{bottom:522.933333pt;}
.y233{bottom:523.600000pt;}
.y1d5{bottom:524.266667pt;}
.y15e{bottom:524.933333pt;}
.yad{bottom:527.466667pt;}
.y25d{bottom:528.133333pt;}
.y52{bottom:530.266667pt;}
.yd9{bottom:530.666667pt;}
.y1ee{bottom:531.600000pt;}
.y80{bottom:532.000000pt;}
.yfe{bottom:533.600000pt;}
.y31{bottom:533.733333pt;}
.yb0{bottom:535.600000pt;}
.y185{bottom:535.866667pt;}
.y12f{bottom:537.733333pt;}
.y1b7{bottom:539.066667pt;}
.y232{bottom:539.733333pt;}
.y15d{bottom:541.066667pt;}
.y20f{bottom:541.866667pt;}
.yae{bottom:543.600000pt;}
.y64{bottom:545.733333pt;}
.yd{bottom:546.533333pt;}
.y277{bottom:547.200000pt;}
.y1d4{bottom:548.533333pt;}
.y1ed{bottom:549.200000pt;}
.yfd{bottom:549.866667pt;}
.y25c{bottom:552.400000pt;}
.y184{bottom:553.466667pt;}
.y12e{bottom:553.866667pt;}
.y51{bottom:554.533333pt;}
.yd8{bottom:556.266667pt;}
.y1b6{bottom:556.666667pt;}
.y30{bottom:558.000000pt;}
.y15c{bottom:558.666667pt;}
.yac{bottom:560.533333pt;}
.y1ec{bottom:566.800000pt;}
.yfc{bottom:567.466667pt;}
.y183{bottom:569.600000pt;}
.y63{bottom:570.000000pt;}
.y12d{bottom:570.133333pt;}
.yc{bottom:570.800000pt;}
.y276{bottom:571.466667pt;}
.y7f{bottom:571.733333pt;}
.y231{bottom:572.800000pt;}
.y1b5{bottom:574.266667pt;}
.y15b{bottom:574.933333pt;}
.yab{bottom:576.666667pt;}
.y241{bottom:578.800000pt;}
.y1d3{bottom:580.266667pt;}
.y2f{bottom:582.266667pt;}
.y1eb{bottom:584.400000pt;}
.ya8{bottom:584.800000pt;}
.yfb{bottom:585.066667pt;}
.y12c{bottom:586.266667pt;}
.y182{bottom:587.200000pt;}
.yd7{bottom:588.533333pt;}
.y230{bottom:589.066667pt;}
.y1b4{bottom:591.866667pt;}
.y15a{bottom:592.533333pt;}
.yaa{bottom:592.933333pt;}
.y50{bottom:594.266667pt;}
.y275{bottom:595.733333pt;}
.y7e{bottom:596.000000pt;}
.y25b{bottom:600.933333pt;}
.y1ea{bottom:602.000000pt;}
.yfa{bottom:602.666667pt;}
.yb{bottom:602.933333pt;}
.y181{bottom:603.466667pt;}
.y12b{bottom:603.866667pt;}
.y22f{bottom:605.200000pt;}
.y2e{bottom:606.533333pt;}
.y1b3{bottom:608.000000pt;}
.y159{bottom:608.666667pt;}
.ya9{bottom:609.066667pt;}
.y20e{bottom:609.466667pt;}
.yd6{bottom:612.800000pt;}
.y4f{bottom:618.533333pt;}
.yf9{bottom:618.800000pt;}
.y180{bottom:619.600000pt;}
.y274{bottom:620.000000pt;}
.y12a{bottom:620.133333pt;}
.y7d{bottom:620.266667pt;}
.y1d2{bottom:620.533333pt;}
.y22e{bottom:621.466667pt;}
.y25a{bottom:625.200000pt;}
.y1b2{bottom:625.600000pt;}
.ya7{bottom:626.000000pt;}
.y158{bottom:626.266667pt;}
.y2d{bottom:630.800000pt;}
.ya5{bottom:634.133333pt;}
.yf8{bottom:635.066667pt;}
.y1e9{bottom:635.866667pt;}
.y129{bottom:636.266667pt;}
.yd5{bottom:637.066667pt;}
.y17f{bottom:637.200000pt;}
.y22d{bottom:638.266667pt;}
.ya4{bottom:642.133333pt;}
.y4e{bottom:642.800000pt;}
.y1b1{bottom:643.200000pt;}
.y157{bottom:643.866667pt;}
.y273{bottom:644.266667pt;}
.y7c{bottom:644.533333pt;}
.y1d1{bottom:644.800000pt;}
.y259{bottom:649.466667pt;}
.y128{bottom:652.533333pt;}
.yf7{bottom:652.666667pt;}
.y17e{bottom:653.466667pt;}
.y22c{bottom:654.533333pt;}
.y2c{bottom:655.066667pt;}
.ya6{bottom:658.400000pt;}
.y1b0{bottom:659.466667pt;}
.yd4{bottom:661.333333pt;}
.y156{bottom:661.466667pt;}
.y4d{bottom:667.066667pt;}
.y272{bottom:668.533333pt;}
.y7b{bottom:668.800000pt;}
.y1d0{bottom:669.066667pt;}
.y1e8{bottom:669.600000pt;}
.y127{bottom:670.133333pt;}
.y22b{bottom:670.666667pt;}
.y17d{bottom:671.066667pt;}
.y28a{bottom:672.000000pt;}
.y258{bottom:673.733333pt;}
.y20d{bottom:675.600000pt;}
.ya3{bottom:676.133333pt;}
.y1af{bottom:677.066667pt;}
.y155{bottom:677.733333pt;}
.y2b{bottom:679.333333pt;}
.ya2{bottom:684.266667pt;}
.y1e7{bottom:685.866667pt;}
.yf6{bottom:686.400000pt;}
.y126{bottom:686.933333pt;}
.y17c{bottom:687.200000pt;}
.y4c{bottom:691.333333pt;}
.y271{bottom:692.800000pt;}
.y7a{bottom:693.066667pt;}
.y20c{bottom:693.200000pt;}
.y1cf{bottom:693.333333pt;}
.y1ae{bottom:694.666667pt;}
.y154{bottom:695.333333pt;}
.y257{bottom:696.266667pt;}
.yf5{bottom:702.666667pt;}
.y22a{bottom:703.066667pt;}
.y17b{bottom:703.466667pt;}
.y2a{bottom:703.600000pt;}
.ya{bottom:705.466667pt;}
.y20b{bottom:709.466667pt;}
.ya1{bottom:710.133333pt;}
.y153{bottom:711.466667pt;}
.y1ad{bottom:712.266667pt;}
.y4b{bottom:715.600000pt;}
.y256{bottom:717.066667pt;}
.y9f{bottom:718.266667pt;}
.yf4{bottom:718.800000pt;}
.y1ce{bottom:718.933333pt;}
.y229{bottom:719.333333pt;}
.y1e6{bottom:719.600000pt;}
.y17a{bottom:721.066667pt;}
.y125{bottom:721.466667pt;}
.y9e{bottom:726.266667pt;}
.y9{bottom:726.400000pt;}
.y20a{bottom:727.066667pt;}
.y29{bottom:727.866667pt;}
.y1ac{bottom:728.400000pt;}
.y152{bottom:729.066667pt;}
.y79{bottom:732.800000pt;}
.y228{bottom:736.133333pt;}
.yf3{bottom:736.400000pt;}
.y179{bottom:737.200000pt;}
.y124{bottom:739.066667pt;}
.y289{bottom:739.600000pt;}
.y62{bottom:739.866667pt;}
.yd3{bottom:741.200000pt;}
.y255{bottom:741.333333pt;}
.ya0{bottom:742.533333pt;}
.y1cd{bottom:743.200000pt;}
.y151{bottom:745.333333pt;}
.y1ab{bottom:746.000000pt;}
.y28{bottom:752.133333pt;}
.y227{bottom:752.400000pt;}
.yf2{bottom:753.333333pt;}
.y1e5{bottom:753.466667pt;}
.y178{bottom:754.800000pt;}
.y4a{bottom:755.333333pt;}
.y123{bottom:756.666667pt;}
.y78{bottom:757.066667pt;}
.y9d{bottom:759.333333pt;}
.y288{bottom:760.533333pt;}
.y209{bottom:760.800000pt;}
.y1aa{bottom:762.266667pt;}
.y150{bottom:762.933333pt;}
.y254{bottom:763.866667pt;}
.y61{bottom:764.133333pt;}
.yd2{bottom:765.466667pt;}
.y270{bottom:765.600000pt;}
.y8{bottom:767.200000pt;}
.y9b{bottom:767.466667pt;}
.y226{bottom:768.533333pt;}
.y177{bottom:771.066667pt;}
.y122{bottom:774.266667pt;}
.y9a{bottom:775.600000pt;}
.y208{bottom:777.733333pt;}
.yf1{bottom:778.266667pt;}
.y1a9{bottom:778.400000pt;}
.y14f{bottom:779.066667pt;}
.y49{bottom:779.600000pt;}
.y77{bottom:781.333333pt;}
.y27{bottom:783.866667pt;}
.y225{bottom:784.800000pt;}
.y176{bottom:787.200000pt;}
.y240{bottom:788.400000pt;}
.yd1{bottom:789.733333pt;}
.y26f{bottom:789.866667pt;}
.y9c{bottom:791.733333pt;}
.y121{bottom:791.866667pt;}
.y1cc{bottom:793.200000pt;}
.y14e{bottom:795.333333pt;}
.y1a8{bottom:796.000000pt;}
.y224{bottom:800.933333pt;}
.y7{bottom:803.200000pt;}
.y48{bottom:803.866667pt;}
.y175{bottom:804.800000pt;}
.y76{bottom:805.600000pt;}
.y99{bottom:808.666667pt;}
.y253{bottom:809.066667pt;}
.y120{bottom:809.466667pt;}
.y207{bottom:810.800000pt;}
.y26e{bottom:812.400000pt;}
.y14d{bottom:812.933333pt;}
.y96{bottom:816.800000pt;}
.y223{bottom:817.200000pt;}
.y1cb{bottom:817.466667pt;}
.y174{bottom:821.066667pt;}
.y95{bottom:824.800000pt;}
.y11f{bottom:825.600000pt;}
.yf0{bottom:826.800000pt;}
.y47{bottom:828.133333pt;}
.y206{bottom:828.400000pt;}
.y14c{bottom:829.066667pt;}
.yd0{bottom:829.466667pt;}
.y1a7{bottom:829.733333pt;}
.y6{bottom:831.600000pt;}
.y97{bottom:832.933333pt;}
.y222{bottom:833.333333pt;}
.y75{bottom:837.333333pt;}
.y173{bottom:838.666667pt;}
.y98{bottom:841.066667pt;}
.y1ca{bottom:843.066667pt;}
.y11e{bottom:843.200000pt;}
.y205{bottom:844.533333pt;}
.y1a6{bottom:846.000000pt;}
.y14b{bottom:846.666667pt;}
.y221{bottom:849.600000pt;}
.yef{bottom:851.066667pt;}
.y46{bottom:852.400000pt;}
.ycf{bottom:853.733333pt;}
.y172{bottom:854.800000pt;}
.y287{bottom:855.866667pt;}
.y26{bottom:856.533333pt;}
.y252{bottom:857.600000pt;}
.y94{bottom:857.866667pt;}
.y11d{bottom:859.466667pt;}
.y204{bottom:862.133333pt;}
.y14a{bottom:862.933333pt;}
.y1a5{bottom:863.600000pt;}
.y93{bottom:866.000000pt;}
.y220{bottom:866.400000pt;}
.y1c9{bottom:867.333333pt;}
.y1e4{bottom:871.066667pt;}
.y171{bottom:872.400000pt;}
.yee{bottom:875.333333pt;}
.y11c{bottom:875.600000pt;}
.y45{bottom:876.666667pt;}
.y5{bottom:877.466667pt;}
.yce{bottom:878.000000pt;}
.y149{bottom:879.066667pt;}
.y1a4{bottom:879.733333pt;}
.y26d{bottom:880.133333pt;}
.y251{bottom:881.866667pt;}
.y21f{bottom:882.666667pt;}
.y74{bottom:885.466667pt;}
.y170{bottom:888.666667pt;}
.y25{bottom:888.933333pt;}
.y91{bottom:890.933333pt;}
.y1c8{bottom:891.600000pt;}
.y11b{bottom:893.200000pt;}
.y148{bottom:896.666667pt;}
.y1a3{bottom:897.333333pt;}
.y21e{bottom:898.800000pt;}
.y90{bottom:899.066667pt;}
.yed{bottom:899.600000pt;}
.y44{bottom:900.933333pt;}
.ycd{bottom:902.266667pt;}
.y16f{bottom:904.800000pt;}
.y24{bottom:905.200000pt;}
.y250{bottom:906.133333pt;}
.y4{bottom:906.666667pt;}
.y92{bottom:907.200000pt;}
.y73{bottom:909.733333pt;}
.y11a{bottom:910.133333pt;}
.y147{bottom:912.933333pt;}
.y1a2{bottom:913.600000pt;}
.y21d{bottom:915.066667pt;}
.y1c7{bottom:915.866667pt;}
.y16e{bottom:922.400000pt;}
.yec{bottom:923.866667pt;}
.y43{bottom:925.200000pt;}
.y8e{bottom:926.533333pt;}
.y1a1{bottom:929.733333pt;}
.y24f{bottom:930.400000pt;}
.y146{bottom:930.533333pt;}
.y21c{bottom:931.200000pt;}
.y8d{bottom:934.666667pt;}
.y16d{bottom:938.666667pt;}
.y1c6{bottom:940.133333pt;}
.ycc{bottom:942.000000pt;}
.y8f{bottom:942.666667pt;}
.y119{bottom:944.533333pt;}
.y145{bottom:946.666667pt;}
.y1a0{bottom:947.333333pt;}
.y21b{bottom:947.466667pt;}
.yeb{bottom:948.133333pt;}
.y23{bottom:949.466667pt;}
.y24e{bottom:952.933333pt;}
.y16c{bottom:956.266667pt;}
.y118{bottom:962.133333pt;}
.y144{bottom:962.933333pt;}
.y19f{bottom:963.600000pt;}
.y8c{bottom:965.200000pt;}
.y1c5{bottom:965.866667pt;}
.ycb{bottom:966.266667pt;}
.yea{bottom:972.400000pt;}
.y16b{bottom:973.066667pt;}
.y22{bottom:973.733333pt;}
.y117{bottom:979.733333pt;}
.y143{bottom:980.533333pt;}
.y19e{bottom:981.200000pt;}
.y3{bottom:982.800000pt;}
.y116{bottom:997.333333pt;}
.y21{bottom:998.000000pt;}
.y2{bottom:999.866667pt;}
.y20{bottom:1033.866667pt;}
.hc{height:31.062500pt;}
.h6{height:32.625000pt;}
.h2{height:37.351562pt;}
.h5{height:40.781250pt;}
.hb{height:44.821875pt;}
.h3{height:48.937500pt;}
.h4{height:53.359375pt;}
.h7{height:85.359375pt;}
.h9{height:85.892708pt;}
.h8{height:117.892708pt;}
.ha{height:118.426042pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x10{left:74.533333pt;}
.x8{left:75.733333pt;}
.x3e{left:81.466667pt;}
.xe{left:83.333333pt;}
.x51{left:87.066667pt;}
.x3d{left:89.066667pt;}
.xd{left:90.800000pt;}
.x48{left:94.400000pt;}
.x3{left:97.200000pt;}
.x46{left:98.666667pt;}
.x45{left:104.400000pt;}
.x31{left:106.533333pt;}
.x3a{left:110.000000pt;}
.x47{left:114.533333pt;}
.x14{left:115.733333pt;}
.xf{left:118.533333pt;}
.x4d{left:120.533333pt;}
.x27{left:121.466667pt;}
.x9{left:122.400000pt;}
.xa{left:123.600000pt;}
.x39{left:127.333333pt;}
.x32{left:129.733333pt;}
.x1a{left:131.866667pt;}
.x2e{left:133.733333pt;}
.x3b{left:136.266667pt;}
.x49{left:142.800000pt;}
.x44{left:202.400000pt;}
.x40{left:205.733333pt;}
.x15{left:211.733333pt;}
.x1e{left:212.666667pt;}
.x2f{left:214.666667pt;}
.x3c{left:216.533333pt;}
.x2b{left:222.133333pt;}
.x33{left:223.733333pt;}
.x26{left:226.666667pt;}
.x38{left:229.066667pt;}
.x2a{left:230.133333pt;}
.x11{left:234.000000pt;}
.x28{left:234.933333pt;}
.x29{left:237.866667pt;}
.x7{left:240.000000pt;}
.x23{left:241.333333pt;}
.x22{left:244.133333pt;}
.x1b{left:246.533333pt;}
.x21{left:255.200000pt;}
.x37{left:259.200000pt;}
.x34{left:260.933333pt;}
.x42{left:262.133333pt;}
.x12{left:270.266667pt;}
.xc{left:271.600000pt;}
.x52{left:275.733333pt;}
.x2c{left:277.200000pt;}
.x53{left:280.000000pt;}
.x16{left:287.733333pt;}
.x30{left:288.933333pt;}
.x43{left:290.000000pt;}
.x41{left:292.133333pt;}
.x50{left:297.200000pt;}
.x5{left:298.400000pt;}
.x6{left:304.000000pt;}
.x4c{left:307.333333pt;}
.x18{left:309.066667pt;}
.x4a{left:310.533333pt;}
.x1f{left:320.400000pt;}
.x4b{left:322.000000pt;}
.x3f{left:341.200000pt;}
.x1{left:344.933333pt;}
.x4{left:347.866667pt;}
.xb{left:383.866667pt;}
.x4e{left:503.866667pt;}
.x4f{left:511.333333pt;}
.x20{left:529.466667pt;}
.x2{left:559.200000pt;}
.x24{left:576.266667pt;}
.x13{left:581.466667pt;}
.x25{left:584.133333pt;}
.x19{left:593.066667pt;}
.x35{left:596.400000pt;}
.x1d{left:598.266667pt;}
.x1c{left:607.066667pt;}
.x36{left:609.066667pt;}
.x2d{left:610.133333pt;}
.x17{left:612.533333pt;}
}




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