
    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_10ef470a0fa5a31f71b18a47.woff')format("woff");}.ff1{font-family:ff1;line-height:0.978027;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_ec01ee641159756103db4855.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_ebedd5438b47c6a35fb8bd5f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ac161b8b48d4e9e90ca0f7ae.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_5b70c8e30e6c24a19643ae61.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9996d55152392d75b34f2147.woff')format("woff");}.ff8{font-family:ff8;line-height:0.929199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1c{letter-spacing:-1.260000px;}
.ls5{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.208200px;}
.ls8{letter-spacing:-0.206400px;}
.ls13{letter-spacing:-0.106800px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.037440px;}
.ls9{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.206640px;}
.lsa{letter-spacing:0.253440px;}
.ls19{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.439920px;}
.ls6{letter-spacing:0.756000px;}
.ls11{letter-spacing:12.906720px;}
.ls1b{letter-spacing:16.506720px;}
.ls18{letter-spacing:21.024000px;}
.ls1a{letter-spacing:22.986720px;}
.ls2{letter-spacing:26.586720px;}
.ls14{letter-spacing:33.066720px;}
.ls16{letter-spacing:33.984000px;}
.ls10{letter-spacing:41.706720px;}
.lsf{letter-spacing:43.146720px;}
.lse{letter-spacing:46.026720px;}
.lsc{letter-spacing:46.170720px;}
.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;}
}
.wsc{word-spacing:-18.000000px;}
.ws3{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.506480px;}
.ws1{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.ws7{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.733600px;}
.ws9{word-spacing:-14.680200px;}
.ws2{word-spacing:-14.580000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._34{margin-left:-14.976000px;}
._c{margin-left:-6.731040px;}
._21{margin-left:-5.466000px;}
._d{margin-left:-3.841920px;}
._13{margin-left:-2.272320px;}
._b{margin-left:-1.074240px;}
._4{width:1.254960px;}
._12{width:3.097200px;}
._f{width:4.417200px;}
._10{width:5.497920px;}
._11{width:6.513840px;}
._22{width:8.295120px;}
._3{width:9.540000px;}
._e{width:10.751040px;}
._1{width:12.420000px;}
._24{width:13.775760px;}
._23{width:15.955920px;}
._20{width:17.748720px;}
._1c{width:18.764640px;}
._1b{width:19.780560px;}
._1f{width:20.916000px;}
._2a{width:22.230720px;}
._2e{width:23.484960px;}
._19{width:24.621120px;}
._1a{width:25.637040px;}
._29{width:26.830800px;}
._2f{width:28.744560px;}
._14{width:30.178800px;}
._15{width:31.733760px;}
._1e{width:33.394800px;}
._1d{width:34.660800px;}
._2d{width:36.812160px;}
._28{width:38.664720px;}
._27{width:39.800160px;}
._31{width:40.935600px;}
._26{width:47.980080px;}
._25{width:49.003200px;}
._3c{width:51.692400px;}
._17{width:52.708320px;}
._16{width:54.202320px;}
._35{width:58.026960px;}
._3a{width:59.760000px;}
._18{width:61.014960px;}
._32{width:64.182240px;}
._3b{width:65.377440px;}
._39{width:68.604480px;}
._30{width:70.277760px;}
._37{width:71.652240px;}
._36{width:73.504800px;}
._38{width:79.420320px;}
._2c{width:81.930960px;}
._2b{width:83.245680px;}
._8{width:88.200000px;}
._6{width:97.380000px;}
._0{width:102.600000px;}
._9{width:108.180000px;}
._33{width:145.276560px;}
._2{width:165.060000px;}
._5{width:183.960000px;}
._a{width:229.860000px;}
._7{width:296.820000px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,112,192);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(177,84,7);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,10);}
.fs0{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.400000px;}
.y113{bottom:5.580000px;}
.y27{bottom:5.760000px;}
.yfa{bottom:5.805000px;}
.y40{bottom:5.940000px;}
.y134{bottom:5.970000px;}
.y114{bottom:7.020000px;}
.y47{bottom:7.056000px;}
.y10c{bottom:7.200000px;}
.y10{bottom:7.236000px;}
.y3c{bottom:7.560000px;}
.y38{bottom:7.740000px;}
.y42{bottom:8.460000px;}
.y1a{bottom:8.820000px;}
.y3a{bottom:10.980000px;}
.y8{bottom:14.580000px;}
.yd{bottom:15.300000px;}
.yfd{bottom:15.660000px;}
.y105{bottom:15.840000px;}
.y12b{bottom:17.094000px;}
.y10f{bottom:17.100000px;}
.y138{bottom:17.280000px;}
.y108{bottom:19.794000px;}
.y100{bottom:19.800000px;}
.yfb{bottom:19.845000px;}
.y102{bottom:19.980000px;}
.y135{bottom:20.010000px;}
.y115{bottom:22.500000px;}
.y10d{bottom:22.680000px;}
.y12a{bottom:25.554000px;}
.y29{bottom:25.560000px;}
.y137{bottom:25.590000px;}
.y26{bottom:25.740000px;}
.y126{bottom:27.180000px;}
.y11{bottom:38.700000px;}
.y7{bottom:38.880000px;}
.yfe{bottom:39.780000px;}
.y12c{bottom:42.474000px;}
.y110{bottom:42.480000px;}
.y124{bottom:42.525000px;}
.yc{bottom:44.100000px;}
.ye7{bottom:45.360000px;}
.yda{bottom:45.534000px;}
.y25{bottom:45.540000px;}
.yf{bottom:53.100000px;}
.y46{bottom:53.280000px;}
.y127{bottom:62.280000px;}
.y6{bottom:63.210000px;}
.ye6{bottom:65.160000px;}
.yd9{bottom:65.334000px;}
.y24{bottom:65.340000px;}
.yb{bottom:73.110000px;}
.y5{bottom:84.450000px;}
.yf7{bottom:84.636000px;}
.yd8{bottom:85.134000px;}
.y23{bottom:85.140000px;}
.y182{bottom:87.156000px;}
.y43{bottom:87.516000px;}
.ya{bottom:92.370000px;}
.y15a{bottom:95.616000px;}
.y19f{bottom:96.516000px;}
.y12d{bottom:100.476000px;}
.yf6{bottom:104.436000px;}
.y22{bottom:104.940000px;}
.yd7{bottom:105.114000px;}
.yc5{bottom:105.120000px;}
.y4{bottom:106.950000px;}
.y181{bottom:106.956000px;}
.y41{bottom:108.216000px;}
.y9{bottom:110.190000px;}
.y9a{bottom:111.456000px;}
.y79{bottom:113.976000px;}
.y159{bottom:115.416000px;}
.y19e{bottom:116.316000px;}
.yc6{bottom:119.016000px;}
.y109{bottom:119.196000px;}
.ydc{bottom:124.740000px;}
.yd6{bottom:124.914000px;}
.y21{bottom:124.920000px;}
.y3{bottom:126.750000px;}
.y180{bottom:126.756000px;}
.y99{bottom:131.256000px;}
.y3f{bottom:133.956000px;}
.y158{bottom:135.216000px;}
.y19d{bottom:136.116000px;}
.y107{bottom:139.896000px;}
.y129{bottom:143.676000px;}
.ye5{bottom:144.540000px;}
.yd5{bottom:144.714000px;}
.y20{bottom:144.720000px;}
.y17f{bottom:146.556000px;}
.y98{bottom:151.050000px;}
.y78{bottom:153.750000px;}
.y3e{bottom:154.650000px;}
.y157{bottom:155.010000px;}
.y19c{bottom:155.910000px;}
.y106{bottom:160.410000px;}
.yd2{bottom:164.334000px;}
.ye4{bottom:164.340000px;}
.yd4{bottom:164.514000px;}
.y1f{bottom:164.520000px;}
.y17e{bottom:166.350000px;}
.y97{bottom:170.850000px;}
.y77{bottom:173.550000px;}
.y156{bottom:174.990000px;}
.y19b{bottom:175.710000px;}
.y3d{bottom:178.950000px;}
.y104{bottom:180.930000px;}
.yd1{bottom:184.134000px;}
.yd3{bottom:184.314000px;}
.y1e{bottom:184.320000px;}
.yc4{bottom:184.350000px;}
.y17d{bottom:186.330000px;}
.y128{bottom:186.870000px;}
.y96{bottom:190.830000px;}
.y76{bottom:193.350000px;}
.y155{bottom:194.790000px;}
.y19a{bottom:195.690000px;}
.y3b{bottom:203.430000px;}
.yd0{bottom:203.754000px;}
.y1d{bottom:204.120000px;}
.ycb{bottom:204.294000px;}
.y17c{bottom:206.130000px;}
.y95{bottom:210.630000px;}
.y75{bottom:213.150000px;}
.y154{bottom:214.590000px;}
.y199{bottom:215.490000px;}
.y103{bottom:221.430000px;}
.ycf{bottom:223.779000px;}
.ye3{bottom:223.965000px;}
.y1c{bottom:224.100000px;}
.yca{bottom:224.139000px;}
.y17b{bottom:225.930000px;}
.y39{bottom:227.730000px;}
.y125{bottom:230.070000px;}
.y94{bottom:230.430000px;}
.y74{bottom:233.130000px;}
.y153{bottom:234.390000px;}
.y198{bottom:235.290000px;}
.y101{bottom:241.950000px;}
.yce{bottom:243.759000px;}
.ye2{bottom:243.765000px;}
.yc9{bottom:243.939000px;}
.y17a{bottom:245.730000px;}
.y93{bottom:250.230000px;}
.y73{bottom:252.930000px;}
.y152{bottom:254.190000px;}
.y197{bottom:255.090000px;}
.y37{bottom:258.510000px;}
.yff{bottom:262.650000px;}
.ycd{bottom:263.559000px;}
.ye1{bottom:263.565000px;}
.yc8{bottom:263.739000px;}
.y179{bottom:265.530000px;}
.y92{bottom:270.030000px;}
.y72{bottom:272.730000px;}
.y151{bottom:274.170000px;}
.y196{bottom:274.890000px;}
.yfc{bottom:283.170000px;}
.ycc{bottom:283.359000px;}
.ye0{bottom:283.365000px;}
.yc7{bottom:283.539000px;}
.y178{bottom:285.510000px;}
.y36{bottom:288.750000px;}
.y91{bottom:290.010000px;}
.y71{bottom:292.530000px;}
.y123{bottom:293.250000px;}
.y150{bottom:293.970000px;}
.y195{bottom:294.870000px;}
.ydf{bottom:303.345000px;}
.y177{bottom:305.310000px;}
.y35{bottom:308.550000px;}
.y90{bottom:309.810000px;}
.y70{bottom:312.330000px;}
.y14f{bottom:313.770000px;}
.y194{bottom:314.670000px;}
.yde{bottom:323.145000px;}
.yf9{bottom:323.670000px;}
.y176{bottom:325.110000px;}
.y34{bottom:328.395000px;}
.y8f{bottom:329.655000px;}
.y6f{bottom:332.355000px;}
.y14e{bottom:333.615000px;}
.y193{bottom:334.515000px;}
.y122{bottom:336.495000px;}
.yf8{bottom:344.235000px;}
.y175{bottom:344.955000px;}
.y33{bottom:348.375000px;}
.y8e{bottom:349.455000px;}
.y6e{bottom:352.155000px;}
.y14d{bottom:353.415000px;}
.y192{bottom:354.315000px;}
.y174{bottom:364.755000px;}
.y32{bottom:368.175000px;}
.y8d{bottom:369.255000px;}
.y6d{bottom:371.955000px;}
.y14c{bottom:373.395000px;}
.y191{bottom:374.115000px;}
.y121{bottom:379.695000px;}
.y173{bottom:384.735000px;}
.y31{bottom:387.975000px;}
.y8c{bottom:389.235000px;}
.y6c{bottom:391.755000px;}
.yf5{bottom:392.835000px;}
.y14b{bottom:393.195000px;}
.y190{bottom:394.095000px;}
.y172{bottom:404.535000px;}
.y8b{bottom:405.615000px;}
.y30{bottom:407.775000px;}
.y6b{bottom:411.555000px;}
.yf4{bottom:412.635000px;}
.y14a{bottom:412.995000px;}
.y18f{bottom:413.895000px;}
.yc3{bottom:417.315000px;}
.y120{bottom:422.895000px;}
.y171{bottom:424.335000px;}
.y2f{bottom:427.575000px;}
.y6a{bottom:431.535000px;}
.yf3{bottom:432.615000px;}
.y149{bottom:432.795000px;}
.y18e{bottom:433.695000px;}
.y170{bottom:444.135000px;}
.y2e{bottom:447.555000px;}
.y69{bottom:451.335000px;}
.yef{bottom:452.415000px;}
.y148{bottom:452.595000px;}
.y18d{bottom:453.495000px;}
.y16f{bottom:463.935000px;}
.y11f{bottom:466.095000px;}
.y2d{bottom:467.355000px;}
.yf2{bottom:470.415000px;}
.y68{bottom:471.135000px;}
.yee{bottom:472.215000px;}
.y147{bottom:472.575000px;}
.y18c{bottom:473.295000px;}
.y16e{bottom:483.915000px;}
.y2c{bottom:487.155000px;}
.yf1{bottom:490.215000px;}
.y67{bottom:490.935000px;}
.yed{bottom:492.015000px;}
.y146{bottom:492.375000px;}
.y18b{bottom:493.275000px;}
.y16d{bottom:503.715000px;}
.y2b{bottom:506.955000px;}
.y11e{bottom:509.295000px;}
.yf0{bottom:510.015000px;}
.y66{bottom:510.735000px;}
.y145{bottom:512.175000px;}
.y18a{bottom:513.075000px;}
.y16c{bottom:523.515000px;}
.y2a{bottom:526.755000px;}
.yec{bottom:529.815000px;}
.y65{bottom:530.715000px;}
.y144{bottom:531.975000px;}
.y189{bottom:532.875000px;}
.y16b{bottom:543.315000px;}
.yeb{bottom:549.795000px;}
.y64{bottom:550.515000px;}
.y143{bottom:551.775000px;}
.y8a{bottom:552.135000px;}
.y188{bottom:552.675000px;}
.y11d{bottom:555.555000px;}
.y28{bottom:561.495000px;}
.y16a{bottom:563.115000px;}
.yea{bottom:569.595000px;}
.y63{bottom:570.315000px;}
.y142{bottom:571.755000px;}
.y89{bottom:572.115000px;}
.y187{bottom:572.475000px;}
.y11c{bottom:575.355000px;}
.y169{bottom:583.095000px;}
.ye9{bottom:589.395000px;}
.y62{bottom:590.115000px;}
.y141{bottom:591.555000px;}
.y88{bottom:591.915000px;}
.y186{bottom:592.455000px;}
.y1b{bottom:601.845000px;}
.y168{bottom:602.925000px;}
.y140{bottom:607.965000px;}
.ye8{bottom:609.225000px;}
.y61{bottom:609.945000px;}
.y133{bottom:610.845000px;}
.y87{bottom:611.745000px;}
.y185{bottom:612.285000px;}
.yc2{bottom:616.605000px;}
.y167{bottom:622.725000px;}
.y60{bottom:629.925000px;}
.y86{bottom:631.545000px;}
.y184{bottom:632.085000px;}
.y166{bottom:642.525000px;}
.yc1{bottom:642.885000px;}
.ydd{bottom:643.965000px;}
.y5f{bottom:649.725000px;}
.y85{bottom:651.345000px;}
.y183{bottom:651.885000px;}
.y132{bottom:654.045000px;}
.y165{bottom:662.325000px;}
.yb3{bottom:662.685000px;}
.y5e{bottom:669.525000px;}
.y84{bottom:671.325000px;}
.yc0{bottom:671.685000px;}
.y131{bottom:677.445000px;}
.y164{bottom:682.305000px;}
.yb2{bottom:682.665000px;}
.y5d{bottom:689.325000px;}
.y83{bottom:691.125000px;}
.ybf{bottom:691.665000px;}
.y130{bottom:700.845000px;}
.y163{bottom:702.105000px;}
.yb1{bottom:702.465000px;}
.y5c{bottom:709.125000px;}
.y82{bottom:710.925000px;}
.ybe{bottom:711.465000px;}
.y162{bottom:721.905000px;}
.yb0{bottom:722.265000px;}
.y12f{bottom:724.245000px;}
.y5b{bottom:729.105000px;}
.y81{bottom:730.725000px;}
.ybd{bottom:731.265000px;}
.y161{bottom:741.705000px;}
.yaf{bottom:742.065000px;}
.y12e{bottom:747.645000px;}
.y5a{bottom:748.905000px;}
.y80{bottom:750.525000px;}
.ybc{bottom:751.065000px;}
.y160{bottom:761.505000px;}
.yae{bottom:761.865000px;}
.y59{bottom:768.705000px;}
.y7f{bottom:770.505000px;}
.ybb{bottom:770.865000px;}
.y15f{bottom:781.485000px;}
.yad{bottom:781.845000px;}
.y58{bottom:788.505000px;}
.y7e{bottom:790.305000px;}
.yba{bottom:790.845000px;}
.y15e{bottom:801.285000px;}
.yac{bottom:801.645000px;}
.y57{bottom:808.305000px;}
.y7d{bottom:810.105000px;}
.yb9{bottom:810.645000px;}
.y15d{bottom:821.085000px;}
.yab{bottom:821.445000px;}
.y56{bottom:828.285000px;}
.y7c{bottom:829.905000px;}
.yb8{bottom:830.445000px;}
.y19{bottom:840.705000px;}
.y15c{bottom:840.885000px;}
.yaa{bottom:841.245000px;}
.y11b{bottom:843.045000px;}
.y55{bottom:848.085000px;}
.y7b{bottom:849.705000px;}
.yb7{bottom:850.245000px;}
.y15b{bottom:860.685000px;}
.ya9{bottom:861.045000px;}
.y11a{bottom:862.890000px;}
.y54{bottom:867.930000px;}
.y7a{bottom:869.730000px;}
.y18{bottom:870.090000px;}
.y119{bottom:877.650000px;}
.y13f{bottom:880.710000px;}
.ya8{bottom:881.070000px;}
.y53{bottom:887.730000px;}
.yb6{bottom:890.070000px;}
.y17{bottom:895.110000px;}
.y118{bottom:898.350000px;}
.y13e{bottom:900.510000px;}
.ya7{bottom:900.870000px;}
.y52{bottom:907.530000px;}
.yb5{bottom:909.870000px;}
.y16{bottom:910.410000px;}
.y13d{bottom:920.310000px;}
.ya6{bottom:920.670000px;}
.y117{bottom:921.570000px;}
.y51{bottom:927.330000px;}
.yb4{bottom:929.670000px;}
.y15{bottom:931.650000px;}
.y13c{bottom:940.110000px;}
.y116{bottom:944.970000px;}
.y50{bottom:947.310000px;}
.ya5{bottom:949.470000px;}
.y14{bottom:955.050000px;}
.y13b{bottom:959.910000px;}
.y4f{bottom:967.110000px;}
.ya4{bottom:969.270000px;}
.y13a{bottom:979.890000px;}
.ydb{bottom:981.870000px;}
.y13{bottom:986.910000px;}
.y112{bottom:988.350000px;}
.ya3{bottom:989.250000px;}
.y4e{bottom:1006.710000px;}
.ya2{bottom:1009.050000px;}
.y111{bottom:1011.570000px;}
.y139{bottom:1014.450000px;}
.y12{bottom:1018.590000px;}
.y4d{bottom:1026.510000px;}
.ya1{bottom:1028.850000px;}
.y10e{bottom:1034.970000px;}
.ye{bottom:1045.410000px;}
.y4c{bottom:1046.490000px;}
.ya0{bottom:1048.650000px;}
.y4b{bottom:1066.290000px;}
.y1{bottom:1067.730000px;}
.y9f{bottom:1068.450000px;}
.y10b{bottom:1078.170000px;}
.y4a{bottom:1086.090000px;}
.y9e{bottom:1088.430000px;}
.y10a{bottom:1101.570000px;}
.y9d{bottom:1108.230000px;}
.y49{bottom:1120.650000px;}
.y136{bottom:1121.550000px;}
.y9c{bottom:1128.030000px;}
.y48{bottom:1141.380000px;}
.y9b{bottom:1147.860000px;}
.y45{bottom:1174.500000px;}
.y44{bottom:1193.580000px;}
.h3{height:2.195156px;}
.h1c{height:19.800000px;}
.h23{height:19.836000px;}
.h18{height:19.980000px;}
.h1d{height:20.016000px;}
.h1b{height:22.356000px;}
.h29{height:22.500000px;}
.ha{height:22.536000px;}
.h26{height:22.680000px;}
.h11{height:22.896000px;}
.h17{height:23.580000px;}
.h15{height:23.760000px;}
.h19{height:25.020000px;}
.hf{height:27.147656px;}
.h16{height:30.060000px;}
.h8{height:37.705078px;}
.h22{height:39.600000px;}
.h13{height:39.636000px;}
.h24{height:39.780000px;}
.h25{height:39.816000px;}
.h6{height:41.726953px;}
.h4{height:42.164648px;}
.h28{height:42.480000px;}
.h2a{height:42.516000px;}
.h14{height:43.506914px;}
.h10{height:45.549492px;}
.h1a{height:46.251562px;}
.hb{height:46.736719px;}
.h7{height:50.273438px;}
.h5{height:50.800781px;}
.h27{height:52.417969px;}
.hc{height:53.224453px;}
.hd{height:59.439023px;}
.h2b{height:62.280000px;}
.h9{height:65.884219px;}
.he{height:67.565039px;}
.h2{height:140.796000px;}
.h20{height:158.790000px;}
.h1e{height:198.390000px;}
.h12{height:238.140000px;}
.h1f{height:297.570000px;}
.h21{height:337.170000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:34.380000px;}
.w6{width:35.460000px;}
.wb{width:39.780000px;}
.w19{width:51.300000px;}
.w17{width:59.580000px;}
.w1f{width:62.280000px;}
.w23{width:63.000000px;}
.w1c{width:63.180000px;}
.w1d{width:75.636000px;}
.w24{width:83.376000px;}
.w1a{width:84.276000px;}
.wf{width:84.600000px;}
.w20{width:85.176000px;}
.w21{width:85.500000px;}
.w25{width:86.076000px;}
.w18{width:88.236000px;}
.w1e{width:93.996000px;}
.wc{width:127.260000px;}
.w4{width:158.940000px;}
.w15{width:167.790000px;}
.w2{width:172.830000px;}
.w11{width:180.570000px;}
.w8{width:192.090000px;}
.w12{width:198.210000px;}
.w10{width:202.890000px;}
.w13{width:231.555000px;}
.wd{width:254.775000px;}
.we{width:275.970000px;}
.w3{width:464.865000px;}
.w16{width:514.185000px;}
.w1b{width:517.785000px;}
.w22{width:517.965000px;}
.w9{width:585.645000px;}
.w7{width:748.950000px;}
.wa{width:777.750000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:3.420000px;}
.x9{left:8.100000px;}
.x1e{left:12.060000px;}
.x1f{left:26.280000px;}
.x20{left:27.540000px;}
.x22{left:30.420000px;}
.x28{left:31.500000px;}
.x23{left:34.740000px;}
.x4{left:38.340000px;}
.x2d{left:44.100000px;}
.x1{left:48.240000px;}
.xb{left:53.999987px;}
.xd{left:57.780000px;}
.xa{left:62.100000px;}
.x1d{left:73.980000px;}
.x37{left:75.239987px;}
.x6{left:80.865000px;}
.xc{left:90.180000px;}
.x14{left:92.519987px;}
.x10{left:94.716000px;}
.x16{left:108.035987px;}
.x35{left:136.295987px;}
.x7{left:140.085000px;}
.x18{left:149.615987px;}
.x2{left:160.050000px;}
.x3{left:221.070000px;}
.x11{left:222.330000px;}
.x15{left:241.589987px;}
.x5{left:248.265000px;}
.xe{left:249.870000px;}
.x34{left:391.574987px;}
.x1b{left:423.795000px;}
.x17{left:473.504987px;}
.x12{left:477.465000px;}
.xf{left:481.244987px;}
.x38{left:494.744987px;}
.x1a{left:500.504987px;}
.x36{left:527.504987px;}
.x2e{left:562.605000px;}
.x24{left:569.805000px;}
.x29{left:573.225000px;}
.x1c{left:622.725000px;}
.x2f{left:625.605000px;}
.x25{left:630.105000px;}
.x2a{left:637.125000px;}
.x8{left:685.950000px;}
.x30{left:711.510000px;}
.x2b{left:713.490000px;}
.x26{left:719.070000px;}
.x32{left:721.410000px;}
.x13{left:753.990000px;}
.x31{left:763.530000px;}
.x2c{left:765.690000px;}
.x27{left:771.090000px;}
.x33{left:773.610000px;}
.x19{left:838.229987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1c{letter-spacing:-1.120000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.185067pt;}
.ls8{letter-spacing:-0.183467pt;}
.ls13{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.033280pt;}
.ls9{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.183680pt;}
.lsa{letter-spacing:0.225280pt;}
.ls19{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.391040pt;}
.ls6{letter-spacing:0.672000pt;}
.ls11{letter-spacing:11.472640pt;}
.ls1b{letter-spacing:14.672640pt;}
.ls18{letter-spacing:18.688000pt;}
.ls1a{letter-spacing:20.432640pt;}
.ls2{letter-spacing:23.632640pt;}
.ls14{letter-spacing:29.392640pt;}
.ls16{letter-spacing:30.208000pt;}
.ls10{letter-spacing:37.072640pt;}
.lsf{letter-spacing:38.352640pt;}
.lse{letter-spacing:40.912640pt;}
.lsc{letter-spacing:41.040640pt;}
.wsc{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.672427pt;}
.ws1{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.096533pt;}
.ws9{word-spacing:-13.049067pt;}
.ws2{word-spacing:-12.960000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._34{margin-left:-13.312000pt;}
._c{margin-left:-5.983147pt;}
._21{margin-left:-4.858667pt;}
._d{margin-left:-3.415040pt;}
._13{margin-left:-2.019840pt;}
._b{margin-left:-0.954880pt;}
._4{width:1.115520pt;}
._12{width:2.753067pt;}
._f{width:3.926400pt;}
._10{width:4.887040pt;}
._11{width:5.790080pt;}
._22{width:7.373440pt;}
._3{width:8.480000pt;}
._e{width:9.556480pt;}
._1{width:11.040000pt;}
._24{width:12.245120pt;}
._23{width:14.183040pt;}
._20{width:15.776640pt;}
._1c{width:16.679680pt;}
._1b{width:17.582720pt;}
._1f{width:18.592000pt;}
._2a{width:19.760640pt;}
._2e{width:20.875520pt;}
._19{width:21.885440pt;}
._1a{width:22.788480pt;}
._29{width:23.849600pt;}
._2f{width:25.550720pt;}
._14{width:26.825600pt;}
._15{width:28.207787pt;}
._1e{width:29.684267pt;}
._1d{width:30.809600pt;}
._2d{width:32.721920pt;}
._28{width:34.368640pt;}
._27{width:35.377920pt;}
._31{width:36.387200pt;}
._26{width:42.648960pt;}
._25{width:43.558400pt;}
._3c{width:45.948800pt;}
._17{width:46.851840pt;}
._16{width:48.179840pt;}
._35{width:51.579520pt;}
._3a{width:53.120000pt;}
._18{width:54.235520pt;}
._32{width:57.050880pt;}
._3b{width:58.113280pt;}
._39{width:60.981760pt;}
._30{width:62.469120pt;}
._37{width:63.690880pt;}
._36{width:65.337600pt;}
._38{width:70.595840pt;}
._2c{width:72.827520pt;}
._2b{width:73.996160pt;}
._8{width:78.400000pt;}
._6{width:86.560000pt;}
._0{width:91.200000pt;}
._9{width:96.160000pt;}
._33{width:129.134720pt;}
._2{width:146.720000pt;}
._5{width:163.520000pt;}
._a{width:204.320000pt;}
._7{width:263.840000pt;}
.fs0{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.800000pt;}
.y113{bottom:4.960000pt;}
.y27{bottom:5.120000pt;}
.yfa{bottom:5.160000pt;}
.y40{bottom:5.280000pt;}
.y134{bottom:5.306667pt;}
.y114{bottom:6.240000pt;}
.y47{bottom:6.272000pt;}
.y10c{bottom:6.400000pt;}
.y10{bottom:6.432000pt;}
.y3c{bottom:6.720000pt;}
.y38{bottom:6.880000pt;}
.y42{bottom:7.520000pt;}
.y1a{bottom:7.840000pt;}
.y3a{bottom:9.760000pt;}
.y8{bottom:12.960000pt;}
.yd{bottom:13.600000pt;}
.yfd{bottom:13.920000pt;}
.y105{bottom:14.080000pt;}
.y12b{bottom:15.194667pt;}
.y10f{bottom:15.200000pt;}
.y138{bottom:15.360000pt;}
.y108{bottom:17.594667pt;}
.y100{bottom:17.600000pt;}
.yfb{bottom:17.640000pt;}
.y102{bottom:17.760000pt;}
.y135{bottom:17.786667pt;}
.y115{bottom:20.000000pt;}
.y10d{bottom:20.160000pt;}
.y12a{bottom:22.714667pt;}
.y29{bottom:22.720000pt;}
.y137{bottom:22.746667pt;}
.y26{bottom:22.880000pt;}
.y126{bottom:24.160000pt;}
.y11{bottom:34.400000pt;}
.y7{bottom:34.560000pt;}
.yfe{bottom:35.360000pt;}
.y12c{bottom:37.754667pt;}
.y110{bottom:37.760000pt;}
.y124{bottom:37.800000pt;}
.yc{bottom:39.200000pt;}
.ye7{bottom:40.320000pt;}
.yda{bottom:40.474667pt;}
.y25{bottom:40.480000pt;}
.yf{bottom:47.200000pt;}
.y46{bottom:47.360000pt;}
.y127{bottom:55.360000pt;}
.y6{bottom:56.186667pt;}
.ye6{bottom:57.920000pt;}
.yd9{bottom:58.074667pt;}
.y24{bottom:58.080000pt;}
.yb{bottom:64.986667pt;}
.y5{bottom:75.066667pt;}
.yf7{bottom:75.232000pt;}
.yd8{bottom:75.674667pt;}
.y23{bottom:75.680000pt;}
.y182{bottom:77.472000pt;}
.y43{bottom:77.792000pt;}
.ya{bottom:82.106667pt;}
.y15a{bottom:84.992000pt;}
.y19f{bottom:85.792000pt;}
.y12d{bottom:89.312000pt;}
.yf6{bottom:92.832000pt;}
.y22{bottom:93.280000pt;}
.yd7{bottom:93.434667pt;}
.yc5{bottom:93.440000pt;}
.y4{bottom:95.066667pt;}
.y181{bottom:95.072000pt;}
.y41{bottom:96.192000pt;}
.y9{bottom:97.946667pt;}
.y9a{bottom:99.072000pt;}
.y79{bottom:101.312000pt;}
.y159{bottom:102.592000pt;}
.y19e{bottom:103.392000pt;}
.yc6{bottom:105.792000pt;}
.y109{bottom:105.952000pt;}
.ydc{bottom:110.880000pt;}
.yd6{bottom:111.034667pt;}
.y21{bottom:111.040000pt;}
.y3{bottom:112.666667pt;}
.y180{bottom:112.672000pt;}
.y99{bottom:116.672000pt;}
.y3f{bottom:119.072000pt;}
.y158{bottom:120.192000pt;}
.y19d{bottom:120.992000pt;}
.y107{bottom:124.352000pt;}
.y129{bottom:127.712000pt;}
.ye5{bottom:128.480000pt;}
.yd5{bottom:128.634667pt;}
.y20{bottom:128.640000pt;}
.y17f{bottom:130.272000pt;}
.y98{bottom:134.266667pt;}
.y78{bottom:136.666667pt;}
.y3e{bottom:137.466667pt;}
.y157{bottom:137.786667pt;}
.y19c{bottom:138.586667pt;}
.y106{bottom:142.586667pt;}
.yd2{bottom:146.074667pt;}
.ye4{bottom:146.080000pt;}
.yd4{bottom:146.234667pt;}
.y1f{bottom:146.240000pt;}
.y17e{bottom:147.866667pt;}
.y97{bottom:151.866667pt;}
.y77{bottom:154.266667pt;}
.y156{bottom:155.546667pt;}
.y19b{bottom:156.186667pt;}
.y3d{bottom:159.066667pt;}
.y104{bottom:160.826667pt;}
.yd1{bottom:163.674667pt;}
.yd3{bottom:163.834667pt;}
.y1e{bottom:163.840000pt;}
.yc4{bottom:163.866667pt;}
.y17d{bottom:165.626667pt;}
.y128{bottom:166.106667pt;}
.y96{bottom:169.626667pt;}
.y76{bottom:171.866667pt;}
.y155{bottom:173.146667pt;}
.y19a{bottom:173.946667pt;}
.y3b{bottom:180.826667pt;}
.yd0{bottom:181.114667pt;}
.y1d{bottom:181.440000pt;}
.ycb{bottom:181.594667pt;}
.y17c{bottom:183.226667pt;}
.y95{bottom:187.226667pt;}
.y75{bottom:189.466667pt;}
.y154{bottom:190.746667pt;}
.y199{bottom:191.546667pt;}
.y103{bottom:196.826667pt;}
.ycf{bottom:198.914667pt;}
.ye3{bottom:199.080000pt;}
.y1c{bottom:199.200000pt;}
.yca{bottom:199.234667pt;}
.y17b{bottom:200.826667pt;}
.y39{bottom:202.426667pt;}
.y125{bottom:204.506667pt;}
.y94{bottom:204.826667pt;}
.y74{bottom:207.226667pt;}
.y153{bottom:208.346667pt;}
.y198{bottom:209.146667pt;}
.y101{bottom:215.066667pt;}
.yce{bottom:216.674667pt;}
.ye2{bottom:216.680000pt;}
.yc9{bottom:216.834667pt;}
.y17a{bottom:218.426667pt;}
.y93{bottom:222.426667pt;}
.y73{bottom:224.826667pt;}
.y152{bottom:225.946667pt;}
.y197{bottom:226.746667pt;}
.y37{bottom:229.786667pt;}
.yff{bottom:233.466667pt;}
.ycd{bottom:234.274667pt;}
.ye1{bottom:234.280000pt;}
.yc8{bottom:234.434667pt;}
.y179{bottom:236.026667pt;}
.y92{bottom:240.026667pt;}
.y72{bottom:242.426667pt;}
.y151{bottom:243.706667pt;}
.y196{bottom:244.346667pt;}
.yfc{bottom:251.706667pt;}
.ycc{bottom:251.874667pt;}
.ye0{bottom:251.880000pt;}
.yc7{bottom:252.034667pt;}
.y178{bottom:253.786667pt;}
.y36{bottom:256.666667pt;}
.y91{bottom:257.786667pt;}
.y71{bottom:260.026667pt;}
.y123{bottom:260.666667pt;}
.y150{bottom:261.306667pt;}
.y195{bottom:262.106667pt;}
.ydf{bottom:269.640000pt;}
.y177{bottom:271.386667pt;}
.y35{bottom:274.266667pt;}
.y90{bottom:275.386667pt;}
.y70{bottom:277.626667pt;}
.y14f{bottom:278.906667pt;}
.y194{bottom:279.706667pt;}
.yde{bottom:287.240000pt;}
.yf9{bottom:287.706667pt;}
.y176{bottom:288.986667pt;}
.y34{bottom:291.906667pt;}
.y8f{bottom:293.026667pt;}
.y6f{bottom:295.426667pt;}
.y14e{bottom:296.546667pt;}
.y193{bottom:297.346667pt;}
.y122{bottom:299.106667pt;}
.yf8{bottom:305.986667pt;}
.y175{bottom:306.626667pt;}
.y33{bottom:309.666667pt;}
.y8e{bottom:310.626667pt;}
.y6e{bottom:313.026667pt;}
.y14d{bottom:314.146667pt;}
.y192{bottom:314.946667pt;}
.y174{bottom:324.226667pt;}
.y32{bottom:327.266667pt;}
.y8d{bottom:328.226667pt;}
.y6d{bottom:330.626667pt;}
.y14c{bottom:331.906667pt;}
.y191{bottom:332.546667pt;}
.y121{bottom:337.506667pt;}
.y173{bottom:341.986667pt;}
.y31{bottom:344.866667pt;}
.y8c{bottom:345.986667pt;}
.y6c{bottom:348.226667pt;}
.yf5{bottom:349.186667pt;}
.y14b{bottom:349.506667pt;}
.y190{bottom:350.306667pt;}
.y172{bottom:359.586667pt;}
.y8b{bottom:360.546667pt;}
.y30{bottom:362.466667pt;}
.y6b{bottom:365.826667pt;}
.yf4{bottom:366.786667pt;}
.y14a{bottom:367.106667pt;}
.y18f{bottom:367.906667pt;}
.yc3{bottom:370.946667pt;}
.y120{bottom:375.906667pt;}
.y171{bottom:377.186667pt;}
.y2f{bottom:380.066667pt;}
.y6a{bottom:383.586667pt;}
.yf3{bottom:384.546667pt;}
.y149{bottom:384.706667pt;}
.y18e{bottom:385.506667pt;}
.y170{bottom:394.786667pt;}
.y2e{bottom:397.826667pt;}
.y69{bottom:401.186667pt;}
.yef{bottom:402.146667pt;}
.y148{bottom:402.306667pt;}
.y18d{bottom:403.106667pt;}
.y16f{bottom:412.386667pt;}
.y11f{bottom:414.306667pt;}
.y2d{bottom:415.426667pt;}
.yf2{bottom:418.146667pt;}
.y68{bottom:418.786667pt;}
.yee{bottom:419.746667pt;}
.y147{bottom:420.066667pt;}
.y18c{bottom:420.706667pt;}
.y16e{bottom:430.146667pt;}
.y2c{bottom:433.026667pt;}
.yf1{bottom:435.746667pt;}
.y67{bottom:436.386667pt;}
.yed{bottom:437.346667pt;}
.y146{bottom:437.666667pt;}
.y18b{bottom:438.466667pt;}
.y16d{bottom:447.746667pt;}
.y2b{bottom:450.626667pt;}
.y11e{bottom:452.706667pt;}
.yf0{bottom:453.346667pt;}
.y66{bottom:453.986667pt;}
.y145{bottom:455.266667pt;}
.y18a{bottom:456.066667pt;}
.y16c{bottom:465.346667pt;}
.y2a{bottom:468.226667pt;}
.yec{bottom:470.946667pt;}
.y65{bottom:471.746667pt;}
.y144{bottom:472.866667pt;}
.y189{bottom:473.666667pt;}
.y16b{bottom:482.946667pt;}
.yeb{bottom:488.706667pt;}
.y64{bottom:489.346667pt;}
.y143{bottom:490.466667pt;}
.y8a{bottom:490.786667pt;}
.y188{bottom:491.266667pt;}
.y11d{bottom:493.826667pt;}
.y28{bottom:499.106667pt;}
.y16a{bottom:500.546667pt;}
.yea{bottom:506.306667pt;}
.y63{bottom:506.946667pt;}
.y142{bottom:508.226667pt;}
.y89{bottom:508.546667pt;}
.y187{bottom:508.866667pt;}
.y11c{bottom:511.426667pt;}
.y169{bottom:518.306667pt;}
.ye9{bottom:523.906667pt;}
.y62{bottom:524.546667pt;}
.y141{bottom:525.826667pt;}
.y88{bottom:526.146667pt;}
.y186{bottom:526.626667pt;}
.y1b{bottom:534.973333pt;}
.y168{bottom:535.933333pt;}
.y140{bottom:540.413333pt;}
.ye8{bottom:541.533333pt;}
.y61{bottom:542.173333pt;}
.y133{bottom:542.973333pt;}
.y87{bottom:543.773333pt;}
.y185{bottom:544.253333pt;}
.yc2{bottom:548.093333pt;}
.y167{bottom:553.533333pt;}
.y60{bottom:559.933333pt;}
.y86{bottom:561.373333pt;}
.y184{bottom:561.853333pt;}
.y166{bottom:571.133333pt;}
.yc1{bottom:571.453333pt;}
.ydd{bottom:572.413333pt;}
.y5f{bottom:577.533333pt;}
.y85{bottom:578.973333pt;}
.y183{bottom:579.453333pt;}
.y132{bottom:581.373333pt;}
.y165{bottom:588.733333pt;}
.yb3{bottom:589.053333pt;}
.y5e{bottom:595.133333pt;}
.y84{bottom:596.733333pt;}
.yc0{bottom:597.053333pt;}
.y131{bottom:602.173333pt;}
.y164{bottom:606.493333pt;}
.yb2{bottom:606.813333pt;}
.y5d{bottom:612.733333pt;}
.y83{bottom:614.333333pt;}
.ybf{bottom:614.813333pt;}
.y130{bottom:622.973333pt;}
.y163{bottom:624.093333pt;}
.yb1{bottom:624.413333pt;}
.y5c{bottom:630.333333pt;}
.y82{bottom:631.933333pt;}
.ybe{bottom:632.413333pt;}
.y162{bottom:641.693333pt;}
.yb0{bottom:642.013333pt;}
.y12f{bottom:643.773333pt;}
.y5b{bottom:648.093333pt;}
.y81{bottom:649.533333pt;}
.ybd{bottom:650.013333pt;}
.y161{bottom:659.293333pt;}
.yaf{bottom:659.613333pt;}
.y12e{bottom:664.573333pt;}
.y5a{bottom:665.693333pt;}
.y80{bottom:667.133333pt;}
.ybc{bottom:667.613333pt;}
.y160{bottom:676.893333pt;}
.yae{bottom:677.213333pt;}
.y59{bottom:683.293333pt;}
.y7f{bottom:684.893333pt;}
.ybb{bottom:685.213333pt;}
.y15f{bottom:694.653333pt;}
.yad{bottom:694.973333pt;}
.y58{bottom:700.893333pt;}
.y7e{bottom:702.493333pt;}
.yba{bottom:702.973333pt;}
.y15e{bottom:712.253333pt;}
.yac{bottom:712.573333pt;}
.y57{bottom:718.493333pt;}
.y7d{bottom:720.093333pt;}
.yb9{bottom:720.573333pt;}
.y15d{bottom:729.853333pt;}
.yab{bottom:730.173333pt;}
.y56{bottom:736.253333pt;}
.y7c{bottom:737.693333pt;}
.yb8{bottom:738.173333pt;}
.y19{bottom:747.293333pt;}
.y15c{bottom:747.453333pt;}
.yaa{bottom:747.773333pt;}
.y11b{bottom:749.373333pt;}
.y55{bottom:753.853333pt;}
.y7b{bottom:755.293333pt;}
.yb7{bottom:755.773333pt;}
.y15b{bottom:765.053333pt;}
.ya9{bottom:765.373333pt;}
.y11a{bottom:767.013333pt;}
.y54{bottom:771.493333pt;}
.y7a{bottom:773.093333pt;}
.y18{bottom:773.413333pt;}
.y119{bottom:780.133333pt;}
.y13f{bottom:782.853333pt;}
.ya8{bottom:783.173333pt;}
.y53{bottom:789.093333pt;}
.yb6{bottom:791.173333pt;}
.y17{bottom:795.653333pt;}
.y118{bottom:798.533333pt;}
.y13e{bottom:800.453333pt;}
.ya7{bottom:800.773333pt;}
.y52{bottom:806.693333pt;}
.yb5{bottom:808.773333pt;}
.y16{bottom:809.253333pt;}
.y13d{bottom:818.053333pt;}
.ya6{bottom:818.373333pt;}
.y117{bottom:819.173333pt;}
.y51{bottom:824.293333pt;}
.yb4{bottom:826.373333pt;}
.y15{bottom:828.133333pt;}
.y13c{bottom:835.653333pt;}
.y116{bottom:839.973333pt;}
.y50{bottom:842.053333pt;}
.ya5{bottom:843.973333pt;}
.y14{bottom:848.933333pt;}
.y13b{bottom:853.253333pt;}
.y4f{bottom:859.653333pt;}
.ya4{bottom:861.573333pt;}
.y13a{bottom:871.013333pt;}
.ydb{bottom:872.773333pt;}
.y13{bottom:877.253333pt;}
.y112{bottom:878.533333pt;}
.ya3{bottom:879.333333pt;}
.y4e{bottom:894.853333pt;}
.ya2{bottom:896.933333pt;}
.y111{bottom:899.173333pt;}
.y139{bottom:901.733333pt;}
.y12{bottom:905.413333pt;}
.y4d{bottom:912.453333pt;}
.ya1{bottom:914.533333pt;}
.y10e{bottom:919.973333pt;}
.ye{bottom:929.253333pt;}
.y4c{bottom:930.213333pt;}
.ya0{bottom:932.133333pt;}
.y4b{bottom:947.813333pt;}
.y1{bottom:949.093333pt;}
.y9f{bottom:949.733333pt;}
.y10b{bottom:958.373333pt;}
.y4a{bottom:965.413333pt;}
.y9e{bottom:967.493333pt;}
.y10a{bottom:979.173333pt;}
.y9d{bottom:985.093333pt;}
.y49{bottom:996.133333pt;}
.y136{bottom:996.933333pt;}
.y9c{bottom:1002.693333pt;}
.y48{bottom:1014.560000pt;}
.y9b{bottom:1020.320000pt;}
.y45{bottom:1044.000000pt;}
.y44{bottom:1060.960000pt;}
.h3{height:1.951250pt;}
.h1c{height:17.600000pt;}
.h23{height:17.632000pt;}
.h18{height:17.760000pt;}
.h1d{height:17.792000pt;}
.h1b{height:19.872000pt;}
.h29{height:20.000000pt;}
.ha{height:20.032000pt;}
.h26{height:20.160000pt;}
.h11{height:20.352000pt;}
.h17{height:20.960000pt;}
.h15{height:21.120000pt;}
.h19{height:22.240000pt;}
.hf{height:24.131250pt;}
.h16{height:26.720000pt;}
.h8{height:33.515625pt;}
.h22{height:35.200000pt;}
.h13{height:35.232000pt;}
.h24{height:35.360000pt;}
.h25{height:35.392000pt;}
.h6{height:37.090625pt;}
.h4{height:37.479688pt;}
.h28{height:37.760000pt;}
.h2a{height:37.792000pt;}
.h14{height:38.672812pt;}
.h10{height:40.488438pt;}
.h1a{height:41.112500pt;}
.hb{height:41.543750pt;}
.h7{height:44.687500pt;}
.h5{height:45.156250pt;}
.h27{height:46.593750pt;}
.hc{height:47.310625pt;}
.hd{height:52.834688pt;}
.h2b{height:55.360000pt;}
.h9{height:58.563750pt;}
.he{height:60.057813pt;}
.h2{height:125.152000pt;}
.h20{height:141.146667pt;}
.h1e{height:176.346667pt;}
.h12{height:211.680000pt;}
.h1f{height:264.506667pt;}
.h21{height:299.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:30.560000pt;}
.w6{width:31.520000pt;}
.wb{width:35.360000pt;}
.w19{width:45.600000pt;}
.w17{width:52.960000pt;}
.w1f{width:55.360000pt;}
.w23{width:56.000000pt;}
.w1c{width:56.160000pt;}
.w1d{width:67.232000pt;}
.w24{width:74.112000pt;}
.w1a{width:74.912000pt;}
.wf{width:75.200000pt;}
.w20{width:75.712000pt;}
.w21{width:76.000000pt;}
.w25{width:76.512000pt;}
.w18{width:78.432000pt;}
.w1e{width:83.552000pt;}
.wc{width:113.120000pt;}
.w4{width:141.280000pt;}
.w15{width:149.146667pt;}
.w2{width:153.626667pt;}
.w11{width:160.506667pt;}
.w8{width:170.746667pt;}
.w12{width:176.186667pt;}
.w10{width:180.346667pt;}
.w13{width:205.826667pt;}
.wd{width:226.466667pt;}
.we{width:245.306667pt;}
.w3{width:413.213333pt;}
.w16{width:457.053333pt;}
.w1b{width:460.253333pt;}
.w22{width:460.413333pt;}
.w9{width:520.573333pt;}
.w7{width:665.733333pt;}
.wa{width:691.333333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:3.040000pt;}
.x9{left:7.200000pt;}
.x1e{left:10.720000pt;}
.x1f{left:23.360000pt;}
.x20{left:24.480000pt;}
.x22{left:27.040000pt;}
.x28{left:28.000000pt;}
.x23{left:30.880000pt;}
.x4{left:34.080000pt;}
.x2d{left:39.200000pt;}
.x1{left:42.880000pt;}
.xb{left:47.999988pt;}
.xd{left:51.360000pt;}
.xa{left:55.200000pt;}
.x1d{left:65.760000pt;}
.x37{left:66.879988pt;}
.x6{left:71.880000pt;}
.xc{left:80.160000pt;}
.x14{left:82.239988pt;}
.x10{left:84.192000pt;}
.x16{left:96.031988pt;}
.x35{left:121.151988pt;}
.x7{left:124.520000pt;}
.x18{left:132.991988pt;}
.x2{left:142.266667pt;}
.x3{left:196.506667pt;}
.x11{left:197.626667pt;}
.x15{left:214.746655pt;}
.x5{left:220.680000pt;}
.xe{left:222.106667pt;}
.x34{left:348.066655pt;}
.x1b{left:376.706667pt;}
.x17{left:420.893322pt;}
.x12{left:424.413333pt;}
.xf{left:427.773322pt;}
.x38{left:439.773322pt;}
.x1a{left:444.893322pt;}
.x36{left:468.893322pt;}
.x2e{left:500.093333pt;}
.x24{left:506.493333pt;}
.x29{left:509.533333pt;}
.x1c{left:553.533333pt;}
.x2f{left:556.093333pt;}
.x25{left:560.093333pt;}
.x2a{left:566.333333pt;}
.x8{left:609.733333pt;}
.x30{left:632.453333pt;}
.x2b{left:634.213333pt;}
.x26{left:639.173333pt;}
.x32{left:641.253333pt;}
.x13{left:670.213333pt;}
.x31{left:678.693333pt;}
.x2c{left:680.613333pt;}
.x27{left:685.413333pt;}
.x33{left:687.653333pt;}
.x19{left:745.093322pt;}
}




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