
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_3c593dd88898b494bdf67435.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_775f953ad270ada428fcc3c1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_95ca23027f1e22b819762ee7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.767578;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_f9e9013350674122693851e6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.981934;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_adb9fd2dbcfa79ad94880c83.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.993164;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_4ce7b47609f1738e8b950c7b.woff2')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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_30cad950b051f5b28cfb6999.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e76e91da26582cf8a6c834b9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.981934;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);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls2a{letter-spacing:-0.660000px;}
.ls1f{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.463800px;}
.ls31{letter-spacing:-0.414000px;}
.ls1c{letter-spacing:-0.240600px;}
.lsb{letter-spacing:-0.214800px;}
.ls23{letter-spacing:-0.208800px;}
.ls19{letter-spacing:-0.172200px;}
.ls9{letter-spacing:-0.115800px;}
.ls2b{letter-spacing:-0.112200px;}
.ls17{letter-spacing:-0.107400px;}
.ls29{letter-spacing:-0.078600px;}
.ls20{letter-spacing:-0.064800px;}
.ls27{letter-spacing:-0.058320px;}
.ls26{letter-spacing:-0.055440px;}
.ls18{letter-spacing:-0.052560px;}
.lsc{letter-spacing:-0.043920px;}
.ls33{letter-spacing:-0.038160px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.014880px;}
.ls1a{letter-spacing:0.023760px;}
.ls35{letter-spacing:0.060600px;}
.ls12{letter-spacing:0.063360px;}
.ls22{letter-spacing:0.067200px;}
.lsa{letter-spacing:0.140400px;}
.ls10{letter-spacing:0.174000px;}
.ls3{letter-spacing:0.174240px;}
.ls28{letter-spacing:0.186600px;}
.ls21{letter-spacing:0.288600px;}
.ls1b{letter-spacing:0.306000px;}
.ls1e{letter-spacing:0.314400px;}
.ls32{letter-spacing:0.357000px;}
.ls7{letter-spacing:0.360000px;}
.lse{letter-spacing:0.381600px;}
.ls2c{letter-spacing:0.393600px;}
.ls16{letter-spacing:0.433440px;}
.lsf{letter-spacing:0.525600px;}
.ls1d{letter-spacing:0.547800px;}
.ls2f{letter-spacing:0.654000px;}
.ls2e{letter-spacing:0.660000px;}
.ls36{letter-spacing:0.744000px;}
.ls8{letter-spacing:0.780000px;}
.ls4{letter-spacing:0.894240px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls2d{letter-spacing:5.706720px;}
.ls11{letter-spacing:13.533120px;}
.ls34{letter-spacing:42.426720px;}
.ls24{letter-spacing:46.026720px;}
.ls13{letter-spacing:67.854240px;}
.ls14{letter-spacing:68.574240px;}
.ls25{letter-spacing:70.506720px;}
.ls30{letter-spacing:89.370720px;}
.ls15{letter-spacing:1089.834240px;}
.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;}
}
.ws14{word-spacing:-59.760000px;}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws1c{word-spacing:-14.249760px;}
.ws17{word-spacing:-14.165760px;}
.wsd{word-spacing:-14.053560px;}
.ws18{word-spacing:-13.862760px;}
.wse{word-spacing:-13.820160px;}
.ws15{word-spacing:-13.692360px;}
.ws8{word-spacing:-13.646160px;}
.ws10{word-spacing:-13.572960px;}
.ws1b{word-spacing:-13.566360px;}
.ws6{word-spacing:-13.505760px;}
.ws19{word-spacing:-13.467600px;}
.wsa{word-spacing:-13.461840px;}
.ws12{word-spacing:-13.450320px;}
.ws13{word-spacing:-13.447440px;}
.wsf{word-spacing:-13.440960px;}
.ws16{word-spacing:-13.393560px;}
.ws7{word-spacing:-13.389960px;}
.wsc{word-spacing:-13.333560px;}
.ws11{word-spacing:-13.296960px;}
.ws9{word-spacing:-13.290960px;}
.ws3{word-spacing:-9.437760px;}
.ws5{word-spacing:-9.146880px;}
.ws4{word-spacing:-8.786880px;}
.ws1a{word-spacing:-8.722080px;}
.wsb{word-spacing:0.000000px;}
._4{margin-left:-1447.776240px;}
._2{margin-left:-1325.957760px;}
._3{margin-left:-1006.084800px;}
._5{margin-left:-578.174400px;}
._24{margin-left:-8.693280px;}
._12{margin-left:-4.785600px;}
._6{margin-left:-3.312000px;}
._10{margin-left:-2.269440px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._28{width:2.403120px;}
._a{width:3.406320px;}
._9{width:4.543200px;}
._11{width:6.394320px;}
._e{width:7.410240px;}
._d{width:8.665200px;}
._c{width:10.458000px;}
._f{width:12.100320px;}
._7{width:14.364000px;}
._8{width:16.202160px;}
._27{width:17.330400px;}
._b{width:22.170960px;}
._2b{width:26.413920px;}
._22{width:28.402800px;}
._2e{width:29.513520px;}
._1f{width:34.415760px;}
._18{width:62.938800px;}
._17{width:67.854240px;}
._1a{width:75.426480px;}
._20{width:86.148720px;}
._21{width:87.472080px;}
._2a{width:141.212880px;}
._29{width:162.846000px;}
._19{width:188.964480px;}
._2c{width:232.645680px;}
._1b{width:556.854240px;}
._25{width:566.934240px;}
._1c{width:657.668160px;}
._26{width:669.440400px;}
._2d{width:770.694240px;}
._13{width:1034.394240px;}
._1d{width:1097.034240px;}
._14{width:1133.340000px;}
._15{width:1168.314240px;}
._23{width:1188.631680px;}
._1e{width:1197.791760px;}
._16{width:1267.191840px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs6{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ycc{bottom:6.660000px;}
.y112{bottom:6.690000px;}
.y150{bottom:7.200000px;}
.ye5{bottom:27.720000px;}
.ye3{bottom:27.750000px;}
.y14f{bottom:28.080000px;}
.y14c{bottom:35.640000px;}
.y12b{bottom:48.600000px;}
.y14e{bottom:49.710000px;}
.y6{bottom:61.200000px;}
.y12a{bottom:69.660000px;}
.y14d{bottom:70.770000px;}
.ye1{bottom:85.680000px;}
.y9c{bottom:89.820000px;}
.y122{bottom:103.140000px;}
.y31{bottom:103.320000px;}
.yae{bottom:106.200000px;}
.ye0{bottom:108.720000px;}
.y9b{bottom:110.700000px;}
.y14b{bottom:111.420000px;}
.y105{bottom:112.860000px;}
.ybb{bottom:118.080000px;}
.y121{bottom:124.200000px;}
.y30{bottom:124.380000px;}
.yad{bottom:127.260000px;}
.y76{bottom:127.440000px;}
.ydd{bottom:131.580000px;}
.y9a{bottom:131.760000px;}
.y104{bottom:133.920000px;}
.yba{bottom:139.140000px;}
.y120{bottom:145.260000px;}
.y2f{bottom:145.440000px;}
.yac{bottom:148.320000px;}
.y75{bottom:148.500000px;}
.y99{bottom:152.850000px;}
.y103{bottom:155.010000px;}
.ydf{bottom:155.550000px;}
.yb9{bottom:160.230000px;}
.y11f{bottom:166.350000px;}
.y2e{bottom:166.530000px;}
.y149{bottom:168.150000px;}
.yab{bottom:169.410000px;}
.y74{bottom:169.590000px;}
.y98{bottom:173.910000px;}
.y102{bottom:176.070000px;}
.yde{bottom:179.310000px;}
.yb8{bottom:181.290000px;}
.y11e{bottom:187.230000px;}
.y2d{bottom:187.590000px;}
.y148{bottom:189.210000px;}
.yaa{bottom:190.470000px;}
.y73{bottom:190.650000px;}
.y97{bottom:194.970000px;}
.y101{bottom:197.130000px;}
.yb7{bottom:202.350000px;}
.y11d{bottom:208.290000px;}
.y2c{bottom:208.650000px;}
.ydc{bottom:209.190000px;}
.y147{bottom:210.270000px;}
.ya9{bottom:211.530000px;}
.y72{bottom:211.710000px;}
.y96{bottom:216.030000px;}
.y100{bottom:218.190000px;}
.yb6{bottom:223.410000px;}
.y11c{bottom:229.350000px;}
.y2b{bottom:229.710000px;}
.ydb{bottom:230.250000px;}
.y146{bottom:231.330000px;}
.ya8{bottom:232.590000px;}
.y71{bottom:232.770000px;}
.y95{bottom:237.090000px;}
.yff{bottom:239.250000px;}
.yb5{bottom:244.470000px;}
.y11b{bottom:250.410000px;}
.y2a{bottom:250.770000px;}
.yda{bottom:251.310000px;}
.y145{bottom:252.390000px;}
.ya7{bottom:253.650000px;}
.y70{bottom:253.830000px;}
.y94{bottom:258.150000px;}
.yfe{bottom:260.310000px;}
.yb4{bottom:265.530000px;}
.y11a{bottom:271.470000px;}
.y29{bottom:271.830000px;}
.yd9{bottom:272.370000px;}
.y144{bottom:273.450000px;}
.y93{bottom:279.210000px;}
.yfd{bottom:281.370000px;}
.ya6{bottom:283.530000px;}
.y6f{bottom:283.890000px;}
.yb3{bottom:286.590000px;}
.y119{bottom:292.530000px;}
.y28{bottom:292.890000px;}
.yd8{bottom:293.430000px;}
.y143{bottom:294.510000px;}
.y92{bottom:300.270000px;}
.yfc{bottom:302.430000px;}
.y6e{bottom:304.950000px;}
.yb2{bottom:307.650000px;}
.y118{bottom:313.590000px;}
.y27{bottom:313.950000px;}
.yd7{bottom:314.490000px;}
.y142{bottom:315.570000px;}
.y91{bottom:321.330000px;}
.yfb{bottom:323.490000px;}
.y6d{bottom:326.010000px;}
.yb1{bottom:328.710000px;}
.y117{bottom:334.650000px;}
.y26{bottom:335.010000px;}
.yd6{bottom:335.550000px;}
.y141{bottom:336.630000px;}
.y90{bottom:342.390000px;}
.yfa{bottom:344.550000px;}
.y6c{bottom:347.070000px;}
.y116{bottom:351.930000px;}
.yb0{bottom:354.810000px;}
.y25{bottom:356.070000px;}
.yd5{bottom:356.610000px;}
.y140{bottom:357.690000px;}
.y8f{bottom:363.450000px;}
.yf9{bottom:365.610000px;}
.y6b{bottom:368.130000px;}
.y24{bottom:377.130000px;}
.yd4{bottom:377.670000px;}
.y13f{bottom:378.750000px;}
.y8e{bottom:384.510000px;}
.y6a{bottom:389.190000px;}
.yf8{bottom:395.670000px;}
.y23{bottom:398.010000px;}
.y57{bottom:398.190000px;}
.yd3{bottom:398.730000px;}
.y13e{bottom:399.810000px;}
.y8d{bottom:405.615000px;}
.y69{bottom:410.295000px;}
.yf7{bottom:416.775000px;}
.y22{bottom:419.115000px;}
.y56{bottom:419.295000px;}
.yd2{bottom:419.835000px;}
.y13d{bottom:420.915000px;}
.y8c{bottom:426.675000px;}
.y68{bottom:431.355000px;}
.yf6{bottom:437.835000px;}
.y21{bottom:440.175000px;}
.y55{bottom:440.355000px;}
.yd1{bottom:440.895000px;}
.y13c{bottom:441.975000px;}
.y8b{bottom:447.735000px;}
.y67{bottom:452.415000px;}
.yd0{bottom:455.655000px;}
.yf5{bottom:458.895000px;}
.y20{bottom:461.235000px;}
.y54{bottom:461.415000px;}
.y13b{bottom:463.035000px;}
.y8a{bottom:468.795000px;}
.y66{bottom:473.475000px;}
.yf4{bottom:479.955000px;}
.ycf{bottom:482.115000px;}
.y1f{bottom:482.295000px;}
.y53{bottom:482.475000px;}
.y13a{bottom:484.095000px;}
.y89{bottom:489.855000px;}
.y65{bottom:494.535000px;}
.yf3{bottom:501.015000px;}
.y1e{bottom:503.355000px;}
.y52{bottom:503.535000px;}
.y139{bottom:505.155000px;}
.yce{bottom:508.575000px;}
.y88{bottom:510.915000px;}
.y64{bottom:515.595000px;}
.yf2{bottom:522.075000px;}
.y1d{bottom:524.415000px;}
.y51{bottom:524.595000px;}
.y138{bottom:526.215000px;}
.y87{bottom:531.975000px;}
.ycd{bottom:535.035000px;}
.y63{bottom:536.655000px;}
.yf1{bottom:543.135000px;}
.y1c{bottom:545.475000px;}
.y50{bottom:545.655000px;}
.y137{bottom:547.275000px;}
.y86{bottom:553.035000px;}
.y62{bottom:557.715000px;}
.ycb{bottom:561.495000px;}
.y115{bottom:561.855000px;}
.yf0{bottom:564.195000px;}
.y1b{bottom:566.535000px;}
.y4f{bottom:566.715000px;}
.y136{bottom:568.335000px;}
.y85{bottom:574.095000px;}
.y61{bottom:578.775000px;}
.y114{bottom:582.915000px;}
.yef{bottom:585.255000px;}
.y4e{bottom:587.775000px;}
.y135{bottom:589.395000px;}
.y1a{bottom:590.115000px;}
.yca{bottom:594.075000px;}
.y84{bottom:595.155000px;}
.y113{bottom:598.035000px;}
.y4d{bottom:608.835000px;}
.y134{bottom:610.455000px;}
.y19{bottom:610.995000px;}
.yc9{bottom:615.135000px;}
.yee{bottom:615.315000px;}
.y83{bottom:625.215000px;}
.y4c{bottom:629.895000px;}
.y133{bottom:631.515000px;}
.yc8{bottom:636.195000px;}
.yed{bottom:636.375000px;}
.y18{bottom:641.055000px;}
.y111{bottom:642.675000px;}
.y82{bottom:646.275000px;}
.y4b{bottom:650.805000px;}
.y132{bottom:652.605000px;}
.yc7{bottom:657.285000px;}
.yec{bottom:657.465000px;}
.y17{bottom:662.145000px;}
.y81{bottom:667.365000px;}
.y4a{bottom:671.865000px;}
.y131{bottom:673.665000px;}
.yc6{bottom:678.345000px;}
.yeb{bottom:678.525000px;}
.y14a{bottom:680.865000px;}
.y16{bottom:683.205000px;}
.y110{bottom:687.525000px;}
.y80{bottom:688.425000px;}
.y60{bottom:692.925000px;}
.y130{bottom:694.725000px;}
.yc5{bottom:699.405000px;}
.yea{bottom:699.585000px;}
.y49{bottom:701.925000px;}
.y15{bottom:704.265000px;}
.yaf{bottom:708.585000px;}
.y7f{bottom:709.485000px;}
.y5f{bottom:713.985000px;}
.yc4{bottom:720.465000px;}
.ye9{bottom:720.645000px;}
.y48{bottom:722.985000px;}
.y12f{bottom:724.785000px;}
.y14{bottom:725.325000px;}
.y10f{bottom:732.345000px;}
.y5e{bottom:735.045000px;}
.y7e{bottom:739.545000px;}
.yc3{bottom:741.525000px;}
.ye8{bottom:741.705000px;}
.y47{bottom:744.045000px;}
.y12e{bottom:745.665000px;}
.y13{bottom:746.385000px;}
.y5d{bottom:756.105000px;}
.ye7{bottom:758.805000px;}
.y7d{bottom:760.605000px;}
.yc2{bottom:762.585000px;}
.y46{bottom:765.105000px;}
.y12d{bottom:766.725000px;}
.y12{bottom:767.445000px;}
.y10e{bottom:776.985000px;}
.y5c{bottom:777.165000px;}
.y7c{bottom:781.665000px;}
.yc1{bottom:783.645000px;}
.y45{bottom:786.165000px;}
.y12c{bottom:787.785000px;}
.y11{bottom:788.505000px;}
.y5b{bottom:798.225000px;}
.y7b{bottom:802.725000px;}
.yc0{bottom:804.705000px;}
.y44{bottom:807.225000px;}
.y10{bottom:809.565000px;}
.y5a{bottom:819.285000px;}
.y10d{bottom:821.805000px;}
.y7a{bottom:823.785000px;}
.ybf{bottom:825.765000px;}
.y43{bottom:828.285000px;}
.yf{bottom:830.625000px;}
.y59{bottom:840.345000px;}
.y79{bottom:844.845000px;}
.ybe{bottom:846.825000px;}
.y42{bottom:849.345000px;}
.ye{bottom:851.685000px;}
.y58{bottom:861.405000px;}
.y78{bottom:865.905000px;}
.y10c{bottom:866.445000px;}
.ybd{bottom:867.885000px;}
.y41{bottom:870.405000px;}
.yd{bottom:872.745000px;}
.ya5{bottom:882.465000px;}
.y77{bottom:883.005000px;}
.ybc{bottom:884.985000px;}
.y129{bottom:890.025000px;}
.y40{bottom:891.465000px;}
.yc{bottom:895.965000px;}
.ya4{bottom:903.570000px;}
.y10b{bottom:911.310000px;}
.y3f{bottom:912.570000px;}
.y128{bottom:913.290000px;}
.yb{bottom:922.290000px;}
.ya3{bottom:924.630000px;}
.y3e{bottom:933.630000px;}
.y127{bottom:936.510000px;}
.ya{bottom:939.030000px;}
.ya2{bottom:945.690000px;}
.y3d{bottom:954.690000px;}
.y10a{bottom:955.950000px;}
.y126{bottom:959.550000px;}
.y9{bottom:961.350000px;}
.ya1{bottom:966.750000px;}
.y3c{bottom:975.750000px;}
.y125{bottom:982.770000px;}
.y8{bottom:986.550000px;}
.ya0{bottom:987.810000px;}
.y3b{bottom:996.810000px;}
.y109{bottom:1000.770000px;}
.y124{bottom:1005.990000px;}
.y9f{bottom:1008.870000px;}
.y3a{bottom:1017.870000px;}
.y7{bottom:1020.210000px;}
.y123{bottom:1029.030000px;}
.y9e{bottom:1029.930000px;}
.y39{bottom:1038.930000px;}
.y108{bottom:1045.410000px;}
.y9d{bottom:1050.990000px;}
.y38{bottom:1059.990000px;}
.y5{bottom:1060.350000px;}
.ye6{bottom:1076.370000px;}
.y37{bottom:1081.050000px;}
.y107{bottom:1090.230000px;}
.ye4{bottom:1091.850000px;}
.y4{bottom:1092.570000px;}
.y36{bottom:1102.110000px;}
.y35{bottom:1123.170000px;}
.y3{bottom:1124.610000px;}
.y106{bottom:1135.050000px;}
.ye2{bottom:1135.770000px;}
.y34{bottom:1144.230000px;}
.y2{bottom:1156.860000px;}
.y33{bottom:1165.320000px;}
.y1{bottom:1191.420000px;}
.y32{bottom:1193.220000px;}
.h12{height:2.864531px;}
.ha{height:21.060000px;}
.hc{height:21.096000px;}
.h7{height:38.671172px;}
.he{height:42.120000px;}
.hd{height:42.156000px;}
.h9{height:48.029766px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h10{height:59.551172px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.hb{height:68.796000px;}
.hf{height:84.060000px;}
.h11{height:85.176000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:10.440000px;}
.wf{width:36.360000px;}
.w15{width:40.680000px;}
.w9{width:47.340000px;}
.wa{width:55.080000px;}
.w12{width:64.260000px;}
.w8{width:80.676000px;}
.w10{width:91.080000px;}
.wc{width:91.296000px;}
.wd{width:91.620000px;}
.w4{width:94.536000px;}
.w5{width:94.896000px;}
.w16{width:96.696000px;}
.w13{width:106.740000px;}
.w6{width:120.240000px;}
.w3{width:161.820000px;}
.wb{width:182.730000px;}
.w7{width:183.090000px;}
.w17{width:210.810000px;}
.w11{width:339.375000px;}
.w14{width:412.275000px;}
.w18{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:2.520000px;}
.x11{left:8.640000px;}
.x1f{left:43.199987px;}
.x4{left:47.339987px;}
.x1{left:53.999987px;}
.x8{left:56.699987px;}
.xf{left:70.199987px;}
.x3{left:74.339987px;}
.x2{left:75.599987px;}
.x2b{left:79.559987px;}
.x29{left:80.999987px;}
.x9{left:82.979987px;}
.x2a{left:91.835987px;}
.xa{left:99.935987px;}
.x2c{left:106.595987px;}
.x14{left:120.456000px;}
.x20{left:159.870000px;}
.x26{left:171.930000px;}
.x2d{left:191.370000px;}
.x15{left:241.230000px;}
.x5{left:256.529987px;}
.x2e{left:264.810000px;}
.x1e{left:273.854987px;}
.x10{left:277.815000px;}
.x1a{left:332.895000px;}
.x7{left:333.974987px;}
.x16{left:425.055000px;}
.x12{left:440.715000px;}
.x22{left:499.965000px;}
.x17{left:505.185000px;}
.x1b{left:516.525000px;}
.x13{left:536.505000px;}
.x18{left:552.525000px;}
.x23{left:564.945000px;}
.x27{left:584.205000px;}
.x19{left:608.505000px;}
.x28{left:624.885000px;}
.x24{left:646.350000px;}
.xe{left:689.729987px;}
.x1d{left:696.929987px;}
.x1c{left:700.170000px;}
.x25{left:716.909987px;}
.x6{left:790.889987px;}
.xb{left:818.639987px;}
.xd{left:835.739987px;}
.xc{left:839.339987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls2a{letter-spacing:-0.586667pt;}
.ls1f{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls31{letter-spacing:-0.368000pt;}
.ls1c{letter-spacing:-0.213867pt;}
.lsb{letter-spacing:-0.190933pt;}
.ls23{letter-spacing:-0.185600pt;}
.ls19{letter-spacing:-0.153067pt;}
.ls9{letter-spacing:-0.102933pt;}
.ls2b{letter-spacing:-0.099733pt;}
.ls17{letter-spacing:-0.095467pt;}
.ls29{letter-spacing:-0.069867pt;}
.ls20{letter-spacing:-0.057600pt;}
.ls27{letter-spacing:-0.051840pt;}
.ls26{letter-spacing:-0.049280pt;}
.ls18{letter-spacing:-0.046720pt;}
.lsc{letter-spacing:-0.039040pt;}
.ls33{letter-spacing:-0.033920pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.013227pt;}
.ls1a{letter-spacing:0.021120pt;}
.ls35{letter-spacing:0.053867pt;}
.ls12{letter-spacing:0.056320pt;}
.ls22{letter-spacing:0.059733pt;}
.lsa{letter-spacing:0.124800pt;}
.ls10{letter-spacing:0.154667pt;}
.ls3{letter-spacing:0.154880pt;}
.ls28{letter-spacing:0.165867pt;}
.ls21{letter-spacing:0.256533pt;}
.ls1b{letter-spacing:0.272000pt;}
.ls1e{letter-spacing:0.279467pt;}
.ls32{letter-spacing:0.317333pt;}
.ls7{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.339200pt;}
.ls2c{letter-spacing:0.349867pt;}
.ls16{letter-spacing:0.385280pt;}
.lsf{letter-spacing:0.467200pt;}
.ls1d{letter-spacing:0.486933pt;}
.ls2f{letter-spacing:0.581333pt;}
.ls2e{letter-spacing:0.586667pt;}
.ls36{letter-spacing:0.661333pt;}
.ls8{letter-spacing:0.693333pt;}
.ls4{letter-spacing:0.794880pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls2d{letter-spacing:5.072640pt;}
.ls11{letter-spacing:12.029440pt;}
.ls34{letter-spacing:37.712640pt;}
.ls24{letter-spacing:40.912640pt;}
.ls13{letter-spacing:60.314880pt;}
.ls14{letter-spacing:60.954880pt;}
.ls25{letter-spacing:62.672640pt;}
.ls30{letter-spacing:79.440640pt;}
.ls15{letter-spacing:968.741547pt;}
.ws14{word-spacing:-53.120000pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws1c{word-spacing:-12.666453pt;}
.ws17{word-spacing:-12.591787pt;}
.wsd{word-spacing:-12.492053pt;}
.ws18{word-spacing:-12.322453pt;}
.wse{word-spacing:-12.284587pt;}
.ws15{word-spacing:-12.170987pt;}
.ws8{word-spacing:-12.129920pt;}
.ws10{word-spacing:-12.064853pt;}
.ws1b{word-spacing:-12.058987pt;}
.ws6{word-spacing:-12.005120pt;}
.ws19{word-spacing:-11.971200pt;}
.wsa{word-spacing:-11.966080pt;}
.ws12{word-spacing:-11.955840pt;}
.ws13{word-spacing:-11.953280pt;}
.wsf{word-spacing:-11.947520pt;}
.ws16{word-spacing:-11.905387pt;}
.ws7{word-spacing:-11.902187pt;}
.wsc{word-spacing:-11.852053pt;}
.ws11{word-spacing:-11.819520pt;}
.ws9{word-spacing:-11.814187pt;}
.ws3{word-spacing:-8.389120pt;}
.ws5{word-spacing:-8.130560pt;}
.ws4{word-spacing:-7.810560pt;}
.ws1a{word-spacing:-7.752960pt;}
.wsb{word-spacing:0.000000pt;}
._4{margin-left:-1286.912213pt;}
._2{margin-left:-1178.629120pt;}
._3{margin-left:-894.297600pt;}
._5{margin-left:-513.932800pt;}
._24{margin-left:-7.727360pt;}
._12{margin-left:-4.253867pt;}
._6{margin-left:-2.944000pt;}
._10{margin-left:-2.017280pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._28{width:2.136107pt;}
._a{width:3.027840pt;}
._9{width:4.038400pt;}
._11{width:5.683840pt;}
._e{width:6.586880pt;}
._d{width:7.702400pt;}
._c{width:9.296000pt;}
._f{width:10.755840pt;}
._7{width:12.768000pt;}
._8{width:14.401920pt;}
._27{width:15.404800pt;}
._b{width:19.707520pt;}
._2b{width:23.479040pt;}
._22{width:25.246933pt;}
._2e{width:26.234240pt;}
._1f{width:30.591787pt;}
._18{width:55.945600pt;}
._17{width:60.314880pt;}
._1a{width:67.045760pt;}
._20{width:76.576640pt;}
._21{width:77.752960pt;}
._2a{width:125.522560pt;}
._29{width:144.752000pt;}
._19{width:167.968427pt;}
._2c{width:206.796160pt;}
._1b{width:494.981547pt;}
._25{width:503.941547pt;}
._1c{width:584.593920pt;}
._26{width:595.058133pt;}
._2d{width:685.061547pt;}
._13{width:919.461547pt;}
._1d{width:975.141547pt;}
._14{width:1007.413333pt;}
._15{width:1038.501547pt;}
._23{width:1056.561493pt;}
._1e{width:1064.703787pt;}
._16{width:1126.392747pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ycc{bottom:5.920000pt;}
.y112{bottom:5.946667pt;}
.y150{bottom:6.400000pt;}
.ye5{bottom:24.640000pt;}
.ye3{bottom:24.666667pt;}
.y14f{bottom:24.960000pt;}
.y14c{bottom:31.680000pt;}
.y12b{bottom:43.200000pt;}
.y14e{bottom:44.186667pt;}
.y6{bottom:54.400000pt;}
.y12a{bottom:61.920000pt;}
.y14d{bottom:62.906667pt;}
.ye1{bottom:76.160000pt;}
.y9c{bottom:79.840000pt;}
.y122{bottom:91.680000pt;}
.y31{bottom:91.840000pt;}
.yae{bottom:94.400000pt;}
.ye0{bottom:96.640000pt;}
.y9b{bottom:98.400000pt;}
.y14b{bottom:99.040000pt;}
.y105{bottom:100.320000pt;}
.ybb{bottom:104.960000pt;}
.y121{bottom:110.400000pt;}
.y30{bottom:110.560000pt;}
.yad{bottom:113.120000pt;}
.y76{bottom:113.280000pt;}
.ydd{bottom:116.960000pt;}
.y9a{bottom:117.120000pt;}
.y104{bottom:119.040000pt;}
.yba{bottom:123.680000pt;}
.y120{bottom:129.120000pt;}
.y2f{bottom:129.280000pt;}
.yac{bottom:131.840000pt;}
.y75{bottom:132.000000pt;}
.y99{bottom:135.866667pt;}
.y103{bottom:137.786667pt;}
.ydf{bottom:138.266667pt;}
.yb9{bottom:142.426667pt;}
.y11f{bottom:147.866667pt;}
.y2e{bottom:148.026667pt;}
.y149{bottom:149.466667pt;}
.yab{bottom:150.586667pt;}
.y74{bottom:150.746667pt;}
.y98{bottom:154.586667pt;}
.y102{bottom:156.506667pt;}
.yde{bottom:159.386667pt;}
.yb8{bottom:161.146667pt;}
.y11e{bottom:166.426667pt;}
.y2d{bottom:166.746667pt;}
.y148{bottom:168.186667pt;}
.yaa{bottom:169.306667pt;}
.y73{bottom:169.466667pt;}
.y97{bottom:173.306667pt;}
.y101{bottom:175.226667pt;}
.yb7{bottom:179.866667pt;}
.y11d{bottom:185.146667pt;}
.y2c{bottom:185.466667pt;}
.ydc{bottom:185.946667pt;}
.y147{bottom:186.906667pt;}
.ya9{bottom:188.026667pt;}
.y72{bottom:188.186667pt;}
.y96{bottom:192.026667pt;}
.y100{bottom:193.946667pt;}
.yb6{bottom:198.586667pt;}
.y11c{bottom:203.866667pt;}
.y2b{bottom:204.186667pt;}
.ydb{bottom:204.666667pt;}
.y146{bottom:205.626667pt;}
.ya8{bottom:206.746667pt;}
.y71{bottom:206.906667pt;}
.y95{bottom:210.746667pt;}
.yff{bottom:212.666667pt;}
.yb5{bottom:217.306667pt;}
.y11b{bottom:222.586667pt;}
.y2a{bottom:222.906667pt;}
.yda{bottom:223.386667pt;}
.y145{bottom:224.346667pt;}
.ya7{bottom:225.466667pt;}
.y70{bottom:225.626667pt;}
.y94{bottom:229.466667pt;}
.yfe{bottom:231.386667pt;}
.yb4{bottom:236.026667pt;}
.y11a{bottom:241.306667pt;}
.y29{bottom:241.626667pt;}
.yd9{bottom:242.106667pt;}
.y144{bottom:243.066667pt;}
.y93{bottom:248.186667pt;}
.yfd{bottom:250.106667pt;}
.ya6{bottom:252.026667pt;}
.y6f{bottom:252.346667pt;}
.yb3{bottom:254.746667pt;}
.y119{bottom:260.026667pt;}
.y28{bottom:260.346667pt;}
.yd8{bottom:260.826667pt;}
.y143{bottom:261.786667pt;}
.y92{bottom:266.906667pt;}
.yfc{bottom:268.826667pt;}
.y6e{bottom:271.066667pt;}
.yb2{bottom:273.466667pt;}
.y118{bottom:278.746667pt;}
.y27{bottom:279.066667pt;}
.yd7{bottom:279.546667pt;}
.y142{bottom:280.506667pt;}
.y91{bottom:285.626667pt;}
.yfb{bottom:287.546667pt;}
.y6d{bottom:289.786667pt;}
.yb1{bottom:292.186667pt;}
.y117{bottom:297.466667pt;}
.y26{bottom:297.786667pt;}
.yd6{bottom:298.266667pt;}
.y141{bottom:299.226667pt;}
.y90{bottom:304.346667pt;}
.yfa{bottom:306.266667pt;}
.y6c{bottom:308.506667pt;}
.y116{bottom:312.826667pt;}
.yb0{bottom:315.386667pt;}
.y25{bottom:316.506667pt;}
.yd5{bottom:316.986667pt;}
.y140{bottom:317.946667pt;}
.y8f{bottom:323.066667pt;}
.yf9{bottom:324.986667pt;}
.y6b{bottom:327.226667pt;}
.y24{bottom:335.226667pt;}
.yd4{bottom:335.706667pt;}
.y13f{bottom:336.666667pt;}
.y8e{bottom:341.786667pt;}
.y6a{bottom:345.946667pt;}
.yf8{bottom:351.706667pt;}
.y23{bottom:353.786667pt;}
.y57{bottom:353.946667pt;}
.yd3{bottom:354.426667pt;}
.y13e{bottom:355.386667pt;}
.y8d{bottom:360.546667pt;}
.y69{bottom:364.706667pt;}
.yf7{bottom:370.466667pt;}
.y22{bottom:372.546667pt;}
.y56{bottom:372.706667pt;}
.yd2{bottom:373.186667pt;}
.y13d{bottom:374.146667pt;}
.y8c{bottom:379.266667pt;}
.y68{bottom:383.426667pt;}
.yf6{bottom:389.186667pt;}
.y21{bottom:391.266667pt;}
.y55{bottom:391.426667pt;}
.yd1{bottom:391.906667pt;}
.y13c{bottom:392.866667pt;}
.y8b{bottom:397.986667pt;}
.y67{bottom:402.146667pt;}
.yd0{bottom:405.026667pt;}
.yf5{bottom:407.906667pt;}
.y20{bottom:409.986667pt;}
.y54{bottom:410.146667pt;}
.y13b{bottom:411.586667pt;}
.y8a{bottom:416.706667pt;}
.y66{bottom:420.866667pt;}
.yf4{bottom:426.626667pt;}
.ycf{bottom:428.546667pt;}
.y1f{bottom:428.706667pt;}
.y53{bottom:428.866667pt;}
.y13a{bottom:430.306667pt;}
.y89{bottom:435.426667pt;}
.y65{bottom:439.586667pt;}
.yf3{bottom:445.346667pt;}
.y1e{bottom:447.426667pt;}
.y52{bottom:447.586667pt;}
.y139{bottom:449.026667pt;}
.yce{bottom:452.066667pt;}
.y88{bottom:454.146667pt;}
.y64{bottom:458.306667pt;}
.yf2{bottom:464.066667pt;}
.y1d{bottom:466.146667pt;}
.y51{bottom:466.306667pt;}
.y138{bottom:467.746667pt;}
.y87{bottom:472.866667pt;}
.ycd{bottom:475.586667pt;}
.y63{bottom:477.026667pt;}
.yf1{bottom:482.786667pt;}
.y1c{bottom:484.866667pt;}
.y50{bottom:485.026667pt;}
.y137{bottom:486.466667pt;}
.y86{bottom:491.586667pt;}
.y62{bottom:495.746667pt;}
.ycb{bottom:499.106667pt;}
.y115{bottom:499.426667pt;}
.yf0{bottom:501.506667pt;}
.y1b{bottom:503.586667pt;}
.y4f{bottom:503.746667pt;}
.y136{bottom:505.186667pt;}
.y85{bottom:510.306667pt;}
.y61{bottom:514.466667pt;}
.y114{bottom:518.146667pt;}
.yef{bottom:520.226667pt;}
.y4e{bottom:522.466667pt;}
.y135{bottom:523.906667pt;}
.y1a{bottom:524.546667pt;}
.yca{bottom:528.066667pt;}
.y84{bottom:529.026667pt;}
.y113{bottom:531.586667pt;}
.y4d{bottom:541.186667pt;}
.y134{bottom:542.626667pt;}
.y19{bottom:543.106667pt;}
.yc9{bottom:546.786667pt;}
.yee{bottom:546.946667pt;}
.y83{bottom:555.746667pt;}
.y4c{bottom:559.906667pt;}
.y133{bottom:561.346667pt;}
.yc8{bottom:565.506667pt;}
.yed{bottom:565.666667pt;}
.y18{bottom:569.826667pt;}
.y111{bottom:571.266667pt;}
.y82{bottom:574.466667pt;}
.y4b{bottom:578.493333pt;}
.y132{bottom:580.093333pt;}
.yc7{bottom:584.253333pt;}
.yec{bottom:584.413333pt;}
.y17{bottom:588.573333pt;}
.y81{bottom:593.213333pt;}
.y4a{bottom:597.213333pt;}
.y131{bottom:598.813333pt;}
.yc6{bottom:602.973333pt;}
.yeb{bottom:603.133333pt;}
.y14a{bottom:605.213333pt;}
.y16{bottom:607.293333pt;}
.y110{bottom:611.133333pt;}
.y80{bottom:611.933333pt;}
.y60{bottom:615.933333pt;}
.y130{bottom:617.533333pt;}
.yc5{bottom:621.693333pt;}
.yea{bottom:621.853333pt;}
.y49{bottom:623.933333pt;}
.y15{bottom:626.013333pt;}
.yaf{bottom:629.853333pt;}
.y7f{bottom:630.653333pt;}
.y5f{bottom:634.653333pt;}
.yc4{bottom:640.413333pt;}
.ye9{bottom:640.573333pt;}
.y48{bottom:642.653333pt;}
.y12f{bottom:644.253333pt;}
.y14{bottom:644.733333pt;}
.y10f{bottom:650.973333pt;}
.y5e{bottom:653.373333pt;}
.y7e{bottom:657.373333pt;}
.yc3{bottom:659.133333pt;}
.ye8{bottom:659.293333pt;}
.y47{bottom:661.373333pt;}
.y12e{bottom:662.813333pt;}
.y13{bottom:663.453333pt;}
.y5d{bottom:672.093333pt;}
.ye7{bottom:674.493333pt;}
.y7d{bottom:676.093333pt;}
.yc2{bottom:677.853333pt;}
.y46{bottom:680.093333pt;}
.y12d{bottom:681.533333pt;}
.y12{bottom:682.173333pt;}
.y10e{bottom:690.653333pt;}
.y5c{bottom:690.813333pt;}
.y7c{bottom:694.813333pt;}
.yc1{bottom:696.573333pt;}
.y45{bottom:698.813333pt;}
.y12c{bottom:700.253333pt;}
.y11{bottom:700.893333pt;}
.y5b{bottom:709.533333pt;}
.y7b{bottom:713.533333pt;}
.yc0{bottom:715.293333pt;}
.y44{bottom:717.533333pt;}
.y10{bottom:719.613333pt;}
.y5a{bottom:728.253333pt;}
.y10d{bottom:730.493333pt;}
.y7a{bottom:732.253333pt;}
.ybf{bottom:734.013333pt;}
.y43{bottom:736.253333pt;}
.yf{bottom:738.333333pt;}
.y59{bottom:746.973333pt;}
.y79{bottom:750.973333pt;}
.ybe{bottom:752.733333pt;}
.y42{bottom:754.973333pt;}
.ye{bottom:757.053333pt;}
.y58{bottom:765.693333pt;}
.y78{bottom:769.693333pt;}
.y10c{bottom:770.173333pt;}
.ybd{bottom:771.453333pt;}
.y41{bottom:773.693333pt;}
.yd{bottom:775.773333pt;}
.ya5{bottom:784.413333pt;}
.y77{bottom:784.893333pt;}
.ybc{bottom:786.653333pt;}
.y129{bottom:791.133333pt;}
.y40{bottom:792.413333pt;}
.yc{bottom:796.413333pt;}
.ya4{bottom:803.173333pt;}
.y10b{bottom:810.053333pt;}
.y3f{bottom:811.173333pt;}
.y128{bottom:811.813333pt;}
.yb{bottom:819.813333pt;}
.ya3{bottom:821.893333pt;}
.y3e{bottom:829.893333pt;}
.y127{bottom:832.453333pt;}
.ya{bottom:834.693333pt;}
.ya2{bottom:840.613333pt;}
.y3d{bottom:848.613333pt;}
.y10a{bottom:849.733333pt;}
.y126{bottom:852.933333pt;}
.y9{bottom:854.533333pt;}
.ya1{bottom:859.333333pt;}
.y3c{bottom:867.333333pt;}
.y125{bottom:873.573333pt;}
.y8{bottom:876.933333pt;}
.ya0{bottom:878.053333pt;}
.y3b{bottom:886.053333pt;}
.y109{bottom:889.573333pt;}
.y124{bottom:894.213333pt;}
.y9f{bottom:896.773333pt;}
.y3a{bottom:904.773333pt;}
.y7{bottom:906.853333pt;}
.y123{bottom:914.693333pt;}
.y9e{bottom:915.493333pt;}
.y39{bottom:923.493333pt;}
.y108{bottom:929.253333pt;}
.y9d{bottom:934.213333pt;}
.y38{bottom:942.213333pt;}
.y5{bottom:942.533333pt;}
.ye6{bottom:956.773333pt;}
.y37{bottom:960.933333pt;}
.y107{bottom:969.093333pt;}
.ye4{bottom:970.533333pt;}
.y4{bottom:971.173333pt;}
.y36{bottom:979.653333pt;}
.y35{bottom:998.373333pt;}
.y3{bottom:999.653333pt;}
.y106{bottom:1008.933333pt;}
.ye2{bottom:1009.573333pt;}
.y34{bottom:1017.093333pt;}
.y2{bottom:1028.320000pt;}
.y33{bottom:1035.840000pt;}
.y1{bottom:1059.040000pt;}
.y32{bottom:1060.640000pt;}
.h12{height:2.546250pt;}
.ha{height:18.720000pt;}
.hc{height:18.752000pt;}
.h7{height:34.374375pt;}
.he{height:37.440000pt;}
.hd{height:37.472000pt;}
.h9{height:42.693125pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h10{height:52.934375pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.hb{height:61.152000pt;}
.hf{height:74.720000pt;}
.h11{height:75.712000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:9.280000pt;}
.wf{width:32.320000pt;}
.w15{width:36.160000pt;}
.w9{width:42.080000pt;}
.wa{width:48.960000pt;}
.w12{width:57.120000pt;}
.w8{width:71.712000pt;}
.w10{width:80.960000pt;}
.wc{width:81.152000pt;}
.wd{width:81.440000pt;}
.w4{width:84.032000pt;}
.w5{width:84.352000pt;}
.w16{width:85.952000pt;}
.w13{width:94.880000pt;}
.w6{width:106.880000pt;}
.w3{width:143.840000pt;}
.wb{width:162.426667pt;}
.w7{width:162.746667pt;}
.w17{width:187.386667pt;}
.w11{width:301.666667pt;}
.w14{width:366.466667pt;}
.w18{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:2.240000pt;}
.x11{left:7.680000pt;}
.x1f{left:38.399988pt;}
.x4{left:42.079988pt;}
.x1{left:47.999988pt;}
.x8{left:50.399988pt;}
.xf{left:62.399988pt;}
.x3{left:66.079988pt;}
.x2{left:67.199988pt;}
.x2b{left:70.719988pt;}
.x29{left:71.999988pt;}
.x9{left:73.759988pt;}
.x2a{left:81.631988pt;}
.xa{left:88.831988pt;}
.x2c{left:94.751988pt;}
.x14{left:107.072000pt;}
.x20{left:142.106667pt;}
.x26{left:152.826667pt;}
.x2d{left:170.106667pt;}
.x15{left:214.426667pt;}
.x5{left:228.026655pt;}
.x2e{left:235.386667pt;}
.x1e{left:243.426655pt;}
.x10{left:246.946667pt;}
.x1a{left:295.906667pt;}
.x7{left:296.866655pt;}
.x16{left:377.826667pt;}
.x12{left:391.746667pt;}
.x22{left:444.413333pt;}
.x17{left:449.053333pt;}
.x1b{left:459.133333pt;}
.x13{left:476.893333pt;}
.x18{left:491.133333pt;}
.x23{left:502.173333pt;}
.x27{left:519.293333pt;}
.x19{left:540.893333pt;}
.x28{left:555.453333pt;}
.x24{left:574.533333pt;}
.xe{left:613.093322pt;}
.x1d{left:619.493322pt;}
.x1c{left:622.373333pt;}
.x25{left:637.253322pt;}
.x6{left:703.013322pt;}
.xb{left:727.679988pt;}
.xd{left:742.879988pt;}
.xc{left:746.079988pt;}
}




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