
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2982849a27d2be1e9efde012.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_a6d27249a89fb81079abcedd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_f4b1034902ea511f990353e7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_b92ae9d52d93ef4a4476cf12.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_7c8e3b52ddeb9792cff67e42.woff')format("woff");}.ff6{font-family:ff6;line-height:1.065430;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_d91d340e010516ef0f41ccee.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_ac8115263ff95e8c0cde33cf.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_6e679169fa812ec975072aed.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a6f8f512db9dc2d0ae5547c7.woff')format("woff");}.ffa{font-family:ffa;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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls2a{letter-spacing:-0.444600px;}
.ls1d{letter-spacing:-0.260400px;}
.lsd{letter-spacing:-0.186600px;}
.ls29{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.121200px;}
.lsa{letter-spacing:-0.094800px;}
.ls7{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls16{letter-spacing:-0.063600px;}
.ls9{letter-spacing:-0.008400px;}
.ls5{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.016560px;}
.ls10{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.047520px;}
.ls11{letter-spacing:0.048960px;}
.ls21{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls4{letter-spacing:0.074160px;}
.ls23{letter-spacing:0.086400px;}
.ls2{letter-spacing:0.090000px;}
.ls24{letter-spacing:0.092160px;}
.ls1{letter-spacing:0.093600px;}
.ls25{letter-spacing:0.098400px;}
.ls19{letter-spacing:0.105600px;}
.ls28{letter-spacing:0.116400px;}
.ls18{letter-spacing:0.118200px;}
.ls6{letter-spacing:0.144000px;}
.lse{letter-spacing:0.146400px;}
.lsc{letter-spacing:0.173400px;}
.ls20{letter-spacing:0.180000px;}
.ls2b{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:4.413600px;}
.ls1b{letter-spacing:6.213600px;}
.ls14{letter-spacing:7.293600px;}
.ls1a{letter-spacing:14.853600px;}
.ls1c{letter-spacing:41.966640px;}
.ls1f{letter-spacing:45.926640px;}
.ls1e{letter-spacing:46.046640px;}
.ls27{letter-spacing:47.726640px;}
.ls13{letter-spacing:54.926640px;}
.ls22{letter-spacing:63.566640px;}
.ls26{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.344600px;}
.ws11{word-spacing:-13.342800px;}
.wse{word-spacing:-13.332000px;}
.ws10{word-spacing:-13.324800px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.162800px;}
.ws2{word-spacing:-13.131600px;}
.ws12{word-spacing:-13.072800px;}
.ws5{word-spacing:-13.039800px;}
.wsf{word-spacing:-12.966000px;}
.wsd{word-spacing:-10.550160px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:0.000000px;}
.ws7{word-spacing:4.304880px;}
._c{margin-left:-3.639600px;}
._4{margin-left:-2.404800px;}
._0{margin-left:-1.110000px;}
._1{width:1.146720px;}
._8{width:2.946000px;}
._5{width:4.089240px;}
._3{width:5.530800px;}
._2{width:6.613200px;}
._e{width:7.755600px;}
._9{width:8.837400px;}
._10{width:9.980401px;}
._12{width:11.001479px;}
._a{width:12.204600px;}
._f{width:14.887320px;}
._b{width:16.172400px;}
._6{width:17.735400px;}
._7{width:18.785400px;}
._d{width:20.621400px;}
._11{width:22.545000px;}
._1e{width:24.048000px;}
._1f{width:25.310520px;}
._27{width:26.585520px;}
._25{width:29.158200px;}
._26{width:30.180240px;}
._19{width:31.442760px;}
._15{width:32.524920px;}
._16{width:34.027920px;}
._21{width:35.861400px;}
._22{width:37.422840px;}
._20{width:38.536920px;}
._23{width:39.588840px;}
._24{width:41.245680px;}
._13{width:46.713240px;}
._17{width:48.156120px;}
._2b{width:52.388280px;}
._2c{width:54.234600px;}
._1b{width:56.091960px;}
._2a{width:59.218200px;}
._18{width:75.510720px;}
._1c{width:77.795280px;}
._28{width:89.879400px;}
._29{width:90.901440px;}
._14{width:110.440440px;}
._1a{width:132.925320px;}
._1d{width:153.847080px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y97{bottom:7.830000px;}
.y9a{bottom:7.920000px;}
.yf2{bottom:11.070000px;}
.ycb{bottom:25.380000px;}
.yda{bottom:25.410000px;}
.yc9{bottom:25.470000px;}
.yc8{bottom:43.020000px;}
.ye8{bottom:52.740000px;}
.yfb{bottom:52.770000px;}
.yf4{bottom:52.830000px;}
.ye7{bottom:70.380000px;}
.yfa{bottom:70.410000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.yd7{bottom:97.680000px;}
.y1{bottom:101.640000px;}
.y59{bottom:111.270000px;}
.yc6{bottom:115.320000px;}
.yf9{bottom:118.200000px;}
.yc5{bottom:132.870000px;}
.y87{bottom:133.230000px;}
.yae{bottom:134.490000px;}
.yf8{bottom:135.750000px;}
.y28{bottom:142.500000px;}
.y58{bottom:146.910000px;}
.y174{bottom:147.270000px;}
.y86{bottom:150.780000px;}
.yad{bottom:152.130000px;}
.yf7{bottom:153.390000px;}
.y14d{bottom:155.280000px;}
.y27{bottom:160.050000px;}
.y57{bottom:164.460000px;}
.y173{bottom:164.910000px;}
.y85{bottom:168.330000px;}
.yac{bottom:169.680000px;}
.yd5{bottom:170.940000px;}
.y26{bottom:177.600000px;}
.y120{bottom:178.950000px;}
.y14c{bottom:182.190000px;}
.yab{bottom:187.230000px;}
.yf6{bottom:188.490000px;}
.y56{bottom:191.100000px;}
.y172{bottom:191.460000px;}
.y84{bottom:194.880000px;}
.y25{bottom:195.240000px;}
.y11f{bottom:196.590000px;}
.yd4{bottom:206.580000px;}
.y171{bottom:209.100000px;}
.y24{bottom:212.790000px;}
.y11e{bottom:214.140000px;}
.y14b{bottom:219.180000px;}
.yaa{bottom:220.260000px;}
.yd3{bottom:224.130000px;}
.y55{bottom:226.650000px;}
.y83{bottom:227.550000px;}
.y11d{bottom:231.780000px;}
.y170{bottom:235.650000px;}
.yd2{bottom:241.770000px;}
.y14a{bottom:246.090000px;}
.ya9{bottom:247.620000px;}
.y23{bottom:248.340000px;}
.y54{bottom:253.200000px;}
.yd1{bottom:259.320000px;}
.y82{bottom:263.100000px;}
.y22{bottom:265.980000px;}
.y11c{bottom:267.330000px;}
.y16f{bottom:270.840000px;}
.yf3{bottom:274.710000px;}
.ya8{bottom:274.890000px;}
.yd0{bottom:276.870000px;}
.y81{bottom:280.740000px;}
.y149{bottom:283.440000px;}
.y21{bottom:283.530000px;}
.y11b{bottom:284.880000px;}
.y53{bottom:288.840000px;}
.ycf{bottom:294.510000px;}
.y16e{bottom:297.390000px;}
.y80{bottom:298.290000px;}
.y20{bottom:301.170000px;}
.ya7{bottom:302.250000px;}
.y52{bottom:306.390000px;}
.yce{bottom:312.060000px;}
.y16d{bottom:314.940000px;}
.y7f{bottom:315.840000px;}
.y1f{bottom:318.720000px;}
.yf5{bottom:319.620000px;}
.y11a{bottom:320.520000px;}
.y51{bottom:323.940000px;}
.y148{bottom:331.770000px;}
.y16c{bottom:332.580000px;}
.y1e{bottom:336.270000px;}
.y119{bottom:338.070000px;}
.y50{bottom:341.580000px;}
.y7e{bottom:342.390000px;}
.ycd{bottom:347.700000px;}
.y147{bottom:349.320000px;}
.ya6{bottom:350.940000px;}
.y118{bottom:355.710000px;}
.y4f{bottom:359.130000px;}
.y1d{bottom:363.180000px;}
.yf1{bottom:364.530000px;}
.ycc{bottom:365.250000px;}
.y146{bottom:366.870000px;}
.y117{bottom:373.260000px;}
.y7d{bottom:377.940000px;}
.y145{bottom:384.510000px;}
.ya5{bottom:385.770000px;}
.y4e{bottom:386.040000px;}
.y116{bottom:390.810000px;}
.y7c{bottom:395.670000px;}
.ya4{bottom:398.010000px;}
.yc4{bottom:398.280000px;}
.y144{bottom:402.060000px;}
.y16b{bottom:403.320000px;}
.y115{bottom:408.450000px;}
.y1c{bottom:411.780000px;}
.y7b{bottom:413.220000px;}
.yf0{bottom:416.460000px;}
.y143{bottom:419.700000px;}
.ya3{bottom:425.370000px;}
.y114{bottom:426.000000px;}
.y16a{bottom:429.870000px;}
.y7a{bottom:430.770000px;}
.y4d{bottom:434.370000px;}
.y142{bottom:437.250000px;}
.yca{bottom:443.190000px;}
.y113{bottom:443.640000px;}
.y169{bottom:447.510000px;}
.y79{bottom:448.410000px;}
.y1b{bottom:448.860000px;}
.y4c{bottom:451.920000px;}
.yef{bottom:452.010000px;}
.ya2{bottom:452.640000px;}
.y141{bottom:454.800000px;}
.y112{bottom:461.190000px;}
.y168{bottom:465.060000px;}
.y78{bottom:465.960000px;}
.y1a{bottom:466.410000px;}
.y4b{bottom:469.470000px;}
.yee{bottom:469.650000px;}
.y77{bottom:483.540000px;}
.y19{bottom:484.080000px;}
.y4a{bottom:487.140000px;}
.yed{bottom:487.230000px;}
.yc7{bottom:488.130000px;}
.y140{bottom:490.470000px;}
.y167{bottom:491.730000px;}
.y111{bottom:496.770000px;}
.y76{bottom:501.180000px;}
.ya1{bottom:501.360000px;}
.y18{bottom:501.630000px;}
.y49{bottom:504.690000px;}
.yec{bottom:504.870000px;}
.y13f{bottom:508.020000px;}
.y166{bottom:509.280000px;}
.y75{bottom:518.820000px;}
.y17{bottom:519.180000px;}
.y48{bottom:522.330000px;}
.yeb{bottom:522.420000px;}
.y110{bottom:523.860000px;}
.y13e{bottom:525.660000px;}
.y165{bottom:526.830000px;}
.y74{bottom:536.370000px;}
.y16{bottom:536.820000px;}
.ya0{bottom:537.000000px;}
.y10f{bottom:541.410000px;}
.y13d{bottom:543.210000px;}
.yc3{bottom:550.590000px;}
.y164{bottom:553.470000px;}
.y73{bottom:553.920000px;}
.y15{bottom:554.370000px;}
.y9f{bottom:554.550000px;}
.y47{bottom:557.880000px;}
.yea{bottom:558.060000px;}
.y10e{bottom:559.050000px;}
.y13c{bottom:560.760000px;}
.y163{bottom:571.020000px;}
.y72{bottom:571.560000px;}
.y14{bottom:571.920000px;}
.y9e{bottom:572.190000px;}
.y46{bottom:575.430000px;}
.y10d{bottom:576.600000px;}
.y13b{bottom:578.400000px;}
.y71{bottom:589.110000px;}
.y13{bottom:589.560000px;}
.y9d{bottom:589.740000px;}
.ye6{bottom:591.000000px;}
.y45{bottom:593.070000px;}
.y10c{bottom:594.150000px;}
.y13a{bottom:595.950000px;}
.y162{bottom:597.660000px;}
.yc2{bottom:599.370000px;}
.y70{bottom:606.750000px;}
.y12{bottom:607.110000px;}
.y44{bottom:610.620000px;}
.y10b{bottom:611.790000px;}
.y161{bottom:615.210000px;}
.y6f{bottom:624.300000px;}
.y9c{bottom:624.570000px;}
.y11{bottom:624.750000px;}
.y10a{bottom:629.340000px;}
.y139{bottom:631.590000px;}
.y160{bottom:632.760000px;}
.yc1{bottom:634.920000px;}
.ye9{bottom:635.910000px;}
.y9b{bottom:636.810000px;}
.y6e{bottom:641.940000px;}
.y10{bottom:642.300000px;}
.y43{bottom:646.260000px;}
.y109{bottom:646.980000px;}
.y138{bottom:649.140000px;}
.yc0{bottom:652.470000px;}
.y15f{bottom:659.400000px;}
.y6d{bottom:659.490000px;}
.yf{bottom:659.850000px;}
.y42{bottom:663.810000px;}
.y99{bottom:664.080000px;}
.y108{bottom:664.530000px;}
.y137{bottom:666.690000px;}
.ybf{bottom:670.110000px;}
.y15e{bottom:676.950000px;}
.y6c{bottom:677.130000px;}
.ye{bottom:677.490000px;}
.ye5{bottom:680.820000px;}
.y41{bottom:681.360000px;}
.y107{bottom:682.080000px;}
.ybe{bottom:687.660000px;}
.y98{bottom:691.440000px;}
.y15d{bottom:694.590000px;}
.y6b{bottom:694.680000px;}
.yd{bottom:695.040000px;}
.y40{bottom:699.000000px;}
.y106{bottom:699.720000px;}
.y136{bottom:702.330000px;}
.yc{bottom:712.680000px;}
.ybd{bottom:714.300000px;}
.y3f{bottom:716.550000px;}
.y96{bottom:718.800000px;}
.y135{bottom:719.880000px;}
.y15c{bottom:721.140000px;}
.y6a{bottom:721.320000px;}
.ye4{bottom:729.510000px;}
.y3e{bottom:734.190000px;}
.y105{bottom:735.270000px;}
.y134{bottom:737.520000px;}
.y15b{bottom:738.690000px;}
.yb{bottom:739.590000px;}
.ybc{bottom:752.730000px;}
.y104{bottom:752.820000px;}
.y133{bottom:755.070000px;}
.y15a{bottom:756.330000px;}
.y69{bottom:756.870000px;}
.ye3{bottom:765.150000px;}
.y95{bottom:767.490000px;}
.y3d{bottom:769.740000px;}
.ybb{bottom:770.460000px;}
.y132{bottom:772.620000px;}
.y68{bottom:774.510000px;}
.ye2{bottom:782.700000px;}
.y159{bottom:782.880000px;}
.y3c{bottom:787.290000px;}
.ya{bottom:787.830000px;}
.yba{bottom:788.010000px;}
.y94{bottom:794.040000px;}
.ye1{bottom:800.250000px;}
.y158{bottom:800.520000px;}
.y67{bottom:801.060000px;}
.y3b{bottom:804.930000px;}
.yb9{bottom:805.560000px;}
.y103{bottom:805.650000px;}
.y131{bottom:808.260000px;}
.ye0{bottom:817.890000px;}
.y157{bottom:818.070000px;}
.y3a{bottom:822.480000px;}
.yb8{bottom:823.110000px;}
.y9{bottom:823.380000px;}
.y130{bottom:825.810000px;}
.y93{bottom:829.950000px;}
.y102{bottom:832.560000px;}
.y66{bottom:833.640000px;}
.ydf{bottom:835.440000px;}
.y12f{bottom:843.450000px;}
.y156{bottom:844.620000px;}
.y65{bottom:851.280000px;}
.yde{bottom:853.080000px;}
.y39{bottom:858.030000px;}
.yb7{bottom:859.110000px;}
.y8{bottom:859.200000px;}
.y12e{bottom:861.000000px;}
.y155{bottom:862.260000px;}
.y64{bottom:868.830000px;}
.ydd{bottom:870.630000px;}
.y38{bottom:875.670000px;}
.y92{bottom:878.280000px;}
.y12d{bottom:878.550000px;}
.y101{bottom:880.800000px;}
.yb6{bottom:886.470000px;}
.y154{bottom:888.810000px;}
.y37{bottom:893.220000px;}
.y63{bottom:895.380000px;}
.y91{bottom:895.830000px;}
.y12c{bottom:896.190000px;}
.y100{bottom:898.350000px;}
.y7{bottom:898.980000px;}
.ydc{bottom:906.270000px;}
.y153{bottom:906.450000px;}
.y36{bottom:910.860000px;}
.y90{bottom:913.380000px;}
.y12b{bottom:913.740000px;}
.yb5{bottom:913.830000px;}
.yff{bottom:915.990000px;}
.y6{bottom:916.980000px;}
.ydb{bottom:923.820000px;}
.y62{bottom:927.960000px;}
.y35{bottom:928.410000px;}
.y8f{bottom:931.020000px;}
.y12a{bottom:932.190000px;}
.y152{bottom:933.000000px;}
.yfe{bottom:933.540000px;}
.yb4{bottom:941.190000px;}
.y34{bottom:945.960000px;}
.y8e{bottom:948.570000px;}
.y5{bottom:949.290000px;}
.y129{bottom:949.740000px;}
.yfd{bottom:951.090000px;}
.yd6{bottom:956.850000px;}
.y151{bottom:959.550000px;}
.y61{bottom:963.600000px;}
.y128{bottom:967.290000px;}
.yfc{bottom:968.730000px;}
.y8d{bottom:975.210000px;}
.y150{bottom:977.190000px;}
.y60{bottom:981.150000px;}
.y33{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.yb3{bottom:989.880000px;}
.y127{bottom:994.740000px;}
.y32{bottom:999.150000px;}
.yd9{bottom:1001.760000px;}
.y14f{bottom:1003.740000px;}
.y5f{bottom:1007.790000px;}
.y8c{bottom:1010.790000px;}
.y3{bottom:1012.320000px;}
.y31{bottom:1016.820000px;}
.y14e{bottom:1021.320000px;}
.yb2{bottom:1024.740000px;}
.y8b{bottom:1028.340000px;}
.y126{bottom:1030.320000px;}
.yb1{bottom:1036.890000px;}
.y5e{bottom:1043.370000px;}
.y8a{bottom:1045.980000px;}
.yd8{bottom:1046.700000px;}
.y125{bottom:1047.960000px;}
.y30{bottom:1052.370000px;}
.y5d{bottom:1060.920000px;}
.y89{bottom:1063.530000px;}
.yb0{bottom:1064.250000px;}
.y124{bottom:1065.510000px;}
.y2f{bottom:1069.920000px;}
.y5c{bottom:1078.560000px;}
.y123{bottom:1083.150000px;}
.y2e{bottom:1087.560000px;}
.y88{bottom:1090.080000px;}
.yaf{bottom:1091.610000px;}
.y5b{bottom:1096.110000px;}
.y122{bottom:1100.700000px;}
.y2d{bottom:1105.110000px;}
.y5a{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y121{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hc{height:26.550000px;}
.hd{height:26.640000px;}
.hf{height:26.670000px;}
.h18{height:29.790000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.he{height:40.539023px;}
.h13{height:44.100000px;}
.h16{height:44.130000px;}
.h15{height:44.190000px;}
.h12{height:44.220000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.ha{height:59.973223px;}
.h11{height:61.740000px;}
.hb{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h17{height:89.100000px;}
.h19{height:89.130000px;}
.h14{height:134.040000px;}
.h10{height:151.590000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:24.390000px;}
.w14{width:36.630000px;}
.w1b{width:36.720000px;}
.w15{width:40.410000px;}
.w4{width:40.500000px;}
.w5{width:43.470000px;}
.w18{width:43.500000px;}
.w13{width:43.590000px;}
.w6{width:51.750000px;}
.w11{width:55.440000px;}
.w1a{width:60.120000px;}
.w7{width:75.990000px;}
.w8{width:76.050000px;}
.w17{width:81.180000px;}
.w12{width:91.350000px;}
.wc{width:106.200000px;}
.wd{width:106.860000px;}
.we{width:106.920000px;}
.wb{width:107.460000px;}
.w26{width:107.670000px;}
.wa{width:109.170000px;}
.w27{width:115.380000px;}
.w20{width:116.040000px;}
.w2a{width:138.780000px;}
.w1d{width:141.330000px;}
.w24{width:142.560000px;}
.w1e{width:143.460000px;}
.w21{width:146.610000px;}
.w3{width:148.680000px;}
.w29{width:152.490000px;}
.w23{width:153.030000px;}
.w10{width:174.630000px;}
.wf{width:252.540000px;}
.w19{width:260.820000px;}
.w16{width:427.890000px;}
.w1c{width:436.170000px;}
.w25{width:458.580000px;}
.w2b{width:462.900000px;}
.w1f{width:469.380000px;}
.w22{width:491.610000px;}
.w28{width:531.210000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.650000px;}
.x1{left:68.040000px;}
.x5{left:95.039987px;}
.x31{left:111.239987px;}
.x4{left:122.039987px;}
.x2f{left:149.039987px;}
.xf{left:176.790000px;}
.x2a{left:185.520000px;}
.x2{left:201.539987px;}
.x28{left:210.900000px;}
.x6{left:214.050000px;}
.x2c{left:222.600000px;}
.x20{left:228.540000px;}
.x14{left:232.680000px;}
.x22{left:284.700000px;}
.x10{left:286.680000px;}
.x16{left:288.840000px;}
.x2e{left:293.250000px;}
.xe{left:295.589987px;}
.x13{left:303.689987px;}
.x1b{left:309.270000px;}
.x2b{left:332.850000px;}
.x23{left:337.170000px;}
.x17{left:341.400000px;}
.x29{left:355.080000px;}
.x30{left:361.560000px;}
.x8{left:363.450000px;}
.x2d{left:365.880000px;}
.x1c{left:391.260000px;}
.x18{left:393.870000px;}
.x11{left:394.950000px;}
.x24{left:398.010000px;}
.x9{left:404.670000px;}
.x1d{left:443.730000px;}
.xa{left:448.950000px;}
.x15{left:485.940000px;}
.x1e{left:488.010000px;}
.x21{left:490.080000px;}
.xb{left:501.420000px;}
.x19{left:530.250000px;}
.x1f{left:532.230000px;}
.x25{left:534.390000px;}
.x1a{left:567.690000px;}
.x26{left:571.830000px;}
.xc{left:578.130000px;}
.x12{left:609.540000px;}
.x27{left:612.960000px;}
.xd{left:654.900000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls2a{letter-spacing:-0.395200pt;}
.ls1d{letter-spacing:-0.231467pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls29{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.107733pt;}
.lsa{letter-spacing:-0.084267pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls16{letter-spacing:-0.056533pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.014720pt;}
.ls10{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.042240pt;}
.ls11{letter-spacing:0.043520pt;}
.ls21{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls4{letter-spacing:0.065920pt;}
.ls23{letter-spacing:0.076800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls24{letter-spacing:0.081920pt;}
.ls1{letter-spacing:0.083200pt;}
.ls25{letter-spacing:0.087467pt;}
.ls19{letter-spacing:0.093867pt;}
.ls28{letter-spacing:0.103467pt;}
.ls18{letter-spacing:0.105067pt;}
.ls6{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.130133pt;}
.lsc{letter-spacing:0.154133pt;}
.ls20{letter-spacing:0.160000pt;}
.ls2b{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:3.923200pt;}
.ls1b{letter-spacing:5.523200pt;}
.ls14{letter-spacing:6.483200pt;}
.ls1a{letter-spacing:13.203200pt;}
.ls1c{letter-spacing:37.303680pt;}
.ls1f{letter-spacing:40.823680pt;}
.ls1e{letter-spacing:40.930347pt;}
.ls27{letter-spacing:42.423680pt;}
.ls13{letter-spacing:48.823680pt;}
.ls22{letter-spacing:56.503680pt;}
.ls26{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.861867pt;}
.ws11{word-spacing:-11.860267pt;}
.wse{word-spacing:-11.850667pt;}
.ws10{word-spacing:-11.844267pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.700267pt;}
.ws2{word-spacing:-11.672533pt;}
.ws12{word-spacing:-11.620267pt;}
.ws5{word-spacing:-11.590933pt;}
.wsf{word-spacing:-11.525333pt;}
.wsd{word-spacing:-9.377920pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:0.000000pt;}
.ws7{word-spacing:3.826560pt;}
._c{margin-left:-3.235200pt;}
._4{margin-left:-2.137600pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.019307pt;}
._8{width:2.618667pt;}
._5{width:3.634880pt;}
._3{width:4.916266pt;}
._2{width:5.878400pt;}
._e{width:6.893867pt;}
._9{width:7.855466pt;}
._10{width:8.871468pt;}
._12{width:9.779092pt;}
._a{width:10.848534pt;}
._f{width:13.233173pt;}
._b{width:14.375467pt;}
._6{width:15.764800pt;}
._7{width:16.698134pt;}
._d{width:18.330134pt;}
._11{width:20.040000pt;}
._1e{width:21.376000pt;}
._1f{width:22.498240pt;}
._27{width:23.631573pt;}
._25{width:25.918400pt;}
._26{width:26.826880pt;}
._19{width:27.949120pt;}
._15{width:28.911040pt;}
._16{width:30.247040pt;}
._21{width:31.876800pt;}
._22{width:33.264747pt;}
._20{width:34.255040pt;}
._23{width:35.190080pt;}
._24{width:36.662827pt;}
._13{width:41.522880pt;}
._17{width:42.805440pt;}
._2b{width:46.567360pt;}
._2c{width:48.208533pt;}
._1b{width:49.859520pt;}
._2a{width:52.638400pt;}
._18{width:67.120640pt;}
._1c{width:69.151360pt;}
._28{width:79.892800pt;}
._29{width:80.801280pt;}
._14{width:98.169280pt;}
._1a{width:118.155840pt;}
._1d{width:136.752960pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:6.960000pt;}
.y9a{bottom:7.040000pt;}
.yf2{bottom:9.840000pt;}
.ycb{bottom:22.560000pt;}
.yda{bottom:22.586667pt;}
.yc9{bottom:22.640000pt;}
.yc8{bottom:38.240000pt;}
.ye8{bottom:46.880000pt;}
.yfb{bottom:46.906667pt;}
.yf4{bottom:46.960000pt;}
.ye7{bottom:62.560000pt;}
.yfa{bottom:62.586667pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.yd7{bottom:86.826667pt;}
.y1{bottom:90.346667pt;}
.y59{bottom:98.906667pt;}
.yc6{bottom:102.506667pt;}
.yf9{bottom:105.066667pt;}
.yc5{bottom:118.106667pt;}
.y87{bottom:118.426667pt;}
.yae{bottom:119.546667pt;}
.yf8{bottom:120.666667pt;}
.y28{bottom:126.666667pt;}
.y58{bottom:130.586667pt;}
.y174{bottom:130.906667pt;}
.y86{bottom:134.026667pt;}
.yad{bottom:135.226667pt;}
.yf7{bottom:136.346667pt;}
.y14d{bottom:138.026667pt;}
.y27{bottom:142.266667pt;}
.y57{bottom:146.186667pt;}
.y173{bottom:146.586667pt;}
.y85{bottom:149.626667pt;}
.yac{bottom:150.826667pt;}
.yd5{bottom:151.946667pt;}
.y26{bottom:157.866667pt;}
.y120{bottom:159.066667pt;}
.y14c{bottom:161.946667pt;}
.yab{bottom:166.426667pt;}
.yf6{bottom:167.546667pt;}
.y56{bottom:169.866667pt;}
.y172{bottom:170.186667pt;}
.y84{bottom:173.226667pt;}
.y25{bottom:173.546667pt;}
.y11f{bottom:174.746667pt;}
.yd4{bottom:183.626667pt;}
.y171{bottom:185.866667pt;}
.y24{bottom:189.146667pt;}
.y11e{bottom:190.346667pt;}
.y14b{bottom:194.826667pt;}
.yaa{bottom:195.786667pt;}
.yd3{bottom:199.226667pt;}
.y55{bottom:201.466667pt;}
.y83{bottom:202.266667pt;}
.y11d{bottom:206.026667pt;}
.y170{bottom:209.466667pt;}
.yd2{bottom:214.906667pt;}
.y14a{bottom:218.746667pt;}
.ya9{bottom:220.106667pt;}
.y23{bottom:220.746667pt;}
.y54{bottom:225.066667pt;}
.yd1{bottom:230.506667pt;}
.y82{bottom:233.866667pt;}
.y22{bottom:236.426667pt;}
.y11c{bottom:237.626667pt;}
.y16f{bottom:240.746667pt;}
.yf3{bottom:244.186667pt;}
.ya8{bottom:244.346667pt;}
.yd0{bottom:246.106667pt;}
.y81{bottom:249.546667pt;}
.y149{bottom:251.946667pt;}
.y21{bottom:252.026667pt;}
.y11b{bottom:253.226667pt;}
.y53{bottom:256.746667pt;}
.ycf{bottom:261.786667pt;}
.y16e{bottom:264.346667pt;}
.y80{bottom:265.146667pt;}
.y20{bottom:267.706667pt;}
.ya7{bottom:268.666667pt;}
.y52{bottom:272.346667pt;}
.yce{bottom:277.386667pt;}
.y16d{bottom:279.946667pt;}
.y7f{bottom:280.746667pt;}
.y1f{bottom:283.306667pt;}
.yf5{bottom:284.106667pt;}
.y11a{bottom:284.906667pt;}
.y51{bottom:287.946667pt;}
.y148{bottom:294.906667pt;}
.y16c{bottom:295.626667pt;}
.y1e{bottom:298.906667pt;}
.y119{bottom:300.506667pt;}
.y50{bottom:303.626667pt;}
.y7e{bottom:304.346667pt;}
.ycd{bottom:309.066667pt;}
.y147{bottom:310.506667pt;}
.ya6{bottom:311.946667pt;}
.y118{bottom:316.186667pt;}
.y4f{bottom:319.226667pt;}
.y1d{bottom:322.826667pt;}
.yf1{bottom:324.026667pt;}
.ycc{bottom:324.666667pt;}
.y146{bottom:326.106667pt;}
.y117{bottom:331.786667pt;}
.y7d{bottom:335.946667pt;}
.y145{bottom:341.786667pt;}
.ya5{bottom:342.906667pt;}
.y4e{bottom:343.146667pt;}
.y116{bottom:347.386667pt;}
.y7c{bottom:351.706667pt;}
.ya4{bottom:353.786667pt;}
.yc4{bottom:354.026667pt;}
.y144{bottom:357.386667pt;}
.y16b{bottom:358.506667pt;}
.y115{bottom:363.066667pt;}
.y1c{bottom:366.026667pt;}
.y7b{bottom:367.306667pt;}
.yf0{bottom:370.186667pt;}
.y143{bottom:373.066667pt;}
.ya3{bottom:378.106667pt;}
.y114{bottom:378.666667pt;}
.y16a{bottom:382.106667pt;}
.y7a{bottom:382.906667pt;}
.y4d{bottom:386.106667pt;}
.y142{bottom:388.666667pt;}
.yca{bottom:393.946667pt;}
.y113{bottom:394.346667pt;}
.y169{bottom:397.786667pt;}
.y79{bottom:398.586667pt;}
.y1b{bottom:398.986667pt;}
.y4c{bottom:401.706667pt;}
.yef{bottom:401.786667pt;}
.ya2{bottom:402.346667pt;}
.y141{bottom:404.266667pt;}
.y112{bottom:409.946667pt;}
.y168{bottom:413.386667pt;}
.y78{bottom:414.186667pt;}
.y1a{bottom:414.586667pt;}
.y4b{bottom:417.306667pt;}
.yee{bottom:417.466667pt;}
.y77{bottom:429.813333pt;}
.y19{bottom:430.293333pt;}
.y4a{bottom:433.013333pt;}
.yed{bottom:433.093333pt;}
.yc7{bottom:433.893333pt;}
.y140{bottom:435.973333pt;}
.y167{bottom:437.093333pt;}
.y111{bottom:441.573333pt;}
.y76{bottom:445.493333pt;}
.ya1{bottom:445.653333pt;}
.y18{bottom:445.893333pt;}
.y49{bottom:448.613333pt;}
.yec{bottom:448.773333pt;}
.y13f{bottom:451.573333pt;}
.y166{bottom:452.693333pt;}
.y75{bottom:461.173333pt;}
.y17{bottom:461.493333pt;}
.y48{bottom:464.293333pt;}
.yeb{bottom:464.373333pt;}
.y110{bottom:465.653333pt;}
.y13e{bottom:467.253333pt;}
.y165{bottom:468.293333pt;}
.y74{bottom:476.773333pt;}
.y16{bottom:477.173333pt;}
.ya0{bottom:477.333333pt;}
.y10f{bottom:481.253333pt;}
.y13d{bottom:482.853333pt;}
.yc3{bottom:489.413333pt;}
.y164{bottom:491.973333pt;}
.y73{bottom:492.373333pt;}
.y15{bottom:492.773333pt;}
.y9f{bottom:492.933333pt;}
.y47{bottom:495.893333pt;}
.yea{bottom:496.053333pt;}
.y10e{bottom:496.933333pt;}
.y13c{bottom:498.453333pt;}
.y163{bottom:507.573333pt;}
.y72{bottom:508.053333pt;}
.y14{bottom:508.373333pt;}
.y9e{bottom:508.613333pt;}
.y46{bottom:511.493333pt;}
.y10d{bottom:512.533333pt;}
.y13b{bottom:514.133333pt;}
.y71{bottom:523.653333pt;}
.y13{bottom:524.053333pt;}
.y9d{bottom:524.213333pt;}
.ye6{bottom:525.333333pt;}
.y45{bottom:527.173333pt;}
.y10c{bottom:528.133333pt;}
.y13a{bottom:529.733333pt;}
.y162{bottom:531.253333pt;}
.yc2{bottom:532.773333pt;}
.y70{bottom:539.333333pt;}
.y12{bottom:539.653333pt;}
.y44{bottom:542.773333pt;}
.y10b{bottom:543.813333pt;}
.y161{bottom:546.853333pt;}
.y6f{bottom:554.933333pt;}
.y9c{bottom:555.173333pt;}
.y11{bottom:555.333333pt;}
.y10a{bottom:559.413333pt;}
.y139{bottom:561.413333pt;}
.y160{bottom:562.453333pt;}
.yc1{bottom:564.373333pt;}
.ye9{bottom:565.253333pt;}
.y9b{bottom:566.053333pt;}
.y6e{bottom:570.613333pt;}
.y10{bottom:570.933333pt;}
.y43{bottom:574.453333pt;}
.y109{bottom:575.093333pt;}
.y138{bottom:577.013333pt;}
.yc0{bottom:579.973333pt;}
.y15f{bottom:586.133333pt;}
.y6d{bottom:586.213333pt;}
.yf{bottom:586.533333pt;}
.y42{bottom:590.053333pt;}
.y99{bottom:590.293333pt;}
.y108{bottom:590.693333pt;}
.y137{bottom:592.613333pt;}
.ybf{bottom:595.653333pt;}
.y15e{bottom:601.733333pt;}
.y6c{bottom:601.893333pt;}
.ye{bottom:602.213333pt;}
.ye5{bottom:605.173333pt;}
.y41{bottom:605.653333pt;}
.y107{bottom:606.293333pt;}
.ybe{bottom:611.253333pt;}
.y98{bottom:614.613333pt;}
.y15d{bottom:617.413333pt;}
.y6b{bottom:617.493333pt;}
.yd{bottom:617.813333pt;}
.y40{bottom:621.333333pt;}
.y106{bottom:621.973333pt;}
.y136{bottom:624.293333pt;}
.yc{bottom:633.493333pt;}
.ybd{bottom:634.933333pt;}
.y3f{bottom:636.933333pt;}
.y96{bottom:638.933333pt;}
.y135{bottom:639.893333pt;}
.y15c{bottom:641.013333pt;}
.y6a{bottom:641.173333pt;}
.ye4{bottom:648.453333pt;}
.y3e{bottom:652.613333pt;}
.y105{bottom:653.573333pt;}
.y134{bottom:655.573333pt;}
.y15b{bottom:656.613333pt;}
.yb{bottom:657.413333pt;}
.ybc{bottom:669.093333pt;}
.y104{bottom:669.173333pt;}
.y133{bottom:671.173333pt;}
.y15a{bottom:672.293333pt;}
.y69{bottom:672.773333pt;}
.ye3{bottom:680.133333pt;}
.y95{bottom:682.213333pt;}
.y3d{bottom:684.213333pt;}
.ybb{bottom:684.853333pt;}
.y132{bottom:686.773333pt;}
.y68{bottom:688.453333pt;}
.ye2{bottom:695.733333pt;}
.y159{bottom:695.893333pt;}
.y3c{bottom:699.813333pt;}
.ya{bottom:700.293333pt;}
.yba{bottom:700.453333pt;}
.y94{bottom:705.813333pt;}
.ye1{bottom:711.333333pt;}
.y158{bottom:711.573333pt;}
.y67{bottom:712.053333pt;}
.y3b{bottom:715.493333pt;}
.yb9{bottom:716.053333pt;}
.y103{bottom:716.133333pt;}
.y131{bottom:718.453333pt;}
.ye0{bottom:727.013333pt;}
.y157{bottom:727.173333pt;}
.y3a{bottom:731.093333pt;}
.yb8{bottom:731.653333pt;}
.y9{bottom:731.893333pt;}
.y130{bottom:734.053333pt;}
.y93{bottom:737.733333pt;}
.y102{bottom:740.053333pt;}
.y66{bottom:741.013333pt;}
.ydf{bottom:742.613333pt;}
.y12f{bottom:749.733333pt;}
.y156{bottom:750.773333pt;}
.y65{bottom:756.693333pt;}
.yde{bottom:758.293333pt;}
.y39{bottom:762.693333pt;}
.yb7{bottom:763.653333pt;}
.y8{bottom:763.733333pt;}
.y12e{bottom:765.333333pt;}
.y155{bottom:766.453333pt;}
.y64{bottom:772.293333pt;}
.ydd{bottom:773.893333pt;}
.y38{bottom:778.373333pt;}
.y92{bottom:780.693333pt;}
.y12d{bottom:780.933333pt;}
.y101{bottom:782.933333pt;}
.yb6{bottom:787.973333pt;}
.y154{bottom:790.053333pt;}
.y37{bottom:793.973333pt;}
.y63{bottom:795.893333pt;}
.y91{bottom:796.293333pt;}
.y12c{bottom:796.613333pt;}
.y100{bottom:798.533333pt;}
.y7{bottom:799.093333pt;}
.ydc{bottom:805.573333pt;}
.y153{bottom:805.733333pt;}
.y36{bottom:809.653333pt;}
.y90{bottom:811.893333pt;}
.y12b{bottom:812.213333pt;}
.yb5{bottom:812.293333pt;}
.yff{bottom:814.213333pt;}
.y6{bottom:815.093333pt;}
.ydb{bottom:821.173333pt;}
.y62{bottom:824.853333pt;}
.y35{bottom:825.253333pt;}
.y8f{bottom:827.573333pt;}
.y12a{bottom:828.613333pt;}
.y152{bottom:829.333333pt;}
.yfe{bottom:829.813333pt;}
.yb4{bottom:836.613333pt;}
.y34{bottom:840.853333pt;}
.y8e{bottom:843.173333pt;}
.y5{bottom:843.813333pt;}
.y129{bottom:844.213333pt;}
.yfd{bottom:845.413333pt;}
.yd6{bottom:850.533333pt;}
.y151{bottom:852.933333pt;}
.y61{bottom:856.533333pt;}
.y128{bottom:859.813333pt;}
.yfc{bottom:861.093333pt;}
.y8d{bottom:866.853333pt;}
.y150{bottom:868.613333pt;}
.y60{bottom:872.133333pt;}
.y33{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.yb3{bottom:879.893333pt;}
.y127{bottom:884.213333pt;}
.y32{bottom:888.133333pt;}
.yd9{bottom:890.453333pt;}
.y14f{bottom:892.213333pt;}
.y5f{bottom:895.813333pt;}
.y8c{bottom:898.480000pt;}
.y3{bottom:899.840000pt;}
.y31{bottom:903.840000pt;}
.y14e{bottom:907.840000pt;}
.yb2{bottom:910.880000pt;}
.y8b{bottom:914.080000pt;}
.y126{bottom:915.840000pt;}
.yb1{bottom:921.680000pt;}
.y5e{bottom:927.440000pt;}
.y8a{bottom:929.760000pt;}
.yd8{bottom:930.400000pt;}
.y125{bottom:931.520000pt;}
.y30{bottom:935.440000pt;}
.y5d{bottom:943.040000pt;}
.y89{bottom:945.360000pt;}
.yb0{bottom:946.000000pt;}
.y124{bottom:947.120000pt;}
.y2f{bottom:951.040000pt;}
.y5c{bottom:958.720000pt;}
.y123{bottom:962.800000pt;}
.y2e{bottom:966.720000pt;}
.y88{bottom:968.960000pt;}
.yaf{bottom:970.320000pt;}
.y5b{bottom:974.320000pt;}
.y122{bottom:978.400000pt;}
.y2d{bottom:982.320000pt;}
.y5a{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y121{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.hd{height:23.680000pt;}
.hf{height:23.706667pt;}
.h18{height:26.480000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.he{height:36.034687pt;}
.h13{height:39.200000pt;}
.h16{height:39.226667pt;}
.h15{height:39.280000pt;}
.h12{height:39.306667pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.ha{height:53.309531pt;}
.h11{height:54.880000pt;}
.hb{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h17{height:79.200000pt;}
.h19{height:79.226667pt;}
.h14{height:119.146667pt;}
.h10{height:134.746667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:21.680000pt;}
.w14{width:32.560000pt;}
.w1b{width:32.640000pt;}
.w15{width:35.920000pt;}
.w4{width:36.000000pt;}
.w5{width:38.640000pt;}
.w18{width:38.666667pt;}
.w13{width:38.746667pt;}
.w6{width:46.000000pt;}
.w11{width:49.280000pt;}
.w1a{width:53.440000pt;}
.w7{width:67.546667pt;}
.w8{width:67.600000pt;}
.w17{width:72.160000pt;}
.w12{width:81.200000pt;}
.wc{width:94.400000pt;}
.wd{width:94.986667pt;}
.we{width:95.040000pt;}
.wb{width:95.520000pt;}
.w26{width:95.706667pt;}
.wa{width:97.040000pt;}
.w27{width:102.560000pt;}
.w20{width:103.146667pt;}
.w2a{width:123.360000pt;}
.w1d{width:125.626667pt;}
.w24{width:126.720000pt;}
.w1e{width:127.520000pt;}
.w21{width:130.320000pt;}
.w3{width:132.160000pt;}
.w29{width:135.546667pt;}
.w23{width:136.026667pt;}
.w10{width:155.226667pt;}
.wf{width:224.480000pt;}
.w19{width:231.840000pt;}
.w16{width:380.346667pt;}
.w1c{width:387.706667pt;}
.w25{width:407.626667pt;}
.w2b{width:411.466667pt;}
.w1f{width:417.226667pt;}
.w22{width:436.986667pt;}
.w28{width:472.186667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.800000pt;}
.x1{left:60.480000pt;}
.x5{left:84.479988pt;}
.x31{left:98.879988pt;}
.x4{left:108.479988pt;}
.x2f{left:132.479988pt;}
.xf{left:157.146667pt;}
.x2a{left:164.906667pt;}
.x2{left:179.146655pt;}
.x28{left:187.466667pt;}
.x6{left:190.266667pt;}
.x2c{left:197.866667pt;}
.x20{left:203.146667pt;}
.x14{left:206.826667pt;}
.x22{left:253.066667pt;}
.x10{left:254.826667pt;}
.x16{left:256.746667pt;}
.x2e{left:260.666667pt;}
.xe{left:262.746655pt;}
.x13{left:269.946655pt;}
.x1b{left:274.906667pt;}
.x2b{left:295.866667pt;}
.x23{left:299.706667pt;}
.x17{left:303.466667pt;}
.x29{left:315.626667pt;}
.x30{left:321.386667pt;}
.x8{left:323.066667pt;}
.x2d{left:325.226667pt;}
.x1c{left:347.786667pt;}
.x18{left:350.106667pt;}
.x11{left:351.066667pt;}
.x24{left:353.786667pt;}
.x9{left:359.706667pt;}
.x1d{left:394.426667pt;}
.xa{left:399.066667pt;}
.x15{left:431.946667pt;}
.x1e{left:433.786667pt;}
.x21{left:435.626667pt;}
.xb{left:445.706667pt;}
.x19{left:471.333333pt;}
.x1f{left:473.093333pt;}
.x25{left:475.013333pt;}
.x1a{left:504.613333pt;}
.x26{left:508.293333pt;}
.xc{left:513.893333pt;}
.x12{left:541.813333pt;}
.x27{left:544.853333pt;}
.xd{left:582.133333pt;}
.x3{left:704.053322pt;}
}




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