
    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_72b3332321d6e1779ee6d233.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_b359571cb93806fc887ea4b8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.008789;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_71b74aee720cee8484d3a09f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_af770b56813039201efa73ba.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_735e28f04437e35e46d3565c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_581b2c1cc825626444cc8a26.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.073242;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_93a11f48d26d1ed714137370.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.073242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9ae53659a1167ffa3b571430.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_21368a026d309a73440d3a70.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.964355;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2d0b1b506f0ee84378b992cc.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-69.120000px;}
.v4{vertical-align:-61.920000px;}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.ls12{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.259800px;}
.lsc{letter-spacing:-0.053280px;}
.lsb{letter-spacing:-0.052560px;}
.lsa{letter-spacing:-0.000003px;}
.ls9{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.093600px;}
.ls2{letter-spacing:0.149760px;}
.ls7{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.269280px;}
.ls14{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.312000px;}
.ls1{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.666000px;}
.ls3{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.900000px;}
.ls6{letter-spacing:8.789760px;}
.ls10{letter-spacing:16.506720px;}
.ls8{letter-spacing:28.980000px;}
.lse{letter-spacing:46.026720px;}
.ls4{letter-spacing:1335.216000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-17.639997px;}
.wsc{word-spacing:-15.606000px;}
.ws3{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.ws2{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.680200px;}
.ws7{word-spacing:-13.500000px;}
.ws9{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.113200px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._11{margin-left:-4.371840px;}
._16{margin-left:-3.371520px;}
._4{margin-left:-2.368080px;}
._1{margin-left:-1.088640px;}
._0{width:1.020000px;}
._3{width:2.826000px;}
._5{width:4.695840px;}
._6{width:6.205680px;}
._b{width:7.343280px;}
._9{width:8.426160px;}
._d{width:9.442080px;}
._13{width:10.512480px;}
._12{width:11.658240px;}
._17{width:12.718080px;}
._18{width:14.442720px;}
._c{width:16.135200px;}
._8{width:17.270640px;}
._7{width:18.764640px;}
._a{width:20.066400px;}
._15{width:21.660480px;}
._14{width:22.881600px;}
._1c{width:24.676800px;}
._1d{width:26.067840px;}
._1a{width:28.416960px;}
._1b{width:29.707920px;}
._20{width:49.297920px;}
._1f{width:50.377680px;}
._1e{width:52.148880px;}
._2{width:53.805600px;}
._e{width:60.048000px;}
._f{width:61.080000px;}
._10{width:62.270640px;}
._19{width:246.972000px;}
.fc5{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(192,0,0);}
.fc6{color:rgb(34,34,34);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs9{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs1{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.y4f{bottom:-76.868970px;}
.y4e{bottom:-61.209000px;}
.y4d{bottom:-45.729000px;}
.y1a{bottom:-43.605000px;}
.y4c{bottom:-30.249000px;}
.y19{bottom:-9.000000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:0.711000px;}
.yd1{bottom:3.225000px;}
.ya4{bottom:3.240000px;}
.ycd{bottom:3.405000px;}
.ya6{bottom:3.420000px;}
.yc7{bottom:3.450000px;}
.yca{bottom:3.585000px;}
.ya8{bottom:3.600000px;}
.yaa{bottom:3.765000px;}
.yd3{bottom:3.771000px;}
.yac{bottom:3.780000px;}
.yc8{bottom:3.810000px;}
.y159{bottom:3.825000px;}
.y108{bottom:5.385000px;}
.yd9{bottom:5.400000px;}
.yfd{bottom:5.580000px;}
.y7{bottom:5.751000px;}
.y3f{bottom:5.940000px;}
.y53{bottom:6.291000px;}
.y8{bottom:7.731000px;}
.y169{bottom:8.460000px;}
.y15c{bottom:8.625000px;}
.y54{bottom:8.631000px;}
.y14e{bottom:8.640000px;}
.y178{bottom:8.670000px;}
.y105{bottom:10.245000px;}
.y14c{bottom:12.060000px;}
.ydc{bottom:12.420000px;}
.y113{bottom:12.450000px;}
.y104{bottom:12.780000px;}
.y4{bottom:13.140000px;}
.y11d{bottom:13.320000px;}
.y18{bottom:13.500000px;}
.y10b{bottom:14.025000px;}
.y10e{bottom:14.031000px;}
.y115{bottom:14.040000px;}
.y11{bottom:14.400000px;}
.y2{bottom:15.300000px;}
.y4a{bottom:16.371000px;}
.yf8{bottom:20.160000px;}
.y11f{bottom:20.340000px;}
.yd7{bottom:20.700000px;}
.y102{bottom:21.045000px;}
.ydb{bottom:21.060000px;}
.y112{bottom:21.090000px;}
.y107{bottom:22.665000px;}
.yfa{bottom:22.680000px;}
.y123{bottom:22.710000px;}
.y3e{bottom:23.220000px;}
.y55{bottom:24.156000px;}
.y9{bottom:25.776000px;}
.yf6{bottom:30.420000px;}
.y11c{bottom:30.600000px;}
.y17{bottom:30.780000px;}
.y49{bottom:31.851000px;}
.y10{bottom:33.300000px;}
.y2b{bottom:35.640000px;}
.y52{bottom:36.765000px;}
.y101{bottom:38.370000px;}
.y3d{bottom:40.365000px;}
.y6{bottom:41.265000px;}
.y48{bottom:47.331000px;}
.yf5{bottom:47.700000px;}
.y16{bottom:47.880000px;}
.yf{bottom:51.660000px;}
.y2a{bottom:52.920000px;}
.y100{bottom:55.650000px;}
.y3c{bottom:57.645000px;}
.y47{bottom:62.811000px;}
.y15{bottom:65.340000px;}
.ye{bottom:69.660000px;}
.y29{bottom:70.200000px;}
.y3b{bottom:74.925000px;}
.y40{bottom:77.985000px;}
.y14{bottom:78.300000px;}
.y46{bottom:78.465000px;}
.y28{bottom:87.480000px;}
.yd{bottom:90.360000px;}
.y3a{bottom:92.205000px;}
.y45{bottom:93.945000px;}
.y27{bottom:104.580000px;}
.y13{bottom:104.940000px;}
.y44{bottom:109.425000px;}
.y39{bottom:109.485000px;}
.yc{bottom:111.060000px;}
.y1a9{bottom:113.796000px;}
.y110{bottom:114.885000px;}
.y97{bottom:115.236000px;}
.yd4{bottom:121.005000px;}
.y26{bottom:121.860000px;}
.y149{bottom:122.796000px;}
.y43{bottom:124.725000px;}
.y180{bottom:125.496000px;}
.y38{bottom:126.765000px;}
.y1a8{bottom:131.076000px;}
.y8b{bottom:134.136000px;}
.y10d{bottom:135.585000px;}
.y25{bottom:139.140000px;}
.y42{bottom:139.305000px;}
.yd2{bottom:140.445000px;}
.y148{bottom:141.876000px;}
.y1e2{bottom:142.596000px;}
.y37{bottom:143.865000px;}
.y17f{bottom:146.916000px;}
.y1a7{bottom:148.176000px;}
.y8a{bottom:153.210000px;}
.y10f{bottom:156.105000px;}
.y41{bottom:156.405000px;}
.y24{bottom:156.420000px;}
.y17e{bottom:158.625000px;}
.y1e1{bottom:159.870000px;}
.y147{bottom:160.770000px;}
.yd0{bottom:160.785000px;}
.y36{bottom:161.145000px;}
.y1a6{bottom:165.450000px;}
.y89{bottom:172.110000px;}
.y23{bottom:173.700000px;}
.y17d{bottom:175.905000px;}
.y10a{bottom:176.805000px;}
.y1e0{bottom:176.970000px;}
.y35{bottom:178.425000px;}
.y146{bottom:179.850000px;}
.ycf{bottom:180.945000px;}
.y1a5{bottom:182.730000px;}
.y22{bottom:190.800000px;}
.y88{bottom:191.190000px;}
.y17c{bottom:193.185000px;}
.y1df{bottom:194.250000px;}
.y34{bottom:195.705000px;}
.y10c{bottom:197.505000px;}
.y145{bottom:198.750000px;}
.y1a4{bottom:200.010000px;}
.yce{bottom:200.385000px;}
.y21{bottom:208.080000px;}
.y87{bottom:210.090000px;}
.y17b{bottom:210.465000px;}
.y1de{bottom:211.530000px;}
.y33{bottom:212.985000px;}
.y1a3{bottom:217.290000px;}
.y144{bottom:217.650000px;}
.y106{bottom:218.025000px;}
.ycc{bottom:220.725000px;}
.y20{bottom:225.360000px;}
.y1dd{bottom:228.810000px;}
.y17a{bottom:228.825000px;}
.y86{bottom:228.990000px;}
.y32{bottom:230.085000px;}
.y1a2{bottom:234.570000px;}
.y143{bottom:236.730000px;}
.y109{bottom:238.725000px;}
.ycb{bottom:240.885000px;}
.y1f{bottom:242.640000px;}
.y1dc{bottom:246.090000px;}
.y31{bottom:247.365000px;}
.y2c{bottom:247.890000px;}
.y85{bottom:248.070000px;}
.y1a1{bottom:251.670000px;}
.y142{bottom:255.630000px;}
.y179{bottom:256.185000px;}
.yff{bottom:259.245000px;}
.y1e{bottom:259.920000px;}
.yc9{bottom:260.505000px;}
.y1db{bottom:263.190000px;}
.y30{bottom:264.645000px;}
.y84{bottom:266.970000px;}
.y1a0{bottom:268.950000px;}
.y177{bottom:273.465000px;}
.y141{bottom:274.710000px;}
.y1d{bottom:277.245000px;}
.y1da{bottom:280.470000px;}
.yc6{bottom:280.665000px;}
.y2f{bottom:281.925000px;}
.y83{bottom:286.095000px;}
.y19f{bottom:286.635000px;}
.y176{bottom:290.775000px;}
.y103{bottom:292.935000px;}
.y140{bottom:293.655000px;}
.y1c{bottom:293.985000px;}
.y1d9{bottom:297.795000px;}
.y2e{bottom:299.205000px;}
.yc5{bottom:301.035000px;}
.y82{bottom:304.995000px;}
.y175{bottom:307.875000px;}
.y13f{bottom:312.555000px;}
.y1d8{bottom:315.075000px;}
.y2d{bottom:316.125000px;}
.yc4{bottom:320.475000px;}
.y19e{bottom:321.735000px;}
.y81{bottom:323.895000px;}
.y174{bottom:326.235000px;}
.yfc{bottom:331.635000px;}
.y1d7{bottom:332.355000px;}
.y19d{bottom:339.195000px;}
.yc3{bottom:339.915000px;}
.y80{bottom:342.975000px;}
.y1d6{bottom:349.635000px;}
.y13e{bottom:350.535000px;}
.yfe{bottom:352.335000px;}
.y173{bottom:353.595000px;}
.y19c{bottom:356.115000px;}
.yc2{bottom:359.535000px;}
.y7f{bottom:361.875000px;}
.y1d5{bottom:366.735000px;}
.y13d{bottom:369.615000px;}
.y172{bottom:370.875000px;}
.yf9{bottom:373.035000px;}
.y19b{bottom:373.755000px;}
.yc1{bottom:379.695000px;}
.y7e{bottom:380.955000px;}
.y1d4{bottom:384.015000px;}
.y171{bottom:388.155000px;}
.y13c{bottom:388.515000px;}
.y19a{bottom:391.035000px;}
.yfb{bottom:393.555000px;}
.y7d{bottom:399.855000px;}
.yc0{bottom:400.035000px;}
.y1d3{bottom:401.295000px;}
.y170{bottom:405.435000px;}
.y13b{bottom:407.595000px;}
.y199{bottom:407.775000px;}
.yf4{bottom:414.255000px;}
.y1d2{bottom:418.575000px;}
.y7c{bottom:418.935000px;}
.ybf{bottom:419.475000px;}
.y16f{bottom:423.795000px;}
.y198{bottom:425.415000px;}
.y13a{bottom:426.495000px;}
.yf7{bottom:434.775000px;}
.y1d1{bottom:435.855000px;}
.y96{bottom:437.475000px;}
.y7b{bottom:437.835000px;}
.ybe{bottom:439.635000px;}
.y197{bottom:442.695000px;}
.y139{bottom:445.395000px;}
.y16e{bottom:451.155000px;}
.y1d0{bottom:453.135000px;}
.y7a{bottom:456.735000px;}
.y196{bottom:459.615000px;}
.ybd{bottom:459.975000px;}
.y138{bottom:464.475000px;}
.y16d{bottom:468.435000px;}
.y1cf{bottom:470.235000px;}
.y79{bottom:475.815000px;}
.y195{bottom:476.895000px;}
.ybc{bottom:479.415000px;}
.y137{bottom:483.375000px;}
.y16c{bottom:485.715000px;}
.y1ce{bottom:487.515000px;}
.yf3{bottom:488.235000px;}
.y78{bottom:494.715000px;}
.ybb{bottom:499.755000px;}
.y136{bottom:502.455000px;}
.y16b{bottom:502.995000px;}
.y1cd{bottom:504.795000px;}
.yf2{bottom:508.935000px;}
.y77{bottom:513.795000px;}
.yba{bottom:519.915000px;}
.y135{bottom:521.355000px;}
.y1cc{bottom:522.075000px;}
.y95{bottom:532.335000px;}
.y76{bottom:532.695000px;}
.y1cb{bottom:539.355000px;}
.yb9{bottom:539.535000px;}
.y134{bottom:540.255000px;}
.yf1{bottom:548.535000px;}
.y16a{bottom:548.715000px;}
.y75{bottom:551.595000px;}
.y1ca{bottom:556.635000px;}
.y133{bottom:559.335000px;}
.yb8{bottom:559.695000px;}
.y168{bottom:566.025000px;}
.yf0{bottom:567.645000px;}
.y74{bottom:570.705000px;}
.y1c9{bottom:573.765000px;}
.y1b{bottom:577.905000px;}
.y132{bottom:578.265000px;}
.yb7{bottom:580.065000px;}
.y167{bottom:583.125000px;}
.yef{bottom:586.545000px;}
.y73{bottom:589.605000px;}
.y1c8{bottom:591.045000px;}
.y131{bottom:597.345000px;}
.yb6{bottom:599.505000px;}
.y166{bottom:600.405000px;}
.yee{bottom:605.445000px;}
.y1c7{bottom:608.325000px;}
.y72{bottom:608.685000px;}
.y130{bottom:616.245000px;}
.y165{bottom:618.765000px;}
.yb5{bottom:618.945000px;}
.yed{bottom:624.525000px;}
.y1c6{bottom:625.605000px;}
.y71{bottom:627.585000px;}
.y12e{bottom:632.985000px;}
.yb4{bottom:638.385000px;}
.y1c5{bottom:642.885000px;}
.yec{bottom:643.425000px;}
.y164{bottom:646.125000px;}
.y70{bottom:646.485000px;}
.y12f{bottom:653.685000px;}
.yb3{bottom:658.725000px;}
.y1c4{bottom:659.985000px;}
.yeb{bottom:662.505000px;}
.y163{bottom:663.405000px;}
.y94{bottom:665.205000px;}
.y6f{bottom:665.565000px;}
.y12c{bottom:674.385000px;}
.y1c3{bottom:677.265000px;}
.yb2{bottom:678.885000px;}
.y162{bottom:680.685000px;}
.yea{bottom:681.405000px;}
.y6e{bottom:684.465000px;}
.y194{bottom:685.905000px;}
.y1c2{bottom:694.545000px;}
.y12d{bottom:694.905000px;}
.y161{bottom:697.965000px;}
.yb1{bottom:698.505000px;}
.ye9{bottom:700.485000px;}
.y6d{bottom:703.545000px;}
.y193{bottom:705.165000px;}
.y1c1{bottom:711.825000px;}
.y160{bottom:715.245000px;}
.y12a{bottom:715.605000px;}
.yb0{bottom:717.945000px;}
.ye8{bottom:719.385000px;}
.y6c{bottom:722.445000px;}
.y192{bottom:724.245000px;}
.y1c0{bottom:729.105000px;}
.y15f{bottom:732.525000px;}
.y12b{bottom:736.125000px;}
.yaf{bottom:737.385000px;}
.ye7{bottom:738.285000px;}
.y6b{bottom:741.345000px;}
.y191{bottom:743.145000px;}
.y1bf{bottom:746.385000px;}
.y15e{bottom:749.625000px;}
.y128{bottom:756.825000px;}
.yae{bottom:757.005000px;}
.ye6{bottom:757.365000px;}
.y6a{bottom:760.425000px;}
.y190{bottom:761.685000px;}
.y1be{bottom:763.485000px;}
.y15d{bottom:768.000000px;}
.ye5{bottom:776.265000px;}
.yad{bottom:777.165000px;}
.y129{bottom:777.345000px;}
.y69{bottom:779.325000px;}
.y18f{bottom:780.765000px;}
.ye4{bottom:795.345000px;}
.yab{bottom:797.505000px;}
.y126{bottom:798.045000px;}
.y68{bottom:798.405000px;}
.y18e{bottom:800.025000px;}
.y15b{bottom:812.640000px;}
.ye3{bottom:814.245000px;}
.y1bd{bottom:815.325000px;}
.ya9{bottom:816.960000px;}
.y67{bottom:817.305000px;}
.y127{bottom:818.745000px;}
.y18d{bottom:819.105000px;}
.y15a{bottom:829.905000px;}
.y1bc{bottom:832.605000px;}
.ye2{bottom:833.145000px;}
.y66{bottom:836.205000px;}
.ya7{bottom:837.285000px;}
.y18c{bottom:838.005000px;}
.y125{bottom:839.265000px;}
.y122{bottom:839.280000px;}
.y158{bottom:847.185000px;}
.y1bb{bottom:849.930000px;}
.ye1{bottom:852.270000px;}
.y65{bottom:855.330000px;}
.y18b{bottom:856.950000px;}
.ya5{bottom:857.490000px;}
.y124{bottom:860.010000px;}
.y157{bottom:864.510000px;}
.y1ba{bottom:867.030000px;}
.ye0{bottom:871.170000px;}
.y64{bottom:874.230000px;}
.y18a{bottom:876.030000px;}
.ya3{bottom:877.830000px;}
.y120{bottom:880.530000px;}
.y156{bottom:881.790000px;}
.y1b9{bottom:884.310000px;}
.y12{bottom:885.750000px;}
.ydf{bottom:890.250000px;}
.y63{bottom:893.310000px;}
.y189{bottom:894.930000px;}
.y155{bottom:898.890000px;}
.ya2{bottom:899.790000px;}
.y121{bottom:901.230000px;}
.y1b8{bottom:901.590000px;}
.yde{bottom:909.150000px;}
.y62{bottom:912.210000px;}
.y188{bottom:914.010000px;}
.y154{bottom:916.170000px;}
.y1b7{bottom:918.870000px;}
.ya1{bottom:919.050000px;}
.y11b{bottom:921.750000px;}
.ydd{bottom:928.050000px;}
.y93{bottom:930.930000px;}
.y61{bottom:931.290000px;}
.y187{bottom:932.910000px;}
.y153{bottom:934.530000px;}
.y1b6{bottom:936.150000px;}
.ya0{bottom:938.130000px;}
.y11e{bottom:942.450000px;}
.yda{bottom:945.330000px;}
.y60{bottom:950.190000px;}
.y186{bottom:951.990000px;}
.y1b5{bottom:953.430000px;}
.y9f{bottom:957.030000px;}
.y152{bottom:961.890000px;}
.y5f{bottom:969.090000px;}
.y1b4{bottom:970.530000px;}
.y185{bottom:970.890000px;}
.y9e{bottom:976.110000px;}
.y151{bottom:979.170000px;}
.yd8{bottom:983.130000px;}
.y1b3{bottom:987.810000px;}
.y5e{bottom:988.170000px;}
.y184{bottom:989.790000px;}
.y9d{bottom:995.010000px;}
.y119{bottom:996.090000px;}
.y150{bottom:996.450000px;}
.yb{bottom:1002.930000px;}
.y1b2{bottom:1005.090000px;}
.y92{bottom:1006.710000px;}
.y5d{bottom:1007.070000px;}
.y183{bottom:1008.870000px;}
.y14f{bottom:1013.730000px;}
.y9c{bottom:1013.910000px;}
.y11a{bottom:1016.790000px;}
.y1b1{bottom:1022.370000px;}
.y5c{bottom:1026.150000px;}
.y182{bottom:1027.770000px;}
.y14d{bottom:1032.090000px;}
.y9b{bottom:1032.630000px;}
.y117{bottom:1037.310000px;}
.y1b0{bottom:1039.650000px;}
.y91{bottom:1044.690000px;}
.y5b{bottom:1045.050000px;}
.yd6{bottom:1046.490000px;}
.y181{bottom:1046.850000px;}
.y9a{bottom:1052.070000px;}
.y1af{bottom:1056.750000px;}
.y118{bottom:1058.010000px;}
.y14b{bottom:1059.450000px;}
.y5a{bottom:1063.950000px;}
.y90{bottom:1064.130000px;}
.yd5{bottom:1065.750000px;}
.y99{bottom:1071.150000px;}
.y1ae{bottom:1074.030000px;}
.y114{bottom:1078.530000px;}
.y59{bottom:1083.030000px;}
.y8f{bottom:1084.650000px;}
.y1ad{bottom:1091.310000px;}
.y116{bottom:1099.230000px;}
.y58{bottom:1101.930000px;}
.y8e{bottom:1103.730000px;}
.y1ac{bottom:1108.590000px;}
.y14a{bottom:1113.090000px;}
.y111{bottom:1119.750000px;}
.y57{bottom:1121.010000px;}
.y8d{bottom:1122.630000px;}
.y1ab{bottom:1125.870000px;}
.ya{bottom:1134.720000px;}
.y56{bottom:1140.120000px;}
.y98{bottom:1141.380000px;}
.y8c{bottom:1141.740000px;}
.y1aa{bottom:1143.180000px;}
.y5{bottom:1144.440000px;}
.y3{bottom:1155.240000px;}
.y51{bottom:1179.000000px;}
.y1{bottom:1188.360000px;}
.y50{bottom:1196.280000px;}
.h21{height:17.085000px;}
.h25{height:17.100000px;}
.h23{height:17.122500px;}
.h22{height:17.265000px;}
.h28{height:17.271000px;}
.h24{height:17.280000px;}
.h27{height:17.301000px;}
.h37{height:17.302500px;}
.h26{height:17.310000px;}
.h2a{height:20.505000px;}
.h7{height:21.231000px;}
.h1d{height:22.131000px;}
.hb{height:29.678906px;}
.h32{height:30.441000px;}
.h2{height:32.040000px;}
.h4{height:32.400000px;}
.h5{height:34.020000px;}
.h29{height:34.545000px;}
.h34{height:34.590000px;}
.h31{height:35.445000px;}
.h2e{height:37.785000px;}
.h33{height:37.791000px;}
.h38{height:37.800000px;}
.h2f{height:37.965000px;}
.h39{height:37.980000px;}
.h36{height:38.001000px;}
.h14{height:40.985156px;}
.h12{height:45.004219px;}
.h1a{height:47.321367px;}
.h6{height:47.344922px;}
.h2d{height:50.205000px;}
.h16{height:51.239531px;}
.h1c{height:52.971680px;}
.h1b{height:52.998047px;}
.h3{height:54.000000px;}
.h1e{height:55.503491px;}
.hf{height:56.795625px;}
.h8{height:58.621992px;}
.h9{height:58.651172px;}
.he{height:60.226875px;}
.h2c{height:61.423863px;}
.h13{height:62.184375px;}
.h1f{height:65.010937px;}
.ha{height:65.884219px;}
.h20{height:66.757500px;}
.h30{height:69.141000px;}
.h17{height:70.664062px;}
.h2b{height:70.725000px;}
.h35{height:70.905000px;}
.hd{height:72.562500px;}
.h10{height:93.983203px;}
.h11{height:117.180000px;}
.hc{height:127.650000px;}
.h19{height:169.911000px;}
.h15{height:307.830000px;}
.h18{height:330.015000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:28.785000px;}
.w7{width:30.405000px;}
.wf{width:60.876000px;}
.w19{width:74.340000px;}
.w14{width:74.505000px;}
.w15{width:106.221000px;}
.w16{width:115.545000px;}
.wa{width:124.905000px;}
.w11{width:125.445000px;}
.wb{width:135.561000px;}
.w10{width:137.901000px;}
.w18{width:234.021000px;}
.wc{width:260.475000px;}
.we{width:363.081000px;}
.w1a{width:382.935000px;}
.w13{width:393.546000px;}
.w9{width:420.006000px;}
.w6{width:652.410000px;}
.w3{width:659.070000px;}
.w2{width:680.310000px;}
.w8{width:680.490000px;}
.wd{width:687.330000px;}
.w12{width:689.850000px;}
.w17{width:691.290000px;}
.w5{width:691.305000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:1.251000px;}
.x2c{left:6.105000px;}
.x3{left:8.091000px;}
.x1c{left:11.685000px;}
.x17{left:12.951000px;}
.x2{left:15.291000px;}
.x11{left:18.720000px;}
.x1a{left:20.685000px;}
.x26{left:22.890000px;}
.x34{left:25.920000px;}
.x7{left:29.160000px;}
.x22{left:30.450000px;}
.xa{left:31.500000px;}
.x32{left:32.940000px;}
.x27{left:34.725000px;}
.x2e{left:40.125000px;}
.x24{left:42.285000px;}
.x2f{left:43.905000px;}
.x30{left:46.800000px;}
.xb{left:49.314000px;}
.x1d{left:54.705000px;}
.x1e{left:58.170000px;}
.x1f{left:62.085000px;}
.xc{left:68.754000px;}
.x3d{left:74.190000px;}
.xe{left:89.094000px;}
.xf{left:91.974000px;}
.x5{left:95.805000px;}
.x28{left:101.565000px;}
.x3b{left:105.150000px;}
.x1{left:106.425000px;}
.x12{left:108.576000px;}
.x10{left:136.434000px;}
.x35{left:153.390000px;}
.x39{left:157.170000px;}
.x16{left:159.330000px;}
.x3c{left:170.670000px;}
.x37{left:171.930000px;}
.x3a{left:174.450000px;}
.x38{left:178.230000px;}
.x20{left:183.270000px;}
.x18{left:189.390000px;}
.x2a{left:196.770000px;}
.x36{left:217.110000px;}
.x3e{left:220.890000px;}
.x8{left:264.459000px;}
.xd{left:275.979000px;}
.x31{left:340.275000px;}
.x9{left:344.019000px;}
.x33{left:414.615000px;}
.x4{left:446.475000px;}
.x21{left:469.335000px;}
.x13{left:495.825000px;}
.x19{left:526.260000px;}
.x23{left:530.220000px;}
.x2b{left:569.640000px;}
.x1b{left:651.180000px;}
.x25{left:668.130000px;}
.x2d{left:675.870000px;}
.x6{left:754.890000px;}
.x14{left:758.670000px;}
.x15{left:786.750000px;}
@media print{
.v3{vertical-align:-61.440000pt;}
.v4{vertical-align:-55.040000pt;}
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.230933pt;}
.lsc{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:-0.046720pt;}
.lsa{letter-spacing:-0.000003pt;}
.ls9{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.083200pt;}
.ls2{letter-spacing:0.133120pt;}
.ls7{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.239360pt;}
.ls14{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.277333pt;}
.ls1{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.592000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.800000pt;}
.ls6{letter-spacing:7.813120pt;}
.ls10{letter-spacing:14.672640pt;}
.ls8{letter-spacing:25.760000pt;}
.lse{letter-spacing:40.912640pt;}
.ls4{letter-spacing:1186.858667pt;}
.ws0{word-spacing:-15.679997pt;}
.wsc{word-spacing:-13.872000pt;}
.ws3{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.ws2{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.049067pt;}
.ws7{word-spacing:-12.000000pt;}
.ws9{word-spacing:-10.720000pt;}
.ws1{word-spacing:-9.878400pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._11{margin-left:-3.886080pt;}
._16{margin-left:-2.996907pt;}
._4{margin-left:-2.104960pt;}
._1{margin-left:-0.967680pt;}
._0{width:0.906667pt;}
._3{width:2.512000pt;}
._5{width:4.174080pt;}
._6{width:5.516160pt;}
._b{width:6.527360pt;}
._9{width:7.489920pt;}
._d{width:8.392960pt;}
._13{width:9.344427pt;}
._12{width:10.362880pt;}
._17{width:11.304960pt;}
._18{width:12.837973pt;}
._c{width:14.342400pt;}
._8{width:15.351680pt;}
._7{width:16.679680pt;}
._a{width:17.836800pt;}
._15{width:19.253760pt;}
._14{width:20.339200pt;}
._1c{width:21.934933pt;}
._1d{width:23.171413pt;}
._1a{width:25.259520pt;}
._1b{width:26.407040pt;}
._20{width:43.820373pt;}
._1f{width:44.780160pt;}
._1e{width:46.354560pt;}
._2{width:47.827200pt;}
._e{width:53.376000pt;}
._f{width:54.293333pt;}
._10{width:55.351680pt;}
._19{width:219.530667pt;}
.fs5{font-size:26.880000pt;}
.fs9{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs1{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.y4f{bottom:-68.327973pt;}
.y4e{bottom:-54.408000pt;}
.y4d{bottom:-40.648000pt;}
.y1a{bottom:-38.760000pt;}
.y4c{bottom:-26.888000pt;}
.y19{bottom:-8.000000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:0.632000pt;}
.yd1{bottom:2.866667pt;}
.ya4{bottom:2.880000pt;}
.ycd{bottom:3.026667pt;}
.ya6{bottom:3.040000pt;}
.yc7{bottom:3.066667pt;}
.yca{bottom:3.186667pt;}
.ya8{bottom:3.200000pt;}
.yaa{bottom:3.346667pt;}
.yd3{bottom:3.352000pt;}
.yac{bottom:3.360000pt;}
.yc8{bottom:3.386667pt;}
.y159{bottom:3.400000pt;}
.y108{bottom:4.786667pt;}
.yd9{bottom:4.800000pt;}
.yfd{bottom:4.960000pt;}
.y7{bottom:5.112000pt;}
.y3f{bottom:5.280000pt;}
.y53{bottom:5.592000pt;}
.y8{bottom:6.872000pt;}
.y169{bottom:7.520000pt;}
.y15c{bottom:7.666667pt;}
.y54{bottom:7.672000pt;}
.y14e{bottom:7.680000pt;}
.y178{bottom:7.706667pt;}
.y105{bottom:9.106667pt;}
.y14c{bottom:10.720000pt;}
.ydc{bottom:11.040000pt;}
.y113{bottom:11.066667pt;}
.y104{bottom:11.360000pt;}
.y4{bottom:11.680000pt;}
.y11d{bottom:11.840000pt;}
.y18{bottom:12.000000pt;}
.y10b{bottom:12.466667pt;}
.y10e{bottom:12.472000pt;}
.y115{bottom:12.480000pt;}
.y11{bottom:12.800000pt;}
.y2{bottom:13.600000pt;}
.y4a{bottom:14.552000pt;}
.yf8{bottom:17.920000pt;}
.y11f{bottom:18.080000pt;}
.yd7{bottom:18.400000pt;}
.y102{bottom:18.706667pt;}
.ydb{bottom:18.720000pt;}
.y112{bottom:18.746667pt;}
.y107{bottom:20.146667pt;}
.yfa{bottom:20.160000pt;}
.y123{bottom:20.186667pt;}
.y3e{bottom:20.640000pt;}
.y55{bottom:21.472000pt;}
.y9{bottom:22.912000pt;}
.yf6{bottom:27.040000pt;}
.y11c{bottom:27.200000pt;}
.y17{bottom:27.360000pt;}
.y49{bottom:28.312000pt;}
.y10{bottom:29.600000pt;}
.y2b{bottom:31.680000pt;}
.y52{bottom:32.680000pt;}
.y101{bottom:34.106667pt;}
.y3d{bottom:35.880000pt;}
.y6{bottom:36.680000pt;}
.y48{bottom:42.072000pt;}
.yf5{bottom:42.400000pt;}
.y16{bottom:42.560000pt;}
.yf{bottom:45.920000pt;}
.y2a{bottom:47.040000pt;}
.y100{bottom:49.466667pt;}
.y3c{bottom:51.240000pt;}
.y47{bottom:55.832000pt;}
.y15{bottom:58.080000pt;}
.ye{bottom:61.920000pt;}
.y29{bottom:62.400000pt;}
.y3b{bottom:66.600000pt;}
.y40{bottom:69.320000pt;}
.y14{bottom:69.600000pt;}
.y46{bottom:69.746667pt;}
.y28{bottom:77.760000pt;}
.yd{bottom:80.320000pt;}
.y3a{bottom:81.960000pt;}
.y45{bottom:83.506667pt;}
.y27{bottom:92.960000pt;}
.y13{bottom:93.280000pt;}
.y44{bottom:97.266667pt;}
.y39{bottom:97.320000pt;}
.yc{bottom:98.720000pt;}
.y1a9{bottom:101.152000pt;}
.y110{bottom:102.120000pt;}
.y97{bottom:102.432000pt;}
.yd4{bottom:107.560000pt;}
.y26{bottom:108.320000pt;}
.y149{bottom:109.152000pt;}
.y43{bottom:110.866667pt;}
.y180{bottom:111.552000pt;}
.y38{bottom:112.680000pt;}
.y1a8{bottom:116.512000pt;}
.y8b{bottom:119.232000pt;}
.y10d{bottom:120.520000pt;}
.y25{bottom:123.680000pt;}
.y42{bottom:123.826667pt;}
.yd2{bottom:124.840000pt;}
.y148{bottom:126.112000pt;}
.y1e2{bottom:126.752000pt;}
.y37{bottom:127.880000pt;}
.y17f{bottom:130.592000pt;}
.y1a7{bottom:131.712000pt;}
.y8a{bottom:136.186667pt;}
.y10f{bottom:138.760000pt;}
.y41{bottom:139.026667pt;}
.y24{bottom:139.040000pt;}
.y17e{bottom:141.000000pt;}
.y1e1{bottom:142.106667pt;}
.y147{bottom:142.906667pt;}
.yd0{bottom:142.920000pt;}
.y36{bottom:143.240000pt;}
.y1a6{bottom:147.066667pt;}
.y89{bottom:152.986667pt;}
.y23{bottom:154.400000pt;}
.y17d{bottom:156.360000pt;}
.y10a{bottom:157.160000pt;}
.y1e0{bottom:157.306667pt;}
.y35{bottom:158.600000pt;}
.y146{bottom:159.866667pt;}
.ycf{bottom:160.840000pt;}
.y1a5{bottom:162.426667pt;}
.y22{bottom:169.600000pt;}
.y88{bottom:169.946667pt;}
.y17c{bottom:171.720000pt;}
.y1df{bottom:172.666667pt;}
.y34{bottom:173.960000pt;}
.y10c{bottom:175.560000pt;}
.y145{bottom:176.666667pt;}
.y1a4{bottom:177.786667pt;}
.yce{bottom:178.120000pt;}
.y21{bottom:184.960000pt;}
.y87{bottom:186.746667pt;}
.y17b{bottom:187.080000pt;}
.y1de{bottom:188.026667pt;}
.y33{bottom:189.320000pt;}
.y1a3{bottom:193.146667pt;}
.y144{bottom:193.466667pt;}
.y106{bottom:193.800000pt;}
.ycc{bottom:196.200000pt;}
.y20{bottom:200.320000pt;}
.y1dd{bottom:203.386667pt;}
.y17a{bottom:203.400000pt;}
.y86{bottom:203.546667pt;}
.y32{bottom:204.520000pt;}
.y1a2{bottom:208.506667pt;}
.y143{bottom:210.426667pt;}
.y109{bottom:212.200000pt;}
.ycb{bottom:214.120000pt;}
.y1f{bottom:215.680000pt;}
.y1dc{bottom:218.746667pt;}
.y31{bottom:219.880000pt;}
.y2c{bottom:220.346667pt;}
.y85{bottom:220.506667pt;}
.y1a1{bottom:223.706667pt;}
.y142{bottom:227.226667pt;}
.y179{bottom:227.720000pt;}
.yff{bottom:230.440000pt;}
.y1e{bottom:231.040000pt;}
.yc9{bottom:231.560000pt;}
.y1db{bottom:233.946667pt;}
.y30{bottom:235.240000pt;}
.y84{bottom:237.306667pt;}
.y1a0{bottom:239.066667pt;}
.y177{bottom:243.080000pt;}
.y141{bottom:244.186667pt;}
.y1d{bottom:246.440000pt;}
.y1da{bottom:249.306667pt;}
.yc6{bottom:249.480000pt;}
.y2f{bottom:250.600000pt;}
.y83{bottom:254.306667pt;}
.y19f{bottom:254.786667pt;}
.y176{bottom:258.466667pt;}
.y103{bottom:260.386667pt;}
.y140{bottom:261.026667pt;}
.y1c{bottom:261.320000pt;}
.y1d9{bottom:264.706667pt;}
.y2e{bottom:265.960000pt;}
.yc5{bottom:267.586667pt;}
.y82{bottom:271.106667pt;}
.y175{bottom:273.666667pt;}
.y13f{bottom:277.826667pt;}
.y1d8{bottom:280.066667pt;}
.y2d{bottom:281.000000pt;}
.yc4{bottom:284.866667pt;}
.y19e{bottom:285.986667pt;}
.y81{bottom:287.906667pt;}
.y174{bottom:289.986667pt;}
.yfc{bottom:294.786667pt;}
.y1d7{bottom:295.426667pt;}
.y19d{bottom:301.506667pt;}
.yc3{bottom:302.146667pt;}
.y80{bottom:304.866667pt;}
.y1d6{bottom:310.786667pt;}
.y13e{bottom:311.586667pt;}
.yfe{bottom:313.186667pt;}
.y173{bottom:314.306667pt;}
.y19c{bottom:316.546667pt;}
.yc2{bottom:319.586667pt;}
.y7f{bottom:321.666667pt;}
.y1d5{bottom:325.986667pt;}
.y13d{bottom:328.546667pt;}
.y172{bottom:329.666667pt;}
.yf9{bottom:331.586667pt;}
.y19b{bottom:332.226667pt;}
.yc1{bottom:337.506667pt;}
.y7e{bottom:338.626667pt;}
.y1d4{bottom:341.346667pt;}
.y171{bottom:345.026667pt;}
.y13c{bottom:345.346667pt;}
.y19a{bottom:347.586667pt;}
.yfb{bottom:349.826667pt;}
.y7d{bottom:355.426667pt;}
.yc0{bottom:355.586667pt;}
.y1d3{bottom:356.706667pt;}
.y170{bottom:360.386667pt;}
.y13b{bottom:362.306667pt;}
.y199{bottom:362.466667pt;}
.yf4{bottom:368.226667pt;}
.y1d2{bottom:372.066667pt;}
.y7c{bottom:372.386667pt;}
.ybf{bottom:372.866667pt;}
.y16f{bottom:376.706667pt;}
.y198{bottom:378.146667pt;}
.y13a{bottom:379.106667pt;}
.yf7{bottom:386.466667pt;}
.y1d1{bottom:387.426667pt;}
.y96{bottom:388.866667pt;}
.y7b{bottom:389.186667pt;}
.ybe{bottom:390.786667pt;}
.y197{bottom:393.506667pt;}
.y139{bottom:395.906667pt;}
.y16e{bottom:401.026667pt;}
.y1d0{bottom:402.786667pt;}
.y7a{bottom:405.986667pt;}
.y196{bottom:408.546667pt;}
.ybd{bottom:408.866667pt;}
.y138{bottom:412.866667pt;}
.y16d{bottom:416.386667pt;}
.y1cf{bottom:417.986667pt;}
.y79{bottom:422.946667pt;}
.y195{bottom:423.906667pt;}
.ybc{bottom:426.146667pt;}
.y137{bottom:429.666667pt;}
.y16c{bottom:431.746667pt;}
.y1ce{bottom:433.346667pt;}
.yf3{bottom:433.986667pt;}
.y78{bottom:439.746667pt;}
.ybb{bottom:444.226667pt;}
.y136{bottom:446.626667pt;}
.y16b{bottom:447.106667pt;}
.y1cd{bottom:448.706667pt;}
.yf2{bottom:452.386667pt;}
.y77{bottom:456.706667pt;}
.yba{bottom:462.146667pt;}
.y135{bottom:463.426667pt;}
.y1cc{bottom:464.066667pt;}
.y95{bottom:473.186667pt;}
.y76{bottom:473.506667pt;}
.y1cb{bottom:479.426667pt;}
.yb9{bottom:479.586667pt;}
.y134{bottom:480.226667pt;}
.yf1{bottom:487.586667pt;}
.y16a{bottom:487.746667pt;}
.y75{bottom:490.306667pt;}
.y1ca{bottom:494.786667pt;}
.y133{bottom:497.186667pt;}
.yb8{bottom:497.506667pt;}
.y168{bottom:503.133333pt;}
.yf0{bottom:504.573333pt;}
.y74{bottom:507.293333pt;}
.y1c9{bottom:510.013333pt;}
.y1b{bottom:513.693333pt;}
.y132{bottom:514.013333pt;}
.yb7{bottom:515.613333pt;}
.y167{bottom:518.333333pt;}
.yef{bottom:521.373333pt;}
.y73{bottom:524.093333pt;}
.y1c8{bottom:525.373333pt;}
.y131{bottom:530.973333pt;}
.yb6{bottom:532.893333pt;}
.y166{bottom:533.693333pt;}
.yee{bottom:538.173333pt;}
.y1c7{bottom:540.733333pt;}
.y72{bottom:541.053333pt;}
.y130{bottom:547.773333pt;}
.y165{bottom:550.013333pt;}
.yb5{bottom:550.173333pt;}
.yed{bottom:555.133333pt;}
.y1c6{bottom:556.093333pt;}
.y71{bottom:557.853333pt;}
.y12e{bottom:562.653333pt;}
.yb4{bottom:567.453333pt;}
.y1c5{bottom:571.453333pt;}
.yec{bottom:571.933333pt;}
.y164{bottom:574.333333pt;}
.y70{bottom:574.653333pt;}
.y12f{bottom:581.053333pt;}
.yb3{bottom:585.533333pt;}
.y1c4{bottom:586.653333pt;}
.yeb{bottom:588.893333pt;}
.y163{bottom:589.693333pt;}
.y94{bottom:591.293333pt;}
.y6f{bottom:591.613333pt;}
.y12c{bottom:599.453333pt;}
.y1c3{bottom:602.013333pt;}
.yb2{bottom:603.453333pt;}
.y162{bottom:605.053333pt;}
.yea{bottom:605.693333pt;}
.y6e{bottom:608.413333pt;}
.y194{bottom:609.693333pt;}
.y1c2{bottom:617.373333pt;}
.y12d{bottom:617.693333pt;}
.y161{bottom:620.413333pt;}
.yb1{bottom:620.893333pt;}
.ye9{bottom:622.653333pt;}
.y6d{bottom:625.373333pt;}
.y193{bottom:626.813333pt;}
.y1c1{bottom:632.733333pt;}
.y160{bottom:635.773333pt;}
.y12a{bottom:636.093333pt;}
.yb0{bottom:638.173333pt;}
.ye8{bottom:639.453333pt;}
.y6c{bottom:642.173333pt;}
.y192{bottom:643.773333pt;}
.y1c0{bottom:648.093333pt;}
.y15f{bottom:651.133333pt;}
.y12b{bottom:654.333333pt;}
.yaf{bottom:655.453333pt;}
.ye7{bottom:656.253333pt;}
.y6b{bottom:658.973333pt;}
.y191{bottom:660.573333pt;}
.y1bf{bottom:663.453333pt;}
.y15e{bottom:666.333333pt;}
.y128{bottom:672.733333pt;}
.yae{bottom:672.893333pt;}
.ye6{bottom:673.213333pt;}
.y6a{bottom:675.933333pt;}
.y190{bottom:677.053333pt;}
.y1be{bottom:678.653333pt;}
.y15d{bottom:682.666667pt;}
.ye5{bottom:690.013333pt;}
.yad{bottom:690.813333pt;}
.y129{bottom:690.973333pt;}
.y69{bottom:692.733333pt;}
.y18f{bottom:694.013333pt;}
.ye4{bottom:706.973333pt;}
.yab{bottom:708.893333pt;}
.y126{bottom:709.373333pt;}
.y68{bottom:709.693333pt;}
.y18e{bottom:711.133333pt;}
.y15b{bottom:722.346667pt;}
.ye3{bottom:723.773333pt;}
.y1bd{bottom:724.733333pt;}
.ya9{bottom:726.186667pt;}
.y67{bottom:726.493333pt;}
.y127{bottom:727.773333pt;}
.y18d{bottom:728.093333pt;}
.y15a{bottom:737.693333pt;}
.y1bc{bottom:740.093333pt;}
.ye2{bottom:740.573333pt;}
.y66{bottom:743.293333pt;}
.ya7{bottom:744.253333pt;}
.y18c{bottom:744.893333pt;}
.y125{bottom:746.013333pt;}
.y122{bottom:746.026667pt;}
.y158{bottom:753.053333pt;}
.y1bb{bottom:755.493333pt;}
.ye1{bottom:757.573333pt;}
.y65{bottom:760.293333pt;}
.y18b{bottom:761.733333pt;}
.ya5{bottom:762.213333pt;}
.y124{bottom:764.453333pt;}
.y157{bottom:768.453333pt;}
.y1ba{bottom:770.693333pt;}
.ye0{bottom:774.373333pt;}
.y64{bottom:777.093333pt;}
.y18a{bottom:778.693333pt;}
.ya3{bottom:780.293333pt;}
.y120{bottom:782.693333pt;}
.y156{bottom:783.813333pt;}
.y1b9{bottom:786.053333pt;}
.y12{bottom:787.333333pt;}
.ydf{bottom:791.333333pt;}
.y63{bottom:794.053333pt;}
.y189{bottom:795.493333pt;}
.y155{bottom:799.013333pt;}
.ya2{bottom:799.813333pt;}
.y121{bottom:801.093333pt;}
.y1b8{bottom:801.413333pt;}
.yde{bottom:808.133333pt;}
.y62{bottom:810.853333pt;}
.y188{bottom:812.453333pt;}
.y154{bottom:814.373333pt;}
.y1b7{bottom:816.773333pt;}
.ya1{bottom:816.933333pt;}
.y11b{bottom:819.333333pt;}
.ydd{bottom:824.933333pt;}
.y93{bottom:827.493333pt;}
.y61{bottom:827.813333pt;}
.y187{bottom:829.253333pt;}
.y153{bottom:830.693333pt;}
.y1b6{bottom:832.133333pt;}
.ya0{bottom:833.893333pt;}
.y11e{bottom:837.733333pt;}
.yda{bottom:840.293333pt;}
.y60{bottom:844.613333pt;}
.y186{bottom:846.213333pt;}
.y1b5{bottom:847.493333pt;}
.y9f{bottom:850.693333pt;}
.y152{bottom:855.013333pt;}
.y5f{bottom:861.413333pt;}
.y1b4{bottom:862.693333pt;}
.y185{bottom:863.013333pt;}
.y9e{bottom:867.653333pt;}
.y151{bottom:870.373333pt;}
.yd8{bottom:873.893333pt;}
.y1b3{bottom:878.053333pt;}
.y5e{bottom:878.373333pt;}
.y184{bottom:879.813333pt;}
.y9d{bottom:884.453333pt;}
.y119{bottom:885.413333pt;}
.y150{bottom:885.733333pt;}
.yb{bottom:891.493333pt;}
.y1b2{bottom:893.413333pt;}
.y92{bottom:894.853333pt;}
.y5d{bottom:895.173333pt;}
.y183{bottom:896.773333pt;}
.y14f{bottom:901.093333pt;}
.y9c{bottom:901.253333pt;}
.y11a{bottom:903.813333pt;}
.y1b1{bottom:908.773333pt;}
.y5c{bottom:912.133333pt;}
.y182{bottom:913.573333pt;}
.y14d{bottom:917.413333pt;}
.y9b{bottom:917.893333pt;}
.y117{bottom:922.053333pt;}
.y1b0{bottom:924.133333pt;}
.y91{bottom:928.613333pt;}
.y5b{bottom:928.933333pt;}
.yd6{bottom:930.213333pt;}
.y181{bottom:930.533333pt;}
.y9a{bottom:935.173333pt;}
.y1af{bottom:939.333333pt;}
.y118{bottom:940.453333pt;}
.y14b{bottom:941.733333pt;}
.y5a{bottom:945.733333pt;}
.y90{bottom:945.893333pt;}
.yd5{bottom:947.333333pt;}
.y99{bottom:952.133333pt;}
.y1ae{bottom:954.693333pt;}
.y114{bottom:958.693333pt;}
.y59{bottom:962.693333pt;}
.y8f{bottom:964.133333pt;}
.y1ad{bottom:970.053333pt;}
.y116{bottom:977.093333pt;}
.y58{bottom:979.493333pt;}
.y8e{bottom:981.093333pt;}
.y1ac{bottom:985.413333pt;}
.y14a{bottom:989.413333pt;}
.y111{bottom:995.333333pt;}
.y57{bottom:996.453333pt;}
.y8d{bottom:997.893333pt;}
.y1ab{bottom:1000.773333pt;}
.ya{bottom:1008.640000pt;}
.y56{bottom:1013.440000pt;}
.y98{bottom:1014.560000pt;}
.y8c{bottom:1014.880000pt;}
.y1aa{bottom:1016.160000pt;}
.y5{bottom:1017.280000pt;}
.y3{bottom:1026.880000pt;}
.y51{bottom:1048.000000pt;}
.y1{bottom:1056.320000pt;}
.y50{bottom:1063.360000pt;}
.h21{height:15.186667pt;}
.h25{height:15.200000pt;}
.h23{height:15.220000pt;}
.h22{height:15.346667pt;}
.h28{height:15.352000pt;}
.h24{height:15.360000pt;}
.h27{height:15.378667pt;}
.h37{height:15.380000pt;}
.h26{height:15.386667pt;}
.h2a{height:18.226667pt;}
.h7{height:18.872000pt;}
.h1d{height:19.672000pt;}
.hb{height:26.381250pt;}
.h32{height:27.058667pt;}
.h2{height:28.480000pt;}
.h4{height:28.800000pt;}
.h5{height:30.240000pt;}
.h29{height:30.706667pt;}
.h34{height:30.746667pt;}
.h31{height:31.506667pt;}
.h2e{height:33.586667pt;}
.h33{height:33.592000pt;}
.h38{height:33.600000pt;}
.h2f{height:33.746667pt;}
.h39{height:33.760000pt;}
.h36{height:33.778667pt;}
.h14{height:36.431250pt;}
.h12{height:40.003750pt;}
.h1a{height:42.063437pt;}
.h6{height:42.084375pt;}
.h2d{height:44.626667pt;}
.h16{height:45.546250pt;}
.h1c{height:47.085938pt;}
.h1b{height:47.109375pt;}
.h3{height:48.000000pt;}
.h1e{height:49.336436pt;}
.hf{height:50.485000pt;}
.h8{height:52.108438pt;}
.h9{height:52.134375pt;}
.he{height:53.535000pt;}
.h2c{height:54.598989pt;}
.h13{height:55.275000pt;}
.h1f{height:57.787500pt;}
.ha{height:58.563750pt;}
.h20{height:59.340000pt;}
.h30{height:61.458667pt;}
.h17{height:62.812500pt;}
.h2b{height:62.866667pt;}
.h35{height:63.026667pt;}
.hd{height:64.500000pt;}
.h10{height:83.540625pt;}
.h11{height:104.160000pt;}
.hc{height:113.466667pt;}
.h19{height:151.032000pt;}
.h15{height:273.626667pt;}
.h18{height:293.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:25.586667pt;}
.w7{width:27.026667pt;}
.wf{width:54.112000pt;}
.w19{width:66.080000pt;}
.w14{width:66.226667pt;}
.w15{width:94.418667pt;}
.w16{width:102.706667pt;}
.wa{width:111.026667pt;}
.w11{width:111.506667pt;}
.wb{width:120.498667pt;}
.w10{width:122.578667pt;}
.w18{width:208.018667pt;}
.wc{width:231.533333pt;}
.we{width:322.738667pt;}
.w1a{width:340.386667pt;}
.w13{width:349.818667pt;}
.w9{width:373.338667pt;}
.w6{width:579.920000pt;}
.w3{width:585.840000pt;}
.w2{width:604.720000pt;}
.w8{width:604.880000pt;}
.wd{width:610.960000pt;}
.w12{width:613.200000pt;}
.w17{width:614.480000pt;}
.w5{width:614.493333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:1.112000pt;}
.x2c{left:5.426667pt;}
.x3{left:7.192000pt;}
.x1c{left:10.386667pt;}
.x17{left:11.512000pt;}
.x2{left:13.592000pt;}
.x11{left:16.640000pt;}
.x1a{left:18.386667pt;}
.x26{left:20.346667pt;}
.x34{left:23.040000pt;}
.x7{left:25.920000pt;}
.x22{left:27.066667pt;}
.xa{left:28.000000pt;}
.x32{left:29.280000pt;}
.x27{left:30.866667pt;}
.x2e{left:35.666667pt;}
.x24{left:37.586667pt;}
.x2f{left:39.026667pt;}
.x30{left:41.600000pt;}
.xb{left:43.834667pt;}
.x1d{left:48.626667pt;}
.x1e{left:51.706667pt;}
.x1f{left:55.186667pt;}
.xc{left:61.114667pt;}
.x3d{left:65.946667pt;}
.xe{left:79.194667pt;}
.xf{left:81.754667pt;}
.x5{left:85.160000pt;}
.x28{left:90.280000pt;}
.x3b{left:93.466667pt;}
.x1{left:94.600000pt;}
.x12{left:96.512000pt;}
.x10{left:121.274667pt;}
.x35{left:136.346667pt;}
.x39{left:139.706667pt;}
.x16{left:141.626667pt;}
.x3c{left:151.706667pt;}
.x37{left:152.826667pt;}
.x3a{left:155.066667pt;}
.x38{left:158.426667pt;}
.x20{left:162.906667pt;}
.x18{left:168.346667pt;}
.x2a{left:174.906667pt;}
.x36{left:192.986667pt;}
.x3e{left:196.346667pt;}
.x8{left:235.074667pt;}
.xd{left:245.314667pt;}
.x31{left:302.466667pt;}
.x9{left:305.794667pt;}
.x33{left:368.546667pt;}
.x4{left:396.866667pt;}
.x21{left:417.186667pt;}
.x13{left:440.733333pt;}
.x19{left:467.786667pt;}
.x23{left:471.306667pt;}
.x2b{left:506.346667pt;}
.x1b{left:578.826667pt;}
.x25{left:593.893333pt;}
.x2d{left:600.773333pt;}
.x6{left:671.013333pt;}
.x14{left:674.373333pt;}
.x15{left:699.333333pt;}
}




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