
    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_404fb16e8eedae9ba53ff6ca.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_65e9e3df722c75283996cbc7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c2fcab33af680289da171c04.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_eb4f1d28fc7e24839d1d5fad.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_0181f84f14cc03527fbbf279.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0408a340908bf7dd842b3fff.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_2c1a267d47d5f00f705aad65.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c7a33fbcb4e4223fa743c546.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-87.840000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.lsb{letter-spacing:-3.240000px;}
.lsa{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-1.008000px;}
.ls6{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.702000px;}
.lse{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.149760px;}
.ls9{letter-spacing:0.162000px;}
.ls7{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.334080px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.540000px;}
.ls10{letter-spacing:25.308000px;}
.lsf{letter-spacing:52.668000px;}
.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;}
}
.ws2{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.940000px;}
.ws7{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.500000px;}
.wsa{word-spacing:-12.798000px;}
.ws8{word-spacing:-12.420000px;}
.ws4{word-spacing:-10.440000px;}
.ws9{word-spacing:-10.260000px;}
.ws6{word-spacing:0.000000px;}
._16{margin-left:-6.708000px;}
._12{margin-left:-5.076000px;}
._15{margin-left:-3.618000px;}
._17{margin-left:-2.214000px;}
._0{margin-left:-1.026000px;}
._1{width:1.866000px;}
._4{width:3.518400px;}
._5{width:4.728480px;}
._3{width:5.796720px;}
._9{width:7.350240px;}
._6{width:8.429520px;}
._f{width:9.490080px;}
._7{width:10.909680px;}
._8{width:12.011760px;}
._b{width:14.742000px;}
._a{width:16.038000px;}
._d{width:17.766000px;}
._c{width:19.440000px;}
._e{width:21.438000px;}
._11{width:23.244000px;}
._18{width:25.122000px;}
._1b{width:26.838000px;}
._10{width:28.188000px;}
._1e{width:29.460000px;}
._1d{width:30.600000px;}
._1c{width:33.156000px;}
._14{width:34.992000px;}
._13{width:36.072000px;}
._28{width:37.134000px;}
._26{width:38.232000px;}
._22{width:39.660000px;}
._1f{width:41.094000px;}
._20{width:42.360000px;}
._21{width:43.470000px;}
._25{width:44.766000px;}
._27{width:45.864000px;}
._1a{width:52.326000px;}
._19{width:53.484000px;}
._23{width:57.240000px;}
._24{width:58.614000px;}
._29{width:68.148000px;}
._2{width:1169.580000px;}
.fc7{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fsb{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fsa{font-size:77.904000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.fs3{font-size:102.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y91{bottom:9.705000px;}
.y7f{bottom:9.720000px;}
.y75{bottom:9.900000px;}
.y8f{bottom:10.065000px;}
.y76{bottom:10.080000px;}
.yec{bottom:10.245000px;}
.y82{bottom:10.290000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.y8b{bottom:23.580000px;}
.y89{bottom:37.260000px;}
.y5{bottom:39.780000px;}
.y8d{bottom:51.465000px;}
.y1{bottom:60.660000px;}
.y43{bottom:74.370000px;}
.y42{bottom:94.170000px;}
.ya0{bottom:102.420000px;}
.yd5{bottom:107.100000px;}
.yf7{bottom:109.080000px;}
.y33{bottom:109.800000px;}
.y35{bottom:113.580000px;}
.y41{bottom:113.970000px;}
.y122{bottom:117.180000px;}
.y9f{bottom:120.240000px;}
.yd4{bottom:124.920000px;}
.yf6{bottom:126.900000px;}
.y32{bottom:127.620000px;}
.y40{bottom:133.770000px;}
.y121{bottom:135.000000px;}
.y9e{bottom:138.060000px;}
.yd3{bottom:142.740000px;}
.y36{bottom:144.720000px;}
.y31{bottom:145.440000px;}
.y34{bottom:148.320000px;}
.y120{bottom:153.000000px;}
.y3f{bottom:153.750000px;}
.y9d{bottom:155.880000px;}
.yd2{bottom:160.560000px;}
.yf5{bottom:162.540000px;}
.y30{bottom:163.260000px;}
.y45{bottom:169.920000px;}
.y11f{bottom:170.820000px;}
.y3e{bottom:173.550000px;}
.y9c{bottom:173.880000px;}
.yd1{bottom:178.380000px;}
.yf4{bottom:180.360000px;}
.y2f{bottom:181.260000px;}
.y11e{bottom:188.640000px;}
.y9b{bottom:191.700000px;}
.y3d{bottom:193.350000px;}
.yd0{bottom:196.200000px;}
.yf3{bottom:198.360000px;}
.y2e{bottom:199.080000px;}
.y44{bottom:199.260000px;}
.ya4{bottom:200.700000px;}
.y11d{bottom:206.490000px;}
.y9a{bottom:209.550000px;}
.y3c{bottom:213.150000px;}
.ycf{bottom:214.230000px;}
.yf2{bottom:216.210000px;}
.y2d{bottom:216.930000px;}
.ya3{bottom:218.550000px;}
.y11c{bottom:224.310000px;}
.y99{bottom:227.370000px;}
.yce{bottom:232.050000px;}
.y3b{bottom:232.950000px;}
.y2c{bottom:234.750000px;}
.yf1{bottom:236.010000px;}
.ya2{bottom:236.370000px;}
.y11b{bottom:242.310000px;}
.y98{bottom:245.190000px;}
.y2b{bottom:252.570000px;}
.y3a{bottom:252.930000px;}
.ya1{bottom:254.190000px;}
.ycd{bottom:258.870000px;}
.y11a{bottom:260.130000px;}
.yf0{bottom:263.925000px;}
.y2a{bottom:270.570000px;}
.y97{bottom:272.010000px;}
.y39{bottom:272.730000px;}
.ycc{bottom:276.690000px;}
.y119{bottom:277.950000px;}
.y29{bottom:288.390000px;}
.y96{bottom:290.010000px;}
.yef{bottom:291.645000px;}
.y38{bottom:292.530000px;}
.ycb{bottom:294.510000px;}
.y118{bottom:295.770000px;}
.y28{bottom:306.210000px;}
.y95{bottom:307.830000px;}
.yca{bottom:312.510000px;}
.y117{bottom:313.590000px;}
.y37{bottom:313.815000px;}
.yee{bottom:319.185000px;}
.y27{bottom:324.030000px;}
.y94{bottom:325.650000px;}
.yc9{bottom:330.330000px;}
.y116{bottom:331.410000px;}
.y26{bottom:341.850000px;}
.y93{bottom:343.470000px;}
.yed{bottom:346.725000px;}
.yc8{bottom:348.150000px;}
.y115{bottom:349.410000px;}
.y25{bottom:359.670000px;}
.y92{bottom:361.290000px;}
.yc7{bottom:365.970000px;}
.y114{bottom:367.230000px;}
.y8c{bottom:374.445000px;}
.y24{bottom:377.670000px;}
.yc6{bottom:383.790000px;}
.y113{bottom:385.050000px;}
.y23{bottom:395.490000px;}
.yc5{bottom:401.610000px;}
.y90{bottom:401.985000px;}
.y112{bottom:402.870000px;}
.y22{bottom:413.310000px;}
.yc4{bottom:419.610000px;}
.y111{bottom:420.690000px;}
.y8e{bottom:429.525000px;}
.y21{bottom:431.130000px;}
.yc3{bottom:437.430000px;}
.y110{bottom:438.690000px;}
.y20{bottom:448.995000px;}
.yc2{bottom:455.295000px;}
.y10f{bottom:456.555000px;}
.y88{bottom:457.275000px;}
.y1f{bottom:466.815000px;}
.y10e{bottom:474.375000px;}
.yc1{bottom:482.115000px;}
.y1e{bottom:484.815000px;}
.y10d{bottom:492.195000px;}
.yc0{bottom:499.935000px;}
.y1d{bottom:502.635000px;}
.y10c{bottom:510.015000px;}
.y8a{bottom:512.355000px;}
.ybf{bottom:517.935000px;}
.y1c{bottom:520.095000px;}
.y10b{bottom:527.835000px;}
.ybe{bottom:535.755000px;}
.y1b{bottom:539.535000px;}
.yeb{bottom:540.075000px;}
.y87{bottom:545.655000px;}
.y10a{bottom:545.835000px;}
.ybd{bottom:553.575000px;}
.y109{bottom:563.655000px;}
.y1a{bottom:570.315000px;}
.ybc{bottom:571.395000px;}
.y67{bottom:572.475000px;}
.yea{bottom:573.195000px;}
.y13e{bottom:580.575000px;}
.y108{bottom:581.475000px;}
.ybb{bottom:589.215000px;}
.y86{bottom:589.935000px;}
.y66{bottom:590.295000px;}
.ye9{bottom:591.015000px;}
.y107{bottom:599.295000px;}
.y19{bottom:601.275000px;}
.yba{bottom:607.035000px;}
.y13d{bottom:607.395000px;}
.y85{bottom:607.935000px;}
.y65{bottom:608.115000px;}
.ye8{bottom:609.015000px;}
.y106{bottom:617.115000px;}
.yb9{bottom:625.035000px;}
.y13c{bottom:625.215000px;}
.y84{bottom:625.755000px;}
.y64{bottom:626.115000px;}
.y105{bottom:635.115000px;}
.ye7{bottom:635.835000px;}
.yb8{bottom:642.855000px;}
.y13b{bottom:643.035000px;}
.y63{bottom:643.935000px;}
.y83{bottom:647.715000px;}
.y104{bottom:652.935000px;}
.y18{bottom:653.115000px;}
.ye6{bottom:653.655000px;}
.y13a{bottom:661.035000px;}
.y62{bottom:661.755000px;}
.yb7{bottom:669.675000px;}
.y103{bottom:670.755000px;}
.y81{bottom:675.255000px;}
.y139{bottom:678.885000px;}
.ye5{bottom:680.505000px;}
.yb6{bottom:687.525000px;}
.y61{bottom:688.605000px;}
.y138{bottom:696.705000px;}
.ye4{bottom:698.325000px;}
.y17{bottom:701.385000px;}
.y80{bottom:703.005000px;}
.yb5{bottom:705.345000px;}
.y60{bottom:706.425000px;}
.y137{bottom:714.525000px;}
.ye3{bottom:716.325000px;}
.yb4{bottom:723.165000px;}
.y5f{bottom:724.245000px;}
.y7e{bottom:730.545000px;}
.y136{bottom:732.345000px;}
.ye2{bottom:736.125000px;}
.yb3{bottom:741.165000px;}
.y5e{bottom:742.245000px;}
.y135{bottom:750.165000px;}
.y16{bottom:752.145000px;}
.yb2{bottom:758.985000px;}
.y5d{bottom:760.065000px;}
.y7d{bottom:763.845000px;}
.y134{bottom:768.165000px;}
.ye1{bottom:768.885000px;}
.yb1{bottom:776.805000px;}
.y5c{bottom:777.885000px;}
.y15{bottom:779.865000px;}
.y7c{bottom:781.665000px;}
.y133{bottom:785.985000px;}
.ye0{bottom:786.705000px;}
.y102{bottom:795.705000px;}
.yb0{bottom:803.625000px;}
.y132{bottom:803.805000px;}
.ydf{bottom:804.525000px;}
.y5b{bottom:804.705000px;}
.y7b{bottom:808.485000px;}
.y101{bottom:813.525000px;}
.yaf{bottom:821.445000px;}
.y131{bottom:821.625000px;}
.yde{bottom:822.345000px;}
.y5a{bottom:822.525000px;}
.y7a{bottom:826.305000px;}
.y100{bottom:831.345000px;}
.y14{bottom:835.125000px;}
.yae{bottom:839.445000px;}
.y59{bottom:840.345000px;}
.y79{bottom:844.125000px;}
.yff{bottom:849.345000px;}
.yad{bottom:857.265000px;}
.y130{bottom:857.445000px;}
.y58{bottom:858.345000px;}
.y13{bottom:860.325000px;}
.y78{bottom:866.085000px;}
.ydd{bottom:867.165000px;}
.yac{bottom:875.085000px;}
.y12f{bottom:875.265000px;}
.y57{bottom:876.165000px;}
.y12{bottom:880.125000px;}
.ydc{bottom:884.985000px;}
.yab{bottom:892.905000px;}
.y12e{bottom:893.085000px;}
.y77{bottom:893.805000px;}
.y56{bottom:893.985000px;}
.y11{bottom:900.645000px;}
.ydb{bottom:902.805000px;}
.yaa{bottom:910.770000px;}
.y12d{bottom:910.950000px;}
.y55{bottom:911.850000px;}
.yda{bottom:920.670000px;}
.y10{bottom:921.390000px;}
.ya9{bottom:928.590000px;}
.y12c{bottom:928.770000px;}
.y54{bottom:929.670000px;}
.yd9{bottom:938.670000px;}
.yfe{bottom:940.650000px;}
.yf{bottom:941.730000px;}
.ya8{bottom:946.590000px;}
.y53{bottom:947.670000px;}
.y74{bottom:948.930000px;}
.yd8{bottom:956.490000px;}
.ya7{bottom:964.410000px;}
.y12b{bottom:964.590000px;}
.y52{bottom:965.490000px;}
.yfd{bottom:973.410000px;}
.yd7{bottom:974.310000px;}
.y73{bottom:982.230000px;}
.y12a{bottom:982.410000px;}
.y51{bottom:983.310000px;}
.ye{bottom:985.650000px;}
.yfc{bottom:991.230000px;}
.yd6{bottom:994.110000px;}
.yd{bottom:997.710000px;}
.y72{bottom:1000.050000px;}
.y129{bottom:1000.230000px;}
.y50{bottom:1001.130000px;}
.yfb{bottom:1009.050000px;}
.yc{bottom:1009.770000px;}
.y71{bottom:1017.870000px;}
.y128{bottom:1018.050000px;}
.y4f{bottom:1018.950000px;}
.yb{bottom:1021.830000px;}
.ya6{bottom:1026.870000px;}
.y127{bottom:1035.870000px;}
.ya{bottom:1036.410000px;}
.y4e{bottom:1036.770000px;}
.y70{bottom:1044.870000px;}
.y126{bottom:1053.870000px;}
.y4d{bottom:1054.770000px;}
.y9{bottom:1061.970000px;}
.y6f{bottom:1062.690000px;}
.y125{bottom:1071.690000px;}
.y4c{bottom:1072.590000px;}
.y6e{bottom:1080.510000px;}
.y8{bottom:1087.170000px;}
.y124{bottom:1089.510000px;}
.yfa{bottom:1097.970000px;}
.y6d{bottom:1098.330000px;}
.y4b{bottom:1099.410000px;}
.y123{bottom:1107.330000px;}
.y6c{bottom:1116.150000px;}
.y7{bottom:1116.870000px;}
.y4a{bottom:1117.230000px;}
.yf9{bottom:1125.150000px;}
.y6b{bottom:1133.970000px;}
.y49{bottom:1135.050000px;}
.yf8{bottom:1142.970000px;}
.y6a{bottom:1152.000000px;}
.y48{bottom:1153.080000px;}
.ya5{bottom:1161.000000px;}
.y6{bottom:1165.860000px;}
.y47{bottom:1170.900000px;}
.y69{bottom:1178.820000px;}
.y46{bottom:1190.700000px;}
.y68{bottom:1196.640000px;}
.h1a{height:26.805000px;}
.h17{height:26.820000px;}
.h1e{height:26.841000px;}
.h18{height:26.856000px;}
.h20{height:26.985000px;}
.h16{height:27.000000px;}
.h21{height:27.021000px;}
.h19{height:27.030000px;}
.h2{height:31.135500px;}
.h1f{height:37.705078px;}
.h9{height:40.985156px;}
.h3{height:52.998047px;}
.h1c{height:54.345000px;}
.h10{height:54.421875px;}
.h22{height:55.503491px;}
.h14{height:58.621992px;}
.ha{height:58.651172px;}
.h15{height:58.763250px;}
.hb{height:60.226875px;}
.h4{height:65.884219px;}
.he{height:66.757500px;}
.hd{height:72.326250px;}
.hf{height:72.562500px;}
.h11{height:78.367500px;}
.h13{height:78.512625px;}
.h1b{height:81.885000px;}
.hc{height:82.676953px;}
.h7{height:84.898125px;}
.h8{height:90.703125px;}
.h6{height:103.038750px;}
.h5{height:108.843750px;}
.h1d{height:109.641000px;}
.h12{height:351.720000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:39.765000px;}
.w1a{width:41.925000px;}
.w5{width:42.105000px;}
.w18{width:55.965000px;}
.w19{width:60.105000px;}
.w16{width:60.120000px;}
.w15{width:66.780000px;}
.wf{width:66.801000px;}
.w17{width:70.776000px;}
.w14{width:73.476000px;}
.w10{width:80.265000px;}
.w3{width:80.310000px;}
.wb{width:93.765000px;}
.w7{width:99.525000px;}
.w1c{width:100.641000px;}
.w1b{width:104.565000px;}
.w11{width:104.970000px;}
.w8{width:107.310000px;}
.w6{width:112.161000px;}
.w1d{width:113.970000px;}
.we{width:116.805000px;}
.wa{width:127.281000px;}
.w13{width:131.616000px;}
.wc{width:133.942500px;}
.w12{width:140.976000px;}
.wd{width:273.315000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:4.485000px;}
.x23{left:6.300000px;}
.x5{left:8.640000px;}
.x14{left:10.800000px;}
.x2f{left:12.045000px;}
.x18{left:13.125000px;}
.x1b{left:16.005000px;}
.x41{left:17.445000px;}
.x3b{left:18.525000px;}
.x27{left:19.785000px;}
.x1e{left:21.045000px;}
.x3d{left:22.140000px;}
.x2a{left:23.935500px;}
.x37{left:25.380000px;}
.x36{left:27.000000px;}
.x39{left:28.980000px;}
.x3c{left:30.240000px;}
.x34{left:32.220000px;}
.x31{left:36.720000px;}
.x13{left:38.340000px;}
.x25{left:40.140000px;}
.x1d{left:41.760000px;}
.x1c{left:43.020000px;}
.x1{left:45.364500px;}
.x42{left:46.830000px;}
.x15{left:49.140000px;}
.x26{left:50.745000px;}
.x33{left:51.840000px;}
.x7{left:54.000000px;}
.x29{left:56.704500px;}
.x2c{left:70.920000px;}
.x10{left:73.440000px;}
.x43{left:81.000000px;}
.xe{left:83.160000px;}
.xd{left:98.136000px;}
.x28{left:107.136000px;}
.x2b{left:191.370000px;}
.x2{left:222.370500px;}
.xf{left:224.490000px;}
.x35{left:265.575000px;}
.x3{left:271.330500px;}
.xa{left:273.315000px;}
.x8{left:303.015000px;}
.xb{left:330.555000px;}
.x32{left:333.075000px;}
.x11{left:341.355000px;}
.x9{left:364.395000px;}
.xc{left:385.095000px;}
.x38{left:393.915000px;}
.x6{left:446.505000px;}
.x2d{left:465.420000px;}
.x1f{left:471.180000px;}
.x12{left:473.505000px;}
.x16{left:474.600000px;}
.x45{left:500.505000px;}
.x3e{left:508.620000px;}
.x20{left:511.680000px;}
.x17{left:517.440000px;}
.x3a{left:522.120000px;}
.x44{left:527.505000px;}
.x2e{left:582.960000px;}
.x3f{left:613.920000px;}
.x19{left:630.510000px;}
.x22{left:639.690000px;}
.x30{left:650.490000px;}
.x40{left:715.290000px;}
.x1a{left:730.770000px;}
.x24{left:734.190000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-78.080000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.lsb{letter-spacing:-2.880000pt;}
.lsa{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.896000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.624000pt;}
.lse{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls9{letter-spacing:0.144000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.296960pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.480000pt;}
.ls10{letter-spacing:22.496000pt;}
.lsf{letter-spacing:46.816000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.376000pt;}
.ws8{word-spacing:-11.040000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws9{word-spacing:-9.120000pt;}
.ws6{word-spacing:0.000000pt;}
._16{margin-left:-5.962667pt;}
._12{margin-left:-4.512000pt;}
._15{margin-left:-3.216000pt;}
._17{margin-left:-1.968000pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.658667pt;}
._4{width:3.127467pt;}
._5{width:4.203093pt;}
._3{width:5.152640pt;}
._9{width:6.533547pt;}
._6{width:7.492907pt;}
._f{width:8.435627pt;}
._7{width:9.697493pt;}
._8{width:10.677120pt;}
._b{width:13.104000pt;}
._a{width:14.256000pt;}
._d{width:15.792000pt;}
._c{width:17.280000pt;}
._e{width:19.056000pt;}
._11{width:20.661333pt;}
._18{width:22.330667pt;}
._1b{width:23.856000pt;}
._10{width:25.056000pt;}
._1e{width:26.186667pt;}
._1d{width:27.200000pt;}
._1c{width:29.472000pt;}
._14{width:31.104000pt;}
._13{width:32.064000pt;}
._28{width:33.008000pt;}
._26{width:33.984000pt;}
._22{width:35.253333pt;}
._1f{width:36.528000pt;}
._20{width:37.653333pt;}
._21{width:38.640000pt;}
._25{width:39.792000pt;}
._27{width:40.768000pt;}
._1a{width:46.512000pt;}
._19{width:47.541333pt;}
._23{width:50.880000pt;}
._24{width:52.101333pt;}
._29{width:60.576000pt;}
._2{width:1039.626667pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fsb{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fsa{font-size:69.248000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.fs3{font-size:90.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y91{bottom:8.626667pt;}
.y7f{bottom:8.640000pt;}
.y75{bottom:8.800000pt;}
.y8f{bottom:8.946667pt;}
.y76{bottom:8.960000pt;}
.yec{bottom:9.106667pt;}
.y82{bottom:9.146667pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.y8b{bottom:20.960000pt;}
.y89{bottom:33.120000pt;}
.y5{bottom:35.360000pt;}
.y8d{bottom:45.746667pt;}
.y1{bottom:53.920000pt;}
.y43{bottom:66.106667pt;}
.y42{bottom:83.706667pt;}
.ya0{bottom:91.040000pt;}
.yd5{bottom:95.200000pt;}
.yf7{bottom:96.960000pt;}
.y33{bottom:97.600000pt;}
.y35{bottom:100.960000pt;}
.y41{bottom:101.306667pt;}
.y122{bottom:104.160000pt;}
.y9f{bottom:106.880000pt;}
.yd4{bottom:111.040000pt;}
.yf6{bottom:112.800000pt;}
.y32{bottom:113.440000pt;}
.y40{bottom:118.906667pt;}
.y121{bottom:120.000000pt;}
.y9e{bottom:122.720000pt;}
.yd3{bottom:126.880000pt;}
.y36{bottom:128.640000pt;}
.y31{bottom:129.280000pt;}
.y34{bottom:131.840000pt;}
.y120{bottom:136.000000pt;}
.y3f{bottom:136.666667pt;}
.y9d{bottom:138.560000pt;}
.yd2{bottom:142.720000pt;}
.yf5{bottom:144.480000pt;}
.y30{bottom:145.120000pt;}
.y45{bottom:151.040000pt;}
.y11f{bottom:151.840000pt;}
.y3e{bottom:154.266667pt;}
.y9c{bottom:154.560000pt;}
.yd1{bottom:158.560000pt;}
.yf4{bottom:160.320000pt;}
.y2f{bottom:161.120000pt;}
.y11e{bottom:167.680000pt;}
.y9b{bottom:170.400000pt;}
.y3d{bottom:171.866667pt;}
.yd0{bottom:174.400000pt;}
.yf3{bottom:176.320000pt;}
.y2e{bottom:176.960000pt;}
.y44{bottom:177.120000pt;}
.ya4{bottom:178.400000pt;}
.y11d{bottom:183.546667pt;}
.y9a{bottom:186.266667pt;}
.y3c{bottom:189.466667pt;}
.ycf{bottom:190.426667pt;}
.yf2{bottom:192.186667pt;}
.y2d{bottom:192.826667pt;}
.ya3{bottom:194.266667pt;}
.y11c{bottom:199.386667pt;}
.y99{bottom:202.106667pt;}
.yce{bottom:206.266667pt;}
.y3b{bottom:207.066667pt;}
.y2c{bottom:208.666667pt;}
.yf1{bottom:209.786667pt;}
.ya2{bottom:210.106667pt;}
.y11b{bottom:215.386667pt;}
.y98{bottom:217.946667pt;}
.y2b{bottom:224.506667pt;}
.y3a{bottom:224.826667pt;}
.ya1{bottom:225.946667pt;}
.ycd{bottom:230.106667pt;}
.y11a{bottom:231.226667pt;}
.yf0{bottom:234.600000pt;}
.y2a{bottom:240.506667pt;}
.y97{bottom:241.786667pt;}
.y39{bottom:242.426667pt;}
.ycc{bottom:245.946667pt;}
.y119{bottom:247.066667pt;}
.y29{bottom:256.346667pt;}
.y96{bottom:257.786667pt;}
.yef{bottom:259.240000pt;}
.y38{bottom:260.026667pt;}
.ycb{bottom:261.786667pt;}
.y118{bottom:262.906667pt;}
.y28{bottom:272.186667pt;}
.y95{bottom:273.626667pt;}
.yca{bottom:277.786667pt;}
.y117{bottom:278.746667pt;}
.y37{bottom:278.946667pt;}
.yee{bottom:283.720000pt;}
.y27{bottom:288.026667pt;}
.y94{bottom:289.466667pt;}
.yc9{bottom:293.626667pt;}
.y116{bottom:294.586667pt;}
.y26{bottom:303.866667pt;}
.y93{bottom:305.306667pt;}
.yed{bottom:308.200000pt;}
.yc8{bottom:309.466667pt;}
.y115{bottom:310.586667pt;}
.y25{bottom:319.706667pt;}
.y92{bottom:321.146667pt;}
.yc7{bottom:325.306667pt;}
.y114{bottom:326.426667pt;}
.y8c{bottom:332.840000pt;}
.y24{bottom:335.706667pt;}
.yc6{bottom:341.146667pt;}
.y113{bottom:342.266667pt;}
.y23{bottom:351.546667pt;}
.yc5{bottom:356.986667pt;}
.y90{bottom:357.320000pt;}
.y112{bottom:358.106667pt;}
.y22{bottom:367.386667pt;}
.yc4{bottom:372.986667pt;}
.y111{bottom:373.946667pt;}
.y8e{bottom:381.800000pt;}
.y21{bottom:383.226667pt;}
.yc3{bottom:388.826667pt;}
.y110{bottom:389.946667pt;}
.y20{bottom:399.106667pt;}
.yc2{bottom:404.706667pt;}
.y10f{bottom:405.826667pt;}
.y88{bottom:406.466667pt;}
.y1f{bottom:414.946667pt;}
.y10e{bottom:421.666667pt;}
.yc1{bottom:428.546667pt;}
.y1e{bottom:430.946667pt;}
.y10d{bottom:437.506667pt;}
.yc0{bottom:444.386667pt;}
.y1d{bottom:446.786667pt;}
.y10c{bottom:453.346667pt;}
.y8a{bottom:455.426667pt;}
.ybf{bottom:460.386667pt;}
.y1c{bottom:462.306667pt;}
.y10b{bottom:469.186667pt;}
.ybe{bottom:476.226667pt;}
.y1b{bottom:479.586667pt;}
.yeb{bottom:480.066667pt;}
.y87{bottom:485.026667pt;}
.y10a{bottom:485.186667pt;}
.ybd{bottom:492.066667pt;}
.y109{bottom:501.026667pt;}
.y1a{bottom:506.946667pt;}
.ybc{bottom:507.906667pt;}
.y67{bottom:508.866667pt;}
.yea{bottom:509.506667pt;}
.y13e{bottom:516.066667pt;}
.y108{bottom:516.866667pt;}
.ybb{bottom:523.746667pt;}
.y86{bottom:524.386667pt;}
.y66{bottom:524.706667pt;}
.ye9{bottom:525.346667pt;}
.y107{bottom:532.706667pt;}
.y19{bottom:534.466667pt;}
.yba{bottom:539.586667pt;}
.y13d{bottom:539.906667pt;}
.y85{bottom:540.386667pt;}
.y65{bottom:540.546667pt;}
.ye8{bottom:541.346667pt;}
.y106{bottom:548.546667pt;}
.yb9{bottom:555.586667pt;}
.y13c{bottom:555.746667pt;}
.y84{bottom:556.226667pt;}
.y64{bottom:556.546667pt;}
.y105{bottom:564.546667pt;}
.ye7{bottom:565.186667pt;}
.yb8{bottom:571.426667pt;}
.y13b{bottom:571.586667pt;}
.y63{bottom:572.386667pt;}
.y83{bottom:575.746667pt;}
.y104{bottom:580.386667pt;}
.y18{bottom:580.546667pt;}
.ye6{bottom:581.026667pt;}
.y13a{bottom:587.586667pt;}
.y62{bottom:588.226667pt;}
.yb7{bottom:595.266667pt;}
.y103{bottom:596.226667pt;}
.y81{bottom:600.226667pt;}
.y139{bottom:603.453333pt;}
.ye5{bottom:604.893333pt;}
.yb6{bottom:611.133333pt;}
.y61{bottom:612.093333pt;}
.y138{bottom:619.293333pt;}
.ye4{bottom:620.733333pt;}
.y17{bottom:623.453333pt;}
.y80{bottom:624.893333pt;}
.yb5{bottom:626.973333pt;}
.y60{bottom:627.933333pt;}
.y137{bottom:635.133333pt;}
.ye3{bottom:636.733333pt;}
.yb4{bottom:642.813333pt;}
.y5f{bottom:643.773333pt;}
.y7e{bottom:649.373333pt;}
.y136{bottom:650.973333pt;}
.ye2{bottom:654.333333pt;}
.yb3{bottom:658.813333pt;}
.y5e{bottom:659.773333pt;}
.y135{bottom:666.813333pt;}
.y16{bottom:668.573333pt;}
.yb2{bottom:674.653333pt;}
.y5d{bottom:675.613333pt;}
.y7d{bottom:678.973333pt;}
.y134{bottom:682.813333pt;}
.ye1{bottom:683.453333pt;}
.yb1{bottom:690.493333pt;}
.y5c{bottom:691.453333pt;}
.y15{bottom:693.213333pt;}
.y7c{bottom:694.813333pt;}
.y133{bottom:698.653333pt;}
.ye0{bottom:699.293333pt;}
.y102{bottom:707.293333pt;}
.yb0{bottom:714.333333pt;}
.y132{bottom:714.493333pt;}
.ydf{bottom:715.133333pt;}
.y5b{bottom:715.293333pt;}
.y7b{bottom:718.653333pt;}
.y101{bottom:723.133333pt;}
.yaf{bottom:730.173333pt;}
.y131{bottom:730.333333pt;}
.yde{bottom:730.973333pt;}
.y5a{bottom:731.133333pt;}
.y7a{bottom:734.493333pt;}
.y100{bottom:738.973333pt;}
.y14{bottom:742.333333pt;}
.yae{bottom:746.173333pt;}
.y59{bottom:746.973333pt;}
.y79{bottom:750.333333pt;}
.yff{bottom:754.973333pt;}
.yad{bottom:762.013333pt;}
.y130{bottom:762.173333pt;}
.y58{bottom:762.973333pt;}
.y13{bottom:764.733333pt;}
.y78{bottom:769.853333pt;}
.ydd{bottom:770.813333pt;}
.yac{bottom:777.853333pt;}
.y12f{bottom:778.013333pt;}
.y57{bottom:778.813333pt;}
.y12{bottom:782.333333pt;}
.ydc{bottom:786.653333pt;}
.yab{bottom:793.693333pt;}
.y12e{bottom:793.853333pt;}
.y77{bottom:794.493333pt;}
.y56{bottom:794.653333pt;}
.y11{bottom:800.573333pt;}
.ydb{bottom:802.493333pt;}
.yaa{bottom:809.573333pt;}
.y12d{bottom:809.733333pt;}
.y55{bottom:810.533333pt;}
.yda{bottom:818.373333pt;}
.y10{bottom:819.013333pt;}
.ya9{bottom:825.413333pt;}
.y12c{bottom:825.573333pt;}
.y54{bottom:826.373333pt;}
.yd9{bottom:834.373333pt;}
.yfe{bottom:836.133333pt;}
.yf{bottom:837.093333pt;}
.ya8{bottom:841.413333pt;}
.y53{bottom:842.373333pt;}
.y74{bottom:843.493333pt;}
.yd8{bottom:850.213333pt;}
.ya7{bottom:857.253333pt;}
.y12b{bottom:857.413333pt;}
.y52{bottom:858.213333pt;}
.yfd{bottom:865.253333pt;}
.yd7{bottom:866.053333pt;}
.y73{bottom:873.093333pt;}
.y12a{bottom:873.253333pt;}
.y51{bottom:874.053333pt;}
.ye{bottom:876.133333pt;}
.yfc{bottom:881.093333pt;}
.yd6{bottom:883.653333pt;}
.yd{bottom:886.853333pt;}
.y72{bottom:888.933333pt;}
.y129{bottom:889.093333pt;}
.y50{bottom:889.893333pt;}
.yfb{bottom:896.933333pt;}
.yc{bottom:897.573333pt;}
.y71{bottom:904.773333pt;}
.y128{bottom:904.933333pt;}
.y4f{bottom:905.733333pt;}
.yb{bottom:908.293333pt;}
.ya6{bottom:912.773333pt;}
.y127{bottom:920.773333pt;}
.ya{bottom:921.253333pt;}
.y4e{bottom:921.573333pt;}
.y70{bottom:928.773333pt;}
.y126{bottom:936.773333pt;}
.y4d{bottom:937.573333pt;}
.y9{bottom:943.973333pt;}
.y6f{bottom:944.613333pt;}
.y125{bottom:952.613333pt;}
.y4c{bottom:953.413333pt;}
.y6e{bottom:960.453333pt;}
.y8{bottom:966.373333pt;}
.y124{bottom:968.453333pt;}
.yfa{bottom:975.973333pt;}
.y6d{bottom:976.293333pt;}
.y4b{bottom:977.253333pt;}
.y123{bottom:984.293333pt;}
.y6c{bottom:992.133333pt;}
.y7{bottom:992.773333pt;}
.y4a{bottom:993.093333pt;}
.yf9{bottom:1000.133333pt;}
.y6b{bottom:1007.973333pt;}
.y49{bottom:1008.933333pt;}
.yf8{bottom:1015.973333pt;}
.y6a{bottom:1024.000000pt;}
.y48{bottom:1024.960000pt;}
.ya5{bottom:1032.000000pt;}
.y6{bottom:1036.320000pt;}
.y47{bottom:1040.800000pt;}
.y69{bottom:1047.840000pt;}
.y46{bottom:1058.400000pt;}
.y68{bottom:1063.680000pt;}
.h1a{height:23.826667pt;}
.h17{height:23.840000pt;}
.h1e{height:23.858667pt;}
.h18{height:23.872000pt;}
.h20{height:23.986667pt;}
.h16{height:24.000000pt;}
.h21{height:24.018667pt;}
.h19{height:24.026667pt;}
.h2{height:27.676000pt;}
.h1f{height:33.515625pt;}
.h9{height:36.431250pt;}
.h3{height:47.109375pt;}
.h1c{height:48.306667pt;}
.h10{height:48.375000pt;}
.h22{height:49.336436pt;}
.h14{height:52.108438pt;}
.ha{height:52.134375pt;}
.h15{height:52.234000pt;}
.hb{height:53.535000pt;}
.h4{height:58.563750pt;}
.he{height:59.340000pt;}
.hd{height:64.290000pt;}
.hf{height:64.500000pt;}
.h11{height:69.660000pt;}
.h13{height:69.789000pt;}
.h1b{height:72.786667pt;}
.hc{height:73.490625pt;}
.h7{height:75.465000pt;}
.h8{height:80.625000pt;}
.h6{height:91.590000pt;}
.h5{height:96.750000pt;}
.h1d{height:97.458667pt;}
.h12{height:312.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:35.346667pt;}
.w1a{width:37.266667pt;}
.w5{width:37.426667pt;}
.w18{width:49.746667pt;}
.w19{width:53.426667pt;}
.w16{width:53.440000pt;}
.w15{width:59.360000pt;}
.wf{width:59.378667pt;}
.w17{width:62.912000pt;}
.w14{width:65.312000pt;}
.w10{width:71.346667pt;}
.w3{width:71.386667pt;}
.wb{width:83.346667pt;}
.w7{width:88.466667pt;}
.w1c{width:89.458667pt;}
.w1b{width:92.946667pt;}
.w11{width:93.306667pt;}
.w8{width:95.386667pt;}
.w6{width:99.698667pt;}
.w1d{width:101.306667pt;}
.we{width:103.826667pt;}
.wa{width:113.138667pt;}
.w13{width:116.992000pt;}
.wc{width:119.060000pt;}
.w12{width:125.312000pt;}
.wd{width:242.946667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:3.986667pt;}
.x23{left:5.600000pt;}
.x5{left:7.680000pt;}
.x14{left:9.600000pt;}
.x2f{left:10.706667pt;}
.x18{left:11.666667pt;}
.x1b{left:14.226667pt;}
.x41{left:15.506667pt;}
.x3b{left:16.466667pt;}
.x27{left:17.586667pt;}
.x1e{left:18.706667pt;}
.x3d{left:19.680000pt;}
.x2a{left:21.276000pt;}
.x37{left:22.560000pt;}
.x36{left:24.000000pt;}
.x39{left:25.760000pt;}
.x3c{left:26.880000pt;}
.x34{left:28.640000pt;}
.x31{left:32.640000pt;}
.x13{left:34.080000pt;}
.x25{left:35.680000pt;}
.x1d{left:37.120000pt;}
.x1c{left:38.240000pt;}
.x1{left:40.324000pt;}
.x42{left:41.626667pt;}
.x15{left:43.680000pt;}
.x26{left:45.106667pt;}
.x33{left:46.080000pt;}
.x7{left:48.000000pt;}
.x29{left:50.404000pt;}
.x2c{left:63.040000pt;}
.x10{left:65.280000pt;}
.x43{left:72.000000pt;}
.xe{left:73.920000pt;}
.xd{left:87.232000pt;}
.x28{left:95.232000pt;}
.x2b{left:170.106667pt;}
.x2{left:197.662667pt;}
.xf{left:199.546667pt;}
.x35{left:236.066667pt;}
.x3{left:241.182667pt;}
.xa{left:242.946667pt;}
.x8{left:269.346667pt;}
.xb{left:293.826667pt;}
.x32{left:296.066667pt;}
.x11{left:303.426667pt;}
.x9{left:323.906667pt;}
.xc{left:342.306667pt;}
.x38{left:350.146667pt;}
.x6{left:396.893333pt;}
.x2d{left:413.706667pt;}
.x1f{left:418.826667pt;}
.x12{left:420.893333pt;}
.x16{left:421.866667pt;}
.x45{left:444.893333pt;}
.x3e{left:452.106667pt;}
.x20{left:454.826667pt;}
.x17{left:459.946667pt;}
.x3a{left:464.106667pt;}
.x44{left:468.893333pt;}
.x2e{left:518.186667pt;}
.x3f{left:545.706667pt;}
.x19{left:560.453333pt;}
.x22{left:568.613333pt;}
.x30{left:578.213333pt;}
.x40{left:635.813333pt;}
.x1a{left:649.573333pt;}
.x24{left:652.613333pt;}
.x4{left:682.213333pt;}
}




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