
    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_20082871d8e8bb65d500a815.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_2b97ec00a1ba53a16208d92d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_59e0a2dfa23a0d0ba3ac2b61.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d0dd2302e50cccf6f5336ed3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7fee2a66b11204b97e7558a3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_46bee9213fc9329d7ba9a06b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.751953;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ad9759e522f7184fbdee9d38.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.752441;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_a9030c9ba2630eeaf78f9d05.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.751953;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1c6752dc944a733b66b454d4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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:ffd;src:url('chunks/assets/font_2f64d8d777c04be2059a0fe0.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.702000px;}
.lsc{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.223800px;}
.lsb{letter-spacing:-0.108000px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.161760px;}
.ls3{letter-spacing:0.169920px;}
.ls6{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.206400px;}
.ls8{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:16.506720px;}
.ls4{letter-spacing:37.386720px;}
.ls0{letter-spacing:41.868000px;}
.ls10{letter-spacing:46.026720px;}
.lsf{letter-spacing:63.306720px;}
.lse{letter-spacing:64.026720px;}
.ls12{letter-spacing:64.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws7{word-spacing:-54.000000px;}
.ws2{word-spacing:-27.216000px;}
.ws3{word-spacing:-27.036000px;}
.ws0{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.146400px;}
.ws5{word-spacing:-14.940000px;}
.ws9{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.392000px;}
.ws8{word-spacing:-13.140000px;}
.wsb{word-spacing:-12.798000px;}
.ws1{word-spacing:-12.060000px;}
.ws4{word-spacing:-10.440000px;}
.wsc{word-spacing:0.000000px;}
._4{margin-left:-1.170720px;}
._1{width:1.135440px;}
._1c{width:2.211600px;}
._b{width:3.316560px;}
._a{width:4.964160px;}
._6{width:6.693120px;}
._18{width:8.319120px;}
._7{width:9.558960px;}
._19{width:11.234880px;}
._1f{width:12.687840px;}
._f{width:13.744800px;}
._17{width:16.488720px;}
._e{width:18.047520px;}
._10{width:19.541520px;}
._1d{width:20.557440px;}
._9{width:21.692880px;}
._8{width:23.067360px;}
._c{width:24.561360px;}
._d{width:25.857600px;}
._31{width:27.008640px;}
._2b{width:28.256400px;}
._16{width:29.592000px;}
._22{width:30.596880px;}
._1b{width:31.613040px;}
._1a{width:33.384240px;}
._2c{width:34.389120px;}
._21{width:36.453600px;}
._20{width:37.708560px;}
._12{width:38.754000px;}
._11{width:39.960000px;}
._2a{width:41.294160px;}
._1e{width:42.310080px;}
._15{width:43.362000px;}
._14{width:44.712000px;}
._32{width:45.762960px;}
._2f{width:47.568960px;}
._30{width:50.257920px;}
._27{width:52.290000px;}
._29{width:55.696320px;}
._28{width:56.951280px;}
._13{width:59.670000px;}
._2e{width:61.313760px;}
._2d{width:62.807760px;}
._23{width:64.232400px;}
._24{width:87.179760px;}
._25{width:88.403520px;}
._26{width:93.285360px;}
._3{width:131.442960px;}
._2{width:342.981120px;}
._5{width:1022.371440px;}
._0{width:2857.020000px;}
.fc4{color:rgb(0,112,192);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(238,0,0);}
.fs4{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.520000px;}
.yab{bottom:2.556000px;}
.y3d{bottom:2.880000px;}
.y3f{bottom:3.060000px;}
.y1a{bottom:3.240000px;}
.y35{bottom:6.120000px;}
.y7{bottom:8.316000px;}
.ya9{bottom:8.496000px;}
.yc{bottom:14.040000px;}
.y113{bottom:16.200000px;}
.y8{bottom:16.236000px;}
.y144{bottom:16.380000px;}
.yaa{bottom:16.416000px;}
.y3c{bottom:18.360000px;}
.y13f{bottom:18.720000px;}
.y33{bottom:19.260000px;}
.y112{bottom:30.060000px;}
.y143{bottom:30.234000px;}
.y3b{bottom:33.885000px;}
.ya{bottom:35.460000px;}
.y32{bottom:35.820000px;}
.y13e{bottom:36.000000px;}
.yac{bottom:41.400000px;}
.y142{bottom:43.914000px;}
.y111{bottom:43.920000px;}
.y3a{bottom:49.545000px;}
.y31{bottom:51.300000px;}
.y13d{bottom:53.280000px;}
.y110{bottom:57.600000px;}
.y141{bottom:57.774000px;}
.y6{bottom:58.140000px;}
.ya8{bottom:64.080000px;}
.y39{bottom:65.025000px;}
.y30{bottom:66.780000px;}
.y13c{bottom:70.560000px;}
.y38{bottom:80.505000px;}
.y2f{bottom:82.260000px;}
.y13b{bottom:87.660000px;}
.y37{bottom:95.985000px;}
.y2e{bottom:97.920000px;}
.y13a{bottom:104.940000px;}
.y3e{bottom:106.200000px;}
.ye2{bottom:111.456000px;}
.y2d{bottom:113.400000px;}
.y140{bottom:120.996000px;}
.y42{bottom:121.356000px;}
.y139{bottom:122.220000px;}
.ye1{bottom:128.736000px;}
.y2c{bottom:128.880000px;}
.y77{bottom:129.276000px;}
.y2a{bottom:136.620000px;}
.y41{bottom:137.736000px;}
.y107{bottom:139.716000px;}
.ye0{bottom:146.016000px;}
.y76{bottom:146.556000px;}
.y29{bottom:152.505000px;}
.y40{bottom:156.810000px;}
.y106{bottom:158.430000px;}
.ydf{bottom:163.290000px;}
.y75{bottom:164.910000px;}
.y28{bottom:169.605000px;}
.y1b{bottom:170.130000px;}
.y105{bottom:176.970000px;}
.yde{bottom:180.390000px;}
.y74{bottom:182.190000px;}
.y27{bottom:186.885000px;}
.ya7{bottom:188.670000px;}
.y138{bottom:190.830000px;}
.y104{bottom:195.510000px;}
.ydd{bottom:197.490000px;}
.y73{bottom:199.470000px;}
.y26{bottom:204.165000px;}
.ya6{bottom:205.950000px;}
.ydc{bottom:213.870000px;}
.y103{bottom:214.230000px;}
.y72{bottom:216.750000px;}
.y25{bottom:221.445000px;}
.ya5{bottom:223.230000px;}
.ydb{bottom:230.250000px;}
.y102{bottom:232.770000px;}
.y71{bottom:234.930000px;}
.y24{bottom:238.725000px;}
.ya4{bottom:240.330000px;}
.yda{bottom:246.630000px;}
.y101{bottom:251.490000px;}
.y70{bottom:252.210000px;}
.y23{bottom:256.005000px;}
.ya3{bottom:257.610000px;}
.yd9{bottom:263.010000px;}
.y6f{bottom:269.490000px;}
.y100{bottom:270.030000px;}
.y22{bottom:273.105000px;}
.ya2{bottom:274.890000px;}
.yd8{bottom:280.470000px;}
.y6e{bottom:286.770000px;}
.yff{bottom:288.570000px;}
.y36{bottom:289.830000px;}
.y21{bottom:290.385000px;}
.ya1{bottom:292.170000px;}
.yd7{bottom:296.850000px;}
.y6d{bottom:304.050000px;}
.yfe{bottom:307.290000px;}
.y20{bottom:307.665000px;}
.ya0{bottom:310.530000px;}
.yd6{bottom:313.230000px;}
.y6c{bottom:321.195000px;}
.y1f{bottom:324.945000px;}
.yfd{bottom:325.875000px;}
.y9f{bottom:327.675000px;}
.yd5{bottom:329.655000px;}
.y136{bottom:334.695000px;}
.y6b{bottom:338.475000px;}
.y1e{bottom:342.225000px;}
.yfc{bottom:344.595000px;}
.y9e{bottom:344.955000px;}
.yd4{bottom:347.115000px;}
.y135{bottom:348.375000px;}
.y6a{bottom:355.755000px;}
.y1d{bottom:359.505000px;}
.y134{bottom:362.235000px;}
.yfb{bottom:363.135000px;}
.y9d{bottom:363.315000px;}
.yd3{bottom:363.675000px;}
.y69{bottom:373.035000px;}
.y133{bottom:376.095000px;}
.y1c{bottom:376.785000px;}
.yd2{bottom:380.055000px;}
.y9c{bottom:380.595000px;}
.yfa{bottom:381.855000px;}
.y132{bottom:389.775000px;}
.y68{bottom:390.315000px;}
.yd1{bottom:396.435000px;}
.y9b{bottom:397.875000px;}
.y34{bottom:399.135000px;}
.yf9{bottom:400.395000px;}
.y131{bottom:403.635000px;}
.y67{bottom:407.595000px;}
.yd0{bottom:412.815000px;}
.y9a{bottom:416.235000px;}
.y130{bottom:417.495000px;}
.yf8{bottom:417.675000px;}
.y2b{bottom:420.015000px;}
.y66{bottom:424.695000px;}
.ycf{bottom:430.275000px;}
.y12f{bottom:431.175000px;}
.y99{bottom:433.335000px;}
.yf7{bottom:434.955000px;}
.y65{bottom:441.975000px;}
.y12e{bottom:445.035000px;}
.yce{bottom:446.655000px;}
.y98{bottom:450.615000px;}
.yf6{bottom:452.235000px;}
.y12d{bottom:458.895000px;}
.y64{bottom:459.255000px;}
.ycd{bottom:463.035000px;}
.y97{bottom:467.895000px;}
.yf5{bottom:469.335000px;}
.y12c{bottom:472.575000px;}
.y63{bottom:476.535000px;}
.ycc{bottom:479.415000px;}
.y96{bottom:485.175000px;}
.y12b{bottom:486.435000px;}
.yf4{bottom:486.615000px;}
.y62{bottom:493.815000px;}
.ycb{bottom:496.875000px;}
.y12a{bottom:500.295000px;}
.y95{bottom:503.535000px;}
.yf3{bottom:503.895000px;}
.y61{bottom:511.095000px;}
.yca{bottom:513.255000px;}
.y129{bottom:513.975000px;}
.y94{bottom:520.815000px;}
.yf2{bottom:521.175000px;}
.y128{bottom:527.835000px;}
.y60{bottom:528.195000px;}
.yc9{bottom:529.635000px;}
.y93{bottom:537.915000px;}
.yf1{bottom:538.455000px;}
.y127{bottom:541.695000px;}
.y5f{bottom:545.475000px;}
.yc8{bottom:546.015000px;}
.y126{bottom:555.375000px;}
.yf0{bottom:555.735000px;}
.y92{bottom:556.275000px;}
.y19{bottom:562.215000px;}
.yc7{bottom:562.395000px;}
.y5e{bottom:562.755000px;}
.y125{bottom:569.265000px;}
.yef{bottom:572.865000px;}
.y91{bottom:573.585000px;}
.yc6{bottom:578.805000px;}
.y5d{bottom:580.065000px;}
.y124{bottom:583.125000px;}
.yee{bottom:590.145000px;}
.y90{bottom:590.865000px;}
.yc5{bottom:596.445000px;}
.y18{bottom:596.805000px;}
.y5c{bottom:597.345000px;}
.yed{bottom:607.425000px;}
.y8f{bottom:609.225000px;}
.y123{bottom:610.665000px;}
.yc4{bottom:613.725000px;}
.y5b{bottom:614.445000px;}
.y17{bottom:616.785000px;}
.y122{bottom:624.525000px;}
.yec{bottom:624.705000px;}
.y8e{bottom:626.325000px;}
.yc3{bottom:630.825000px;}
.y5a{bottom:631.725000px;}
.y121{bottom:638.205000px;}
.yeb{bottom:641.985000px;}
.y8d{bottom:643.605000px;}
.y16{bottom:645.225000px;}
.yc2{bottom:647.205000px;}
.y59{bottom:649.005000px;}
.y120{bottom:652.065000px;}
.yea{bottom:659.085000px;}
.y8c{bottom:660.885000px;}
.yc1{bottom:663.585000px;}
.y11f{bottom:665.925000px;}
.y58{bottom:666.285000px;}
.y15{bottom:667.725000px;}
.ye9{bottom:676.365000px;}
.y8b{bottom:678.165000px;}
.y11e{bottom:679.605000px;}
.yc0{bottom:679.965000px;}
.y57{bottom:683.565000px;}
.y14{bottom:684.825000px;}
.y11d{bottom:693.465000px;}
.ye8{bottom:693.645000px;}
.y8a{bottom:695.445000px;}
.ybf{bottom:696.345000px;}
.y13{bottom:697.425000px;}
.y56{bottom:700.845000px;}
.y11c{bottom:707.325000px;}
.ye7{bottom:712.005000px;}
.y89{bottom:712.725000px;}
.y55{bottom:717.945000px;}
.y12{bottom:718.485000px;}
.y11b{bottom:721.005000px;}
.ybe{bottom:729.285000px;}
.y88{bottom:729.825000px;}
.y11a{bottom:734.865000px;}
.y54{bottom:735.225000px;}
.ybd{bottom:746.565000px;}
.y87{bottom:747.105000px;}
.y119{bottom:748.725000px;}
.y11{bottom:749.625000px;}
.y53{bottom:752.505000px;}
.y118{bottom:762.405000px;}
.ybc{bottom:763.665000px;}
.y86{bottom:764.385000px;}
.y52{bottom:769.785000px;}
.y117{bottom:776.265000px;}
.y10{bottom:780.585000px;}
.ybb{bottom:780.945000px;}
.y85{bottom:781.665000px;}
.y51{bottom:787.065000px;}
.y116{bottom:790.125000px;}
.yba{bottom:798.225000px;}
.ye6{bottom:799.305000px;}
.y84{bottom:800.025000px;}
.y115{bottom:803.805000px;}
.y50{bottom:804.345000px;}
.yf{bottom:811.725000px;}
.yb9{bottom:815.505000px;}
.ye5{bottom:816.585000px;}
.y83{bottom:817.125000px;}
.y114{bottom:817.665000px;}
.y4f{bottom:821.490000px;}
.y10f{bottom:829.770000px;}
.yb8{bottom:833.910000px;}
.y82{bottom:834.450000px;}
.y4e{bottom:838.770000px;}
.ye{bottom:842.730000px;}
.yb7{bottom:851.190000px;}
.y81{bottom:852.810000px;}
.y4d{bottom:856.050000px;}
.yb6{bottom:868.290000px;}
.y80{bottom:870.090000px;}
.yd{bottom:871.710000px;}
.y4c{bottom:873.330000px;}
.yb5{bottom:886.650000px;}
.yb{bottom:887.010000px;}
.y7f{bottom:888.450000px;}
.y4b{bottom:890.610000px;}
.y10e{bottom:899.430000px;}
.yb4{bottom:903.930000px;}
.y7e{bottom:905.730000px;}
.y4a{bottom:907.890000px;}
.y10d{bottom:916.530000px;}
.yb3{bottom:921.210000px;}
.y7d{bottom:922.830000px;}
.y49{bottom:924.990000px;}
.y10c{bottom:931.650000px;}
.ye4{bottom:938.490000px;}
.yb2{bottom:939.570000px;}
.y7c{bottom:940.110000px;}
.y48{bottom:942.270000px;}
.y10b{bottom:952.350000px;}
.yb1{bottom:956.670000px;}
.y7b{bottom:957.390000px;}
.y47{bottom:959.550000px;}
.y10a{bottom:970.890000px;}
.yb0{bottom:973.950000px;}
.y7a{bottom:975.750000px;}
.y46{bottom:976.830000px;}
.y109{bottom:989.610000px;}
.yaf{bottom:991.230000px;}
.y79{bottom:993.030000px;}
.y45{bottom:994.110000px;}
.y108{bottom:1008.150000px;}
.ye3{bottom:1008.510000px;}
.yae{bottom:1009.590000px;}
.y78{bottom:1010.130000px;}
.y44{bottom:1011.210000px;}
.yad{bottom:1026.870000px;}
.y43{bottom:1028.310000px;}
.y137{bottom:1029.570000px;}
.y5{bottom:1044.150000px;}
.y4{bottom:1061.250000px;}
.y3{bottom:1078.560000px;}
.y2{bottom:1096.560000px;}
.y1{bottom:1117.260000px;}
.h1e{height:13.860000px;}
.h10{height:17.316000px;}
.h17{height:20.160000px;}
.hd{height:27.147656px;}
.h4{height:27.576000px;}
.h6{height:33.683203px;}
.h1f{height:34.036523px;}
.h13{height:37.705078px;}
.h1a{height:38.100586px;}
.h7{height:39.336328px;}
.h12{height:39.972656px;}
.h15{height:39.999023px;}
.h5{height:41.726953px;}
.hf{height:42.164648px;}
.h1d{height:42.281367px;}
.h1c{height:43.506914px;}
.h1b{height:44.236406px;}
.h16{height:44.265586px;}
.h9{height:46.251562px;}
.h2{height:48.496641px;}
.h3{height:50.800781px;}
.hc{height:53.224453px;}
.ha{height:53.755312px;}
.h1{height:58.429688px;}
.h20{height:68.940000px;}
.h22{height:69.120000px;}
.he{height:75.410156px;}
.hb{height:76.201172px;}
.h18{height:108.576000px;}
.h19{height:118.800000px;}
.h21{height:136.296000px;}
.h14{height:141.480000px;}
.h8{height:153.900000px;}
.h11{height:391.350000px;}
.h0{height:1188.000000px;}
.w2{width:45.036000px;}
.w6{width:201.270000px;}
.w7{width:329.295000px;}
.w5{width:607.425000px;}
.w3{width:783.510000px;}
.w8{width:800.790000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:6.660000px;}
.x5{left:8.640000px;}
.x26{left:12.420000px;}
.x18{left:18.045000px;}
.x14{left:20.205000px;}
.x16{left:24.705000px;}
.x17{left:26.505000px;}
.x8{left:45.540000px;}
.x4{left:53.999986px;}
.x1f{left:57.059986px;}
.x1c{left:59.579986px;}
.x3{left:60.659986px;}
.x19{left:65.519986px;}
.x22{left:80.130000px;}
.x20{left:84.059986px;}
.x21{left:85.140000px;}
.x10{left:86.939986px;}
.xb{left:97.415986px;}
.x6{left:100.836000px;}
.x7{left:108.035986px;}
.x1{left:150.509986px;}
.xf{left:175.169986px;}
.x2{left:220.709986px;}
.x24{left:295.635000px;}
.xe{left:319.214986px;}
.xc{left:383.294986px;}
.x25{left:400.395000px;}
.x11{left:449.894986px;}
.xa{left:459.074986px;}
.xd{left:464.294986px;}
.x12{left:465.374986px;}
.x1d{left:475.634986px;}
.x1a{left:478.334986px;}
.x1e{left:502.664986px;}
.x1b{left:505.364986px;}
.x23{left:526.604986px;}
.x13{left:661.245000px;}
.x9{left:812.490000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.624000pt;}
.lsc{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.198933pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.143787pt;}
.ls3{letter-spacing:0.151040pt;}
.ls6{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.183467pt;}
.ls8{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:14.672640pt;}
.ls4{letter-spacing:33.232640pt;}
.ls0{letter-spacing:37.216000pt;}
.ls10{letter-spacing:40.912640pt;}
.lsf{letter-spacing:56.272640pt;}
.lse{letter-spacing:56.912640pt;}
.ls12{letter-spacing:57.040640pt;}
.ws6{word-spacing:-53.120000pt;}
.ws7{word-spacing:-48.000000pt;}
.ws2{word-spacing:-24.192000pt;}
.ws3{word-spacing:-24.032000pt;}
.ws0{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.463467pt;}
.ws5{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.904000pt;}
.ws8{word-spacing:-11.680000pt;}
.wsb{word-spacing:-11.376000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws4{word-spacing:-9.280000pt;}
.wsc{word-spacing:0.000000pt;}
._4{margin-left:-1.040640pt;}
._1{width:1.009280pt;}
._1c{width:1.965867pt;}
._b{width:2.948053pt;}
._a{width:4.412587pt;}
._6{width:5.949440pt;}
._18{width:7.394773pt;}
._7{width:8.496853pt;}
._19{width:9.986560pt;}
._1f{width:11.278080pt;}
._f{width:12.217600pt;}
._17{width:14.656640pt;}
._e{width:16.042240pt;}
._10{width:17.370240pt;}
._1d{width:18.273280pt;}
._9{width:19.282560pt;}
._8{width:20.504320pt;}
._c{width:21.832320pt;}
._d{width:22.984533pt;}
._31{width:24.007680pt;}
._2b{width:25.116800pt;}
._16{width:26.304000pt;}
._22{width:27.197227pt;}
._1b{width:28.100480pt;}
._1a{width:29.674880pt;}
._2c{width:30.568107pt;}
._21{width:32.403200pt;}
._20{width:33.518720pt;}
._12{width:34.448000pt;}
._11{width:35.520000pt;}
._2a{width:36.705920pt;}
._1e{width:37.608960pt;}
._15{width:38.544000pt;}
._14{width:39.744000pt;}
._32{width:40.678187pt;}
._2f{width:42.283520pt;}
._30{width:44.673707pt;}
._27{width:46.480000pt;}
._29{width:49.507840pt;}
._28{width:50.623360pt;}
._13{width:53.040000pt;}
._2e{width:54.501120pt;}
._2d{width:55.829120pt;}
._23{width:57.095467pt;}
._24{width:77.493120pt;}
._25{width:78.580907pt;}
._26{width:82.920320pt;}
._3{width:116.838187pt;}
._2{width:304.872107pt;}
._5{width:908.774613pt;}
._0{width:2539.573333pt;}
.fs4{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.240000pt;}
.yab{bottom:2.272000pt;}
.y3d{bottom:2.560000pt;}
.y3f{bottom:2.720000pt;}
.y1a{bottom:2.880000pt;}
.y35{bottom:5.440000pt;}
.y7{bottom:7.392000pt;}
.ya9{bottom:7.552000pt;}
.yc{bottom:12.480000pt;}
.y113{bottom:14.400000pt;}
.y8{bottom:14.432000pt;}
.y144{bottom:14.560000pt;}
.yaa{bottom:14.592000pt;}
.y3c{bottom:16.320000pt;}
.y13f{bottom:16.640000pt;}
.y33{bottom:17.120000pt;}
.y112{bottom:26.720000pt;}
.y143{bottom:26.874667pt;}
.y3b{bottom:30.120000pt;}
.ya{bottom:31.520000pt;}
.y32{bottom:31.840000pt;}
.y13e{bottom:32.000000pt;}
.yac{bottom:36.800000pt;}
.y142{bottom:39.034667pt;}
.y111{bottom:39.040000pt;}
.y3a{bottom:44.040000pt;}
.y31{bottom:45.600000pt;}
.y13d{bottom:47.360000pt;}
.y110{bottom:51.200000pt;}
.y141{bottom:51.354667pt;}
.y6{bottom:51.680000pt;}
.ya8{bottom:56.960000pt;}
.y39{bottom:57.800000pt;}
.y30{bottom:59.360000pt;}
.y13c{bottom:62.720000pt;}
.y38{bottom:71.560000pt;}
.y2f{bottom:73.120000pt;}
.y13b{bottom:77.920000pt;}
.y37{bottom:85.320000pt;}
.y2e{bottom:87.040000pt;}
.y13a{bottom:93.280000pt;}
.y3e{bottom:94.400000pt;}
.ye2{bottom:99.072000pt;}
.y2d{bottom:100.800000pt;}
.y140{bottom:107.552000pt;}
.y42{bottom:107.872000pt;}
.y139{bottom:108.640000pt;}
.ye1{bottom:114.432000pt;}
.y2c{bottom:114.560000pt;}
.y77{bottom:114.912000pt;}
.y2a{bottom:121.440000pt;}
.y41{bottom:122.432000pt;}
.y107{bottom:124.192000pt;}
.ye0{bottom:129.792000pt;}
.y76{bottom:130.272000pt;}
.y29{bottom:135.560000pt;}
.y40{bottom:139.386667pt;}
.y106{bottom:140.826667pt;}
.ydf{bottom:145.146667pt;}
.y75{bottom:146.586667pt;}
.y28{bottom:150.760000pt;}
.y1b{bottom:151.226667pt;}
.y105{bottom:157.306667pt;}
.yde{bottom:160.346667pt;}
.y74{bottom:161.946667pt;}
.y27{bottom:166.120000pt;}
.ya7{bottom:167.706667pt;}
.y138{bottom:169.626667pt;}
.y104{bottom:173.786667pt;}
.ydd{bottom:175.546667pt;}
.y73{bottom:177.306667pt;}
.y26{bottom:181.480000pt;}
.ya6{bottom:183.066667pt;}
.ydc{bottom:190.106667pt;}
.y103{bottom:190.426667pt;}
.y72{bottom:192.666667pt;}
.y25{bottom:196.840000pt;}
.ya5{bottom:198.426667pt;}
.ydb{bottom:204.666667pt;}
.y102{bottom:206.906667pt;}
.y71{bottom:208.826667pt;}
.y24{bottom:212.200000pt;}
.ya4{bottom:213.626667pt;}
.yda{bottom:219.226667pt;}
.y101{bottom:223.546667pt;}
.y70{bottom:224.186667pt;}
.y23{bottom:227.560000pt;}
.ya3{bottom:228.986667pt;}
.yd9{bottom:233.786667pt;}
.y6f{bottom:239.546667pt;}
.y100{bottom:240.026667pt;}
.y22{bottom:242.760000pt;}
.ya2{bottom:244.346667pt;}
.yd8{bottom:249.306667pt;}
.y6e{bottom:254.906667pt;}
.yff{bottom:256.506667pt;}
.y36{bottom:257.626667pt;}
.y21{bottom:258.120000pt;}
.ya1{bottom:259.706667pt;}
.yd7{bottom:263.866667pt;}
.y6d{bottom:270.266667pt;}
.yfe{bottom:273.146667pt;}
.y20{bottom:273.480000pt;}
.ya0{bottom:276.026667pt;}
.yd6{bottom:278.426667pt;}
.y6c{bottom:285.506667pt;}
.y1f{bottom:288.840000pt;}
.yfd{bottom:289.666667pt;}
.y9f{bottom:291.266667pt;}
.yd5{bottom:293.026667pt;}
.y136{bottom:297.506667pt;}
.y6b{bottom:300.866667pt;}
.y1e{bottom:304.200000pt;}
.yfc{bottom:306.306667pt;}
.y9e{bottom:306.626667pt;}
.yd4{bottom:308.546667pt;}
.y135{bottom:309.666667pt;}
.y6a{bottom:316.226667pt;}
.y1d{bottom:319.560000pt;}
.y134{bottom:321.986667pt;}
.yfb{bottom:322.786667pt;}
.y9d{bottom:322.946667pt;}
.yd3{bottom:323.266667pt;}
.y69{bottom:331.586667pt;}
.y133{bottom:334.306667pt;}
.y1c{bottom:334.920000pt;}
.yd2{bottom:337.826667pt;}
.y9c{bottom:338.306667pt;}
.yfa{bottom:339.426667pt;}
.y132{bottom:346.466667pt;}
.y68{bottom:346.946667pt;}
.yd1{bottom:352.386667pt;}
.y9b{bottom:353.666667pt;}
.y34{bottom:354.786667pt;}
.yf9{bottom:355.906667pt;}
.y131{bottom:358.786667pt;}
.y67{bottom:362.306667pt;}
.yd0{bottom:366.946667pt;}
.y9a{bottom:369.986667pt;}
.y130{bottom:371.106667pt;}
.yf8{bottom:371.266667pt;}
.y2b{bottom:373.346667pt;}
.y66{bottom:377.506667pt;}
.ycf{bottom:382.466667pt;}
.y12f{bottom:383.266667pt;}
.y99{bottom:385.186667pt;}
.yf7{bottom:386.626667pt;}
.y65{bottom:392.866667pt;}
.y12e{bottom:395.586667pt;}
.yce{bottom:397.026667pt;}
.y98{bottom:400.546667pt;}
.yf6{bottom:401.986667pt;}
.y12d{bottom:407.906667pt;}
.y64{bottom:408.226667pt;}
.ycd{bottom:411.586667pt;}
.y97{bottom:415.906667pt;}
.yf5{bottom:417.186667pt;}
.y12c{bottom:420.066667pt;}
.y63{bottom:423.586667pt;}
.ycc{bottom:426.146667pt;}
.y96{bottom:431.266667pt;}
.y12b{bottom:432.386667pt;}
.yf4{bottom:432.546667pt;}
.y62{bottom:438.946667pt;}
.ycb{bottom:441.666667pt;}
.y12a{bottom:444.706667pt;}
.y95{bottom:447.586667pt;}
.yf3{bottom:447.906667pt;}
.y61{bottom:454.306667pt;}
.yca{bottom:456.226667pt;}
.y129{bottom:456.866667pt;}
.y94{bottom:462.946667pt;}
.yf2{bottom:463.266667pt;}
.y128{bottom:469.186667pt;}
.y60{bottom:469.506667pt;}
.yc9{bottom:470.786667pt;}
.y93{bottom:478.146667pt;}
.yf1{bottom:478.626667pt;}
.y127{bottom:481.506667pt;}
.y5f{bottom:484.866667pt;}
.yc8{bottom:485.346667pt;}
.y126{bottom:493.666667pt;}
.yf0{bottom:493.986667pt;}
.y92{bottom:494.466667pt;}
.y19{bottom:499.746667pt;}
.yc7{bottom:499.906667pt;}
.y5e{bottom:500.226667pt;}
.y125{bottom:506.013333pt;}
.yef{bottom:509.213333pt;}
.y91{bottom:509.853333pt;}
.yc6{bottom:514.493333pt;}
.y5d{bottom:515.613333pt;}
.y124{bottom:518.333333pt;}
.yee{bottom:524.573333pt;}
.y90{bottom:525.213333pt;}
.yc5{bottom:530.173333pt;}
.y18{bottom:530.493333pt;}
.y5c{bottom:530.973333pt;}
.yed{bottom:539.933333pt;}
.y8f{bottom:541.533333pt;}
.y123{bottom:542.813333pt;}
.yc4{bottom:545.533333pt;}
.y5b{bottom:546.173333pt;}
.y17{bottom:548.253333pt;}
.y122{bottom:555.133333pt;}
.yec{bottom:555.293333pt;}
.y8e{bottom:556.733333pt;}
.yc3{bottom:560.733333pt;}
.y5a{bottom:561.533333pt;}
.y121{bottom:567.293333pt;}
.yeb{bottom:570.653333pt;}
.y8d{bottom:572.093333pt;}
.y16{bottom:573.533333pt;}
.yc2{bottom:575.293333pt;}
.y59{bottom:576.893333pt;}
.y120{bottom:579.613333pt;}
.yea{bottom:585.853333pt;}
.y8c{bottom:587.453333pt;}
.yc1{bottom:589.853333pt;}
.y11f{bottom:591.933333pt;}
.y58{bottom:592.253333pt;}
.y15{bottom:593.533333pt;}
.ye9{bottom:601.213333pt;}
.y8b{bottom:602.813333pt;}
.y11e{bottom:604.093333pt;}
.yc0{bottom:604.413333pt;}
.y57{bottom:607.613333pt;}
.y14{bottom:608.733333pt;}
.y11d{bottom:616.413333pt;}
.ye8{bottom:616.573333pt;}
.y8a{bottom:618.173333pt;}
.ybf{bottom:618.973333pt;}
.y13{bottom:619.933333pt;}
.y56{bottom:622.973333pt;}
.y11c{bottom:628.733333pt;}
.ye7{bottom:632.893333pt;}
.y89{bottom:633.533333pt;}
.y55{bottom:638.173333pt;}
.y12{bottom:638.653333pt;}
.y11b{bottom:640.893333pt;}
.ybe{bottom:648.253333pt;}
.y88{bottom:648.733333pt;}
.y11a{bottom:653.213333pt;}
.y54{bottom:653.533333pt;}
.ybd{bottom:663.613333pt;}
.y87{bottom:664.093333pt;}
.y119{bottom:665.533333pt;}
.y11{bottom:666.333333pt;}
.y53{bottom:668.893333pt;}
.y118{bottom:677.693333pt;}
.ybc{bottom:678.813333pt;}
.y86{bottom:679.453333pt;}
.y52{bottom:684.253333pt;}
.y117{bottom:690.013333pt;}
.y10{bottom:693.853333pt;}
.ybb{bottom:694.173333pt;}
.y85{bottom:694.813333pt;}
.y51{bottom:699.613333pt;}
.y116{bottom:702.333333pt;}
.yba{bottom:709.533333pt;}
.ye6{bottom:710.493333pt;}
.y84{bottom:711.133333pt;}
.y115{bottom:714.493333pt;}
.y50{bottom:714.973333pt;}
.yf{bottom:721.533333pt;}
.yb9{bottom:724.893333pt;}
.ye5{bottom:725.853333pt;}
.y83{bottom:726.333333pt;}
.y114{bottom:726.813333pt;}
.y4f{bottom:730.213333pt;}
.y10f{bottom:737.573333pt;}
.yb8{bottom:741.253333pt;}
.y82{bottom:741.733333pt;}
.y4e{bottom:745.573333pt;}
.ye{bottom:749.093333pt;}
.yb7{bottom:756.613333pt;}
.y81{bottom:758.053333pt;}
.y4d{bottom:760.933333pt;}
.yb6{bottom:771.813333pt;}
.y80{bottom:773.413333pt;}
.yd{bottom:774.853333pt;}
.y4c{bottom:776.293333pt;}
.yb5{bottom:788.133333pt;}
.yb{bottom:788.453333pt;}
.y7f{bottom:789.733333pt;}
.y4b{bottom:791.653333pt;}
.y10e{bottom:799.493333pt;}
.yb4{bottom:803.493333pt;}
.y7e{bottom:805.093333pt;}
.y4a{bottom:807.013333pt;}
.y10d{bottom:814.693333pt;}
.yb3{bottom:818.853333pt;}
.y7d{bottom:820.293333pt;}
.y49{bottom:822.213333pt;}
.y10c{bottom:828.133333pt;}
.ye4{bottom:834.213333pt;}
.yb2{bottom:835.173333pt;}
.y7c{bottom:835.653333pt;}
.y48{bottom:837.573333pt;}
.y10b{bottom:846.533333pt;}
.yb1{bottom:850.373333pt;}
.y7b{bottom:851.013333pt;}
.y47{bottom:852.933333pt;}
.y10a{bottom:863.013333pt;}
.yb0{bottom:865.733333pt;}
.y7a{bottom:867.333333pt;}
.y46{bottom:868.293333pt;}
.y109{bottom:879.653333pt;}
.yaf{bottom:881.093333pt;}
.y79{bottom:882.693333pt;}
.y45{bottom:883.653333pt;}
.y108{bottom:896.133333pt;}
.ye3{bottom:896.453333pt;}
.yae{bottom:897.413333pt;}
.y78{bottom:897.893333pt;}
.y44{bottom:898.853333pt;}
.yad{bottom:912.773333pt;}
.y43{bottom:914.053333pt;}
.y137{bottom:915.173333pt;}
.y5{bottom:928.133333pt;}
.y4{bottom:943.333333pt;}
.y3{bottom:958.720000pt;}
.y2{bottom:974.720000pt;}
.y1{bottom:993.120000pt;}
.h1e{height:12.320000pt;}
.h10{height:15.392000pt;}
.h17{height:17.920000pt;}
.hd{height:24.131250pt;}
.h4{height:24.512000pt;}
.h6{height:29.940625pt;}
.h1f{height:30.254687pt;}
.h13{height:33.515625pt;}
.h1a{height:33.867188pt;}
.h7{height:34.965625pt;}
.h12{height:35.531250pt;}
.h15{height:35.554688pt;}
.h5{height:37.090625pt;}
.hf{height:37.479688pt;}
.h1d{height:37.583438pt;}
.h1c{height:38.672812pt;}
.h1b{height:39.321250pt;}
.h16{height:39.347188pt;}
.h9{height:41.112500pt;}
.h2{height:43.108125pt;}
.h3{height:45.156250pt;}
.hc{height:47.310625pt;}
.ha{height:47.782500pt;}
.h1{height:51.937500pt;}
.h20{height:61.280000pt;}
.h22{height:61.440000pt;}
.he{height:67.031250pt;}
.hb{height:67.734375pt;}
.h18{height:96.512000pt;}
.h19{height:105.600000pt;}
.h21{height:121.152000pt;}
.h14{height:125.760000pt;}
.h8{height:136.800000pt;}
.h11{height:347.866667pt;}
.h0{height:1056.000000pt;}
.w2{width:40.032000pt;}
.w6{width:178.906667pt;}
.w7{width:292.706667pt;}
.w5{width:539.933333pt;}
.w3{width:696.453333pt;}
.w8{width:711.813333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:5.920000pt;}
.x5{left:7.680000pt;}
.x26{left:11.040000pt;}
.x18{left:16.040000pt;}
.x14{left:17.960000pt;}
.x16{left:21.960000pt;}
.x17{left:23.560000pt;}
.x8{left:40.480000pt;}
.x4{left:47.999988pt;}
.x1f{left:50.719988pt;}
.x1c{left:52.959988pt;}
.x3{left:53.919988pt;}
.x19{left:58.239988pt;}
.x22{left:71.226667pt;}
.x20{left:74.719988pt;}
.x21{left:75.680000pt;}
.x10{left:77.279988pt;}
.xb{left:86.591988pt;}
.x6{left:89.632000pt;}
.x7{left:96.031988pt;}
.x1{left:133.786655pt;}
.xf{left:155.706655pt;}
.x2{left:196.186655pt;}
.x24{left:262.786667pt;}
.xe{left:283.746655pt;}
.xc{left:340.706655pt;}
.x25{left:355.906667pt;}
.x11{left:399.906655pt;}
.xa{left:408.066655pt;}
.xd{left:412.706655pt;}
.x12{left:413.666655pt;}
.x1d{left:422.786655pt;}
.x1a{left:425.186655pt;}
.x1e{left:446.813321pt;}
.x1b{left:449.213321pt;}
.x23{left:468.093321pt;}
.x13{left:587.773333pt;}
.x9{left:722.213333pt;}
}




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