
    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_b8c327195112a0643c21cae7.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_80294b7dd5e1a72076aece85.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_6507cfb1b76926d0fc3c01e2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_2f5ebbf0b9ddd80d258a887e.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_e8f5b24946c2426035633095.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_71e1f934ac0f845464ad4d41.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_93c84c33a0193976a749da4a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.909180;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_9bcae12b490bc0389d140e1e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1431d17bcb721671f8671276.woff')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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_b130f0e1422bc0e931a0df76.woff')format("woff");}.ffa{font-family:ffa;line-height:0.972656;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:ffb;src:url('chunks/assets/font_8210496059a2b2828efd2b86.woff')format("woff");}.ffb{font-family:ffb;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;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v6{vertical-align:30.240000px;}
.v5{vertical-align:35.280000px;}
.ls13{letter-spacing:-0.444600px;}
.ls22{letter-spacing:-0.310800px;}
.ls11{letter-spacing:-0.274800px;}
.lsf{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls24{letter-spacing:-0.078000px;}
.ls18{letter-spacing:-0.045000px;}
.lsa{letter-spacing:-0.008400px;}
.ls17{letter-spacing:-0.004680px;}
.ls6{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000358px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls21{letter-spacing:0.098400px;}
.ls19{letter-spacing:0.107400px;}
.ls1a{letter-spacing:0.109800px;}
.ls14{letter-spacing:0.113400px;}
.ls1b{letter-spacing:0.114600px;}
.ls7{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.165600px;}
.ls10{letter-spacing:0.173400px;}
.ls23{letter-spacing:0.173520px;}
.ls16{letter-spacing:0.178800px;}
.ls1e{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.181200px;}
.ls20{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.425520px;}
.ls1c{letter-spacing:17.373600px;}
.ls1f{letter-spacing:47.726640px;}
.ls1d{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;}
.wsa{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.407600px;}
.ws9{word-spacing:-13.399800px;}
.wse{word-spacing:-13.392000px;}
.ws17{word-spacing:-13.339800px;}
.ws16{word-spacing:-13.324800px;}
.wsb{word-spacing:-13.275360px;}
.wsd{word-spacing:-13.226758px;}
.ws3{word-spacing:-13.226400px;}
.ws11{word-spacing:-13.221720px;}
.ws19{word-spacing:-13.148400px;}
.ws8{word-spacing:-13.039800px;}
.wsc{word-spacing:-12.951600px;}
.ws18{word-spacing:-12.915600px;}
.ws14{word-spacing:-10.648200px;}
.ws15{word-spacing:-10.533600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsf{word-spacing:-9.266400px;}
.ws12{word-spacing:-9.221400px;}
.ws10{word-spacing:-8.732400px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
.ws13{word-spacing:51.444360px;}
._a{margin-left:-3.552720px;}
._9{margin-left:-2.218800px;}
._0{margin-left:-1.110000px;}
._3{width:1.089528px;}
._4{width:3.006000px;}
._7{width:4.088400px;}
._8{width:5.410800px;}
._1{width:7.214040px;}
._2{width:8.816880px;}
._5{width:10.701600px;}
._6{width:11.983919px;}
._d{width:13.064280px;}
._b{width:14.566440px;}
._16{width:15.600000px;}
._10{width:16.761360px;}
._c{width:18.512640px;}
._1c{width:19.700520px;}
._1a{width:21.402720px;}
._19{width:22.424760px;}
._18{width:32.308200px;}
._15{width:48.119400px;}
._17{width:52.725240px;}
._f{width:86.071680px;}
._e{width:96.733080px;}
._12{width:124.869240px;}
._11{width:133.706880px;}
._14{width:196.789560px;}
._13{width:197.854920px;}
._1b{width:845.912640px;}
.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;}
.fs8{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y75{bottom:7.830000px;}
.y77{bottom:7.920000px;}
.y8c{bottom:8.280000px;}
.y8d{bottom:10.890000px;}
.ya5{bottom:25.380000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y7c{bottom:114.600000px;}
.yd0{bottom:123.780000px;}
.y126{bottom:125.130000px;}
.y5c{bottom:126.570000px;}
.yf9{bottom:134.490000px;}
.ycf{bottom:141.330000px;}
.y7b{bottom:141.870000px;}
.y28{bottom:142.320000px;}
.y125{bottom:142.680000px;}
.y5b{bottom:144.120000px;}
.yab{bottom:148.980000px;}
.yf8{bottom:152.130000px;}
.yce{bottom:158.970000px;}
.y27{bottom:159.870000px;}
.yaa{bottom:161.130000px;}
.y5a{bottom:161.670000px;}
.y7a{bottom:169.230000px;}
.y124{bottom:169.320000px;}
.ycd{bottom:176.520000px;}
.y26{bottom:177.510000px;}
.yf7{bottom:178.680000px;}
.y59{bottom:179.310000px;}
.y123{bottom:186.870000px;}
.ya9{bottom:188.490000px;}
.ycc{bottom:194.070000px;}
.y25{bottom:195.060000px;}
.y79{bottom:196.590000px;}
.y58{bottom:196.860000px;}
.yf6{bottom:205.320000px;}
.ycb{bottom:211.710000px;}
.y122{bottom:213.510000px;}
.y57{bottom:214.500000px;}
.ya8{bottom:215.760000px;}
.yf5{bottom:222.870000px;}
.y78{bottom:223.950000px;}
.yca{bottom:229.260000px;}
.y24{bottom:230.610000px;}
.y121{bottom:231.060000px;}
.y56{bottom:232.050000px;}
.yf4{bottom:240.420000px;}
.ya7{bottom:243.120000px;}
.yc9{bottom:246.900000px;}
.y23{bottom:248.250000px;}
.y55{bottom:249.600000px;}
.y76{bottom:251.220000px;}
.y120{bottom:257.610000px;}
.yc8{bottom:264.450000px;}
.y22{bottom:265.800000px;}
.yf3{bottom:267.060000px;}
.ya6{bottom:270.480000px;}
.y11f{bottom:275.250000px;}
.y54{bottom:276.240000px;}
.y74{bottom:278.580000px;}
.yc7{bottom:282.000000px;}
.y21{bottom:283.440000px;}
.yf2{bottom:284.610000px;}
.y11e{bottom:292.800000px;}
.ya4{bottom:297.840000px;}
.yc6{bottom:299.640000px;}
.y20{bottom:300.990000px;}
.yf1{bottom:302.250000px;}
.y53{bottom:312.150000px;}
.yc5{bottom:317.190000px;}
.y1f{bottom:318.540000px;}
.y11d{bottom:319.440000px;}
.y73{bottom:327.270000px;}
.yf0{bottom:328.800000px;}
.yc4{bottom:334.740000px;}
.y11c{bottom:336.990000px;}
.y1e{bottom:345.450000px;}
.yef{bottom:346.350000px;}
.yc3{bottom:352.380000px;}
.y72{bottom:354.180000px;}
.y11b{bottom:354.540000px;}
.y9b{bottom:360.030000px;}
.y52{bottom:360.390000px;}
.yee{bottom:363.990000px;}
.ya3{bottom:364.080000px;}
.yc2{bottom:369.930000px;}
.y9a{bottom:372.180000px;}
.y51{bottom:377.940000px;}
.y11a{bottom:381.180000px;}
.yc1{bottom:387.570000px;}
.yed{bottom:390.540000px;}
.y1d{bottom:394.050000px;}
.y50{bottom:395.580000px;}
.y119{bottom:398.730000px;}
.y71{bottom:399.180000px;}
.y99{bottom:399.540000px;}
.ya2{bottom:399.720000px;}
.yc0{bottom:405.120000px;}
.y70{bottom:406.740000px;}
.yec{bottom:408.090000px;}
.y4f{bottom:413.130000px;}
.ybf{bottom:422.670000px;}
.y118{bottom:425.370000px;}
.yeb{bottom:425.730000px;}
.y98{bottom:426.900000px;}
.y4e{bottom:430.770000px;}
.y1c{bottom:431.130000px;}
.ya1{bottom:434.550000px;}
.ybe{bottom:440.310000px;}
.y117{bottom:442.920000px;}
.ya0{bottom:445.980000px;}
.y6f{bottom:446.520000px;}
.y4d{bottom:448.320000px;}
.y1b{bottom:448.680000px;}
.yea{bottom:452.280000px;}
.y97{bottom:454.260000px;}
.ybd{bottom:457.860000px;}
.y4c{bottom:465.870000px;}
.y1a{bottom:466.230000px;}
.y116{bottom:469.470000px;}
.ye9{bottom:469.950000px;}
.ybc{bottom:475.530000px;}
.y6e{bottom:478.860000px;}
.y96{bottom:481.560000px;}
.y4b{bottom:483.540000px;}
.y19{bottom:483.900000px;}
.y115{bottom:487.140000px;}
.ye8{bottom:487.500000px;}
.ybb{bottom:493.080000px;}
.y6c{bottom:498.030000px;}
.y4a{bottom:501.090000px;}
.y18{bottom:501.450000px;}
.y114{bottom:504.690000px;}
.y95{bottom:508.920000px;}
.yba{bottom:510.630000px;}
.ye7{bottom:514.050000px;}
.y49{bottom:518.730000px;}
.y17{bottom:519.090000px;}
.y6d{bottom:520.440000px;}
.yb9{bottom:528.270000px;}
.y113{bottom:531.330000px;}
.ye6{bottom:531.690000px;}
.y16{bottom:536.640000px;}
.y48{bottom:545.640000px;}
.yb8{bottom:545.820000px;}
.ye5{bottom:549.240000px;}
.y6b{bottom:550.680000px;}
.y15{bottom:554.190000px;}
.y94{bottom:557.610000px;}
.y112{bottom:557.880000px;}
.yb7{bottom:563.460000px;}
.y6a{bottom:568.230000px;}
.y14{bottom:571.830000px;}
.y111{bottom:575.430000px;}
.ye4{bottom:575.880000px;}
.yb6{bottom:581.010000px;}
.y69{bottom:585.870000px;}
.y13{bottom:589.380000px;}
.y93{bottom:592.530000px;}
.ye3{bottom:593.430000px;}
.y47{bottom:593.880000px;}
.yb5{bottom:598.560000px;}
.y110{bottom:602.070000px;}
.y68{bottom:603.420000px;}
.y92{bottom:604.680000px;}
.y12{bottom:607.020000px;}
.y46{bottom:611.430000px;}
.yb4{bottom:616.200000px;}
.y10f{bottom:619.620000px;}
.ye2{bottom:619.980000px;}
.y11{bottom:624.570000px;}
.y45{bottom:629.070000px;}
.y91{bottom:632.040000px;}
.yb3{bottom:633.750000px;}
.ye1{bottom:637.620000px;}
.y67{bottom:639.060000px;}
.y10{bottom:642.120000px;}
.y10e{bottom:646.260000px;}
.y44{bottom:646.620000px;}
.yb2{bottom:651.390000px;}
.y66{bottom:656.610000px;}
.y90{bottom:659.310000px;}
.y10d{bottom:663.810000px;}
.y43{bottom:664.260000px;}
.ye0{bottom:664.530000px;}
.yb1{bottom:668.940000px;}
.yf{bottom:669.120000px;}
.y65{bottom:674.160000px;}
.y42{bottom:681.810000px;}
.yb0{bottom:686.490000px;}
.y8f{bottom:686.670000px;}
.y10c{bottom:690.360000px;}
.y64{bottom:691.800000px;}
.y41{bottom:699.360000px;}
.y10b{bottom:708.000000px;}
.y63{bottom:709.350000px;}
.ydf{bottom:712.770000px;}
.yaf{bottom:713.400000px;}
.y8e{bottom:714.030000px;}
.ye{bottom:715.830000px;}
.y40{bottom:717.000000px;}
.y10a{bottom:725.550000px;}
.y62{bottom:726.990000px;}
.y3f{bottom:734.550000px;}
.yde{bottom:739.680000px;}
.y8b{bottom:741.390000px;}
.y109{bottom:743.190000px;}
.y61{bottom:744.540000px;}
.yd{bottom:751.380000px;}
.yae{bottom:761.730000px;}
.y108{bottom:769.740000px;}
.y3e{bottom:770.190000px;}
.y60{bottom:771.090000px;}
.y8a{bottom:771.810000px;}
.ydd{bottom:777.030000px;}
.yc{bottom:787.200000px;}
.y107{bottom:787.290000px;}
.y3d{bottom:787.740000px;}
.y9f{bottom:795.840000px;}
.y12c{bottom:795.930000px;}
.yad{bottom:796.560000px;}
.y89{bottom:799.170000px;}
.y106{bottom:804.930000px;}
.y3c{bottom:805.290000px;}
.y5f{bottom:806.730000px;}
.yac{bottom:807.990000px;}
.y12b{bottom:813.480000px;}
.y3b{bottom:822.930000px;}
.ydc{bottom:825.270000px;}
.y88{bottom:826.440000px;}
.yb{bottom:826.980000px;}
.y9e{bottom:831.480000px;}
.y12a{bottom:840.030000px;}
.y5e{bottom:841.560000px;}
.ydb{bottom:842.910000px;}
.ya{bottom:844.980000px;}
.y105{bottom:849.030000px;}
.y5d{bottom:852.990000px;}
.y87{bottom:853.800000px;}
.y3a{bottom:858.480000px;}
.yda{bottom:860.460000px;}
.y9{bottom:862.980000px;}
.y9d{bottom:866.310000px;}
.y104{bottom:866.670000px;}
.y39{bottom:876.030000px;}
.y9c{bottom:877.740000px;}
.yd9{bottom:878.100000px;}
.y8{bottom:880.980000px;}
.y86{bottom:881.160000px;}
.y129{bottom:884.220000px;}
.y103{bottom:893.220000px;}
.y38{bottom:893.670000px;}
.y7{bottom:895.200000px;}
.y128{bottom:901.860000px;}
.yd8{bottom:905.010000px;}
.y85{bottom:908.430000px;}
.y102{bottom:910.860000px;}
.y37{bottom:911.220000px;}
.y6{bottom:916.980000px;}
.y101{bottom:928.410000px;}
.y36{bottom:928.860000px;}
.y84{bottom:935.790000px;}
.yd7{bottom:942.000000px;}
.y127{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y100{bottom:954.960000px;}
.yd6{bottom:959.550000px;}
.y83{bottom:963.150000px;}
.y35{bottom:964.410000px;}
.yff{bottom:972.600000px;}
.yd5{bottom:977.190000px;}
.y34{bottom:981.960000px;}
.y4{bottom:987.630000px;}
.y82{bottom:990.510000px;}
.yd4{bottom:994.740000px;}
.yfe{bottom:999.150000px;}
.y33{bottom:999.600000px;}
.y3{bottom:1012.320000px;}
.yfd{bottom:1016.820000px;}
.y32{bottom:1017.180000px;}
.y81{bottom:1017.810000px;}
.yd3{bottom:1029.960000px;}
.y31{bottom:1034.820000px;}
.yfc{bottom:1043.370000px;}
.y80{bottom:1045.170000px;}
.yd2{bottom:1047.510000px;}
.y30{bottom:1052.370000px;}
.yfb{bottom:1060.920000px;}
.y2f{bottom:1069.920000px;}
.y7f{bottom:1072.530000px;}
.yd1{bottom:1074.420000px;}
.yfa{bottom:1078.560000px;}
.y2e{bottom:1087.560000px;}
.y7e{bottom:1099.890000px;}
.y2d{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.y7d{bottom:1127.160000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h11{height:26.550000px;}
.h13{height:26.580000px;}
.h12{height:26.640000px;}
.h14{height:29.610000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.hc{height:41.661211px;}
.h16{height:44.100000px;}
.h17{height:50.667539px;}
.h7{height:50.902383px;}
.he{height:52.238672px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.h18{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h15{height:70.664062px;}
.h4{height:72.985430px;}
.hd{height:74.562891px;}
.h10{height:82.551445px;}
.hf{height:87.518672px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wc{width:60.030000px;}
.w10{width:74.070000px;}
.wf{width:76.680000px;}
.w5{width:80.670000px;}
.w6{width:88.470000px;}
.w9{width:88.590000px;}
.we{width:105.240000px;}
.wa{width:123.030000px;}
.w7{width:123.120000px;}
.w3{width:125.490000px;}
.wd{width:129.330000px;}
.w11{width:142.380000px;}
.wb{width:163.380000px;}
.w8{width:186.210000px;}
.w4{width:200.880000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.740000px;}
.x1{left:68.040000px;}
.x18{left:101.789987px;}
.x21{left:111.239987px;}
.x17{left:121.139987px;}
.xc{left:135.720000px;}
.x6{left:155.339987px;}
.x2{left:192.719987px;}
.x19{left:232.950000px;}
.x13{left:246.990000px;}
.xe{left:262.020000px;}
.x20{left:277.589987px;}
.x1a{left:293.700000px;}
.x5{left:335.279987px;}
.x1e{left:364.439987px;}
.x12{left:378.929987px;}
.x7{left:385.859987px;}
.x9{left:421.139987px;}
.x1b{left:423.750000px;}
.x8{left:426.989987px;}
.x14{left:433.920000px;}
.xf{left:463.710000px;}
.xa{left:507.359987px;}
.x15{left:523.230000px;}
.xb{left:530.339987px;}
.x10{left:545.190000px;}
.x1c{left:607.290000px;}
.x11{left:634.380000px;}
.x1d{left:682.080000px;}
.x16{left:704.309987px;}
.x1f{left:741.389987px;}
.x4{left:745.889987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v6{vertical-align:26.880000pt;}
.v5{vertical-align:31.360000pt;}
.ls13{letter-spacing:-0.395200pt;}
.ls22{letter-spacing:-0.276267pt;}
.ls11{letter-spacing:-0.244267pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls24{letter-spacing:-0.069333pt;}
.ls18{letter-spacing:-0.040000pt;}
.lsa{letter-spacing:-0.007467pt;}
.ls17{letter-spacing:-0.004160pt;}
.ls6{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000318pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls21{letter-spacing:0.087467pt;}
.ls19{letter-spacing:0.095467pt;}
.ls1a{letter-spacing:0.097600pt;}
.ls14{letter-spacing:0.100800pt;}
.ls1b{letter-spacing:0.101867pt;}
.ls7{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.147200pt;}
.ls10{letter-spacing:0.154133pt;}
.ls23{letter-spacing:0.154240pt;}
.ls16{letter-spacing:0.158933pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.161067pt;}
.ls20{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.378240pt;}
.ls1c{letter-spacing:15.443200pt;}
.ls1f{letter-spacing:42.423680pt;}
.ls1d{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.917867pt;}
.ws9{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.904000pt;}
.ws17{word-spacing:-11.857600pt;}
.ws16{word-spacing:-11.844267pt;}
.wsb{word-spacing:-11.800320pt;}
.wsd{word-spacing:-11.757118pt;}
.ws3{word-spacing:-11.756800pt;}
.ws11{word-spacing:-11.752640pt;}
.ws19{word-spacing:-11.687467pt;}
.ws8{word-spacing:-11.590933pt;}
.wsc{word-spacing:-11.512533pt;}
.ws18{word-spacing:-11.480533pt;}
.ws14{word-spacing:-9.465067pt;}
.ws15{word-spacing:-9.363200pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsf{word-spacing:-8.236800pt;}
.ws12{word-spacing:-8.196800pt;}
.ws10{word-spacing:-7.762133pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
.ws13{word-spacing:45.728320pt;}
._a{margin-left:-3.157973pt;}
._9{margin-left:-1.972267pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.968469pt;}
._4{width:2.672000pt;}
._7{width:3.634134pt;}
._8{width:4.809600pt;}
._1{width:6.412480pt;}
._2{width:7.837227pt;}
._5{width:9.512534pt;}
._6{width:10.652372pt;}
._d{width:11.612693pt;}
._b{width:12.947947pt;}
._16{width:13.866667pt;}
._10{width:14.898987pt;}
._c{width:16.455680pt;}
._1c{width:17.511573pt;}
._1a{width:19.024640pt;}
._19{width:19.933120pt;}
._18{width:28.718400pt;}
._15{width:42.772800pt;}
._17{width:46.866880pt;}
._f{width:76.508160pt;}
._e{width:85.984960pt;}
._12{width:110.994880pt;}
._11{width:118.850560pt;}
._14{width:174.924053pt;}
._13{width:175.871040pt;}
._1b{width:751.922347pt;}
.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;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:6.960000pt;}
.y77{bottom:7.040000pt;}
.y8c{bottom:7.360000pt;}
.y8d{bottom:9.680000pt;}
.ya5{bottom:22.560000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y7c{bottom:101.866667pt;}
.yd0{bottom:110.026667pt;}
.y126{bottom:111.226667pt;}
.y5c{bottom:112.506667pt;}
.yf9{bottom:119.546667pt;}
.ycf{bottom:125.626667pt;}
.y7b{bottom:126.106667pt;}
.y28{bottom:126.506667pt;}
.y125{bottom:126.826667pt;}
.y5b{bottom:128.106667pt;}
.yab{bottom:132.426667pt;}
.yf8{bottom:135.226667pt;}
.yce{bottom:141.306667pt;}
.y27{bottom:142.106667pt;}
.yaa{bottom:143.226667pt;}
.y5a{bottom:143.706667pt;}
.y7a{bottom:150.426667pt;}
.y124{bottom:150.506667pt;}
.ycd{bottom:156.906667pt;}
.y26{bottom:157.786667pt;}
.yf7{bottom:158.826667pt;}
.y59{bottom:159.386667pt;}
.y123{bottom:166.106667pt;}
.ya9{bottom:167.546667pt;}
.ycc{bottom:172.506667pt;}
.y25{bottom:173.386667pt;}
.y79{bottom:174.746667pt;}
.y58{bottom:174.986667pt;}
.yf6{bottom:182.506667pt;}
.ycb{bottom:188.186667pt;}
.y122{bottom:189.786667pt;}
.y57{bottom:190.666667pt;}
.ya8{bottom:191.786667pt;}
.yf5{bottom:198.106667pt;}
.y78{bottom:199.066667pt;}
.yca{bottom:203.786667pt;}
.y24{bottom:204.986667pt;}
.y121{bottom:205.386667pt;}
.y56{bottom:206.266667pt;}
.yf4{bottom:213.706667pt;}
.ya7{bottom:216.106667pt;}
.yc9{bottom:219.466667pt;}
.y23{bottom:220.666667pt;}
.y55{bottom:221.866667pt;}
.y76{bottom:223.306667pt;}
.y120{bottom:228.986667pt;}
.yc8{bottom:235.066667pt;}
.y22{bottom:236.266667pt;}
.yf3{bottom:237.386667pt;}
.ya6{bottom:240.426667pt;}
.y11f{bottom:244.666667pt;}
.y54{bottom:245.546667pt;}
.y74{bottom:247.626667pt;}
.yc7{bottom:250.666667pt;}
.y21{bottom:251.946667pt;}
.yf2{bottom:252.986667pt;}
.y11e{bottom:260.266667pt;}
.ya4{bottom:264.746667pt;}
.yc6{bottom:266.346667pt;}
.y20{bottom:267.546667pt;}
.yf1{bottom:268.666667pt;}
.y53{bottom:277.466667pt;}
.yc5{bottom:281.946667pt;}
.y1f{bottom:283.146667pt;}
.y11d{bottom:283.946667pt;}
.y73{bottom:290.906667pt;}
.yf0{bottom:292.266667pt;}
.yc4{bottom:297.546667pt;}
.y11c{bottom:299.546667pt;}
.y1e{bottom:307.066667pt;}
.yef{bottom:307.866667pt;}
.yc3{bottom:313.226667pt;}
.y72{bottom:314.826667pt;}
.y11b{bottom:315.146667pt;}
.y9b{bottom:320.026667pt;}
.y52{bottom:320.346667pt;}
.yee{bottom:323.546667pt;}
.ya3{bottom:323.626667pt;}
.yc2{bottom:328.826667pt;}
.y9a{bottom:330.826667pt;}
.y51{bottom:335.946667pt;}
.y11a{bottom:338.826667pt;}
.yc1{bottom:344.506667pt;}
.yed{bottom:347.146667pt;}
.y1d{bottom:350.266667pt;}
.y50{bottom:351.626667pt;}
.y119{bottom:354.426667pt;}
.y71{bottom:354.826667pt;}
.y99{bottom:355.146667pt;}
.ya2{bottom:355.306667pt;}
.yc0{bottom:360.106667pt;}
.y70{bottom:361.546667pt;}
.yec{bottom:362.746667pt;}
.y4f{bottom:367.226667pt;}
.ybf{bottom:375.706667pt;}
.y118{bottom:378.106667pt;}
.yeb{bottom:378.426667pt;}
.y98{bottom:379.466667pt;}
.y4e{bottom:382.906667pt;}
.y1c{bottom:383.226667pt;}
.ya1{bottom:386.266667pt;}
.ybe{bottom:391.386667pt;}
.y117{bottom:393.706667pt;}
.ya0{bottom:396.426667pt;}
.y6f{bottom:396.906667pt;}
.y4d{bottom:398.506667pt;}
.y1b{bottom:398.826667pt;}
.yea{bottom:402.026667pt;}
.y97{bottom:403.786667pt;}
.ybd{bottom:406.986667pt;}
.y4c{bottom:414.106667pt;}
.y1a{bottom:414.426667pt;}
.y116{bottom:417.306667pt;}
.ye9{bottom:417.733333pt;}
.ybc{bottom:422.693333pt;}
.y6e{bottom:425.653333pt;}
.y96{bottom:428.053333pt;}
.y4b{bottom:429.813333pt;}
.y19{bottom:430.133333pt;}
.y115{bottom:433.013333pt;}
.ye8{bottom:433.333333pt;}
.ybb{bottom:438.293333pt;}
.y6c{bottom:442.693333pt;}
.y4a{bottom:445.413333pt;}
.y18{bottom:445.733333pt;}
.y114{bottom:448.613333pt;}
.y95{bottom:452.373333pt;}
.yba{bottom:453.893333pt;}
.ye7{bottom:456.933333pt;}
.y49{bottom:461.093333pt;}
.y17{bottom:461.413333pt;}
.y6d{bottom:462.613333pt;}
.yb9{bottom:469.573333pt;}
.y113{bottom:472.293333pt;}
.ye6{bottom:472.613333pt;}
.y16{bottom:477.013333pt;}
.y48{bottom:485.013333pt;}
.yb8{bottom:485.173333pt;}
.ye5{bottom:488.213333pt;}
.y6b{bottom:489.493333pt;}
.y15{bottom:492.613333pt;}
.y94{bottom:495.653333pt;}
.y112{bottom:495.893333pt;}
.yb7{bottom:500.853333pt;}
.y6a{bottom:505.093333pt;}
.y14{bottom:508.293333pt;}
.y111{bottom:511.493333pt;}
.ye4{bottom:511.893333pt;}
.yb6{bottom:516.453333pt;}
.y69{bottom:520.773333pt;}
.y13{bottom:523.893333pt;}
.y93{bottom:526.693333pt;}
.ye3{bottom:527.493333pt;}
.y47{bottom:527.893333pt;}
.yb5{bottom:532.053333pt;}
.y110{bottom:535.173333pt;}
.y68{bottom:536.373333pt;}
.y92{bottom:537.493333pt;}
.y12{bottom:539.573333pt;}
.y46{bottom:543.493333pt;}
.yb4{bottom:547.733333pt;}
.y10f{bottom:550.773333pt;}
.ye2{bottom:551.093333pt;}
.y11{bottom:555.173333pt;}
.y45{bottom:559.173333pt;}
.y91{bottom:561.813333pt;}
.yb3{bottom:563.333333pt;}
.ye1{bottom:566.773333pt;}
.y67{bottom:568.053333pt;}
.y10{bottom:570.773333pt;}
.y10e{bottom:574.453333pt;}
.y44{bottom:574.773333pt;}
.yb2{bottom:579.013333pt;}
.y66{bottom:583.653333pt;}
.y90{bottom:586.053333pt;}
.y10d{bottom:590.053333pt;}
.y43{bottom:590.453333pt;}
.ye0{bottom:590.693333pt;}
.yb1{bottom:594.613333pt;}
.yf{bottom:594.773333pt;}
.y65{bottom:599.253333pt;}
.y42{bottom:606.053333pt;}
.yb0{bottom:610.213333pt;}
.y8f{bottom:610.373333pt;}
.y10c{bottom:613.653333pt;}
.y64{bottom:614.933333pt;}
.y41{bottom:621.653333pt;}
.y10b{bottom:629.333333pt;}
.y63{bottom:630.533333pt;}
.ydf{bottom:633.573333pt;}
.yaf{bottom:634.133333pt;}
.y8e{bottom:634.693333pt;}
.ye{bottom:636.293333pt;}
.y40{bottom:637.333333pt;}
.y10a{bottom:644.933333pt;}
.y62{bottom:646.213333pt;}
.y3f{bottom:652.933333pt;}
.yde{bottom:657.493333pt;}
.y8b{bottom:659.013333pt;}
.y109{bottom:660.613333pt;}
.y61{bottom:661.813333pt;}
.yd{bottom:667.893333pt;}
.yae{bottom:677.093333pt;}
.y108{bottom:684.213333pt;}
.y3e{bottom:684.613333pt;}
.y60{bottom:685.413333pt;}
.y8a{bottom:686.053333pt;}
.ydd{bottom:690.693333pt;}
.yc{bottom:699.733333pt;}
.y107{bottom:699.813333pt;}
.y3d{bottom:700.213333pt;}
.y9f{bottom:707.413333pt;}
.y12c{bottom:707.493333pt;}
.yad{bottom:708.053333pt;}
.y89{bottom:710.373333pt;}
.y106{bottom:715.493333pt;}
.y3c{bottom:715.813333pt;}
.y5f{bottom:717.093333pt;}
.yac{bottom:718.213333pt;}
.y12b{bottom:723.093333pt;}
.y3b{bottom:731.493333pt;}
.ydc{bottom:733.573333pt;}
.y88{bottom:734.613333pt;}
.yb{bottom:735.093333pt;}
.y9e{bottom:739.093333pt;}
.y12a{bottom:746.693333pt;}
.y5e{bottom:748.053333pt;}
.ydb{bottom:749.253333pt;}
.ya{bottom:751.093333pt;}
.y105{bottom:754.693333pt;}
.y5d{bottom:758.213333pt;}
.y87{bottom:758.933333pt;}
.y3a{bottom:763.093333pt;}
.yda{bottom:764.853333pt;}
.y9{bottom:767.093333pt;}
.y9d{bottom:770.053333pt;}
.y104{bottom:770.373333pt;}
.y39{bottom:778.693333pt;}
.y9c{bottom:780.213333pt;}
.yd9{bottom:780.533333pt;}
.y8{bottom:783.093333pt;}
.y86{bottom:783.253333pt;}
.y129{bottom:785.973333pt;}
.y103{bottom:793.973333pt;}
.y38{bottom:794.373333pt;}
.y7{bottom:795.733333pt;}
.y128{bottom:801.653333pt;}
.yd8{bottom:804.453333pt;}
.y85{bottom:807.493333pt;}
.y102{bottom:809.653333pt;}
.y37{bottom:809.973333pt;}
.y6{bottom:815.093333pt;}
.y101{bottom:825.253333pt;}
.y36{bottom:825.653333pt;}
.y84{bottom:831.813333pt;}
.yd7{bottom:837.333333pt;}
.y127{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y100{bottom:848.853333pt;}
.yd6{bottom:852.933333pt;}
.y83{bottom:856.133333pt;}
.y35{bottom:857.253333pt;}
.yff{bottom:864.533333pt;}
.yd5{bottom:868.613333pt;}
.y34{bottom:872.853333pt;}
.y4{bottom:877.893333pt;}
.y82{bottom:880.453333pt;}
.yd4{bottom:884.213333pt;}
.yfe{bottom:888.133333pt;}
.y33{bottom:888.533333pt;}
.y3{bottom:899.840000pt;}
.yfd{bottom:903.840000pt;}
.y32{bottom:904.160000pt;}
.y81{bottom:904.720000pt;}
.yd3{bottom:915.520000pt;}
.y31{bottom:919.840000pt;}
.yfc{bottom:927.440000pt;}
.y80{bottom:929.040000pt;}
.yd2{bottom:931.120000pt;}
.y30{bottom:935.440000pt;}
.yfb{bottom:943.040000pt;}
.y2f{bottom:951.040000pt;}
.y7f{bottom:953.360000pt;}
.yd1{bottom:955.040000pt;}
.yfa{bottom:958.720000pt;}
.y2e{bottom:966.720000pt;}
.y7e{bottom:977.680000pt;}
.y2d{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.y7d{bottom:1001.920000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h11{height:23.600000pt;}
.h13{height:23.626667pt;}
.h12{height:23.680000pt;}
.h14{height:26.320000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.hc{height:37.032187pt;}
.h16{height:39.200000pt;}
.h17{height:45.037812pt;}
.h7{height:45.246562pt;}
.he{height:46.434375pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.h18{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h15{height:62.812500pt;}
.h4{height:64.875937pt;}
.hd{height:66.278125pt;}
.h10{height:73.379063pt;}
.hf{height:77.794375pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wc{width:53.360000pt;}
.w10{width:65.840000pt;}
.wf{width:68.160000pt;}
.w5{width:71.706667pt;}
.w6{width:78.640000pt;}
.w9{width:78.746667pt;}
.we{width:93.546667pt;}
.wa{width:109.360000pt;}
.w7{width:109.440000pt;}
.w3{width:111.546667pt;}
.wd{width:114.960000pt;}
.w11{width:126.560000pt;}
.wb{width:145.226667pt;}
.w8{width:165.520000pt;}
.w4{width:178.560000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.880000pt;}
.x1{left:60.480000pt;}
.x18{left:90.479988pt;}
.x21{left:98.879988pt;}
.x17{left:107.679988pt;}
.xc{left:120.640000pt;}
.x6{left:138.079988pt;}
.x2{left:171.306655pt;}
.x19{left:207.066667pt;}
.x13{left:219.546667pt;}
.xe{left:232.906667pt;}
.x20{left:246.746655pt;}
.x1a{left:261.066667pt;}
.x5{left:298.026655pt;}
.x1e{left:323.946655pt;}
.x12{left:336.826655pt;}
.x7{left:342.986655pt;}
.x9{left:374.346655pt;}
.x1b{left:376.666667pt;}
.x8{left:379.546655pt;}
.x14{left:385.706667pt;}
.xf{left:412.186667pt;}
.xa{left:450.986655pt;}
.x15{left:465.093333pt;}
.xb{left:471.413322pt;}
.x10{left:484.613333pt;}
.x1c{left:539.813333pt;}
.x11{left:563.893333pt;}
.x1d{left:606.293333pt;}
.x16{left:626.053322pt;}
.x1f{left:659.013322pt;}
.x4{left:663.013322pt;}
.x3{left:711.413322pt;}
}




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