
    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_1c870979d3e64a30278dafb8.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_2e8db0918bbdc5b4e4e8f17c.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_e8596334066b25876ddb165b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.979004;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_f8af4410b13b150b3e3fd718.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_097e796d2bd5323b332fe7bc.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_43550e644ea56663e57c7035.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_16bd24b689cafe0796e1f5c3.woff')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls16{letter-spacing:-0.243600px;}
.ls11{letter-spacing:-0.186600px;}
.ls17{letter-spacing:-0.160800px;}
.ls15{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.057000px;}
.ls18{letter-spacing:-0.038880px;}
.ls12{letter-spacing:-0.014760px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls3{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.173400px;}
.ls13{letter-spacing:0.181200px;}
.ls14{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.374760px;}
.ls1a{letter-spacing:47.726640px;}
.ls19{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;}
}
.ws13{word-spacing:-60.120000px;}
.ws2{word-spacing:-18.396600px;}
.ws6{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.wse{word-spacing:-13.425600px;}
.wsb{word-spacing:-13.407600px;}
.ws8{word-spacing:-13.399800px;}
.ws4{word-spacing:-13.342800px;}
.wsd{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.211640px;}
.ws12{word-spacing:-13.187520px;}
.wsf{word-spacing:-13.072800px;}
.ws11{word-spacing:-13.065600px;}
.ws9{word-spacing:-13.039800px;}
.ws10{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._4{margin-left:-3.487200px;}
._b{margin-left:-2.484840px;}
._0{margin-left:-1.140000px;}
._1{width:1.369680px;}
._3{width:3.306600px;}
._c{width:4.627200px;}
._7{width:6.012000px;}
._8{width:7.046880px;}
._a{width:8.570160px;}
._9{width:9.619200px;}
._2{width:11.362800px;}
._d{width:14.488800px;}
._e{width:15.540361px;}
._f{width:17.165039px;}
._16{width:18.522480px;}
._14{width:19.556400px;}
._10{width:20.621160px;}
._19{width:21.703320px;}
._11{width:23.025960px;}
._17{width:24.168240px;}
._13{width:25.308240px;}
._12{width:26.392680px;}
._18{width:28.309680px;}
._5{width:29.458800px;}
._6{width:30.598800px;}
._1a{width:32.885640px;}
._15{width:72.144000px;}
._1f{width:79.897200px;}
._1d{width:129.738960px;}
._1e{width:130.881240px;}
._21{width:132.287760px;}
._22{width:133.346160px;}
._20{width:205.309800px;}
._1b{width:224.007120px;}
._1c{width:225.269640px;}
.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;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y62{bottom:7.830000px;}
.y121{bottom:7.860000px;}
.y64{bottom:7.920000px;}
.y66{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yf0{bottom:111.900000px;}
.y88{bottom:112.080000px;}
.ya8{bottom:112.170000px;}
.y5b{bottom:112.530000px;}
.y169{bottom:116.940000px;}
.y18c{bottom:124.770000px;}
.y87{bottom:129.630000px;}
.ya7{bottom:129.720000px;}
.y5a{bottom:130.170000px;}
.y168{bottom:134.580000px;}
.yd0{bottom:137.370000px;}
.y27{bottom:140.250000px;}
.y18b{bottom:142.410000px;}
.y86{bottom:147.180000px;}
.ya6{bottom:147.270000px;}
.y167{bottom:152.130000px;}
.ycf{bottom:155.010000px;}
.y26{bottom:157.800000px;}
.y18a{bottom:159.960000px;}
.y11c{bottom:160.500000px;}
.y146{bottom:162.930000px;}
.y85{bottom:164.820000px;}
.yef{bottom:164.910000px;}
.y59{bottom:165.720000px;}
.y166{bottom:169.680000px;}
.yce{bottom:172.560000px;}
.y189{bottom:177.600000px;}
.y11b{bottom:178.050000px;}
.y145{bottom:180.570000px;}
.y84{bottom:182.370000px;}
.yee{bottom:182.460000px;}
.ya5{bottom:182.910000px;}
.y58{bottom:183.270000px;}
.y165{bottom:187.320000px;}
.ycd{bottom:190.110000px;}
.y25{bottom:193.350000px;}
.y188{bottom:195.150000px;}
.y11a{bottom:195.600000px;}
.y144{bottom:198.120000px;}
.yed{bottom:200.100000px;}
.ya4{bottom:200.460000px;}
.y57{bottom:200.910000px;}
.y164{bottom:204.870000px;}
.ycc{bottom:207.750000px;}
.y24{bottom:210.990000px;}
.y187{bottom:212.700000px;}
.y119{bottom:213.240000px;}
.y143{bottom:215.760000px;}
.yec{bottom:217.650000px;}
.y83{bottom:218.010000px;}
.ya3{bottom:218.100000px;}
.y56{bottom:218.460000px;}
.ycb{bottom:225.300000px;}
.y23{bottom:228.540000px;}
.y118{bottom:230.790000px;}
.y142{bottom:233.310000px;}
.yeb{bottom:235.200000px;}
.y82{bottom:235.560000px;}
.ya2{bottom:235.650000px;}
.y55{bottom:236.100000px;}
.y186{bottom:239.610000px;}
.y163{bottom:240.510000px;}
.y22{bottom:246.090000px;}
.y117{bottom:248.430000px;}
.y141{bottom:250.860000px;}
.y81{bottom:253.110000px;}
.ya1{bottom:253.200000px;}
.y54{bottom:253.650000px;}
.y162{bottom:258.060000px;}
.yca{bottom:260.940000px;}
.yea{bottom:261.840000px;}
.y21{bottom:263.730000px;}
.y116{bottom:265.980000px;}
.ya0{bottom:270.840000px;}
.y53{bottom:271.200000px;}
.y161{bottom:275.610000px;}
.yc9{bottom:278.490000px;}
.y80{bottom:279.750000px;}
.y20{bottom:281.280000px;}
.y140{bottom:286.500000px;}
.y185{bottom:287.940000px;}
.y9f{bottom:288.390000px;}
.y52{bottom:288.840000px;}
.y115{bottom:292.530000px;}
.y160{bottom:293.250000px;}
.yc8{bottom:296.040000px;}
.ye9{bottom:297.390000px;}
.y1f{bottom:298.920000px;}
.y13f{bottom:304.050000px;}
.y184{bottom:305.490000px;}
.y51{bottom:306.390000px;}
.y15f{bottom:310.800000px;}
.yc7{bottom:313.680000px;}
.ye8{bottom:314.940000px;}
.y7f{bottom:315.300000px;}
.y1e{bottom:316.470000px;}
.y13e{bottom:321.690000px;}
.y183{bottom:323.040000px;}
.y50{bottom:323.940000px;}
.y114{bottom:328.170000px;}
.y15e{bottom:328.440000px;}
.yc6{bottom:331.230000px;}
.ye7{bottom:332.580000px;}
.y7e{bottom:332.940000px;}
.y1d{bottom:334.020000px;}
.y13d{bottom:339.240000px;}
.y182{bottom:340.680000px;}
.y9e{bottom:341.580000px;}
.y1ab{bottom:341.940000px;}
.y113{bottom:345.720000px;}
.yc5{bottom:348.870000px;}
.ye6{bottom:350.130000px;}
.y7d{bottom:350.490000px;}
.y13c{bottom:356.790000px;}
.y181{bottom:358.230000px;}
.y9d{bottom:359.130000px;}
.y4f{bottom:359.580000px;}
.y112{bottom:363.360000px;}
.y15d{bottom:363.990000px;}
.yc4{bottom:366.420000px;}
.ye5{bottom:367.770000px;}
.y7c{bottom:368.040000px;}
.y1c{bottom:369.660000px;}
.y13b{bottom:374.430000px;}
.y180{bottom:375.870000px;}
.y9c{bottom:376.770000px;}
.y4e{bottom:377.130000px;}
.y111{bottom:380.910000px;}
.y15c{bottom:381.540000px;}
.ye4{bottom:385.320000px;}
.y7b{bottom:385.680000px;}
.y1aa{bottom:386.130000px;}
.y1b{bottom:387.210000px;}
.y13a{bottom:391.980000px;}
.y4d{bottom:394.770000px;}
.y110{bottom:398.460000px;}
.y15b{bottom:399.180000px;}
.yc3{bottom:401.970000px;}
.y7a{bottom:403.230000px;}
.y9b{bottom:403.320000px;}
.y1a{bottom:404.850000px;}
.y17f{bottom:411.420000px;}
.ye3{bottom:411.870000px;}
.y4c{bottom:412.320000px;}
.y1a9{bottom:412.770000px;}
.y10f{bottom:416.100000px;}
.y15a{bottom:416.730000px;}
.yc2{bottom:419.610000px;}
.y79{bottom:420.870000px;}
.y19{bottom:422.400000px;}
.y139{bottom:427.620000px;}
.y17e{bottom:428.970000px;}
.y4b{bottom:429.870000px;}
.y1a8{bottom:430.320000px;}
.y10e{bottom:433.650000px;}
.y159{bottom:434.370000px;}
.yc1{bottom:437.160000px;}
.y78{bottom:438.420000px;}
.y9a{bottom:439.230000px;}
.y18{bottom:439.950000px;}
.y138{bottom:445.170000px;}
.y17d{bottom:446.610000px;}
.y4a{bottom:447.510000px;}
.y1a7{bottom:447.870000px;}
.y158{bottom:451.920000px;}
.y77{bottom:455.970000px;}
.y17{bottom:457.590000px;}
.y10d{bottom:460.200000px;}
.y137{bottom:462.720000px;}
.yc0{bottom:463.800000px;}
.y17c{bottom:464.160000px;}
.y49{bottom:465.060000px;}
.y1a6{bottom:465.510000px;}
.y76{bottom:473.640000px;}
.y16{bottom:475.170000px;}
.y157{bottom:478.500000px;}
.y136{bottom:480.390000px;}
.y17b{bottom:481.830000px;}
.y48{bottom:482.730000px;}
.y99{bottom:487.500000px;}
.y75{bottom:491.190000px;}
.y1a5{bottom:492.090000px;}
.y10c{bottom:495.870000px;}
.y135{bottom:497.940000px;}
.ybf{bottom:499.380000px;}
.ye2{bottom:500.280000px;}
.y15{bottom:502.080000px;}
.y98{bottom:505.140000px;}
.y74{bottom:508.830000px;}
.y1a4{bottom:509.730000px;}
.y10b{bottom:513.420000px;}
.y156{bottom:514.140000px;}
.y134{bottom:515.580000px;}
.ybe{bottom:516.930000px;}
.ye1{bottom:517.830000px;}
.y47{bottom:518.280000px;}
.y97{bottom:522.690000px;}
.y1a3{bottom:527.280000px;}
.y10a{bottom:531.060000px;}
.y155{bottom:531.690000px;}
.ybd{bottom:534.570000px;}
.y17a{bottom:534.930000px;}
.y46{bottom:535.830000px;}
.y96{bottom:540.330000px;}
.y133{bottom:542.130000px;}
.y73{bottom:544.380000px;}
.ye0{bottom:544.470000px;}
.y1a2{bottom:544.830000px;}
.y109{bottom:548.610000px;}
.y154{bottom:549.330000px;}
.y14{bottom:550.680000px;}
.ybc{bottom:552.120000px;}
.y179{bottom:552.570000px;}
.y45{bottom:553.470000px;}
.y95{bottom:557.880000px;}
.y72{bottom:561.930000px;}
.y108{bottom:566.160000px;}
.y153{bottom:566.880000px;}
.ybb{bottom:569.760000px;}
.y178{bottom:570.120000px;}
.y44{bottom:571.020000px;}
.y1a1{bottom:571.470000px;}
.y94{bottom:575.430000px;}
.y132{bottom:578.040000px;}
.y71{bottom:579.570000px;}
.ydf{bottom:580.020000px;}
.y107{bottom:583.800000px;}
.y152{bottom:584.430000px;}
.yba{bottom:587.310000px;}
.y13{bottom:587.670000px;}
.y177{bottom:587.760000px;}
.y1a0{bottom:589.020000px;}
.y70{bottom:597.120000px;}
.y43{bottom:597.660000px;}
.y106{bottom:601.350000px;}
.y151{bottom:602.070000px;}
.y12{bottom:605.310000px;}
.y19f{bottom:606.660000px;}
.y93{bottom:611.070000px;}
.y6f{bottom:614.760000px;}
.yde{bottom:615.210000px;}
.y150{bottom:619.620000px;}
.yb9{bottom:620.250000px;}
.y11{bottom:622.860000px;}
.y131{bottom:626.280000px;}
.y105{bottom:627.990000px;}
.y92{bottom:628.620000px;}
.y6e{bottom:632.310000px;}
.ydd{bottom:632.760000px;}
.y19e{bottom:633.210000px;}
.y42{bottom:633.570000px;}
.y10{bottom:640.500000px;}
.y130{bottom:643.920000px;}
.y91{bottom:646.260000px;}
.yb8{bottom:647.610000px;}
.y6d{bottom:649.860000px;}
.ydc{bottom:650.400000px;}
.y19d{bottom:650.760000px;}
.y14f{bottom:655.260000px;}
.yf{bottom:658.050000px;}
.y12f{bottom:661.470000px;}
.y90{bottom:663.810000px;}
.y104{bottom:663.900000px;}
.y6c{bottom:667.500000px;}
.ydb{bottom:667.950000px;}
.y19c{bottom:668.400000px;}
.y14e{bottom:672.810000px;}
.yb7{bottom:674.970000px;}
.ye{bottom:675.600000px;}
.y176{bottom:676.050000px;}
.y12e{bottom:679.020000px;}
.y8f{bottom:681.360000px;}
.y41{bottom:681.810000px;}
.y6b{bottom:685.050000px;}
.yda{bottom:685.590000px;}
.y14d{bottom:690.360000px;}
.yd{bottom:693.240000px;}
.y175{bottom:693.690000px;}
.y19b{bottom:694.950000px;}
.y12d{bottom:696.660000px;}
.y8e{bottom:699.000000px;}
.y40{bottom:699.360000px;}
.yb6{bottom:702.240000px;}
.y6a{bottom:702.690000px;}
.y14c{bottom:708.000000px;}
.yc{bottom:710.790000px;}
.y174{bottom:711.240000px;}
.yd9{bottom:712.140000px;}
.y19a{bottom:712.590000px;}
.y3f{bottom:717.000000px;}
.y69{bottom:720.240000px;}
.y12c{bottom:723.210000px;}
.y14b{bottom:725.550000px;}
.yb{bottom:728.430000px;}
.y173{bottom:728.790000px;}
.yb5{bottom:729.600000px;}
.y103{bottom:729.690000px;}
.y199{bottom:730.140000px;}
.y3e{bottom:734.550000px;}
.y14a{bottom:743.190000px;}
.y172{bottom:746.430000px;}
.y102{bottom:747.330000px;}
.y198{bottom:747.690000px;}
.yd8{bottom:748.050000px;}
.y3d{bottom:752.190000px;}
.y68{bottom:753.180000px;}
.ya{bottom:755.340000px;}
.y12b{bottom:758.850000px;}
.y171{bottom:763.980000px;}
.y101{bottom:764.880000px;}
.y8d{bottom:769.740000px;}
.y197{bottom:774.330000px;}
.y12a{bottom:776.400000px;}
.yb4{bottom:778.290000px;}
.y149{bottom:778.740000px;}
.y67{bottom:780.540000px;}
.y170{bottom:781.530000px;}
.y100{bottom:782.520000px;}
.y8c{bottom:787.290000px;}
.y3c{bottom:787.740000px;}
.y196{bottom:791.880000px;}
.y129{bottom:793.950000px;}
.yd7{bottom:796.290000px;}
.y9{bottom:803.580000px;}
.y8b{bottom:804.930000px;}
.y3b{bottom:805.290000px;}
.y16f{bottom:808.170000px;}
.yff{bottom:809.070000px;}
.y195{bottom:809.520000px;}
.y128{bottom:811.590000px;}
.yb3{bottom:813.930000px;}
.y3a{bottom:822.930000px;}
.y65{bottom:825.450000px;}
.y194{bottom:827.070000px;}
.y127{bottom:829.140000px;}
.yb2{bottom:831.480000px;}
.y8{bottom:839.130000px;}
.y39{bottom:840.480000px;}
.y16e{bottom:841.110000px;}
.yfe{bottom:844.620000px;}
.y126{bottom:846.780000px;}
.yb1{bottom:849.030000px;}
.y193{bottom:853.620000px;}
.y38{bottom:858.030000px;}
.yfd{bottom:862.260000px;}
.yb0{bottom:866.670000px;}
.y16d{bottom:868.470000px;}
.y63{bottom:870.360000px;}
.y192{bottom:871.260000px;}
.y125{bottom:873.330000px;}
.y7{bottom:874.950000px;}
.y37{bottom:875.670000px;}
.yfc{bottom:879.810000px;}
.yaf{bottom:884.220000px;}
.y191{bottom:888.810000px;}
.y8a{bottom:893.220000px;}
.y16c{bottom:895.830000px;}
.yfb{bottom:897.450000px;}
.y61{bottom:897.720000px;}
.yae{bottom:901.860000px;}
.y148{bottom:902.220000px;}
.y124{bottom:909.240000px;}
.y89{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y36{bottom:911.220000px;}
.yfa{bottom:915.000000px;}
.y190{bottom:915.450000px;}
.yad{bottom:919.410000px;}
.y147{bottom:919.860000px;}
.y16b{bottom:923.100000px;}
.y35{bottom:928.860000px;}
.y18f{bottom:933.000000px;}
.yd6{bottom:937.410000px;}
.yf9{bottom:941.550000px;}
.y34{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.y16a{bottom:950.460000px;}
.y18e{bottom:950.550000px;}
.y123{bottom:954.870000px;}
.yac{bottom:954.960000px;}
.y33{bottom:963.960000px;}
.yab{bottom:972.600000px;}
.yf8{bottom:977.190000px;}
.y32{bottom:981.600000px;}
.y60{bottom:981.960000px;}
.y122{bottom:982.230000px;}
.y4{bottom:985.380000px;}
.yaa{bottom:990.150000px;}
.yf7{bottom:994.740000px;}
.y31{bottom:999.150000px;}
.y5f{bottom:999.600000px;}
.ya9{bottom:1007.790000px;}
.y120{bottom:1009.590000px;}
.y3{bottom:1010.070000px;}
.yf6{bottom:1012.320000px;}
.y30{bottom:1016.820000px;}
.y5e{bottom:1017.180000px;}
.yd5{bottom:1025.370000px;}
.yf5{bottom:1029.960000px;}
.y2f{bottom:1034.370000px;}
.y5d{bottom:1034.820000px;}
.y11f{bottom:1036.890000px;}
.y18d{bottom:1039.230000px;}
.yd4{bottom:1042.920000px;}
.yf4{bottom:1047.510000px;}
.y5c{bottom:1052.370000px;}
.y11e{bottom:1064.250000px;}
.yf3{bottom:1065.150000px;}
.y2e{bottom:1069.920000px;}
.yd3{bottom:1078.560000px;}
.y2d{bottom:1087.560000px;}
.y11d{bottom:1091.610000px;}
.yf2{bottom:1091.700000px;}
.yd2{bottom:1096.110000px;}
.y2c{bottom:1105.110000px;}
.yd1{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.yf1{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hc{height:26.550000px;}
.h11{height:26.580000px;}
.he{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.hf{height:44.190000px;}
.h6{height:50.667539px;}
.hd{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h9{height:60.960938px;}
.h10{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:150.120000px;}
.w3{width:160.500000px;}
.w8{width:165.600000px;}
.wd{width:176.400000px;}
.wc{width:176.430000px;}
.w7{width:176.610000px;}
.w6{width:261.480000px;}
.wb{width:269.310000px;}
.w5{width:282.870000px;}
.w4{width:310.800000px;}
.w9{width:362.280000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.xf{left:111.239987px;}
.xc{left:134.730000px;}
.x7{left:144.000000px;}
.xa{left:190.110000px;}
.x2{left:202.799987px;}
.x5{left:229.980000px;}
.xd{left:404.850000px;}
.x8{left:406.290000px;}
.x6{left:541.590000px;}
.xb{left:553.110000px;}
.xe{left:582.090000px;}
.x9{left:583.710000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls16{letter-spacing:-0.216533pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls17{letter-spacing:-0.142933pt;}
.ls15{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.050667pt;}
.ls18{letter-spacing:-0.034560pt;}
.ls12{letter-spacing:-0.013120pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls3{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.154133pt;}
.ls13{letter-spacing:0.161067pt;}
.ls14{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.333120pt;}
.ls1a{letter-spacing:42.423680pt;}
.ls19{letter-spacing:71.863680pt;}
.ws13{word-spacing:-53.440000pt;}
.ws2{word-spacing:-16.352533pt;}
.ws6{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.933867pt;}
.wsb{word-spacing:-11.917867pt;}
.ws8{word-spacing:-11.910933pt;}
.ws4{word-spacing:-11.860267pt;}
.wsd{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.743680pt;}
.ws12{word-spacing:-11.722240pt;}
.wsf{word-spacing:-11.620267pt;}
.ws11{word-spacing:-11.613867pt;}
.ws9{word-spacing:-11.590933pt;}
.ws10{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._4{margin-left:-3.099734pt;}
._b{margin-left:-2.208746pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.217493pt;}
._3{width:2.939200pt;}
._c{width:4.113067pt;}
._7{width:5.344000pt;}
._8{width:6.263894pt;}
._a{width:7.617920pt;}
._9{width:8.550400pt;}
._2{width:10.100267pt;}
._d{width:12.878933pt;}
._e{width:13.813654pt;}
._f{width:15.257813pt;}
._16{width:16.464427pt;}
._14{width:17.383467pt;}
._10{width:18.329920pt;}
._19{width:19.291840pt;}
._11{width:20.467520pt;}
._17{width:21.482880pt;}
._13{width:22.496213pt;}
._12{width:23.460160pt;}
._18{width:25.164160pt;}
._5{width:26.185600pt;}
._6{width:27.198933pt;}
._1a{width:29.231680pt;}
._15{width:64.128000pt;}
._1f{width:71.019733pt;}
._1d{width:115.323520pt;}
._1e{width:116.338880pt;}
._21{width:117.589120pt;}
._22{width:118.529920pt;}
._20{width:182.497600pt;}
._1b{width:199.117440pt;}
._1c{width:200.239680pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:6.960000pt;}
.y121{bottom:6.986667pt;}
.y64{bottom:7.040000pt;}
.y66{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yf0{bottom:99.466667pt;}
.y88{bottom:99.626667pt;}
.ya8{bottom:99.706667pt;}
.y5b{bottom:100.026667pt;}
.y169{bottom:103.946667pt;}
.y18c{bottom:110.906667pt;}
.y87{bottom:115.226667pt;}
.ya7{bottom:115.306667pt;}
.y5a{bottom:115.706667pt;}
.y168{bottom:119.626667pt;}
.yd0{bottom:122.106667pt;}
.y27{bottom:124.666667pt;}
.y18b{bottom:126.586667pt;}
.y86{bottom:130.826667pt;}
.ya6{bottom:130.906667pt;}
.y167{bottom:135.226667pt;}
.ycf{bottom:137.786667pt;}
.y26{bottom:140.266667pt;}
.y18a{bottom:142.186667pt;}
.y11c{bottom:142.666667pt;}
.y146{bottom:144.826667pt;}
.y85{bottom:146.506667pt;}
.yef{bottom:146.586667pt;}
.y59{bottom:147.306667pt;}
.y166{bottom:150.826667pt;}
.yce{bottom:153.386667pt;}
.y189{bottom:157.866667pt;}
.y11b{bottom:158.266667pt;}
.y145{bottom:160.506667pt;}
.y84{bottom:162.106667pt;}
.yee{bottom:162.186667pt;}
.ya5{bottom:162.586667pt;}
.y58{bottom:162.906667pt;}
.y165{bottom:166.506667pt;}
.ycd{bottom:168.986667pt;}
.y25{bottom:171.866667pt;}
.y188{bottom:173.466667pt;}
.y11a{bottom:173.866667pt;}
.y144{bottom:176.106667pt;}
.yed{bottom:177.866667pt;}
.ya4{bottom:178.186667pt;}
.y57{bottom:178.586667pt;}
.y164{bottom:182.106667pt;}
.ycc{bottom:184.666667pt;}
.y24{bottom:187.546667pt;}
.y187{bottom:189.066667pt;}
.y119{bottom:189.546667pt;}
.y143{bottom:191.786667pt;}
.yec{bottom:193.466667pt;}
.y83{bottom:193.786667pt;}
.ya3{bottom:193.866667pt;}
.y56{bottom:194.186667pt;}
.ycb{bottom:200.266667pt;}
.y23{bottom:203.146667pt;}
.y118{bottom:205.146667pt;}
.y142{bottom:207.386667pt;}
.yeb{bottom:209.066667pt;}
.y82{bottom:209.386667pt;}
.ya2{bottom:209.466667pt;}
.y55{bottom:209.866667pt;}
.y186{bottom:212.986667pt;}
.y163{bottom:213.786667pt;}
.y22{bottom:218.746667pt;}
.y117{bottom:220.826667pt;}
.y141{bottom:222.986667pt;}
.y81{bottom:224.986667pt;}
.ya1{bottom:225.066667pt;}
.y54{bottom:225.466667pt;}
.y162{bottom:229.386667pt;}
.yca{bottom:231.946667pt;}
.yea{bottom:232.746667pt;}
.y21{bottom:234.426667pt;}
.y116{bottom:236.426667pt;}
.ya0{bottom:240.746667pt;}
.y53{bottom:241.066667pt;}
.y161{bottom:244.986667pt;}
.yc9{bottom:247.546667pt;}
.y80{bottom:248.666667pt;}
.y20{bottom:250.026667pt;}
.y140{bottom:254.666667pt;}
.y185{bottom:255.946667pt;}
.y9f{bottom:256.346667pt;}
.y52{bottom:256.746667pt;}
.y115{bottom:260.026667pt;}
.y160{bottom:260.666667pt;}
.yc8{bottom:263.146667pt;}
.ye9{bottom:264.346667pt;}
.y1f{bottom:265.706667pt;}
.y13f{bottom:270.266667pt;}
.y184{bottom:271.546667pt;}
.y51{bottom:272.346667pt;}
.y15f{bottom:276.266667pt;}
.yc7{bottom:278.826667pt;}
.ye8{bottom:279.946667pt;}
.y7f{bottom:280.266667pt;}
.y1e{bottom:281.306667pt;}
.y13e{bottom:285.946667pt;}
.y183{bottom:287.146667pt;}
.y50{bottom:287.946667pt;}
.y114{bottom:291.706667pt;}
.y15e{bottom:291.946667pt;}
.yc6{bottom:294.426667pt;}
.ye7{bottom:295.626667pt;}
.y7e{bottom:295.946667pt;}
.y1d{bottom:296.906667pt;}
.y13d{bottom:301.546667pt;}
.y182{bottom:302.826667pt;}
.y9e{bottom:303.626667pt;}
.y1ab{bottom:303.946667pt;}
.y113{bottom:307.306667pt;}
.yc5{bottom:310.106667pt;}
.ye6{bottom:311.226667pt;}
.y7d{bottom:311.546667pt;}
.y13c{bottom:317.146667pt;}
.y181{bottom:318.426667pt;}
.y9d{bottom:319.226667pt;}
.y4f{bottom:319.626667pt;}
.y112{bottom:322.986667pt;}
.y15d{bottom:323.546667pt;}
.yc4{bottom:325.706667pt;}
.ye5{bottom:326.906667pt;}
.y7c{bottom:327.146667pt;}
.y1c{bottom:328.586667pt;}
.y13b{bottom:332.826667pt;}
.y180{bottom:334.106667pt;}
.y9c{bottom:334.906667pt;}
.y4e{bottom:335.226667pt;}
.y111{bottom:338.586667pt;}
.y15c{bottom:339.146667pt;}
.ye4{bottom:342.506667pt;}
.y7b{bottom:342.826667pt;}
.y1aa{bottom:343.226667pt;}
.y1b{bottom:344.186667pt;}
.y13a{bottom:348.426667pt;}
.y4d{bottom:350.906667pt;}
.y110{bottom:354.186667pt;}
.y15b{bottom:354.826667pt;}
.yc3{bottom:357.306667pt;}
.y7a{bottom:358.426667pt;}
.y9b{bottom:358.506667pt;}
.y1a{bottom:359.866667pt;}
.y17f{bottom:365.706667pt;}
.ye3{bottom:366.106667pt;}
.y4c{bottom:366.506667pt;}
.y1a9{bottom:366.906667pt;}
.y10f{bottom:369.866667pt;}
.y15a{bottom:370.426667pt;}
.yc2{bottom:372.986667pt;}
.y79{bottom:374.106667pt;}
.y19{bottom:375.466667pt;}
.y139{bottom:380.106667pt;}
.y17e{bottom:381.306667pt;}
.y4b{bottom:382.106667pt;}
.y1a8{bottom:382.506667pt;}
.y10e{bottom:385.466667pt;}
.y159{bottom:386.106667pt;}
.yc1{bottom:388.586667pt;}
.y78{bottom:389.706667pt;}
.y9a{bottom:390.426667pt;}
.y18{bottom:391.066667pt;}
.y138{bottom:395.706667pt;}
.y17d{bottom:396.986667pt;}
.y4a{bottom:397.786667pt;}
.y1a7{bottom:398.106667pt;}
.y158{bottom:401.706667pt;}
.y77{bottom:405.306667pt;}
.y17{bottom:406.746667pt;}
.y10d{bottom:409.066667pt;}
.y137{bottom:411.306667pt;}
.yc0{bottom:412.266667pt;}
.y17c{bottom:412.586667pt;}
.y49{bottom:413.386667pt;}
.y1a6{bottom:413.786667pt;}
.y76{bottom:421.013333pt;}
.y16{bottom:422.373333pt;}
.y157{bottom:425.333333pt;}
.y136{bottom:427.013333pt;}
.y17b{bottom:428.293333pt;}
.y48{bottom:429.093333pt;}
.y99{bottom:433.333333pt;}
.y75{bottom:436.613333pt;}
.y1a5{bottom:437.413333pt;}
.y10c{bottom:440.773333pt;}
.y135{bottom:442.613333pt;}
.ybf{bottom:443.893333pt;}
.ye2{bottom:444.693333pt;}
.y15{bottom:446.293333pt;}
.y98{bottom:449.013333pt;}
.y74{bottom:452.293333pt;}
.y1a4{bottom:453.093333pt;}
.y10b{bottom:456.373333pt;}
.y156{bottom:457.013333pt;}
.y134{bottom:458.293333pt;}
.ybe{bottom:459.493333pt;}
.ye1{bottom:460.293333pt;}
.y47{bottom:460.693333pt;}
.y97{bottom:464.613333pt;}
.y1a3{bottom:468.693333pt;}
.y10a{bottom:472.053333pt;}
.y155{bottom:472.613333pt;}
.ybd{bottom:475.173333pt;}
.y17a{bottom:475.493333pt;}
.y46{bottom:476.293333pt;}
.y96{bottom:480.293333pt;}
.y133{bottom:481.893333pt;}
.y73{bottom:483.893333pt;}
.ye0{bottom:483.973333pt;}
.y1a2{bottom:484.293333pt;}
.y109{bottom:487.653333pt;}
.y154{bottom:488.293333pt;}
.y14{bottom:489.493333pt;}
.ybc{bottom:490.773333pt;}
.y179{bottom:491.173333pt;}
.y45{bottom:491.973333pt;}
.y95{bottom:495.893333pt;}
.y72{bottom:499.493333pt;}
.y108{bottom:503.253333pt;}
.y153{bottom:503.893333pt;}
.ybb{bottom:506.453333pt;}
.y178{bottom:506.773333pt;}
.y44{bottom:507.573333pt;}
.y1a1{bottom:507.973333pt;}
.y94{bottom:511.493333pt;}
.y132{bottom:513.813333pt;}
.y71{bottom:515.173333pt;}
.ydf{bottom:515.573333pt;}
.y107{bottom:518.933333pt;}
.y152{bottom:519.493333pt;}
.yba{bottom:522.053333pt;}
.y13{bottom:522.373333pt;}
.y177{bottom:522.453333pt;}
.y1a0{bottom:523.573333pt;}
.y70{bottom:530.773333pt;}
.y43{bottom:531.253333pt;}
.y106{bottom:534.533333pt;}
.y151{bottom:535.173333pt;}
.y12{bottom:538.053333pt;}
.y19f{bottom:539.253333pt;}
.y93{bottom:543.173333pt;}
.y6f{bottom:546.453333pt;}
.yde{bottom:546.853333pt;}
.y150{bottom:550.773333pt;}
.yb9{bottom:551.333333pt;}
.y11{bottom:553.653333pt;}
.y131{bottom:556.693333pt;}
.y105{bottom:558.213333pt;}
.y92{bottom:558.773333pt;}
.y6e{bottom:562.053333pt;}
.ydd{bottom:562.453333pt;}
.y19e{bottom:562.853333pt;}
.y42{bottom:563.173333pt;}
.y10{bottom:569.333333pt;}
.y130{bottom:572.373333pt;}
.y91{bottom:574.453333pt;}
.yb8{bottom:575.653333pt;}
.y6d{bottom:577.653333pt;}
.ydc{bottom:578.133333pt;}
.y19d{bottom:578.453333pt;}
.y14f{bottom:582.453333pt;}
.yf{bottom:584.933333pt;}
.y12f{bottom:587.973333pt;}
.y90{bottom:590.053333pt;}
.y104{bottom:590.133333pt;}
.y6c{bottom:593.333333pt;}
.ydb{bottom:593.733333pt;}
.y19c{bottom:594.133333pt;}
.y14e{bottom:598.053333pt;}
.yb7{bottom:599.973333pt;}
.ye{bottom:600.533333pt;}
.y176{bottom:600.933333pt;}
.y12e{bottom:603.573333pt;}
.y8f{bottom:605.653333pt;}
.y41{bottom:606.053333pt;}
.y6b{bottom:608.933333pt;}
.yda{bottom:609.413333pt;}
.y14d{bottom:613.653333pt;}
.yd{bottom:616.213333pt;}
.y175{bottom:616.613333pt;}
.y19b{bottom:617.733333pt;}
.y12d{bottom:619.253333pt;}
.y8e{bottom:621.333333pt;}
.y40{bottom:621.653333pt;}
.yb6{bottom:624.213333pt;}
.y6a{bottom:624.613333pt;}
.y14c{bottom:629.333333pt;}
.yc{bottom:631.813333pt;}
.y174{bottom:632.213333pt;}
.yd9{bottom:633.013333pt;}
.y19a{bottom:633.413333pt;}
.y3f{bottom:637.333333pt;}
.y69{bottom:640.213333pt;}
.y12c{bottom:642.853333pt;}
.y14b{bottom:644.933333pt;}
.yb{bottom:647.493333pt;}
.y173{bottom:647.813333pt;}
.yb5{bottom:648.533333pt;}
.y103{bottom:648.613333pt;}
.y199{bottom:649.013333pt;}
.y3e{bottom:652.933333pt;}
.y14a{bottom:660.613333pt;}
.y172{bottom:663.493333pt;}
.y102{bottom:664.293333pt;}
.y198{bottom:664.613333pt;}
.yd8{bottom:664.933333pt;}
.y3d{bottom:668.613333pt;}
.y68{bottom:669.493333pt;}
.ya{bottom:671.413333pt;}
.y12b{bottom:674.533333pt;}
.y171{bottom:679.093333pt;}
.y101{bottom:679.893333pt;}
.y8d{bottom:684.213333pt;}
.y197{bottom:688.293333pt;}
.y12a{bottom:690.133333pt;}
.yb4{bottom:691.813333pt;}
.y149{bottom:692.213333pt;}
.y67{bottom:693.813333pt;}
.y170{bottom:694.693333pt;}
.y100{bottom:695.573333pt;}
.y8c{bottom:699.813333pt;}
.y3c{bottom:700.213333pt;}
.y196{bottom:703.893333pt;}
.y129{bottom:705.733333pt;}
.yd7{bottom:707.813333pt;}
.y9{bottom:714.293333pt;}
.y8b{bottom:715.493333pt;}
.y3b{bottom:715.813333pt;}
.y16f{bottom:718.373333pt;}
.yff{bottom:719.173333pt;}
.y195{bottom:719.573333pt;}
.y128{bottom:721.413333pt;}
.yb3{bottom:723.493333pt;}
.y3a{bottom:731.493333pt;}
.y65{bottom:733.733333pt;}
.y194{bottom:735.173333pt;}
.y127{bottom:737.013333pt;}
.yb2{bottom:739.093333pt;}
.y8{bottom:745.893333pt;}
.y39{bottom:747.093333pt;}
.y16e{bottom:747.653333pt;}
.yfe{bottom:750.773333pt;}
.y126{bottom:752.693333pt;}
.yb1{bottom:754.693333pt;}
.y193{bottom:758.773333pt;}
.y38{bottom:762.693333pt;}
.yfd{bottom:766.453333pt;}
.yb0{bottom:770.373333pt;}
.y16d{bottom:771.973333pt;}
.y63{bottom:773.653333pt;}
.y192{bottom:774.453333pt;}
.y125{bottom:776.293333pt;}
.y7{bottom:777.733333pt;}
.y37{bottom:778.373333pt;}
.yfc{bottom:782.053333pt;}
.yaf{bottom:785.973333pt;}
.y191{bottom:790.053333pt;}
.y8a{bottom:793.973333pt;}
.y16c{bottom:796.293333pt;}
.yfb{bottom:797.733333pt;}
.y61{bottom:797.973333pt;}
.yae{bottom:801.653333pt;}
.y148{bottom:801.973333pt;}
.y124{bottom:808.213333pt;}
.y89{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y36{bottom:809.973333pt;}
.yfa{bottom:813.333333pt;}
.y190{bottom:813.733333pt;}
.yad{bottom:817.253333pt;}
.y147{bottom:817.653333pt;}
.y16b{bottom:820.533333pt;}
.y35{bottom:825.653333pt;}
.y18f{bottom:829.333333pt;}
.yd6{bottom:833.253333pt;}
.yf9{bottom:836.933333pt;}
.y34{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.y16a{bottom:844.853333pt;}
.y18e{bottom:844.933333pt;}
.y123{bottom:848.773333pt;}
.yac{bottom:848.853333pt;}
.y33{bottom:856.853333pt;}
.yab{bottom:864.533333pt;}
.yf8{bottom:868.613333pt;}
.y32{bottom:872.533333pt;}
.y60{bottom:872.853333pt;}
.y122{bottom:873.093333pt;}
.y4{bottom:875.893333pt;}
.yaa{bottom:880.133333pt;}
.yf7{bottom:884.213333pt;}
.y31{bottom:888.133333pt;}
.y5f{bottom:888.533333pt;}
.ya9{bottom:895.813333pt;}
.y120{bottom:897.413333pt;}
.y3{bottom:897.840000pt;}
.yf6{bottom:899.840000pt;}
.y30{bottom:903.840000pt;}
.y5e{bottom:904.160000pt;}
.yd5{bottom:911.440000pt;}
.yf5{bottom:915.520000pt;}
.y2f{bottom:919.440000pt;}
.y5d{bottom:919.840000pt;}
.y11f{bottom:921.680000pt;}
.y18d{bottom:923.760000pt;}
.yd4{bottom:927.040000pt;}
.yf4{bottom:931.120000pt;}
.y5c{bottom:935.440000pt;}
.y11e{bottom:946.000000pt;}
.yf3{bottom:946.800000pt;}
.y2e{bottom:951.040000pt;}
.yd3{bottom:958.720000pt;}
.y2d{bottom:966.720000pt;}
.y11d{bottom:970.320000pt;}
.yf2{bottom:970.400000pt;}
.yd2{bottom:974.320000pt;}
.y2c{bottom:982.320000pt;}
.yd1{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.yf1{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.h11{height:23.626667pt;}
.he{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.hf{height:39.280000pt;}
.h6{height:45.037812pt;}
.hd{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h9{height:54.187500pt;}
.h10{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:133.440000pt;}
.w3{width:142.666667pt;}
.w8{width:147.200000pt;}
.wd{width:156.800000pt;}
.wc{width:156.826667pt;}
.w7{width:156.986667pt;}
.w6{width:232.426667pt;}
.wb{width:239.386667pt;}
.w5{width:251.440000pt;}
.w4{width:276.266667pt;}
.w9{width:322.026667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.xf{left:98.879988pt;}
.xc{left:119.760000pt;}
.x7{left:128.000000pt;}
.xa{left:168.986667pt;}
.x2{left:180.266655pt;}
.x5{left:204.426667pt;}
.xd{left:359.866667pt;}
.x8{left:361.146667pt;}
.x6{left:481.413333pt;}
.xb{left:491.653333pt;}
.xe{left:517.413333pt;}
.x9{left:518.853333pt;}
.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; }
  