
    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_45d9461aa45b372d530196da.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.011230;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_038ab471e0d91aaff7003309.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.019531;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_0fcf41a127d999b9ce08dbb1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_e4456d934ebe86446497f221.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_d1ad86d0a98562e01332457f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107422;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_e4b0d61157fc313835792bbf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_5d29a48ad40b23b40ee6dc4e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.115234;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_baa537166d1b3c602bde8cca.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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:-14.898000px;}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-3.090000px;}
.lse{letter-spacing:-1.926000px;}
.ls2{letter-spacing:-1.086000px;}
.ls7{letter-spacing:-0.960000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.006000px;}
.ls14{letter-spacing:0.054000px;}
.ls10{letter-spacing:0.089844px;}
.ls13{letter-spacing:0.114000px;}
.lsf{letter-spacing:0.126000px;}
.ls5{letter-spacing:0.151176px;}
.ls8{letter-spacing:0.186000px;}
.ls4{letter-spacing:0.204000px;}
.ls6{letter-spacing:0.211176px;}
.lsc{letter-spacing:0.451200px;}
.ls12{letter-spacing:0.960000px;}
.ls3{letter-spacing:1.044000px;}
.ls11{letter-spacing:1.125588px;}
.lsd{letter-spacing:9.007500px;}
.lsa{letter-spacing:15.427500px;}
.ls15{letter-spacing:39.465588px;}
.lsb{letter-spacing:144.291600px;}
.ls9{letter-spacing:174.081600px;}
.ls16{letter-spacing:243.885588px;}
.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;}
}
.ws0{word-spacing:-26.622948px;}
.ws6{word-spacing:-21.074412px;}
.ws1{word-spacing:-20.318412px;}
.ws4{word-spacing:-20.114412px;}
.ws8{word-spacing:-19.154412px;}
.ws2{word-spacing:-18.339660px;}
.ws7{word-spacing:-14.896500px;}
.ws5{word-spacing:-14.058077px;}
.ws3{word-spacing:0.000000px;}
._1e{margin-left:-8.067335px;}
._1d{margin-left:-6.982032px;}
._10{margin-left:-5.535100px;}
._11{margin-left:-4.341188px;}
._2{margin-left:-3.038918px;}
._1{margin-left:-1.989768px;}
._0{width:1.555637px;}
._8{width:2.676847px;}
._3{width:4.333379px;}
._4{width:5.506765px;}
._7{width:6.511902px;}
._6{width:8.031373px;}
._5{width:9.840144px;}
._e{width:10.889128px;}
._d{width:12.191711px;}
._f{width:13.442189px;}
._17{width:14.486477px;}
._1b{width:15.990234px;}
._c{width:17.256410px;}
._b{width:18.377916px;}
._1a{width:21.163468px;}
._1c{width:22.719156px;}
._16{width:24.021527px;}
._20{width:25.034543px;}
._12{width:26.047440px;}
._13{width:27.168901px;}
._27{width:28.941600px;}
._9{width:29.954556px;}
._a{width:31.293079px;}
._14{width:32.748805px;}
._15{width:33.836495px;}
._22{width:34.838425px;}
._23{width:36.213210px;}
._1f{width:37.479372px;}
._2a{width:39.468905px;}
._2d{width:41.314757px;}
._29{width:42.378508px;}
._2c{width:44.208294px;}
._25{width:45.402160px;}
._26{width:46.487495px;}
._28{width:48.115410px;}
._24{width:50.491206px;}
._19{width:51.769345px;}
._21{width:53.252544px;}
._18{width:54.410207px;}
._2b{width:56.797890px;}
._2f{width:62.586216px;}
._2e{width:63.888582px;}
._39{width:115.278703px;}
._3a{width:116.760575px;}
._36{width:182.294525px;}
._33{width:184.575054px;}
._32{width:186.959910px;}
._30{width:188.156551px;}
._31{width:190.435742px;}
._38{width:294.150888px;}
._37{width:295.276673px;}
._34{width:536.935921px;}
._35{width:538.244526px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.177600px;}
.fs2{font-size:48.945600px;}
.fs6{font-size:53.202000px;}
.fs5{font-size:59.586000px;}
.fs0{font-size:65.970000px;}
.fs4{font-size:72.354000px;}
.fs3{font-size:95.766000px;}
.y0{bottom:0.000000px;}
.y5{bottom:44.725500px;}
.y4{bottom:67.602000px;}
.y5e{bottom:110.163000px;}
.y5f{bottom:113.887500px;}
.y152{bottom:118.711500px;}
.y21{bottom:119.244000px;}
.y41{bottom:122.967000px;}
.y72{bottom:130.416000px;}
.y5d{bottom:130.948500px;}
.ya4{bottom:134.140500px;}
.y141{bottom:135.736500px;}
.y147{bottom:144.780000px;}
.y15c{bottom:149.037000px;}
.y151{bottom:149.568000px;}
.y20{bottom:150.630000px;}
.ya3{bottom:151.170000px;}
.y40{bottom:153.825000px;}
.y71{bottom:154.350000px;}
.y154{bottom:158.610000px;}
.y140{bottom:166.590000px;}
.y8e{bottom:170.850000px;}
.y70{bottom:171.375000px;}
.ybe{bottom:174.570000px;}
.y10e{bottom:175.635000px;}
.y15b{bottom:179.895000px;}
.y150{bottom:180.960000px;}
.y1f{bottom:181.485000px;}
.y3f{bottom:184.680000px;}
.y153{bottom:190.005000px;}
.y8d{bottom:191.070000px;}
.yce{bottom:191.595000px;}
.yf9{bottom:193.725000px;}
.y135{bottom:194.790000px;}
.y13f{bottom:197.985000px;}
.y10d{bottom:207.060000px;}
.y15a{bottom:210.780000px;}
.y8c{bottom:211.320000px;}
.y5c{bottom:211.845000px;}
.y1e{bottom:212.385000px;}
.ye4{bottom:215.040000px;}
.y15d{bottom:219.825000px;}
.y14f{bottom:220.890000px;}
.y14a{bottom:224.625000px;}
.y3e{bottom:225.150000px;}
.ya2{bottom:228.870000px;}
.y14b{bottom:230.475000px;}
.y8b{bottom:231.540000px;}
.yfd{bottom:232.065000px;}
.y131{bottom:233.670000px;}
.ybd{bottom:235.260000px;}
.y10c{bottom:237.915000px;}
.y5b{bottom:242.700000px;}
.y1d{bottom:243.765000px;}
.y159{bottom:251.220000px;}
.y14e{bottom:251.745000px;}
.y8a{bottom:252.285000px;}
.y6f{bottom:256.005000px;}
.ya1{bottom:259.725000px;}
.y3d{bottom:265.050000px;}
.y10b{bottom:268.770000px;}
.y89{bottom:272.505000px;}
.y5a{bottom:274.095000px;}
.y1c{bottom:274.635000px;}
.yf6{bottom:276.225000px;}
.y145{bottom:277.815000px;}
.y158{bottom:282.075000px;}
.y14d{bottom:283.140000px;}
.y13d{bottom:284.730000px;}
.y6d{bottom:286.905000px;}
.y130{bottom:288.495000px;}
.ya0{bottom:291.150000px;}
.y6e{bottom:292.755000px;}
.yf5{bottom:293.280000px;}
.y3c{bottom:295.950000px;}
.yb8{bottom:296.475000px;}
.y10a{bottom:300.195000px;}
.y59{bottom:304.995000px;}
.y1b{bottom:305.520000px;}
.y144{bottom:309.240000px;}
.y88{bottom:312.975000px;}
.yb7{bottom:313.500000px;}
.y14c{bottom:314.040000px;}
.y13c{bottom:315.630000px;}
.ye3{bottom:316.695000px;}
.yf8{bottom:317.760000px;}
.y6c{bottom:318.285000px;}
.y12f{bottom:319.350000px;}
.y9f{bottom:322.020000px;}
.y3b{bottom:326.805000px;}
.y109{bottom:331.065000px;}
.y87{bottom:333.180000px;}
.yea{bottom:333.720000px;}
.y58{bottom:335.850000px;}
.y1a{bottom:336.915000px;}
.y143{bottom:340.095000px;}
.ycc{bottom:344.895000px;}
.y13b{bottom:347.025000px;}
.y6b{bottom:349.140000px;}
.y12e{bottom:350.205000px;}
.y157{bottom:352.875000px;}
.y86{bottom:353.400000px;}
.yf2{bottom:353.940000px;}
.ye2{bottom:357.120000px;}
.y3a{bottom:358.185000px;}
.y108{bottom:361.920000px;}
.ya9{bottom:367.230000px;}
.y19{bottom:367.770000px;}
.y114{bottom:370.965000px;}
.y85{bottom:373.650000px;}
.y57{bottom:376.320000px;}
.y13a{bottom:377.910000px;}
.y6a{bottom:380.040000px;}
.ycb{bottom:382.170000px;}
.y9e{bottom:384.300000px;}
.ye8{bottom:385.365000px;}
.y39{bottom:389.085000px;}
.y12d{bottom:390.675000px;}
.ye9{bottom:391.215000px;}
.y115{bottom:393.345000px;}
.y84{bottom:393.870000px;}
.ye1{bottom:397.590000px;}
.y101{bottom:398.130000px;}
.y18{bottom:398.655000px;}
.y107{bottom:402.390000px;}
.y56{bottom:407.175000px;}
.y139{bottom:410.895000px;}
.y69{bottom:411.435000px;}
.y83{bottom:414.090000px;}
.ye0{bottom:414.615000px;}
.yb6{bottom:415.155000px;}
.ye7{bottom:416.220000px;}
.y38{bottom:420.480000px;}
.y9d{bottom:424.200000px;}
.y100{bottom:428.985000px;}
.y17{bottom:430.050000px;}
.y12c{bottom:430.575000px;}
.y106{bottom:433.245000px;}
.y82{bottom:434.310000px;}
.y55{bottom:438.030000px;}
.y68{bottom:442.290000px;}
.yb5{bottom:446.535000px;}
.ye5{bottom:447.075000px;}
.y37{bottom:451.335000px;}
.ye6{bottom:452.925000px;}
.y80{bottom:454.515000px;}
.y149{bottom:455.055000px;}
.y9c{bottom:455.580000px;}
.yde{bottom:456.120000px;}
.yf1{bottom:457.215000px;}
.y81{bottom:458.280000px;}
.yff{bottom:460.410000px;}
.y16{bottom:460.935000px;}
.y12b{bottom:461.475000px;}
.ydf{bottom:462.000000px;}
.y105{bottom:464.130000px;}
.y54{bottom:469.455000px;}
.y137{bottom:473.175000px;}
.y7f{bottom:474.780000px;}
.yc9{bottom:478.500000px;}
.y138{bottom:479.025000px;}
.y36{bottom:482.220000px;}
.y155{bottom:483.825000px;}
.yca{bottom:484.350000px;}
.y9b{bottom:486.480000px;}
.ydd{bottom:487.545000px;}
.yc1{bottom:488.070000px;}
.yfb{bottom:491.265000px;}
.y15{bottom:491.805000px;}
.y12a{bottom:492.870000px;}
.y7e{bottom:494.985000px;}
.y113{bottom:495.525000px;}
.yfc{bottom:497.115000px;}
.y53{bottom:500.310000px;}
.y104{bottom:504.570000px;}
.yc8{bottom:509.355000px;}
.y35{bottom:513.615000px;}
.y7d{bottom:515.205000px;}
.yb4{bottom:517.335000px;}
.ydc{bottom:518.400000px;}
.yc0{bottom:522.660000px;}
.y129{bottom:523.725000px;}
.y9a{bottom:526.380000px;}
.y52{bottom:531.165000px;}
.y14{bottom:532.230000px;}
.y7b{bottom:535.425000px;}
.yf4{bottom:537.015000px;}
.y7c{bottom:539.145000px;}
.yc7{bottom:540.210000px;}
.y34{bottom:544.500000px;}
.y134{bottom:546.105000px;}
.ydb{bottom:549.300000px;}
.y67{bottom:553.545000px;}
.y128{bottom:554.610000px;}
.y7a{bottom:556.215000px;}
.yb3{bottom:557.280000px;}
.y99{bottom:557.805000px;}
.y51{bottom:562.590000px;}
.y112{bottom:566.310000px;}
.yc6{bottom:571.635000px;}
.y13{bottom:572.175000px;}
.y33{bottom:575.355000px;}
.yd9{bottom:580.680000px;}
.ybc{bottom:584.400000px;}
.y127{bottom:586.005000px;}
.yda{bottom:586.530000px;}
.y98{bottom:588.660000px;}
.y50{bottom:593.445000px;}
.yb2{bottom:597.705000px;}
.yc5{bottom:602.490000px;}
.y148{bottom:603.555000px;}
.y32{bottom:606.750000px;}
.y12{bottom:611.010000px;}
.yd8{bottom:611.535000px;}
.ybb{bottom:615.795000px;}
.y126{bottom:616.860000px;}
.y97{bottom:619.515000px;}
.yfa{bottom:624.300000px;}
.y66{bottom:624.840000px;}
.yb1{bottom:628.605000px;}
.y4e{bottom:633.390000px;}
.y31{bottom:637.650000px;}
.y4f{bottom:639.240000px;}
.yd6{bottom:642.435000px;}
.yf0{bottom:643.500000px;}
.y79{bottom:646.695000px;}
.yd7{bottom:648.285000px;}
.y11{bottom:648.810000px;}
.y96{bottom:650.940000px;}
.yba{bottom:652.545000px;}
.y65{bottom:655.725000px;}
.y156{bottom:659.985000px;}
.y4d{bottom:664.770000px;}
.y30{bottom:668.505000px;}
.yd5{bottom:673.815000px;}
.y78{bottom:677.550000px;}
.y125{bottom:679.140000px;}
.y64{bottom:686.595000px;}
.y95{bottom:690.840000px;}
.y13e{bottom:692.445000px;}
.y4c{bottom:695.640000px;}
.y2f{bottom:699.885000px;}
.yd3{bottom:704.685000px;}
.y10{bottom:705.210000px;}
.y77{bottom:708.930000px;}
.yd4{bottom:710.535000px;}
.y63{bottom:718.020000px;}
.y124{bottom:719.085000px;}
.y94{bottom:721.740000px;}
.y4b{bottom:727.065000px;}
.y2e{bottom:730.785000px;}
.yd2{bottom:735.570000px;}
.yef{bottom:736.635000px;}
.yb0{bottom:739.830000px;}
.yf{bottom:745.140000px;}
.y111{bottom:745.680000px;}
.y62{bottom:748.875000px;}
.y123{bottom:750.465000px;}
.y93{bottom:753.120000px;}
.y76{bottom:754.725000px;}
.y4a{bottom:757.920000px;}
.yee{bottom:761.640000px;}
.y2d{bottom:762.165000px;}
.yfe{bottom:763.770000px;}
.yd1{bottom:766.965000px;}
.yaf{bottom:770.685000px;}
.y103{bottom:776.535000px;}
.y61{bottom:779.730000px;}
.y122{bottom:781.320000px;}
.ye{bottom:785.055000px;}
.y110{bottom:785.580000px;}
.y49{bottom:788.775000px;}
.y2c{bottom:793.035000px;}
.yd0{bottom:797.850000px;}
.yed{bottom:802.110000px;}
.y133{bottom:803.700000px;}
.y102{bottom:807.960000px;}
.y60{bottom:811.155000px;}
.y120{bottom:812.220000px;}
.y10f{bottom:817.005000px;}
.y121{bottom:818.070000px;}
.y48{bottom:820.200000px;}
.y92{bottom:823.920000px;}
.yd{bottom:825.510000px;}
.ycd{bottom:826.050000px;}
.yc4{bottom:829.245000px;}
.y2b{bottom:832.965000px;}
.yf3{bottom:835.095000px;}
.y75{bottom:842.010000px;}
.yae{bottom:847.860000px;}
.y47{bottom:851.055000px;}
.y11f{bottom:852.645000px;}
.y91{bottom:854.775000px;}
.yc{bottom:855.315000px;}
.ya8{bottom:856.905000px;}
.yc3{bottom:860.100000px;}
.yeb{bottom:863.820000px;}
.yec{bottom:869.670000px;}
.y2a{bottom:872.865000px;}
.y46{bottom:881.910000px;}
.y11e{bottom:883.545000px;}
.yb{bottom:890.985000px;}
.y90{bottom:895.245000px;}
.yf7{bottom:901.095000px;}
.yac{bottom:904.290000px;}
.yad{bottom:910.140000px;}
.y29{bottom:913.335000px;}
.y11d{bottom:914.400000px;}
.ya7{bottom:922.380000px;}
.y15e{bottom:926.100000px;}
.y132{bottom:928.230000px;}
.ya{bottom:932.490000px;}
.y8f{bottom:935.145000px;}
.yb9{bottom:940.995000px;}
.y28{bottom:944.190000px;}
.y11c{bottom:945.795000px;}
.y74{bottom:950.040000px;}
.ya6{bottom:953.235000px;}
.ycf{bottom:959.085000px;}
.yab{bottom:966.000000px;}
.y27{bottom:975.090000px;}
.y11a{bottom:976.680000px;}
.y136{bottom:980.940000px;}
.y11b{bottom:982.530000px;}
.y9{bottom:983.070000px;}
.ya5{bottom:984.135000px;}
.yaa{bottom:997.425000px;}
.y45{bottom:1006.470000px;}
.y119{bottom:1007.535000px;}
.y146{bottom:1012.320000px;}
.y26{bottom:1015.515000px;}
.y73{bottom:1021.365000px;}
.y8{bottom:1033.605000px;}
.y44{bottom:1037.325000px;}
.y142{bottom:1043.190000px;}
.y25{bottom:1046.370000px;}
.y118{bottom:1047.975000px;}
.y43{bottom:1068.225000px;}
.y7{bottom:1074.615000px;}
.y24{bottom:1077.270000px;}
.y117{bottom:1078.860000px;}
.y42{bottom:1099.620000px;}
.y23{bottom:1108.665000px;}
.y116{bottom:1109.715000px;}
.ybf{bottom:1114.515000px;}
.y6{bottom:1125.150000px;}
.y22{bottom:1139.550000px;}
.yc2{bottom:1145.400000px;}
.y3{bottom:1202.865000px;}
.y2{bottom:1211.370000px;}
.y1{bottom:1245.465000px;}
.hd{height:28.436616px;}
.he{height:28.556616px;}
.ha{height:28.598616px;}
.hb{height:28.616616px;}
.h4{height:29.606278px;}
.h10{height:37.732106px;}
.h9{height:43.496616px;}
.h2{height:48.156812px;}
.h5{height:51.048731px;}
.hc{height:64.899560px;}
.hf{height:65.464825px;}
.h3{height:65.615669px;}
.h8{height:68.804648px;}
.h7{height:75.462961px;}
.h6{height:99.880945px;}
.h1{height:1263.000000px;}
.h0{height:1263.015000px;}
.w1{width:892.500000px;}
.w3{width:892.724973px;}
.w2{width:892.724987px;}
.w0{width:892.725000px;}
.x0{left:0.000000px;}
.x1{left:106.474487px;}
.x11{left:113.923487px;}
.x7{left:120.839987px;}
.x1a{left:127.754987px;}
.x49{left:136.267473px;}
.x82{left:138.395987px;}
.x75{left:146.375973px;}
.x4a{left:150.104987px;}
.x1d{left:158.654973px;}
.x76{left:160.244987px;}
.x1e{left:165.569987px;}
.xf{left:166.634973px;}
.xa{left:169.289987px;}
.xb{left:170.354987px;}
.x10{left:173.549987px;}
.x2a{left:182.594987px;}
.x6a{left:185.774973px;}
.x5d{left:186.839973px;}
.x33{left:195.884973px;}
.x6b{left:199.619987px;}
.x5e{left:200.684987px;}
.x80{left:204.404973px;}
.x34{left:209.714987px;}
.x81{left:218.264987px;}
.xe{left:220.934987px;}
.x78{left:223.589987px;}
.x8{left:230.504987px;}
.x56{left:234.764987px;}
.x45{left:239.024973px;}
.x46{left:252.854987px;}
.x27{left:261.899973px;}
.x62{left:272.534973px;}
.x28{left:275.729987px;}
.x14{left:276.794973px;}
.x6c{left:277.889973px;}
.x15{left:283.739987px;}
.x63{left:286.409987px;}
.x29{left:290.654987px;}
.x6d{left:291.719987px;}
.x1b{left:303.959973px;}
.x36{left:305.024973px;}
.x1c{left:310.874987px;}
.x24{left:315.134987px;}
.x37{left:318.854987px;}
.x4{left:322.049987px;}
.x2d{left:327.899973px;}
.x66{left:329.504973px;}
.x70{left:332.159973px;}
.xc{left:340.169987px;}
.x2e{left:341.774987px;}
.x67{left:343.364987px;}
.x64{left:346.559973px;}
.xd{left:352.409987px;}
.x65{left:360.389987px;}
.x3a{left:361.454973px;}
.x35{left:366.239987px;}
.x3b{left:375.284987px;}
.x3e{left:387.524973px;}
.x18{left:389.114973px;}
.x19{left:396.029987px;}
.x3f{left:401.384987px;}
.x3c{left:423.734973px;}
.x61{left:436.499973px;}
.x3d{left:437.564987px;}
.x9{left:443.414987px;}
.x6{left:446.609987px;}
.x38{left:449.279973px;}
.x42{left:450.869987px;}
.x20{left:452.459973px;}
.x47{left:453.524973px;}
.x71{left:458.849973px;}
.x39{left:463.139987px;}
.x21{left:466.334987px;}
.x48{left:467.399987px;}
.x72{left:472.709987px;}
.x5b{left:473.774973px;}
.x7a{left:475.904973px;}
.x4c{left:481.754973px;}
.x6e{left:485.489973px;}
.x5c{left:487.619987px;}
.x1f{left:488.684973px;}
.x7b{left:489.734987px;}
.x3{left:496.124987px;}
.x6f{left:499.319987px;}
.x2b{left:503.039973px;}
.x7e{left:504.104973px;}
.x2c{left:516.869987px;}
.x7f{left:517.934987px;}
.x57{left:522.194973px;}
.x79{left:530.744987px;}
.x58{left:536.069987px;}
.x4d{left:538.724973px;}
.x59{left:541.919973px;}
.x22{left:549.359973px;}
.x4e{left:552.554987px;}
.x5a{left:555.749987px;}
.x23{left:563.189987px;}
.x40{left:565.319973px;}
.x55{left:575.429973px;}
.x2f{left:577.034973px;}
.x41{left:579.149987px;}
.x12{left:582.884973px;}
.x5{left:586.079987px;}
.x13{left:589.829987px;}
.x30{left:590.894987px;}
.x31{left:594.089973px;}
.x32{left:607.919987px;}
.x73{left:630.269973px;}
.x74{left:644.099987px;}
.x53{left:648.884973px;}
.x54{left:662.759987px;}
.x68{left:672.329973px;}
.x43{left:673.394973px;}
.x77{left:684.569973px;}
.x69{left:686.159987px;}
.x44{left:687.224987px;}
.x5f{left:692.009973px;}
.x25{left:697.874973px;}
.x4f{left:702.119973px;}
.x60{left:705.854987px;}
.x26{left:711.734987px;}
.x16{left:714.929973px;}
.x50{left:715.994987px;}
.x17{left:721.844987px;}
.x7c{left:750.569973px;}
.x7d{left:764.399987px;}
.x51{left:768.659973px;}
.x4b{left:773.489973px;}
.x52{left:782.534987px;}
.x2{left:787.319987px;}
@media print{
.v1{vertical-align:-13.242667pt;}
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-2.746667pt;}
.lse{letter-spacing:-1.712000pt;}
.ls2{letter-spacing:-0.965333pt;}
.ls7{letter-spacing:-0.853333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.005333pt;}
.ls14{letter-spacing:0.048000pt;}
.ls10{letter-spacing:0.079861pt;}
.ls13{letter-spacing:0.101333pt;}
.lsf{letter-spacing:0.112000pt;}
.ls5{letter-spacing:0.134379pt;}
.ls8{letter-spacing:0.165333pt;}
.ls4{letter-spacing:0.181333pt;}
.ls6{letter-spacing:0.187712pt;}
.lsc{letter-spacing:0.401067pt;}
.ls12{letter-spacing:0.853333pt;}
.ls3{letter-spacing:0.928000pt;}
.ls11{letter-spacing:1.000523pt;}
.lsd{letter-spacing:8.006667pt;}
.lsa{letter-spacing:13.713333pt;}
.ls15{letter-spacing:35.080523pt;}
.lsb{letter-spacing:128.259200pt;}
.ls9{letter-spacing:154.739200pt;}
.ls16{letter-spacing:216.787189pt;}
.ws0{word-spacing:-23.664843pt;}
.ws6{word-spacing:-18.732811pt;}
.ws1{word-spacing:-18.060811pt;}
.ws4{word-spacing:-17.879477pt;}
.ws8{word-spacing:-17.026144pt;}
.ws2{word-spacing:-16.301920pt;}
.ws7{word-spacing:-13.241333pt;}
.ws5{word-spacing:-12.496068pt;}
.ws3{word-spacing:0.000000pt;}
._1e{margin-left:-7.170964pt;}
._1d{margin-left:-6.206251pt;}
._10{margin-left:-4.920089pt;}
._11{margin-left:-3.858834pt;}
._2{margin-left:-2.701261pt;}
._1{margin-left:-1.768683pt;}
._0{width:1.382788pt;}
._8{width:2.379420pt;}
._3{width:3.851892pt;}
._4{width:4.894902pt;}
._7{width:5.788357pt;}
._6{width:7.138998pt;}
._5{width:8.746795pt;}
._e{width:9.679225pt;}
._d{width:10.837076pt;}
._f{width:11.948612pt;}
._17{width:12.876868pt;}
._1b{width:14.213541pt;}
._c{width:15.339031pt;}
._b{width:16.335925pt;}
._1a{width:18.811971pt;}
._1c{width:20.194805pt;}
._16{width:21.352468pt;}
._20{width:22.252927pt;}
._12{width:23.153280pt;}
._13{width:24.150134pt;}
._27{width:25.725867pt;}
._9{width:26.626272pt;}
._a{width:27.816070pt;}
._14{width:29.110049pt;}
._15{width:30.076884pt;}
._22{width:30.967489pt;}
._23{width:32.189520pt;}
._1f{width:33.314997pt;}
._2a{width:35.083471pt;}
._2d{width:36.724228pt;}
._29{width:37.669785pt;}
._2c{width:39.296261pt;}
._25{width:40.357475pt;}
._26{width:41.322218pt;}
._28{width:42.769253pt;}
._24{width:44.881072pt;}
._19{width:46.017196pt;}
._21{width:47.335595pt;}
._18{width:48.364628pt;}
._2b{width:50.487013pt;}
._2f{width:55.632192pt;}
._2e{width:56.789851pt;}
._39{width:102.469958pt;}
._3a{width:103.787178pt;}
._36{width:162.039578pt;}
._33{width:164.066715pt;}
._32{width:166.186587pt;}
._30{width:167.250268pt;}
._31{width:169.276215pt;}
._38{width:261.467456pt;}
._37{width:262.468154pt;}
._34{width:477.276374pt;}
._35{width:478.439579pt;}
.fs1{font-size:32.157867pt;}
.fs2{font-size:43.507200pt;}
.fs6{font-size:47.290667pt;}
.fs5{font-size:52.965333pt;}
.fs0{font-size:58.640000pt;}
.fs4{font-size:64.314667pt;}
.fs3{font-size:85.125333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:39.756000pt;}
.y4{bottom:60.090667pt;}
.y5e{bottom:97.922667pt;}
.y5f{bottom:101.233333pt;}
.y152{bottom:105.521333pt;}
.y21{bottom:105.994667pt;}
.y41{bottom:109.304000pt;}
.y72{bottom:115.925333pt;}
.y5d{bottom:116.398667pt;}
.ya4{bottom:119.236000pt;}
.y141{bottom:120.654667pt;}
.y147{bottom:128.693333pt;}
.y15c{bottom:132.477333pt;}
.y151{bottom:132.949333pt;}
.y20{bottom:133.893333pt;}
.ya3{bottom:134.373333pt;}
.y40{bottom:136.733333pt;}
.y71{bottom:137.200000pt;}
.y154{bottom:140.986667pt;}
.y140{bottom:148.080000pt;}
.y8e{bottom:151.866667pt;}
.y70{bottom:152.333333pt;}
.ybe{bottom:155.173333pt;}
.y10e{bottom:156.120000pt;}
.y15b{bottom:159.906667pt;}
.y150{bottom:160.853333pt;}
.y1f{bottom:161.320000pt;}
.y3f{bottom:164.160000pt;}
.y153{bottom:168.893333pt;}
.y8d{bottom:169.840000pt;}
.yce{bottom:170.306667pt;}
.yf9{bottom:172.200000pt;}
.y135{bottom:173.146667pt;}
.y13f{bottom:175.986667pt;}
.y10d{bottom:184.053333pt;}
.y15a{bottom:187.360000pt;}
.y8c{bottom:187.840000pt;}
.y5c{bottom:188.306667pt;}
.y1e{bottom:188.786667pt;}
.ye4{bottom:191.146667pt;}
.y15d{bottom:195.400000pt;}
.y14f{bottom:196.346667pt;}
.y14a{bottom:199.666667pt;}
.y3e{bottom:200.133333pt;}
.ya2{bottom:203.440000pt;}
.y14b{bottom:204.866667pt;}
.y8b{bottom:205.813333pt;}
.yfd{bottom:206.280000pt;}
.y131{bottom:207.706667pt;}
.ybd{bottom:209.120000pt;}
.y10c{bottom:211.480000pt;}
.y5b{bottom:215.733333pt;}
.y1d{bottom:216.680000pt;}
.y159{bottom:223.306667pt;}
.y14e{bottom:223.773333pt;}
.y8a{bottom:224.253333pt;}
.y6f{bottom:227.560000pt;}
.ya1{bottom:230.866667pt;}
.y3d{bottom:235.600000pt;}
.y10b{bottom:238.906667pt;}
.y89{bottom:242.226667pt;}
.y5a{bottom:243.640000pt;}
.y1c{bottom:244.120000pt;}
.yf6{bottom:245.533333pt;}
.y145{bottom:246.946667pt;}
.y158{bottom:250.733333pt;}
.y14d{bottom:251.680000pt;}
.y13d{bottom:253.093333pt;}
.y6d{bottom:255.026667pt;}
.y130{bottom:256.440000pt;}
.ya0{bottom:258.800000pt;}
.y6e{bottom:260.226667pt;}
.yf5{bottom:260.693333pt;}
.y3c{bottom:263.066667pt;}
.yb8{bottom:263.533333pt;}
.y10a{bottom:266.840000pt;}
.y59{bottom:271.106667pt;}
.y1b{bottom:271.573333pt;}
.y144{bottom:274.880000pt;}
.y88{bottom:278.200000pt;}
.yb7{bottom:278.666667pt;}
.y14c{bottom:279.146667pt;}
.y13c{bottom:280.560000pt;}
.ye3{bottom:281.506667pt;}
.yf8{bottom:282.453333pt;}
.y6c{bottom:282.920000pt;}
.y12f{bottom:283.866667pt;}
.y9f{bottom:286.240000pt;}
.y3b{bottom:290.493333pt;}
.y109{bottom:294.280000pt;}
.y87{bottom:296.160000pt;}
.yea{bottom:296.640000pt;}
.y58{bottom:298.533333pt;}
.y1a{bottom:299.480000pt;}
.y143{bottom:302.306667pt;}
.ycc{bottom:306.573333pt;}
.y13b{bottom:308.466667pt;}
.y6b{bottom:310.346667pt;}
.y12e{bottom:311.293333pt;}
.y157{bottom:313.666667pt;}
.y86{bottom:314.133333pt;}
.yf2{bottom:314.613333pt;}
.ye2{bottom:317.440000pt;}
.y3a{bottom:318.386667pt;}
.y108{bottom:321.706667pt;}
.ya9{bottom:326.426667pt;}
.y19{bottom:326.906667pt;}
.y114{bottom:329.746667pt;}
.y85{bottom:332.133333pt;}
.y57{bottom:334.506667pt;}
.y13a{bottom:335.920000pt;}
.y6a{bottom:337.813333pt;}
.ycb{bottom:339.706667pt;}
.y9e{bottom:341.600000pt;}
.ye8{bottom:342.546667pt;}
.y39{bottom:345.853333pt;}
.y12d{bottom:347.266667pt;}
.ye9{bottom:347.746667pt;}
.y115{bottom:349.640000pt;}
.y84{bottom:350.106667pt;}
.ye1{bottom:353.413333pt;}
.y101{bottom:353.893333pt;}
.y18{bottom:354.360000pt;}
.y107{bottom:357.680000pt;}
.y56{bottom:361.933333pt;}
.y139{bottom:365.240000pt;}
.y69{bottom:365.720000pt;}
.y83{bottom:368.080000pt;}
.ye0{bottom:368.546667pt;}
.yb6{bottom:369.026667pt;}
.ye7{bottom:369.973333pt;}
.y38{bottom:373.760000pt;}
.y9d{bottom:377.066667pt;}
.y100{bottom:381.320000pt;}
.y17{bottom:382.266667pt;}
.y12c{bottom:382.733333pt;}
.y106{bottom:385.106667pt;}
.y82{bottom:386.053333pt;}
.y55{bottom:389.360000pt;}
.y68{bottom:393.146667pt;}
.yb5{bottom:396.920000pt;}
.ye5{bottom:397.400000pt;}
.y37{bottom:401.186667pt;}
.ye6{bottom:402.600000pt;}
.y80{bottom:404.013333pt;}
.y149{bottom:404.493333pt;}
.y9c{bottom:404.960000pt;}
.yde{bottom:405.440000pt;}
.yf1{bottom:406.413333pt;}
.y81{bottom:407.360000pt;}
.yff{bottom:409.253333pt;}
.y16{bottom:409.720000pt;}
.y12b{bottom:410.200000pt;}
.ydf{bottom:410.666667pt;}
.y105{bottom:412.560000pt;}
.y54{bottom:417.293333pt;}
.y137{bottom:420.600000pt;}
.y7f{bottom:422.026667pt;}
.yc9{bottom:425.333333pt;}
.y138{bottom:425.800000pt;}
.y36{bottom:428.640000pt;}
.y155{bottom:430.066667pt;}
.yca{bottom:430.533333pt;}
.y9b{bottom:432.426667pt;}
.ydd{bottom:433.373333pt;}
.yc1{bottom:433.840000pt;}
.yfb{bottom:436.680000pt;}
.y15{bottom:437.160000pt;}
.y12a{bottom:438.106667pt;}
.y7e{bottom:439.986667pt;}
.y113{bottom:440.466667pt;}
.yfc{bottom:441.880000pt;}
.y53{bottom:444.720000pt;}
.y104{bottom:448.506667pt;}
.yc8{bottom:452.760000pt;}
.y35{bottom:456.546667pt;}
.y7d{bottom:457.960000pt;}
.yb4{bottom:459.853333pt;}
.ydc{bottom:460.800000pt;}
.yc0{bottom:464.586667pt;}
.y129{bottom:465.533333pt;}
.y9a{bottom:467.893333pt;}
.y52{bottom:472.146667pt;}
.y14{bottom:473.093333pt;}
.y7b{bottom:475.933333pt;}
.yf4{bottom:477.346667pt;}
.y7c{bottom:479.240000pt;}
.yc7{bottom:480.186667pt;}
.y34{bottom:484.000000pt;}
.y134{bottom:485.426667pt;}
.ydb{bottom:488.266667pt;}
.y67{bottom:492.040000pt;}
.y128{bottom:492.986667pt;}
.y7a{bottom:494.413333pt;}
.yb3{bottom:495.360000pt;}
.y99{bottom:495.826667pt;}
.y51{bottom:500.080000pt;}
.y112{bottom:503.386667pt;}
.yc6{bottom:508.120000pt;}
.y13{bottom:508.600000pt;}
.y33{bottom:511.426667pt;}
.yd9{bottom:516.160000pt;}
.ybc{bottom:519.466667pt;}
.y127{bottom:520.893333pt;}
.yda{bottom:521.360000pt;}
.y98{bottom:523.253333pt;}
.y50{bottom:527.506667pt;}
.yb2{bottom:531.293333pt;}
.yc5{bottom:535.546667pt;}
.y148{bottom:536.493333pt;}
.y32{bottom:539.333333pt;}
.y12{bottom:543.120000pt;}
.yd8{bottom:543.586667pt;}
.ybb{bottom:547.373333pt;}
.y126{bottom:548.320000pt;}
.y97{bottom:550.680000pt;}
.yfa{bottom:554.933333pt;}
.y66{bottom:555.413333pt;}
.yb1{bottom:558.760000pt;}
.y4e{bottom:563.013333pt;}
.y31{bottom:566.800000pt;}
.y4f{bottom:568.213333pt;}
.yd6{bottom:571.053333pt;}
.yf0{bottom:572.000000pt;}
.y79{bottom:574.840000pt;}
.yd7{bottom:576.253333pt;}
.y11{bottom:576.720000pt;}
.y96{bottom:578.613333pt;}
.yba{bottom:580.040000pt;}
.y65{bottom:582.866667pt;}
.y156{bottom:586.653333pt;}
.y4d{bottom:590.906667pt;}
.y30{bottom:594.226667pt;}
.yd5{bottom:598.946667pt;}
.y78{bottom:602.266667pt;}
.y125{bottom:603.680000pt;}
.y64{bottom:610.306667pt;}
.y95{bottom:614.080000pt;}
.y13e{bottom:615.506667pt;}
.y4c{bottom:618.346667pt;}
.y2f{bottom:622.120000pt;}
.yd3{bottom:626.386667pt;}
.y10{bottom:626.853333pt;}
.y77{bottom:630.160000pt;}
.yd4{bottom:631.586667pt;}
.y63{bottom:638.240000pt;}
.y124{bottom:639.186667pt;}
.y94{bottom:641.546667pt;}
.y4b{bottom:646.280000pt;}
.y2e{bottom:649.586667pt;}
.yd2{bottom:653.840000pt;}
.yef{bottom:654.786667pt;}
.yb0{bottom:657.626667pt;}
.yf{bottom:662.346667pt;}
.y111{bottom:662.826667pt;}
.y62{bottom:665.666667pt;}
.y123{bottom:667.080000pt;}
.y93{bottom:669.440000pt;}
.y76{bottom:670.866667pt;}
.y4a{bottom:673.706667pt;}
.yee{bottom:677.013333pt;}
.y2d{bottom:677.480000pt;}
.yfe{bottom:678.906667pt;}
.yd1{bottom:681.746667pt;}
.yaf{bottom:685.053333pt;}
.y103{bottom:690.253333pt;}
.y61{bottom:693.093333pt;}
.y122{bottom:694.506667pt;}
.ye{bottom:697.826667pt;}
.y110{bottom:698.293333pt;}
.y49{bottom:701.133333pt;}
.y2c{bottom:704.920000pt;}
.yd0{bottom:709.200000pt;}
.yed{bottom:712.986667pt;}
.y133{bottom:714.400000pt;}
.y102{bottom:718.186667pt;}
.y60{bottom:721.026667pt;}
.y120{bottom:721.973333pt;}
.y10f{bottom:726.226667pt;}
.y121{bottom:727.173333pt;}
.y48{bottom:729.066667pt;}
.y92{bottom:732.373333pt;}
.yd{bottom:733.786667pt;}
.ycd{bottom:734.266667pt;}
.yc4{bottom:737.106667pt;}
.y2b{bottom:740.413333pt;}
.yf3{bottom:742.306667pt;}
.y75{bottom:748.453333pt;}
.yae{bottom:753.653333pt;}
.y47{bottom:756.493333pt;}
.y11f{bottom:757.906667pt;}
.y91{bottom:759.800000pt;}
.yc{bottom:760.280000pt;}
.ya8{bottom:761.693333pt;}
.yc3{bottom:764.533333pt;}
.yeb{bottom:767.840000pt;}
.yec{bottom:773.040000pt;}
.y2a{bottom:775.880000pt;}
.y46{bottom:783.920000pt;}
.y11e{bottom:785.373333pt;}
.yb{bottom:791.986667pt;}
.y90{bottom:795.773333pt;}
.yf7{bottom:800.973333pt;}
.yac{bottom:803.813333pt;}
.yad{bottom:809.013333pt;}
.y29{bottom:811.853333pt;}
.y11d{bottom:812.800000pt;}
.ya7{bottom:819.893333pt;}
.y15e{bottom:823.200000pt;}
.y132{bottom:825.093333pt;}
.ya{bottom:828.880000pt;}
.y8f{bottom:831.240000pt;}
.yb9{bottom:836.440000pt;}
.y28{bottom:839.280000pt;}
.y11c{bottom:840.706667pt;}
.y74{bottom:844.480000pt;}
.ya6{bottom:847.320000pt;}
.ycf{bottom:852.520000pt;}
.yab{bottom:858.666667pt;}
.y27{bottom:866.746667pt;}
.y11a{bottom:868.160000pt;}
.y136{bottom:871.946667pt;}
.y11b{bottom:873.360000pt;}
.y9{bottom:873.840000pt;}
.ya5{bottom:874.786667pt;}
.yaa{bottom:886.600000pt;}
.y45{bottom:894.640000pt;}
.y119{bottom:895.586667pt;}
.y146{bottom:899.840000pt;}
.y26{bottom:902.680000pt;}
.y73{bottom:907.880000pt;}
.y8{bottom:918.760000pt;}
.y44{bottom:922.066667pt;}
.y142{bottom:927.280000pt;}
.y25{bottom:930.106667pt;}
.y118{bottom:931.533333pt;}
.y43{bottom:949.533333pt;}
.y7{bottom:955.213333pt;}
.y24{bottom:957.573333pt;}
.y117{bottom:958.986667pt;}
.y42{bottom:977.440000pt;}
.y23{bottom:985.480000pt;}
.y116{bottom:986.413333pt;}
.ybf{bottom:990.680000pt;}
.y6{bottom:1000.133333pt;}
.y22{bottom:1012.933333pt;}
.yc2{bottom:1018.133333pt;}
.y3{bottom:1069.213333pt;}
.y2{bottom:1076.773333pt;}
.y1{bottom:1107.080000pt;}
.hd{height:25.276992pt;}
.he{height:25.383659pt;}
.ha{height:25.420992pt;}
.hb{height:25.436992pt;}
.h4{height:26.316692pt;}
.h10{height:33.539650pt;}
.h9{height:38.663659pt;}
.h2{height:42.806055pt;}
.h5{height:45.376650pt;}
.hc{height:57.688497pt;}
.hf{height:58.190956pt;}
.h3{height:58.325039pt;}
.h8{height:61.159687pt;}
.h7{height:67.078188pt;}
.h6{height:88.783062pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.680000pt;}
.w1{width:793.333333pt;}
.w3{width:793.533310pt;}
.w2{width:793.533322pt;}
.w0{width:793.533333pt;}
.x0{left:0.000000pt;}
.x1{left:94.643988pt;}
.x11{left:101.265322pt;}
.x7{left:107.413322pt;}
.x1a{left:113.559988pt;}
.x49{left:121.126643pt;}
.x82{left:123.018655pt;}
.x75{left:130.111976pt;}
.x4a{left:133.426655pt;}
.x1d{left:141.026643pt;}
.x76{left:142.439988pt;}
.x1e{left:147.173322pt;}
.xf{left:148.119976pt;}
.xa{left:150.479988pt;}
.xb{left:151.426655pt;}
.x10{left:154.266655pt;}
.x2a{left:162.306655pt;}
.x6a{left:165.133310pt;}
.x5d{left:166.079976pt;}
.x33{left:174.119976pt;}
.x6b{left:177.439988pt;}
.x5e{left:178.386655pt;}
.x80{left:181.693310pt;}
.x34{left:186.413322pt;}
.x81{left:194.013322pt;}
.xe{left:196.386655pt;}
.x78{left:198.746655pt;}
.x8{left:204.893322pt;}
.x56{left:208.679988pt;}
.x45{left:212.466643pt;}
.x46{left:224.759988pt;}
.x27{left:232.799976pt;}
.x62{left:242.253310pt;}
.x28{left:245.093322pt;}
.x14{left:246.039976pt;}
.x6c{left:247.013310pt;}
.x15{left:252.213322pt;}
.x63{left:254.586655pt;}
.x29{left:258.359988pt;}
.x6d{left:259.306655pt;}
.x1b{left:270.186643pt;}
.x36{left:271.133310pt;}
.x1c{left:276.333322pt;}
.x24{left:280.119988pt;}
.x37{left:283.426655pt;}
.x4{left:286.266655pt;}
.x2d{left:291.466643pt;}
.x66{left:292.893310pt;}
.x70{left:295.253310pt;}
.xc{left:302.373322pt;}
.x2e{left:303.799988pt;}
.x67{left:305.213322pt;}
.x64{left:308.053310pt;}
.xd{left:313.253322pt;}
.x65{left:320.346655pt;}
.x3a{left:321.293310pt;}
.x35{left:325.546655pt;}
.x3b{left:333.586655pt;}
.x3e{left:344.466643pt;}
.x18{left:345.879976pt;}
.x19{left:352.026655pt;}
.x3f{left:356.786655pt;}
.x3c{left:376.653310pt;}
.x61{left:387.999976pt;}
.x3d{left:388.946655pt;}
.x9{left:394.146655pt;}
.x6{left:396.986655pt;}
.x38{left:399.359976pt;}
.x42{left:400.773322pt;}
.x20{left:402.186643pt;}
.x47{left:403.133310pt;}
.x71{left:407.866643pt;}
.x39{left:411.679988pt;}
.x21{left:414.519988pt;}
.x48{left:415.466655pt;}
.x72{left:420.186655pt;}
.x5b{left:421.133310pt;}
.x7a{left:423.026643pt;}
.x4c{left:428.226643pt;}
.x6e{left:431.546643pt;}
.x5c{left:433.439988pt;}
.x1f{left:434.386643pt;}
.x7b{left:435.319988pt;}
.x3{left:440.999988pt;}
.x6f{left:443.839988pt;}
.x2b{left:447.146643pt;}
.x7e{left:448.093310pt;}
.x2c{left:459.439988pt;}
.x7f{left:460.386655pt;}
.x57{left:464.173310pt;}
.x79{left:471.773322pt;}
.x58{left:476.506655pt;}
.x4d{left:478.866643pt;}
.x59{left:481.706643pt;}
.x22{left:488.319976pt;}
.x4e{left:491.159988pt;}
.x5a{left:493.999988pt;}
.x23{left:500.613322pt;}
.x40{left:502.506643pt;}
.x55{left:511.493310pt;}
.x2f{left:512.919976pt;}
.x41{left:514.799988pt;}
.x12{left:518.119976pt;}
.x5{left:520.959988pt;}
.x13{left:524.293322pt;}
.x30{left:525.239988pt;}
.x31{left:528.079976pt;}
.x32{left:540.373322pt;}
.x73{left:560.239976pt;}
.x74{left:572.533322pt;}
.x53{left:576.786643pt;}
.x54{left:589.119988pt;}
.x68{left:597.626643pt;}
.x43{left:598.573310pt;}
.x77{left:608.506643pt;}
.x69{left:609.919988pt;}
.x44{left:610.866655pt;}
.x5f{left:615.119976pt;}
.x25{left:620.333310pt;}
.x4f{left:624.106643pt;}
.x60{left:627.426655pt;}
.x26{left:632.653322pt;}
.x16{left:635.493310pt;}
.x50{left:636.439988pt;}
.x17{left:641.639988pt;}
.x7c{left:667.173310pt;}
.x7d{left:679.466655pt;}
.x51{left:683.253310pt;}
.x4b{left:687.546643pt;}
.x52{left:695.586655pt;}
.x2{left:699.839988pt;}
}




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