
    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_9062a730bd4aea8e4e3428e4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_677d1473d5e31df56223944f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_6e9d6db0a815291feead4a9a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_7d2e61567037a7fc5482d5f0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_a98ad7095bd9c2db3e259cd3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_c7e69ae3cbd00d91e117649a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_78f45bc2e1a3d8bcf2c895fe.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v1{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.600000px;}
.ls6{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.480000px;}
.ls1{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.lse{letter-spacing:0.060000px;}
.lsf{letter-spacing:0.066000px;}
.ls7{letter-spacing:0.078000px;}
.lsd{letter-spacing:0.102000px;}
.ls12{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.162000px;}
.lsa{letter-spacing:0.222000px;}
.ls5{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.324000px;}
.ls4{letter-spacing:0.384000px;}
.ls0{letter-spacing:0.600000px;}
.ls11{letter-spacing:15.720000px;}
.ls10{letter-spacing:45.720000px;}
.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:-18.384000px;}
.ws0{word-spacing:-15.204000px;}
.wsa{word-spacing:-15.120000px;}
.ws2{word-spacing:-15.000000px;}
.ws4{word-spacing:-12.900000px;}
.ws8{word-spacing:-12.528000px;}
.ws6{word-spacing:-12.366000px;}
.ws7{word-spacing:-12.237900px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:37.962000px;}
.ws9{word-spacing:64.452000px;}
._14{margin-left:-2.178000px;}
._3{margin-left:-1.164000px;}
._0{width:1.056000px;}
._8{width:2.119200px;}
._9{width:3.264000px;}
._b{width:4.800000px;}
._c{width:6.180000px;}
._a{width:7.230000px;}
._d{width:8.304000px;}
._10{width:9.360000px;}
._6{width:10.417200px;}
._7{width:11.566800px;}
._e{width:13.500000px;}
._1c{width:16.080000px;}
._f{width:17.100000px;}
._19{width:18.138000px;}
._17{width:19.500000px;}
._18{width:20.724000px;}
._15{width:22.200000px;}
._1f{width:24.306000px;}
._1d{width:25.560000px;}
._1e{width:26.718000px;}
._1a{width:28.020000px;}
._1b{width:29.304000px;}
._12{width:31.260000px;}
._13{width:32.700000px;}
._11{width:33.774000px;}
._1{width:43.800000px;}
._16{width:64.368000px;}
._4{width:336.180000px;}
._2{width:1162.530000px;}
._5{width:1184.820000px;}
.fc5{color:transparent;}
.fc3{color:rgb(34,122,203);}
.fc8{color:rgb(1,2,5);}
.fc7{color:rgb(64,64,64);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fsa{font-size:30.000000px;}
.fs8{font-size:39.600000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs9{font-size:54.150000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:75.600000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:1.500000px;}
.ya0{bottom:3.285000px;}
.y96{bottom:3.300000px;}
.y117{bottom:3.315000px;}
.yb9{bottom:3.600000px;}
.yf{bottom:3.915000px;}
.ycb{bottom:4.500000px;}
.yce{bottom:4.785000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y5{bottom:12.337500px;}
.yde{bottom:16.500000px;}
.y8b{bottom:17.475000px;}
.y3d{bottom:19.200000px;}
.ybb{bottom:20.700000px;}
.y11e{bottom:21.045000px;}
.y9d{bottom:21.285000px;}
.ye1{bottom:23.100000px;}
.yd0{bottom:23.115000px;}
.y122{bottom:27.000000px;}
.y125{bottom:27.045000px;}
.ya2{bottom:30.300000px;}
.y98{bottom:30.330000px;}
.y3c{bottom:38.700000px;}
.y4{bottom:46.800000px;}
.y11f{bottom:51.645000px;}
.y7e{bottom:52.995000px;}
.y3b{bottom:53.100000px;}
.y1{bottom:57.037500px;}
.y121{bottom:67.800000px;}
.y124{bottom:67.830000px;}
.y127{bottom:67.845000px;}
.y3a{bottom:70.545000px;}
.y40{bottom:74.137500px;}
.y3{bottom:81.337500px;}
.y39{bottom:87.645000px;}
.y38{bottom:105.045000px;}
.y85{bottom:115.095000px;}
.y15a{bottom:117.337500px;}
.yab{bottom:118.837500px;}
.y7c{bottom:120.337500px;}
.y37{bottom:122.145000px;}
.y80{bottom:123.105000px;}
.y23{bottom:128.137500px;}
.y115{bottom:128.737500px;}
.y180{bottom:130.237500px;}
.ydc{bottom:131.737500px;}
.y7d{bottom:137.100000px;}
.y159{bottom:138.037500px;}
.y7f{bottom:138.720000px;}
.y36{bottom:139.545000px;}
.y7b{bottom:141.037500px;}
.y22{bottom:145.237500px;}
.y114{bottom:145.837500px;}
.y17f{bottom:147.337500px;}
.ydb{bottom:152.430000px;}
.y35{bottom:156.645000px;}
.y158{bottom:158.730000px;}
.y88{bottom:159.075000px;}
.y7a{bottom:161.130000px;}
.y21{bottom:162.645000px;}
.y113{bottom:163.245000px;}
.y17e{bottom:164.745000px;}
.y11d{bottom:165.345000px;}
.yda{bottom:173.145000px;}
.y34{bottom:174.045000px;}
.y79{bottom:178.575000px;}
.y157{bottom:179.475000px;}
.y20{bottom:179.775000px;}
.y112{bottom:180.375000px;}
.y17d{bottom:181.875000px;}
.y33{bottom:191.145000px;}
.yd9{bottom:193.275000px;}
.y78{bottom:195.675000px;}
.y111{bottom:197.775000px;}
.y17c{bottom:199.275000px;}
.y32{bottom:208.545000px;}
.yd8{bottom:210.675000px;}
.y156{bottom:211.575000px;}
.y77{bottom:213.075000px;}
.y17b{bottom:216.375000px;}
.y31{bottom:225.645000px;}
.y110{bottom:226.575000px;}
.yd7{bottom:227.775000px;}
.y155{bottom:228.975000px;}
.y76{bottom:230.775000px;}
.y86{bottom:231.675000px;}
.y17a{bottom:233.775000px;}
.y30{bottom:243.075000px;}
.y10f{bottom:244.275000px;}
.yd6{bottom:245.175000px;}
.y82{bottom:245.670000px;}
.y154{bottom:246.375000px;}
.y75{bottom:250.275000px;}
.y179{bottom:250.875000px;}
.y2f{bottom:260.175000px;}
.y81{bottom:261.255000px;}
.y10e{bottom:261.375000px;}
.yd5{bottom:262.275000px;}
.y153{bottom:263.475000px;}
.y74{bottom:264.675000px;}
.y178{bottom:268.275000px;}
.y89{bottom:275.655000px;}
.y2e{bottom:277.575000px;}
.y24{bottom:278.775000px;}
.yd4{bottom:279.975000px;}
.y152{bottom:280.875000px;}
.y73{bottom:282.075000px;}
.y177{bottom:285.375000px;}
.y2d{bottom:294.675000px;}
.y10d{bottom:295.875000px;}
.y72{bottom:299.175000px;}
.yd3{bottom:300.375000px;}
.y176{bottom:302.775000px;}
.y151{bottom:309.675000px;}
.y2c{bottom:312.075000px;}
.y10c{bottom:313.275000px;}
.y71{bottom:316.575000px;}
.yd2{bottom:317.475000px;}
.y175{bottom:319.875000px;}
.y150{bottom:327.375000px;}
.y2b{bottom:329.175000px;}
.y10b{bottom:330.375000px;}
.y70{bottom:333.675000px;}
.yd1{bottom:333.975000px;}
.y174{bottom:337.275000px;}
.y14f{bottom:344.475000px;}
.ycf{bottom:346.005000px;}
.y2a{bottom:346.575000px;}
.y87{bottom:348.270000px;}
.y6f{bottom:351.405000px;}
.y173{bottom:354.405000px;}
.y10a{bottom:359.505000px;}
.y14e{bottom:361.920000px;}
.y29{bottom:363.675000px;}
.y84{bottom:368.175000px;}
.y6e{bottom:370.905000px;}
.y172{bottom:371.820000px;}
.y109{bottom:376.920000px;}
.y14d{bottom:379.020000px;}
.y28{bottom:381.075000px;}
.y83{bottom:383.775000px;}
.ycd{bottom:383.820000px;}
.y6d{bottom:385.605000px;}
.y171{bottom:388.920000px;}
.y8a{bottom:392.250000px;}
.y108{bottom:394.320000px;}
.y14c{bottom:396.420000px;}
.y27{bottom:398.175000px;}
.y6c{bottom:402.720000px;}
.ycc{bottom:403.320000px;}
.y170{bottom:406.320000px;}
.y107{bottom:411.420000px;}
.y14b{bottom:413.505000px;}
.y26{bottom:415.605000px;}
.y6b{bottom:420.120000px;}
.yca{bottom:422.820000px;}
.y16f{bottom:423.420000px;}
.y106{bottom:429.120000px;}
.y14a{bottom:430.905000px;}
.y25{bottom:433.305000px;}
.y6a{bottom:437.205000px;}
.y16e{bottom:440.820000px;}
.y149{bottom:448.005000px;}
.yc9{bottom:448.920000px;}
.y105{bottom:449.505000px;}
.y69{bottom:454.620000px;}
.y16d{bottom:457.905000px;}
.y104{bottom:466.620000px;}
.yc8{bottom:468.420000px;}
.y68{bottom:471.720000px;}
.y16c{bottom:475.320000px;}
.y148{bottom:477.120000px;}
.yc7{bottom:483.120000px;}
.y103{bottom:484.005000px;}
.y67{bottom:489.120000px;}
.y16b{bottom:492.420000px;}
.y147{bottom:494.505000px;}
.yc6{bottom:500.220000px;}
.y102{bottom:501.120000px;}
.y66{bottom:506.820000px;}
.y16a{bottom:509.820000px;}
.y11c{bottom:511.005000px;}
.y146{bottom:511.905000px;}
.yc5{bottom:517.650000px;}
.y101{bottom:518.550000px;}
.y169{bottom:526.950000px;}
.y65{bottom:527.550000px;}
.y145{bottom:529.050000px;}
.yc4{bottom:534.750000px;}
.y100{bottom:535.650000px;}
.y168{bottom:544.350000px;}
.y144{bottom:546.450000px;}
.y64{bottom:547.050000px;}
.yc3{bottom:552.450000px;}
.yff{bottom:553.050000px;}
.y63{bottom:561.450000px;}
.y143{bottom:563.550000px;}
.yfe{bottom:570.150000px;}
.yc2{bottom:572.850000px;}
.y62{bottom:578.850000px;}
.y142{bottom:580.950000px;}
.yfd{bottom:587.550000px;}
.yc1{bottom:589.950000px;}
.y126{bottom:593.550000px;}
.y61{bottom:595.950000px;}
.yfc{bottom:604.650000px;}
.yc0{bottom:607.350000px;}
.y141{bottom:609.750000px;}
.yaa{bottom:612.450000px;}
.y60{bottom:613.350000px;}
.yfb{bottom:622.050000px;}
.y196{bottom:623.550000px;}
.ybf{bottom:624.450000px;}
.y140{bottom:627.450000px;}
.y5f{bottom:630.450000px;}
.ya9{bottom:631.950000px;}
.ybe{bottom:639.150000px;}
.y195{bottom:640.950000px;}
.y13f{bottom:644.550000px;}
.ya8{bottom:646.650000px;}
.y5e{bottom:646.950000px;}
.y167{bottom:647.850000px;}
.yfa{bottom:656.550000px;}
.ybd{bottom:657.150000px;}
.y194{bottom:658.050000px;}
.y5d{bottom:661.650000px;}
.y13e{bottom:661.950000px;}
.ya7{bottom:663.750000px;}
.y166{bottom:664.950000px;}
.yf9{bottom:673.650000px;}
.ybc{bottom:675.150000px;}
.y193{bottom:675.450000px;}
.y123{bottom:676.050000px;}
.y5c{bottom:678.750000px;}
.y13d{bottom:679.050000px;}
.ya6{bottom:681.480000px;}
.y165{bottom:682.380000px;}
.yf8{bottom:691.095000px;}
.y192{bottom:692.595000px;}
.yba{bottom:693.195000px;}
.y5b{bottom:696.195000px;}
.y13c{bottom:696.480000px;}
.ya1{bottom:699.195000px;}
.y164{bottom:699.495000px;}
.yf7{bottom:708.195000px;}
.y191{bottom:709.980000px;}
.y5a{bottom:713.280000px;}
.y163{bottom:716.880000px;}
.ya5{bottom:717.195000px;}
.y13b{bottom:725.280000px;}
.yf6{bottom:725.580000px;}
.y190{bottom:727.080000px;}
.yb8{bottom:728.280000px;}
.y59{bottom:730.695000px;}
.y162{bottom:733.995000px;}
.ya4{bottom:735.195000px;}
.yf5{bottom:742.695000px;}
.y13a{bottom:742.995000px;}
.y18f{bottom:744.495000px;}
.y58{bottom:747.195000px;}
.y161{bottom:751.395000px;}
.ya3{bottom:753.195000px;}
.y1f{bottom:757.095000px;}
.y120{bottom:760.080000px;}
.yf4{bottom:760.095000px;}
.y57{bottom:761.595000px;}
.y160{bottom:769.080000px;}
.y9c{bottom:771.195000px;}
.yb7{bottom:773.580000px;}
.y1e{bottom:774.195000px;}
.yf3{bottom:777.195000px;}
.y139{bottom:777.480000px;}
.y56{bottom:778.980000px;}
.y9f{bottom:789.195000px;}
.yb6{bottom:790.695000px;}
.y1d{bottom:791.580000px;}
.yf2{bottom:794.580000px;}
.y55{bottom:796.080000px;}
.y15f{bottom:806.580000px;}
.y9e{bottom:807.195000px;}
.yb5{bottom:808.080000px;}
.y1c{bottom:808.695000px;}
.yf1{bottom:811.695000px;}
.y138{bottom:811.995000px;}
.y54{bottom:813.495000px;}
.y15e{bottom:823.695000px;}
.y97{bottom:825.195000px;}
.y1b{bottom:826.080000px;}
.yf0{bottom:829.080000px;}
.y53{bottom:830.580000px;}
.y137{bottom:840.795000px;}
.y15d{bottom:841.080000px;}
.yb4{bottom:842.895000px;}
.y9b{bottom:843.195000px;}
.y52{bottom:847.080000px;}
.y18e{bottom:847.995000px;}
.y1a{bottom:850.425000px;}
.yef{bottom:854.325000px;}
.y15c{bottom:858.225000px;}
.y136{bottom:858.525000px;}
.y9a{bottom:861.225000px;}
.y51{bottom:861.825000px;}
.yb3{bottom:863.325000px;}
.y18d{bottom:865.125000px;}
.y19{bottom:868.725000px;}
.yee{bottom:875.025000px;}
.y135{bottom:875.625000px;}
.y50{bottom:878.925000px;}
.y99{bottom:879.225000px;}
.yb2{bottom:880.425000px;}
.y18c{bottom:882.525000px;}
.y18{bottom:887.625000px;}
.y15b{bottom:892.725000px;}
.y134{bottom:893.025000px;}
.yed{bottom:895.125000px;}
.y4f{bottom:896.325000px;}
.y95{bottom:897.225000px;}
.yb1{bottom:897.525000px;}
.y18b{bottom:899.625000px;}
.y133{bottom:910.125000px;}
.y17{bottom:910.425000px;}
.yec{bottom:912.225000px;}
.yb0{bottom:912.825000px;}
.y4e{bottom:913.425000px;}
.y94{bottom:916.725000px;}
.y18a{bottom:917.025000px;}
.ye3{bottom:920.925000px;}
.y16{bottom:922.425000px;}
.y132{bottom:927.525000px;}
.y93{bottom:927.825000px;}
.yeb{bottom:929.625000px;}
.y4d{bottom:930.825000px;}
.y189{bottom:934.125000px;}
.ye2{bottom:940.125000px;}
.y15{bottom:944.925000px;}
.yea{bottom:946.725000px;}
.y92{bottom:947.325000px;}
.y4c{bottom:947.925000px;}
.y188{bottom:951.525000px;}
.y131{bottom:956.325000px;}
.y14{bottom:957.225000px;}
.ye0{bottom:959.625000px;}
.y91{bottom:961.725000px;}
.ye9{bottom:964.125000px;}
.y4b{bottom:965.325000px;}
.y187{bottom:968.625000px;}
.y130{bottom:974.025000px;}
.y90{bottom:979.125000px;}
.ye8{bottom:981.825000px;}
.y4a{bottom:982.425000px;}
.y13{bottom:983.025000px;}
.y186{bottom:986.025000px;}
.y12f{bottom:991.125000px;}
.y8f{bottom:996.225000px;}
.ydf{bottom:997.425000px;}
.y12{bottom:998.325000px;}
.y49{bottom:999.825000px;}
.y185{bottom:1003.125000px;}
.y12e{bottom:1008.525000px;}
.y8e{bottom:1013.925000px;}
.y48{bottom:1016.955000px;}
.ye7{bottom:1019.370000px;}
.y11{bottom:1019.955000px;}
.y184{bottom:1020.570000px;}
.y12d{bottom:1025.670000px;}
.ydd{bottom:1028.955000px;}
.y47{bottom:1034.370000px;}
.y8d{bottom:1034.670000px;}
.ye6{bottom:1036.755000px;}
.y183{bottom:1037.670000px;}
.y10{bottom:1038.255000px;}
.y11b{bottom:1039.770000px;}
.yd{bottom:1040.955000px;}
.y12c{bottom:1043.070000px;}
.y46{bottom:1051.455000px;}
.y8c{bottom:1054.170000px;}
.y182{bottom:1055.070000px;}
.y11a{bottom:1057.770000px;}
.y12b{bottom:1060.170000px;}
.yc{bottom:1062.570000px;}
.ye5{bottom:1064.670000px;}
.yb{bottom:1068.255000px;}
.y45{bottom:1068.870000px;}
.yaf{bottom:1069.170000px;}
.y181{bottom:1072.170000px;}
.y119{bottom:1075.755000px;}
.y12a{bottom:1077.570000px;}
.ya{bottom:1083.570000px;}
.y44{bottom:1085.955000px;}
.yae{bottom:1089.570000px;}
.y118{bottom:1093.755000px;}
.y129{bottom:1094.670000px;}
.y9{bottom:1097.955000px;}
.ye4{bottom:1101.570000px;}
.y43{bottom:1103.370000px;}
.yad{bottom:1106.670000px;}
.y116{bottom:1111.755000px;}
.y8{bottom:1115.670000px;}
.y42{bottom:1120.455000px;}
.y128{bottom:1123.755000px;}
.yac{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y41{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y3f{bottom:1196.400000px;}
.h9{height:8.677734px;}
.h5{height:12.700195px;}
.h1b{height:17.100000px;}
.h1d{height:17.137500px;}
.h22{height:17.400000px;}
.h24{height:18.600000px;}
.h25{height:18.900000px;}
.ha{height:21.000000px;}
.h1a{height:21.166992px;}
.hc{height:28.636523px;}
.h29{height:29.838867px;}
.h27{height:30.600000px;}
.h28{height:30.637500px;}
.h7{height:33.867188px;}
.h23{height:34.500000px;}
.h16{height:34.710938px;}
.h3{height:36.000000px;}
.h26{height:37.200000px;}
.he{height:38.100586px;}
.h14{height:38.953125px;}
.h8{height:39.049805px;}
.h4{height:42.333984px;}
.hd{height:43.388672px;}
.h2d{height:43.681641px;}
.h15{height:44.507812px;}
.h21{height:46.567383px;}
.h13{height:48.691406px;}
.h10{height:49.453125px;}
.h6{height:50.800781px;}
.h20{height:52.066406px;}
.h1e{height:53.100000px;}
.hb{height:53.340820px;}
.h18{height:53.709961px;}
.h19{height:53.859155px;}
.h11{height:58.429688px;}
.hf{height:59.343750px;}
.h1{height:65.645508px;}
.h1f{height:71.100000px;}
.h1c{height:71.137500px;}
.h2b{height:81.900000px;}
.h2c{height:81.937500px;}
.h2{height:97.200000px;}
.h2a{height:330.975000px;}
.h12{height:450.120000px;}
.h17{height:464.400000px;}
.h0{height:1263.000000px;}
.wf{width:56.737500px;}
.w13{width:71.737500px;}
.w4{width:72.300000px;}
.w17{width:106.237500px;}
.w1a{width:106.500000px;}
.w3{width:108.000000px;}
.w10{width:110.737500px;}
.w14{width:115.537500px;}
.wa{width:120.637500px;}
.w18{width:123.337500px;}
.w1b{width:123.637500px;}
.w11{width:131.137500px;}
.w15{width:132.637500px;}
.wb{width:147.637500px;}
.w1c{width:151.230000px;}
.w1e{width:177.075000px;}
.wc{width:194.745000px;}
.wd{width:208.575000px;}
.w6{width:247.875000px;}
.w1d{width:296.775000px;}
.w19{width:398.820000px;}
.w9{width:403.905000px;}
.w12{width:419.505000px;}
.w16{width:436.005000px;}
.we{width:438.120000px;}
.w5{width:483.450000px;}
.w8{width:708.300000px;}
.w7{width:728.925000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:7.800000px;}
.x2{left:10.799998px;}
.x37{left:11.985000px;}
.x13{left:14.700000px;}
.xf{left:16.200000px;}
.x35{left:17.700000px;}
.x3{left:22.200000px;}
.x16{left:25.125000px;}
.x4{left:27.600000px;}
.x3c{left:28.785000px;}
.x33{left:30.900000px;}
.x17{left:32.325000px;}
.x32{left:34.500000px;}
.x12{left:37.800000px;}
.x49{left:45.345000px;}
.x22{left:49.230000px;}
.x14{left:52.162500px;}
.x25{left:56.730000px;}
.x44{left:59.400000px;}
.x28{left:60.630000px;}
.x3b{left:61.800000px;}
.x42{left:63.300000px;}
.x26{left:64.530000px;}
.x4a{left:65.730000px;}
.x24{left:68.745000px;}
.x1{left:81.037487px;}
.xe{left:83.137500px;}
.x27{left:84.945000px;}
.x29{left:86.745000px;}
.x2a{left:87.945000px;}
.x2b{left:89.145000px;}
.x2d{left:90.345000px;}
.x2c{left:94.245000px;}
.x4b{left:108.037487px;}
.xd{left:111.330000px;}
.x48{left:112.545000px;}
.x15{left:116.070000px;}
.x1f{left:127.837500px;}
.x47{left:137.745000px;}
.x45{left:148.530000px;}
.x9{left:153.629987px;}
.x39{left:217.867500px;}
.x43{left:233.175000px;}
.xb{left:241.582500px;}
.x23{left:276.375000px;}
.x1e{left:334.125000px;}
.x11{left:342.120000px;}
.x1c{left:430.605000px;}
.x6{left:446.249987px;}
.x3f{left:481.050000px;}
.x20{left:485.850000px;}
.x1a{left:494.550000px;}
.x34{left:501.750000px;}
.x1b{left:504.675000px;}
.x2f{left:520.350000px;}
.x46{left:530.850000px;}
.x40{left:538.395000px;}
.xc{left:564.495000px;}
.x18{left:573.375000px;}
.x36{left:574.395000px;}
.x30{left:577.695000px;}
.x1d{left:583.170000px;}
.x10{left:592.979987px;}
.x21{left:607.395000px;}
.x8{left:614.879987px;}
.x41{left:645.495000px;}
.x19{left:647.100000px;}
.x7{left:648.194987px;}
.x3a{left:685.725000px;}
.x31{left:689.025000px;}
.x38{left:690.825000px;}
.x5{left:697.124987px;}
.x3e{left:722.324987px;}
.x3d{left:783.254987px;}
.xa{left:812.369987px;}
@media print{
.v1{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.200000pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls1{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.lse{letter-spacing:0.053333pt;}
.lsf{letter-spacing:0.058667pt;}
.ls7{letter-spacing:0.069333pt;}
.lsd{letter-spacing:0.090667pt;}
.ls12{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.144000pt;}
.lsa{letter-spacing:0.197333pt;}
.ls5{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.288000pt;}
.ls4{letter-spacing:0.341333pt;}
.ls0{letter-spacing:0.533333pt;}
.ls11{letter-spacing:13.973333pt;}
.ls10{letter-spacing:40.640000pt;}
.ws1{word-spacing:-16.341333pt;}
.ws0{word-spacing:-13.514667pt;}
.wsa{word-spacing:-13.440000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws4{word-spacing:-11.466667pt;}
.ws8{word-spacing:-11.136000pt;}
.ws6{word-spacing:-10.992000pt;}
.ws7{word-spacing:-10.878133pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:33.744000pt;}
.ws9{word-spacing:57.290667pt;}
._14{margin-left:-1.936000pt;}
._3{margin-left:-1.034667pt;}
._0{width:0.938667pt;}
._8{width:1.883733pt;}
._9{width:2.901333pt;}
._b{width:4.266667pt;}
._c{width:5.493333pt;}
._a{width:6.426667pt;}
._d{width:7.381333pt;}
._10{width:8.320000pt;}
._6{width:9.259733pt;}
._7{width:10.281600pt;}
._e{width:12.000000pt;}
._1c{width:14.293333pt;}
._f{width:15.200000pt;}
._19{width:16.122667pt;}
._17{width:17.333333pt;}
._18{width:18.421333pt;}
._15{width:19.733333pt;}
._1f{width:21.605333pt;}
._1d{width:22.720000pt;}
._1e{width:23.749333pt;}
._1a{width:24.906667pt;}
._1b{width:26.048000pt;}
._12{width:27.786667pt;}
._13{width:29.066667pt;}
._11{width:30.021333pt;}
._1{width:38.933333pt;}
._16{width:57.216000pt;}
._4{width:298.826667pt;}
._2{width:1033.360000pt;}
._5{width:1053.173333pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fsa{font-size:26.666667pt;}
.fs8{font-size:35.200000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs9{font-size:48.133333pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:67.200000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:1.333333pt;}
.ya0{bottom:2.920000pt;}
.y96{bottom:2.933333pt;}
.y117{bottom:2.946667pt;}
.yb9{bottom:3.200000pt;}
.yf{bottom:3.480000pt;}
.ycb{bottom:4.000000pt;}
.yce{bottom:4.253333pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y5{bottom:10.966667pt;}
.yde{bottom:14.666667pt;}
.y8b{bottom:15.533333pt;}
.y3d{bottom:17.066667pt;}
.ybb{bottom:18.400000pt;}
.y11e{bottom:18.706667pt;}
.y9d{bottom:18.920000pt;}
.ye1{bottom:20.533333pt;}
.yd0{bottom:20.546667pt;}
.y122{bottom:24.000000pt;}
.y125{bottom:24.040000pt;}
.ya2{bottom:26.933333pt;}
.y98{bottom:26.960000pt;}
.y3c{bottom:34.400000pt;}
.y4{bottom:41.600000pt;}
.y11f{bottom:45.906667pt;}
.y7e{bottom:47.106667pt;}
.y3b{bottom:47.200000pt;}
.y1{bottom:50.700000pt;}
.y121{bottom:60.266667pt;}
.y124{bottom:60.293333pt;}
.y127{bottom:60.306667pt;}
.y3a{bottom:62.706667pt;}
.y40{bottom:65.900000pt;}
.y3{bottom:72.300000pt;}
.y39{bottom:77.906667pt;}
.y38{bottom:93.373333pt;}
.y85{bottom:102.306667pt;}
.y15a{bottom:104.300000pt;}
.yab{bottom:105.633333pt;}
.y7c{bottom:106.966667pt;}
.y37{bottom:108.573333pt;}
.y80{bottom:109.426667pt;}
.y23{bottom:113.900000pt;}
.y115{bottom:114.433333pt;}
.y180{bottom:115.766667pt;}
.ydc{bottom:117.100000pt;}
.y7d{bottom:121.866667pt;}
.y159{bottom:122.700000pt;}
.y7f{bottom:123.306667pt;}
.y36{bottom:124.040000pt;}
.y7b{bottom:125.366667pt;}
.y22{bottom:129.100000pt;}
.y114{bottom:129.633333pt;}
.y17f{bottom:130.966667pt;}
.ydb{bottom:135.493333pt;}
.y35{bottom:139.240000pt;}
.y158{bottom:141.093333pt;}
.y88{bottom:141.400000pt;}
.y7a{bottom:143.226667pt;}
.y21{bottom:144.573333pt;}
.y113{bottom:145.106667pt;}
.y17e{bottom:146.440000pt;}
.y11d{bottom:146.973333pt;}
.yda{bottom:153.906667pt;}
.y34{bottom:154.706667pt;}
.y79{bottom:158.733333pt;}
.y157{bottom:159.533333pt;}
.y20{bottom:159.800000pt;}
.y112{bottom:160.333333pt;}
.y17d{bottom:161.666667pt;}
.y33{bottom:169.906667pt;}
.yd9{bottom:171.800000pt;}
.y78{bottom:173.933333pt;}
.y111{bottom:175.800000pt;}
.y17c{bottom:177.133333pt;}
.y32{bottom:185.373333pt;}
.yd8{bottom:187.266667pt;}
.y156{bottom:188.066667pt;}
.y77{bottom:189.400000pt;}
.y17b{bottom:192.333333pt;}
.y31{bottom:200.573333pt;}
.y110{bottom:201.400000pt;}
.yd7{bottom:202.466667pt;}
.y155{bottom:203.533333pt;}
.y76{bottom:205.133333pt;}
.y86{bottom:205.933333pt;}
.y17a{bottom:207.800000pt;}
.y30{bottom:216.066667pt;}
.y10f{bottom:217.133333pt;}
.yd6{bottom:217.933333pt;}
.y82{bottom:218.373333pt;}
.y154{bottom:219.000000pt;}
.y75{bottom:222.466667pt;}
.y179{bottom:223.000000pt;}
.y2f{bottom:231.266667pt;}
.y81{bottom:232.226667pt;}
.y10e{bottom:232.333333pt;}
.yd5{bottom:233.133333pt;}
.y153{bottom:234.200000pt;}
.y74{bottom:235.266667pt;}
.y178{bottom:238.466667pt;}
.y89{bottom:245.026667pt;}
.y2e{bottom:246.733333pt;}
.y24{bottom:247.800000pt;}
.yd4{bottom:248.866667pt;}
.y152{bottom:249.666667pt;}
.y73{bottom:250.733333pt;}
.y177{bottom:253.666667pt;}
.y2d{bottom:261.933333pt;}
.y10d{bottom:263.000000pt;}
.y72{bottom:265.933333pt;}
.yd3{bottom:267.000000pt;}
.y176{bottom:269.133333pt;}
.y151{bottom:275.266667pt;}
.y2c{bottom:277.400000pt;}
.y10c{bottom:278.466667pt;}
.y71{bottom:281.400000pt;}
.yd2{bottom:282.200000pt;}
.y175{bottom:284.333333pt;}
.y150{bottom:291.000000pt;}
.y2b{bottom:292.600000pt;}
.y10b{bottom:293.666667pt;}
.y70{bottom:296.600000pt;}
.yd1{bottom:296.866667pt;}
.y174{bottom:299.800000pt;}
.y14f{bottom:306.200000pt;}
.ycf{bottom:307.560000pt;}
.y2a{bottom:308.066667pt;}
.y87{bottom:309.573333pt;}
.y6f{bottom:312.360000pt;}
.y173{bottom:315.026667pt;}
.y10a{bottom:319.560000pt;}
.y14e{bottom:321.706667pt;}
.y29{bottom:323.266667pt;}
.y84{bottom:327.266667pt;}
.y6e{bottom:329.693333pt;}
.y172{bottom:330.506667pt;}
.y109{bottom:335.040000pt;}
.y14d{bottom:336.906667pt;}
.y28{bottom:338.733333pt;}
.y83{bottom:341.133333pt;}
.ycd{bottom:341.173333pt;}
.y6d{bottom:342.760000pt;}
.y171{bottom:345.706667pt;}
.y8a{bottom:348.666667pt;}
.y108{bottom:350.506667pt;}
.y14c{bottom:352.373333pt;}
.y27{bottom:353.933333pt;}
.y6c{bottom:357.973333pt;}
.ycc{bottom:358.506667pt;}
.y170{bottom:361.173333pt;}
.y107{bottom:365.706667pt;}
.y14b{bottom:367.560000pt;}
.y26{bottom:369.426667pt;}
.y6b{bottom:373.440000pt;}
.yca{bottom:375.840000pt;}
.y16f{bottom:376.373333pt;}
.y106{bottom:381.440000pt;}
.y14a{bottom:383.026667pt;}
.y25{bottom:385.160000pt;}
.y6a{bottom:388.626667pt;}
.y16e{bottom:391.840000pt;}
.y149{bottom:398.226667pt;}
.yc9{bottom:399.040000pt;}
.y105{bottom:399.560000pt;}
.y69{bottom:404.106667pt;}
.y16d{bottom:407.026667pt;}
.y104{bottom:414.773333pt;}
.yc8{bottom:416.373333pt;}
.y68{bottom:419.306667pt;}
.y16c{bottom:422.506667pt;}
.y148{bottom:424.106667pt;}
.yc7{bottom:429.440000pt;}
.y103{bottom:430.226667pt;}
.y67{bottom:434.773333pt;}
.y16b{bottom:437.706667pt;}
.y147{bottom:439.560000pt;}
.yc6{bottom:444.640000pt;}
.y102{bottom:445.440000pt;}
.y66{bottom:450.506667pt;}
.y16a{bottom:453.173333pt;}
.y11c{bottom:454.226667pt;}
.y146{bottom:455.026667pt;}
.yc5{bottom:460.133333pt;}
.y101{bottom:460.933333pt;}
.y169{bottom:468.400000pt;}
.y65{bottom:468.933333pt;}
.y145{bottom:470.266667pt;}
.yc4{bottom:475.333333pt;}
.y100{bottom:476.133333pt;}
.y168{bottom:483.866667pt;}
.y144{bottom:485.733333pt;}
.y64{bottom:486.266667pt;}
.yc3{bottom:491.066667pt;}
.yff{bottom:491.600000pt;}
.y63{bottom:499.066667pt;}
.y143{bottom:500.933333pt;}
.yfe{bottom:506.800000pt;}
.yc2{bottom:509.200000pt;}
.y62{bottom:514.533333pt;}
.y142{bottom:516.400000pt;}
.yfd{bottom:522.266667pt;}
.yc1{bottom:524.400000pt;}
.y126{bottom:527.600000pt;}
.y61{bottom:529.733333pt;}
.yfc{bottom:537.466667pt;}
.yc0{bottom:539.866667pt;}
.y141{bottom:542.000000pt;}
.yaa{bottom:544.400000pt;}
.y60{bottom:545.200000pt;}
.yfb{bottom:552.933333pt;}
.y196{bottom:554.266667pt;}
.ybf{bottom:555.066667pt;}
.y140{bottom:557.733333pt;}
.y5f{bottom:560.400000pt;}
.ya9{bottom:561.733333pt;}
.ybe{bottom:568.133333pt;}
.y195{bottom:569.733333pt;}
.y13f{bottom:572.933333pt;}
.ya8{bottom:574.800000pt;}
.y5e{bottom:575.066667pt;}
.y167{bottom:575.866667pt;}
.yfa{bottom:583.600000pt;}
.ybd{bottom:584.133333pt;}
.y194{bottom:584.933333pt;}
.y5d{bottom:588.133333pt;}
.y13e{bottom:588.400000pt;}
.ya7{bottom:590.000000pt;}
.y166{bottom:591.066667pt;}
.yf9{bottom:598.800000pt;}
.ybc{bottom:600.133333pt;}
.y193{bottom:600.400000pt;}
.y123{bottom:600.933333pt;}
.y5c{bottom:603.333333pt;}
.y13d{bottom:603.600000pt;}
.ya6{bottom:605.760000pt;}
.y165{bottom:606.560000pt;}
.yf8{bottom:614.306667pt;}
.y192{bottom:615.640000pt;}
.yba{bottom:616.173333pt;}
.y5b{bottom:618.840000pt;}
.y13c{bottom:619.093333pt;}
.ya1{bottom:621.506667pt;}
.y164{bottom:621.773333pt;}
.yf7{bottom:629.506667pt;}
.y191{bottom:631.093333pt;}
.y5a{bottom:634.026667pt;}
.y163{bottom:637.226667pt;}
.ya5{bottom:637.506667pt;}
.y13b{bottom:644.693333pt;}
.yf6{bottom:644.960000pt;}
.y190{bottom:646.293333pt;}
.yb8{bottom:647.360000pt;}
.y59{bottom:649.506667pt;}
.y162{bottom:652.440000pt;}
.ya4{bottom:653.506667pt;}
.yf5{bottom:660.173333pt;}
.y13a{bottom:660.440000pt;}
.y18f{bottom:661.773333pt;}
.y58{bottom:664.173333pt;}
.y161{bottom:667.906667pt;}
.ya3{bottom:669.506667pt;}
.y1f{bottom:672.973333pt;}
.y120{bottom:675.626667pt;}
.yf4{bottom:675.640000pt;}
.y57{bottom:676.973333pt;}
.y160{bottom:683.626667pt;}
.y9c{bottom:685.506667pt;}
.yb7{bottom:687.626667pt;}
.y1e{bottom:688.173333pt;}
.yf3{bottom:690.840000pt;}
.y139{bottom:691.093333pt;}
.y56{bottom:692.426667pt;}
.y9f{bottom:701.506667pt;}
.yb6{bottom:702.840000pt;}
.y1d{bottom:703.626667pt;}
.yf2{bottom:706.293333pt;}
.y55{bottom:707.626667pt;}
.y15f{bottom:716.960000pt;}
.y9e{bottom:717.506667pt;}
.yb5{bottom:718.293333pt;}
.y1c{bottom:718.840000pt;}
.yf1{bottom:721.506667pt;}
.y138{bottom:721.773333pt;}
.y54{bottom:723.106667pt;}
.y15e{bottom:732.173333pt;}
.y97{bottom:733.506667pt;}
.y1b{bottom:734.293333pt;}
.yf0{bottom:736.960000pt;}
.y53{bottom:738.293333pt;}
.y137{bottom:747.373333pt;}
.y15d{bottom:747.626667pt;}
.yb4{bottom:749.240000pt;}
.y9b{bottom:749.506667pt;}
.y52{bottom:752.960000pt;}
.y18e{bottom:753.773333pt;}
.y1a{bottom:755.933333pt;}
.yef{bottom:759.400000pt;}
.y15c{bottom:762.866667pt;}
.y136{bottom:763.133333pt;}
.y9a{bottom:765.533333pt;}
.y51{bottom:766.066667pt;}
.yb3{bottom:767.400000pt;}
.y18d{bottom:769.000000pt;}
.y19{bottom:772.200000pt;}
.yee{bottom:777.800000pt;}
.y135{bottom:778.333333pt;}
.y50{bottom:781.266667pt;}
.y99{bottom:781.533333pt;}
.yb2{bottom:782.600000pt;}
.y18c{bottom:784.466667pt;}
.y18{bottom:789.000000pt;}
.y15b{bottom:793.533333pt;}
.y134{bottom:793.800000pt;}
.yed{bottom:795.666667pt;}
.y4f{bottom:796.733333pt;}
.y95{bottom:797.533333pt;}
.yb1{bottom:797.800000pt;}
.y18b{bottom:799.666667pt;}
.y133{bottom:809.000000pt;}
.y17{bottom:809.266667pt;}
.yec{bottom:810.866667pt;}
.yb0{bottom:811.400000pt;}
.y4e{bottom:811.933333pt;}
.y94{bottom:814.866667pt;}
.y18a{bottom:815.133333pt;}
.ye3{bottom:818.600000pt;}
.y16{bottom:819.933333pt;}
.y132{bottom:824.466667pt;}
.y93{bottom:824.733333pt;}
.yeb{bottom:826.333333pt;}
.y4d{bottom:827.400000pt;}
.y189{bottom:830.333333pt;}
.ye2{bottom:835.666667pt;}
.y15{bottom:839.933333pt;}
.yea{bottom:841.533333pt;}
.y92{bottom:842.066667pt;}
.y4c{bottom:842.600000pt;}
.y188{bottom:845.800000pt;}
.y131{bottom:850.066667pt;}
.y14{bottom:850.866667pt;}
.ye0{bottom:853.000000pt;}
.y91{bottom:854.866667pt;}
.ye9{bottom:857.000000pt;}
.y4b{bottom:858.066667pt;}
.y187{bottom:861.000000pt;}
.y130{bottom:865.800000pt;}
.y90{bottom:870.333333pt;}
.ye8{bottom:872.733333pt;}
.y4a{bottom:873.266667pt;}
.y13{bottom:873.800000pt;}
.y186{bottom:876.466667pt;}
.y12f{bottom:881.000000pt;}
.y8f{bottom:885.533333pt;}
.ydf{bottom:886.600000pt;}
.y12{bottom:887.400000pt;}
.y49{bottom:888.733333pt;}
.y185{bottom:891.666667pt;}
.y12e{bottom:896.466667pt;}
.y8e{bottom:901.266667pt;}
.y48{bottom:903.960000pt;}
.ye7{bottom:906.106667pt;}
.y11{bottom:906.626667pt;}
.y184{bottom:907.173333pt;}
.y12d{bottom:911.706667pt;}
.ydd{bottom:914.626667pt;}
.y47{bottom:919.440000pt;}
.y8d{bottom:919.706667pt;}
.ye6{bottom:921.560000pt;}
.y183{bottom:922.373333pt;}
.y10{bottom:922.893333pt;}
.y11b{bottom:924.240000pt;}
.yd{bottom:925.293333pt;}
.y12c{bottom:927.173333pt;}
.y46{bottom:934.626667pt;}
.y8c{bottom:937.040000pt;}
.y182{bottom:937.840000pt;}
.y11a{bottom:940.240000pt;}
.y12b{bottom:942.373333pt;}
.yc{bottom:944.506667pt;}
.ye5{bottom:946.373333pt;}
.yb{bottom:949.560000pt;}
.y45{bottom:950.106667pt;}
.yaf{bottom:950.373333pt;}
.y181{bottom:953.040000pt;}
.y119{bottom:956.226667pt;}
.y12a{bottom:957.840000pt;}
.ya{bottom:963.173333pt;}
.y44{bottom:965.293333pt;}
.yae{bottom:968.506667pt;}
.y118{bottom:972.226667pt;}
.y129{bottom:973.040000pt;}
.y9{bottom:975.960000pt;}
.ye4{bottom:979.173333pt;}
.y43{bottom:980.773333pt;}
.yad{bottom:983.706667pt;}
.y116{bottom:988.226667pt;}
.y8{bottom:991.706667pt;}
.y42{bottom:995.960000pt;}
.y128{bottom:998.893333pt;}
.yac{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y41{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y3f{bottom:1063.466667pt;}
.h9{height:7.713542pt;}
.h5{height:11.289062pt;}
.h1b{height:15.200000pt;}
.h1d{height:15.233333pt;}
.h22{height:15.466667pt;}
.h24{height:16.533333pt;}
.h25{height:16.800000pt;}
.ha{height:18.666667pt;}
.h1a{height:18.815104pt;}
.hc{height:25.454687pt;}
.h29{height:26.523438pt;}
.h27{height:27.200000pt;}
.h28{height:27.233333pt;}
.h7{height:30.104167pt;}
.h23{height:30.666667pt;}
.h16{height:30.854167pt;}
.h3{height:32.000000pt;}
.h26{height:33.066667pt;}
.he{height:33.867188pt;}
.h14{height:34.625000pt;}
.h8{height:34.710938pt;}
.h4{height:37.630208pt;}
.hd{height:38.567708pt;}
.h2d{height:38.828125pt;}
.h15{height:39.562500pt;}
.h21{height:41.393229pt;}
.h13{height:43.281250pt;}
.h10{height:43.958333pt;}
.h6{height:45.156250pt;}
.h20{height:46.281250pt;}
.h1e{height:47.200000pt;}
.hb{height:47.414062pt;}
.h18{height:47.742188pt;}
.h19{height:47.874805pt;}
.h11{height:51.937500pt;}
.hf{height:52.750000pt;}
.h1{height:58.351562pt;}
.h1f{height:63.200000pt;}
.h1c{height:63.233333pt;}
.h2b{height:72.800000pt;}
.h2c{height:72.833333pt;}
.h2{height:86.400000pt;}
.h2a{height:294.200000pt;}
.h12{height:400.106667pt;}
.h17{height:412.800000pt;}
.h0{height:1122.666667pt;}
.wf{width:50.433333pt;}
.w13{width:63.766667pt;}
.w4{width:64.266667pt;}
.w17{width:94.433333pt;}
.w1a{width:94.666667pt;}
.w3{width:96.000000pt;}
.w10{width:98.433333pt;}
.w14{width:102.700000pt;}
.wa{width:107.233333pt;}
.w18{width:109.633333pt;}
.w1b{width:109.900000pt;}
.w11{width:116.566667pt;}
.w15{width:117.900000pt;}
.wb{width:131.233333pt;}
.w1c{width:134.426667pt;}
.w1e{width:157.400000pt;}
.wc{width:173.106667pt;}
.wd{width:185.400000pt;}
.w6{width:220.333333pt;}
.w1d{width:263.800000pt;}
.w19{width:354.506667pt;}
.w9{width:359.026667pt;}
.w12{width:372.893333pt;}
.w16{width:387.560000pt;}
.we{width:389.440000pt;}
.w5{width:429.733333pt;}
.w8{width:629.600000pt;}
.w7{width:647.933333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:6.933333pt;}
.x2{left:9.599999pt;}
.x37{left:10.653333pt;}
.x13{left:13.066667pt;}
.xf{left:14.400000pt;}
.x35{left:15.733333pt;}
.x3{left:19.733333pt;}
.x16{left:22.333333pt;}
.x4{left:24.533333pt;}
.x3c{left:25.586667pt;}
.x33{left:27.466667pt;}
.x17{left:28.733333pt;}
.x32{left:30.666667pt;}
.x12{left:33.600000pt;}
.x49{left:40.306667pt;}
.x22{left:43.760000pt;}
.x14{left:46.366667pt;}
.x25{left:50.426667pt;}
.x44{left:52.800000pt;}
.x28{left:53.893333pt;}
.x3b{left:54.933333pt;}
.x42{left:56.266667pt;}
.x26{left:57.360000pt;}
.x4a{left:58.426667pt;}
.x24{left:61.106667pt;}
.x1{left:72.033322pt;}
.xe{left:73.900000pt;}
.x27{left:75.506667pt;}
.x29{left:77.106667pt;}
.x2a{left:78.173333pt;}
.x2b{left:79.240000pt;}
.x2d{left:80.306667pt;}
.x2c{left:83.773333pt;}
.x4b{left:96.033322pt;}
.xd{left:98.960000pt;}
.x48{left:100.040000pt;}
.x15{left:103.173333pt;}
.x1f{left:113.633333pt;}
.x47{left:122.440000pt;}
.x45{left:132.026667pt;}
.x9{left:136.559988pt;}
.x39{left:193.660000pt;}
.x43{left:207.266667pt;}
.xb{left:214.740000pt;}
.x23{left:245.666667pt;}
.x1e{left:297.000000pt;}
.x11{left:304.106667pt;}
.x1c{left:382.760000pt;}
.x6{left:396.666655pt;}
.x3f{left:427.600000pt;}
.x20{left:431.866667pt;}
.x1a{left:439.600000pt;}
.x34{left:446.000000pt;}
.x1b{left:448.600000pt;}
.x2f{left:462.533333pt;}
.x46{left:471.866667pt;}
.x40{left:478.573333pt;}
.xc{left:501.773333pt;}
.x18{left:509.666667pt;}
.x36{left:510.573333pt;}
.x30{left:513.506667pt;}
.x1d{left:518.373333pt;}
.x10{left:527.093322pt;}
.x21{left:539.906667pt;}
.x8{left:546.559988pt;}
.x41{left:573.773333pt;}
.x19{left:575.200000pt;}
.x7{left:576.173322pt;}
.x3a{left:609.533333pt;}
.x31{left:612.466667pt;}
.x38{left:614.066667pt;}
.x5{left:619.666655pt;}
.x3e{left:642.066655pt;}
.x3d{left:696.226655pt;}
.xa{left:722.106655pt;}
}




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