
    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_2ecf41944a2e9b6dfc7c042a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_1f7adfd281a68c5dfb1f1357.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_538f1e926aebcc62eb0134c5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_29ad799bdba715fc274e9632.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_0f6b3555a94e68427af8e1e8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_9106717278f16cbfce09e309.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_699f3019f508dde769c0775f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.766602;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_70ffe2a630af10bf6989acb5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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_a9c166ef24bb3f3fc3caac39.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-1.008000px;}
.ls1a{letter-spacing:-0.774000px;}
.ls16{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.457800px;}
.ls17{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.226200px;}
.lsb{letter-spacing:-0.108000px;}
.ls7{letter-spacing:-0.089400px;}
.lsa{letter-spacing:-0.072000px;}
.ls19{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.014400px;}
.ls14{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.060480px;}
.ls2{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.262080px;}
.ls10{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.720000px;}
.ls15{letter-spacing:16.506720px;}
.lse{letter-spacing:46.026720px;}
.lsf{letter-spacing:64.026720px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.102200px;}
.ws5{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.wsf{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.wse{word-spacing:-14.580000px;}
.ws11{word-spacing:-14.166000px;}
.ws8{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.392000px;}
.ws2{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.213800px;}
.ws6{word-spacing:-8.928000px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.651200px;}
._7{width:3.132000px;}
._8{width:4.143600px;}
._6{width:5.629680px;}
._5{width:6.858000px;}
._4{width:8.707680px;}
._3{width:10.098000px;}
._2{width:11.961360px;}
._f{width:13.625280px;}
._b{width:16.135200px;}
._a{width:17.151120px;}
._c{width:18.462960px;}
._9{width:19.764000px;}
._13{width:20.796480px;}
._12{width:21.954000px;}
._14{width:23.268960px;}
._15{width:24.405840px;}
._11{width:26.889360px;}
._10{width:28.072800px;}
._e{width:29.515680px;}
._d{width:30.716640px;}
._1a{width:33.668640px;}
._1b{width:34.820880px;}
._17{width:37.632000px;}
._16{width:38.748240px;}
._22{width:42.032160px;}
._23{width:43.086960px;}
._1e{width:47.471520px;}
._18{width:64.168320px;}
._19{width:65.613360px;}
._20{width:102.587040px;}
._1f{width:103.764240px;}
._24{width:106.242960px;}
._21{width:113.949120px;}
._1c{width:185.935440px;}
._1d{width:187.086480px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:2.340000px;}
.y40{bottom:3.240000px;}
.y5{bottom:3.780000px;}
.yb0{bottom:3.960000px;}
.y5b{bottom:5.010000px;}
.y2{bottom:9.900000px;}
.y4a{bottom:10.260000px;}
.y56{bottom:14.040000px;}
.ya4{bottom:15.120000px;}
.y9c{bottom:15.165000px;}
.ya1{bottom:15.300000px;}
.yb2{bottom:15.840000px;}
.yb6{bottom:16.065000px;}
.y3f{bottom:20.520000px;}
.y4{bottom:22.710000px;}
.yaf{bottom:24.660000px;}
.y55{bottom:29.520000px;}
.ya3{bottom:32.400000px;}
.y9b{bottom:32.445000px;}
.ya0{bottom:32.580000px;}
.yb4{bottom:36.540000px;}
.y3e{bottom:37.620000px;}
.y49{bottom:39.960000px;}
.y54{bottom:45.000000px;}
.y3{bottom:47.910000px;}
.y9e{bottom:49.680000px;}
.y9a{bottom:49.725000px;}
.y9f{bottom:49.860000px;}
.y48{bottom:51.150000px;}
.y3d{bottom:54.900000px;}
.y7{bottom:57.060000px;}
.y47{bottom:62.850000px;}
.y3c{bottom:72.225000px;}
.y46{bottom:75.990000px;}
.y53{bottom:78.330000px;}
.y45{bottom:88.950000px;}
.y3b{bottom:89.505000px;}
.yc9{bottom:89.820000px;}
.y52{bottom:93.810000px;}
.y118{bottom:94.140000px;}
.y94{bottom:98.280000px;}
.y59{bottom:106.020000px;}
.y3a{bottom:106.785000px;}
.yc8{bottom:107.100000px;}
.y44{bottom:110.910000px;}
.y117{bottom:111.420000px;}
.y51{bottom:111.630000px;}
.ye6{bottom:115.020000px;}
.y93{bottom:115.560000px;}
.y58{bottom:123.300000px;}
.y39{bottom:123.885000px;}
.yc7{bottom:124.380000px;}
.y50{bottom:127.110000px;}
.y116{bottom:128.700000px;}
.ye5{bottom:132.120000px;}
.y92{bottom:132.840000px;}
.y57{bottom:140.580000px;}
.y38{bottom:141.165000px;}
.yc6{bottom:141.660000px;}
.y4f{bottom:142.590000px;}
.y115{bottom:145.800000px;}
.ye4{bottom:149.400000px;}
.y91{bottom:150.120000px;}
.y41{bottom:155.340000px;}
.y4e{bottom:158.250000px;}
.y37{bottom:158.445000px;}
.yc5{bottom:158.940000px;}
.y114{bottom:163.080000px;}
.ye3{bottom:166.680000px;}
.y90{bottom:167.220000px;}
.y43{bottom:173.010000px;}
.y4d{bottom:173.730000px;}
.y36{bottom:175.725000px;}
.yc4{bottom:176.040000px;}
.y113{bottom:180.360000px;}
.y42{bottom:183.630000px;}
.ye2{bottom:183.960000px;}
.y8f{bottom:184.500000px;}
.y4c{bottom:189.210000px;}
.y35{bottom:193.005000px;}
.yc3{bottom:193.320000px;}
.y112{bottom:197.640000px;}
.ye1{bottom:201.240000px;}
.y8e{bottom:201.780000px;}
.y34{bottom:210.285000px;}
.yc2{bottom:210.630000px;}
.y1f{bottom:212.805000px;}
.y111{bottom:214.950000px;}
.ye0{bottom:218.370000px;}
.y8d{bottom:219.090000px;}
.y33{bottom:227.385000px;}
.yc1{bottom:227.910000px;}
.y110{bottom:232.050000px;}
.ydf{bottom:235.650000px;}
.y8c{bottom:236.370000px;}
.y1e{bottom:236.925000px;}
.y32{bottom:244.485000px;}
.yc0{bottom:245.190000px;}
.y10f{bottom:249.330000px;}
.yde{bottom:252.930000px;}
.y8b{bottom:253.650000px;}
.y31{bottom:259.965000px;}
.y1d{bottom:261.045000px;}
.ybf{bottom:263.550000px;}
.y10e{bottom:266.610000px;}
.ydd{bottom:270.210000px;}
.y8a{bottom:270.750000px;}
.y30{bottom:275.445000px;}
.ybe{bottom:280.650000px;}
.y10d{bottom:283.890000px;}
.y1c{bottom:285.165000px;}
.ydc{bottom:287.490000px;}
.y89{bottom:288.030000px;}
.y2f{bottom:290.925000px;}
.ybd{bottom:299.010000px;}
.y10c{bottom:301.170000px;}
.ydb{bottom:304.770000px;}
.y88{bottom:305.310000px;}
.y2e{bottom:306.435000px;}
.y1b{bottom:309.315000px;}
.ybc{bottom:316.290000px;}
.y10b{bottom:318.450000px;}
.yda{bottom:321.870000px;}
.y2d{bottom:322.095000px;}
.y87{bottom:322.590000px;}
.y1a{bottom:333.615000px;}
.ybb{bottom:334.650000px;}
.y10a{bottom:335.550000px;}
.y2c{bottom:337.575000px;}
.yd9{bottom:339.150000px;}
.y86{bottom:339.870000px;}
.yba{bottom:351.930000px;}
.y109{bottom:352.830000px;}
.y2b{bottom:353.055000px;}
.yd8{bottom:356.430000px;}
.y85{bottom:357.150000px;}
.y19{bottom:357.735000px;}
.y2a{bottom:368.535000px;}
.y11{bottom:369.030000px;}
.y108{bottom:370.110000px;}
.y84{bottom:374.250000px;}
.y18{bottom:381.855000px;}
.y29{bottom:384.195000px;}
.yd7{bottom:385.590000px;}
.yb9{bottom:386.310000px;}
.y107{bottom:387.390000px;}
.y83{bottom:391.530000px;}
.y28{bottom:399.675000px;}
.yd6{bottom:402.870000px;}
.yb8{bottom:403.590000px;}
.y106{bottom:404.670000px;}
.y17{bottom:405.975000px;}
.y82{bottom:408.810000px;}
.y27{bottom:415.155000px;}
.yd5{bottom:420.150000px;}
.yb7{bottom:420.870000px;}
.y105{bottom:421.950000px;}
.y81{bottom:426.090000px;}
.y16{bottom:430.095000px;}
.y26{bottom:430.635000px;}
.yb5{bottom:435.630000px;}
.y104{bottom:439.095000px;}
.y80{bottom:443.415000px;}
.y25{bottom:446.295000px;}
.yd4{bottom:449.535000px;}
.y15{bottom:454.215000px;}
.y103{bottom:456.375000px;}
.y7f{bottom:460.515000px;}
.y24{bottom:461.775000px;}
.yb3{bottom:469.155000px;}
.y102{bottom:473.655000px;}
.y23{bottom:477.255000px;}
.y7e{bottom:477.795000px;}
.y14{bottom:478.515000px;}
.yd3{bottom:478.695000px;}
.y101{bottom:490.935000px;}
.y22{bottom:492.735000px;}
.y7d{bottom:495.075000px;}
.y13{bottom:502.635000px;}
.y100{bottom:508.215000px;}
.y21{bottom:508.395000px;}
.y7c{bottom:512.355000px;}
.yd2{bottom:515.055000px;}
.yb1{bottom:523.335000px;}
.y20{bottom:523.875000px;}
.yff{bottom:525.315000px;}
.y12{bottom:526.755000px;}
.y7b{bottom:529.635000px;}
.yfe{bottom:542.595000px;}
.y7a{bottom:546.915000px;}
.yae{bottom:556.635000px;}
.yfd{bottom:559.875000px;}
.y79{bottom:564.015000px;}
.yfc{bottom:577.155000px;}
.y78{bottom:581.295000px;}
.yfb{bottom:594.435000px;}
.y77{bottom:598.575000px;}
.yad{bottom:602.175000px;}
.yfa{bottom:611.715000px;}
.y76{bottom:615.855000px;}
.yac{bottom:619.275000px;}
.yf9{bottom:628.815000px;}
.y75{bottom:633.135000px;}
.y127{bottom:633.315000px;}
.yab{bottom:636.555000px;}
.yf8{bottom:646.095000px;}
.y74{bottom:650.415000px;}
.y126{bottom:650.595000px;}
.yaa{bottom:653.835000px;}
.yf7{bottom:663.375000px;}
.y73{bottom:667.515000px;}
.y125{bottom:667.875000px;}
.ya9{bottom:671.115000px;}
.yf6{bottom:680.685000px;}
.y72{bottom:684.825000px;}
.y124{bottom:685.185000px;}
.ya8{bottom:688.425000px;}
.yf5{bottom:697.965000px;}
.ya7{bottom:705.525000px;}
.y71{bottom:714.165000px;}
.yf4{bottom:715.245000px;}
.ya6{bottom:722.805000px;}
.y123{bottom:723.345000px;}
.y70{bottom:731.445000px;}
.yf3{bottom:732.345000px;}
.ya5{bottom:737.565000px;}
.yf2{bottom:749.625000px;}
.y6f{bottom:760.605000px;}
.y122{bottom:761.685000px;}
.yf1{bottom:766.905000px;}
.y6e{bottom:777.885000px;}
.y121{bottom:778.965000px;}
.yf0{bottom:784.185000px;}
.ya2{bottom:784.905000px;}
.y6d{bottom:795.165000px;}
.y120{bottom:796.245000px;}
.yef{bottom:801.465000px;}
.y6c{bottom:812.265000px;}
.y11f{bottom:813.345000px;}
.yd1{bottom:818.565000px;}
.yee{bottom:818.745000px;}
.y6b{bottom:829.545000px;}
.y11e{bottom:830.625000px;}
.y9d{bottom:832.065000px;}
.yd0{bottom:835.845000px;}
.y6a{bottom:846.825000px;}
.y11d{bottom:847.905000px;}
.ycf{bottom:853.125000px;}
.y69{bottom:864.105000px;}
.y11c{bottom:865.185000px;}
.yed{bottom:870.405000px;}
.y68{bottom:881.385000px;}
.yce{bottom:882.285000px;}
.y11b{bottom:882.465000px;}
.yec{bottom:887.685000px;}
.y99{bottom:896.685000px;}
.ycd{bottom:897.225000px;}
.y67{bottom:898.665000px;}
.y11a{bottom:899.565000px;}
.yeb{bottom:904.965000px;}
.y10{bottom:908.025000px;}
.yf{bottom:912.750000px;}
.y66{bottom:915.810000px;}
.y119{bottom:916.890000px;}
.ycc{bottom:927.150000px;}
.ye{bottom:930.030000px;}
.y65{bottom:933.090000px;}
.yea{bottom:934.170000px;}
.yd{bottom:947.310000px;}
.y64{bottom:950.370000px;}
.ye9{bottom:951.450000px;}
.ycb{bottom:957.210000px;}
.yc{bottom:964.410000px;}
.y63{bottom:967.650000px;}
.ye8{bottom:968.730000px;}
.y98{bottom:982.770000px;}
.y62{bottom:985.650000px;}
.ye7{bottom:986.010000px;}
.yca{bottom:987.270000px;}
.yb{bottom:995.010000px;}
.y97{bottom:1000.950000px;}
.y61{bottom:1003.110000px;}
.y96{bottom:1018.230000px;}
.ya{bottom:1019.130000px;}
.y60{bottom:1020.390000px;}
.y95{bottom:1036.590000px;}
.y5f{bottom:1037.670000px;}
.y9{bottom:1043.250000px;}
.y5e{bottom:1054.950000px;}
.y8{bottom:1071.870000px;}
.y5d{bottom:1072.230000px;}
.y5a{bottom:1075.140000px;}
.y5c{bottom:1089.510000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.ha{height:4.064063px;}
.h12{height:21.114844px;}
.h11{height:25.136719px;}
.h15{height:27.720000px;}
.hd{height:29.158594px;}
.h23{height:29.160000px;}
.h25{height:29.196000px;}
.h24{height:29.340000px;}
.hc{height:29.464453px;}
.h1f{height:32.580000px;}
.h22{height:32.796000px;}
.h14{height:37.705078px;}
.h13{height:38.100586px;}
.he{height:38.997070px;}
.h7{height:40.132617px;}
.h1d{height:41.400000px;}
.h6{height:41.726953px;}
.h9{height:42.164648px;}
.h18{height:43.506914px;}
.hf{height:44.507812px;}
.h5{height:46.251562px;}
.h1b{height:46.440000px;}
.h1c{height:46.620000px;}
.h26{height:49.255313px;}
.h20{height:50.273438px;}
.h1e{height:50.800781px;}
.h21{height:53.280000px;}
.h8{height:59.436914px;}
.h17{height:59.439023px;}
.h1a{height:63.720000px;}
.h19{height:63.756000px;}
.h16{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h10{height:212.970000px;}
.hb{height:536.475000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w14{width:66.780000px;}
.w18{width:70.020000px;}
.w8{width:72.180000px;}
.w13{width:93.960000px;}
.w11{width:94.536000px;}
.w19{width:97.020000px;}
.w15{width:99.216000px;}
.w2{width:104.076000px;}
.w16{width:106.776000px;}
.wd{width:109.440000px;}
.w9{width:113.076000px;}
.wa{width:113.940000px;}
.wc{width:124.236000px;}
.wb{width:124.596000px;}
.w12{width:130.896000px;}
.w5{width:132.696000px;}
.w10{width:160.770000px;}
.w7{width:162.900000px;}
.we{width:163.470000px;}
.w17{width:175.530000px;}
.wf{width:183.270000px;}
.w6{width:596.490000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:7.056000px;}
.x1a{left:8.100000px;}
.x2e{left:10.260000px;}
.x29{left:11.700000px;}
.x4{left:12.780000px;}
.x6{left:16.020000px;}
.x1d{left:18.216000px;}
.x18{left:19.656000px;}
.x26{left:21.060000px;}
.x17{left:22.536000px;}
.x33{left:23.580000px;}
.x43{left:26.460000px;}
.x16{left:28.116000px;}
.x1f{left:29.196000px;}
.x2c{left:30.420000px;}
.x28{left:33.300000px;}
.x30{left:34.410000px;}
.x31{left:35.820000px;}
.x39{left:36.930000px;}
.x37{left:38.385000px;}
.x2f{left:39.420000px;}
.x10{left:43.776000px;}
.x1e{left:47.736000px;}
.x11{left:50.796000px;}
.xf{left:54.936000px;}
.x20{left:57.096000px;}
.x42{left:61.020000px;}
.x1b{left:62.145000px;}
.x3a{left:64.290000px;}
.x15{left:67.170000px;}
.x34{left:70.605000px;}
.x13{left:71.850000px;}
.x1{left:78.300000px;}
.x38{left:82.665000px;}
.x9{left:86.399987px;}
.x14{left:88.950000px;}
.x2{left:95.790000px;}
.x21{left:102.810000px;}
.x1c{left:106.770000px;}
.x23{left:113.435987px;}
.x24{left:116.136000px;}
.x12{left:124.590000px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x3c{left:184.350000px;}
.x25{left:189.030000px;}
.x19{left:219.090000px;}
.x32{left:242.850000px;}
.x3d{left:251.850000px;}
.x27{left:302.835000px;}
.x3e{left:351.975000px;}
.x2a{left:417.495000px;}
.x35{left:426.855000px;}
.x3f{left:459.465000px;}
.x2b{left:542.805000px;}
.xd{left:566.024987px;}
.xa{left:584.384987px;}
.x36{left:588.345000px;}
.x40{left:635.730000px;}
.xc{left:645.629987px;}
.x2d{left:667.770000px;}
.xb{left:684.509987px;}
.x44{left:696.389987px;}
.x41{left:706.470000px;}
.x8{left:766.049987px;}
.x3b{left:791.969987px;}
.x7{left:799.349987px;}
.xe{left:806.939987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.896000pt;}
.ls1a{letter-spacing:-0.688000pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.406933pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.201067pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:-0.079467pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls19{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.012800pt;}
.ls14{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.053760pt;}
.ls2{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.232960pt;}
.ls10{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls15{letter-spacing:14.672640pt;}
.lse{letter-spacing:40.912640pt;}
.lsf{letter-spacing:56.912640pt;}
.wsb{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.313067pt;}
.ws5{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.wsf{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.wse{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.592000pt;}
.ws8{word-spacing:-12.320000pt;}
.ws7{word-spacing:-11.904000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.078933pt;}
.ws6{word-spacing:-7.936000pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.467733pt;}
._7{width:2.784000pt;}
._8{width:3.683200pt;}
._6{width:5.004160pt;}
._5{width:6.096000pt;}
._4{width:7.740160pt;}
._3{width:8.976000pt;}
._2{width:10.632320pt;}
._f{width:12.111360pt;}
._b{width:14.342400pt;}
._a{width:15.245440pt;}
._c{width:16.411520pt;}
._9{width:17.568000pt;}
._13{width:18.485760pt;}
._12{width:19.514667pt;}
._14{width:20.683520pt;}
._15{width:21.694080pt;}
._11{width:23.901653pt;}
._10{width:24.953600pt;}
._e{width:26.236160pt;}
._d{width:27.303680pt;}
._1a{width:29.927680pt;}
._1b{width:30.951893pt;}
._17{width:33.450667pt;}
._16{width:34.442880pt;}
._22{width:37.361920pt;}
._23{width:38.299520pt;}
._1e{width:42.196907pt;}
._18{width:57.038507pt;}
._19{width:58.322987pt;}
._20{width:91.188480pt;}
._1f{width:92.234880pt;}
._24{width:94.438187pt;}
._21{width:101.288107pt;}
._1c{width:165.275947pt;}
._1d{width:166.299093pt;}
.fs5{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:2.080000pt;}
.y40{bottom:2.880000pt;}
.y5{bottom:3.360000pt;}
.yb0{bottom:3.520000pt;}
.y5b{bottom:4.453333pt;}
.y2{bottom:8.800000pt;}
.y4a{bottom:9.120000pt;}
.y56{bottom:12.480000pt;}
.ya4{bottom:13.440000pt;}
.y9c{bottom:13.480000pt;}
.ya1{bottom:13.600000pt;}
.yb2{bottom:14.080000pt;}
.yb6{bottom:14.280000pt;}
.y3f{bottom:18.240000pt;}
.y4{bottom:20.186667pt;}
.yaf{bottom:21.920000pt;}
.y55{bottom:26.240000pt;}
.ya3{bottom:28.800000pt;}
.y9b{bottom:28.840000pt;}
.ya0{bottom:28.960000pt;}
.yb4{bottom:32.480000pt;}
.y3e{bottom:33.440000pt;}
.y49{bottom:35.520000pt;}
.y54{bottom:40.000000pt;}
.y3{bottom:42.586667pt;}
.y9e{bottom:44.160000pt;}
.y9a{bottom:44.200000pt;}
.y9f{bottom:44.320000pt;}
.y48{bottom:45.466667pt;}
.y3d{bottom:48.800000pt;}
.y7{bottom:50.720000pt;}
.y47{bottom:55.866667pt;}
.y3c{bottom:64.200000pt;}
.y46{bottom:67.546667pt;}
.y53{bottom:69.626667pt;}
.y45{bottom:79.066667pt;}
.y3b{bottom:79.560000pt;}
.yc9{bottom:79.840000pt;}
.y52{bottom:83.386667pt;}
.y118{bottom:83.680000pt;}
.y94{bottom:87.360000pt;}
.y59{bottom:94.240000pt;}
.y3a{bottom:94.920000pt;}
.yc8{bottom:95.200000pt;}
.y44{bottom:98.586667pt;}
.y117{bottom:99.040000pt;}
.y51{bottom:99.226667pt;}
.ye6{bottom:102.240000pt;}
.y93{bottom:102.720000pt;}
.y58{bottom:109.600000pt;}
.y39{bottom:110.120000pt;}
.yc7{bottom:110.560000pt;}
.y50{bottom:112.986667pt;}
.y116{bottom:114.400000pt;}
.ye5{bottom:117.440000pt;}
.y92{bottom:118.080000pt;}
.y57{bottom:124.960000pt;}
.y38{bottom:125.480000pt;}
.yc6{bottom:125.920000pt;}
.y4f{bottom:126.746667pt;}
.y115{bottom:129.600000pt;}
.ye4{bottom:132.800000pt;}
.y91{bottom:133.440000pt;}
.y41{bottom:138.080000pt;}
.y4e{bottom:140.666667pt;}
.y37{bottom:140.840000pt;}
.yc5{bottom:141.280000pt;}
.y114{bottom:144.960000pt;}
.ye3{bottom:148.160000pt;}
.y90{bottom:148.640000pt;}
.y43{bottom:153.786667pt;}
.y4d{bottom:154.426667pt;}
.y36{bottom:156.200000pt;}
.yc4{bottom:156.480000pt;}
.y113{bottom:160.320000pt;}
.y42{bottom:163.226667pt;}
.ye2{bottom:163.520000pt;}
.y8f{bottom:164.000000pt;}
.y4c{bottom:168.186667pt;}
.y35{bottom:171.560000pt;}
.yc3{bottom:171.840000pt;}
.y112{bottom:175.680000pt;}
.ye1{bottom:178.880000pt;}
.y8e{bottom:179.360000pt;}
.y34{bottom:186.920000pt;}
.yc2{bottom:187.226667pt;}
.y1f{bottom:189.160000pt;}
.y111{bottom:191.066667pt;}
.ye0{bottom:194.106667pt;}
.y8d{bottom:194.746667pt;}
.y33{bottom:202.120000pt;}
.yc1{bottom:202.586667pt;}
.y110{bottom:206.266667pt;}
.ydf{bottom:209.466667pt;}
.y8c{bottom:210.106667pt;}
.y1e{bottom:210.600000pt;}
.y32{bottom:217.320000pt;}
.yc0{bottom:217.946667pt;}
.y10f{bottom:221.626667pt;}
.yde{bottom:224.826667pt;}
.y8b{bottom:225.466667pt;}
.y31{bottom:231.080000pt;}
.y1d{bottom:232.040000pt;}
.ybf{bottom:234.266667pt;}
.y10e{bottom:236.986667pt;}
.ydd{bottom:240.186667pt;}
.y8a{bottom:240.666667pt;}
.y30{bottom:244.840000pt;}
.ybe{bottom:249.466667pt;}
.y10d{bottom:252.346667pt;}
.y1c{bottom:253.480000pt;}
.ydc{bottom:255.546667pt;}
.y89{bottom:256.026667pt;}
.y2f{bottom:258.600000pt;}
.ybd{bottom:265.786667pt;}
.y10c{bottom:267.706667pt;}
.ydb{bottom:270.906667pt;}
.y88{bottom:271.386667pt;}
.y2e{bottom:272.386667pt;}
.y1b{bottom:274.946667pt;}
.ybc{bottom:281.146667pt;}
.y10b{bottom:283.066667pt;}
.yda{bottom:286.106667pt;}
.y2d{bottom:286.306667pt;}
.y87{bottom:286.746667pt;}
.y1a{bottom:296.546667pt;}
.ybb{bottom:297.466667pt;}
.y10a{bottom:298.266667pt;}
.y2c{bottom:300.066667pt;}
.yd9{bottom:301.466667pt;}
.y86{bottom:302.106667pt;}
.yba{bottom:312.826667pt;}
.y109{bottom:313.626667pt;}
.y2b{bottom:313.826667pt;}
.yd8{bottom:316.826667pt;}
.y85{bottom:317.466667pt;}
.y19{bottom:317.986667pt;}
.y2a{bottom:327.586667pt;}
.y11{bottom:328.026667pt;}
.y108{bottom:328.986667pt;}
.y84{bottom:332.666667pt;}
.y18{bottom:339.426667pt;}
.y29{bottom:341.506667pt;}
.yd7{bottom:342.746667pt;}
.yb9{bottom:343.386667pt;}
.y107{bottom:344.346667pt;}
.y83{bottom:348.026667pt;}
.y28{bottom:355.266667pt;}
.yd6{bottom:358.106667pt;}
.yb8{bottom:358.746667pt;}
.y106{bottom:359.706667pt;}
.y17{bottom:360.866667pt;}
.y82{bottom:363.386667pt;}
.y27{bottom:369.026667pt;}
.yd5{bottom:373.466667pt;}
.yb7{bottom:374.106667pt;}
.y105{bottom:375.066667pt;}
.y81{bottom:378.746667pt;}
.y16{bottom:382.306667pt;}
.y26{bottom:382.786667pt;}
.yb5{bottom:387.226667pt;}
.y104{bottom:390.306667pt;}
.y80{bottom:394.146667pt;}
.y25{bottom:396.706667pt;}
.yd4{bottom:399.586667pt;}
.y15{bottom:403.746667pt;}
.y103{bottom:405.666667pt;}
.y7f{bottom:409.346667pt;}
.y24{bottom:410.466667pt;}
.yb3{bottom:417.026667pt;}
.y102{bottom:421.026667pt;}
.y23{bottom:424.226667pt;}
.y7e{bottom:424.706667pt;}
.y14{bottom:425.346667pt;}
.yd3{bottom:425.506667pt;}
.y101{bottom:436.386667pt;}
.y22{bottom:437.986667pt;}
.y7d{bottom:440.066667pt;}
.y13{bottom:446.786667pt;}
.y100{bottom:451.746667pt;}
.y21{bottom:451.906667pt;}
.y7c{bottom:455.426667pt;}
.yd2{bottom:457.826667pt;}
.yb1{bottom:465.186667pt;}
.y20{bottom:465.666667pt;}
.yff{bottom:466.946667pt;}
.y12{bottom:468.226667pt;}
.y7b{bottom:470.786667pt;}
.yfe{bottom:482.306667pt;}
.y7a{bottom:486.146667pt;}
.yae{bottom:494.786667pt;}
.yfd{bottom:497.666667pt;}
.y79{bottom:501.346667pt;}
.yfc{bottom:513.026667pt;}
.y78{bottom:516.706667pt;}
.yfb{bottom:528.386667pt;}
.y77{bottom:532.066667pt;}
.yad{bottom:535.266667pt;}
.yfa{bottom:543.746667pt;}
.y76{bottom:547.426667pt;}
.yac{bottom:550.466667pt;}
.yf9{bottom:558.946667pt;}
.y75{bottom:562.786667pt;}
.y127{bottom:562.946667pt;}
.yab{bottom:565.826667pt;}
.yf8{bottom:574.306667pt;}
.y74{bottom:578.146667pt;}
.y126{bottom:578.306667pt;}
.yaa{bottom:581.186667pt;}
.yf7{bottom:589.666667pt;}
.y73{bottom:593.346667pt;}
.y125{bottom:593.666667pt;}
.ya9{bottom:596.546667pt;}
.yf6{bottom:605.053333pt;}
.y72{bottom:608.733333pt;}
.y124{bottom:609.053333pt;}
.ya8{bottom:611.933333pt;}
.yf5{bottom:620.413333pt;}
.ya7{bottom:627.133333pt;}
.y71{bottom:634.813333pt;}
.yf4{bottom:635.773333pt;}
.ya6{bottom:642.493333pt;}
.y123{bottom:642.973333pt;}
.y70{bottom:650.173333pt;}
.yf3{bottom:650.973333pt;}
.ya5{bottom:655.613333pt;}
.yf2{bottom:666.333333pt;}
.y6f{bottom:676.093333pt;}
.y122{bottom:677.053333pt;}
.yf1{bottom:681.693333pt;}
.y6e{bottom:691.453333pt;}
.y121{bottom:692.413333pt;}
.yf0{bottom:697.053333pt;}
.ya2{bottom:697.693333pt;}
.y6d{bottom:706.813333pt;}
.y120{bottom:707.773333pt;}
.yef{bottom:712.413333pt;}
.y6c{bottom:722.013333pt;}
.y11f{bottom:722.973333pt;}
.yd1{bottom:727.613333pt;}
.yee{bottom:727.773333pt;}
.y6b{bottom:737.373333pt;}
.y11e{bottom:738.333333pt;}
.y9d{bottom:739.613333pt;}
.yd0{bottom:742.973333pt;}
.y6a{bottom:752.733333pt;}
.y11d{bottom:753.693333pt;}
.ycf{bottom:758.333333pt;}
.y69{bottom:768.093333pt;}
.y11c{bottom:769.053333pt;}
.yed{bottom:773.693333pt;}
.y68{bottom:783.453333pt;}
.yce{bottom:784.253333pt;}
.y11b{bottom:784.413333pt;}
.yec{bottom:789.053333pt;}
.y99{bottom:797.053333pt;}
.ycd{bottom:797.533333pt;}
.y67{bottom:798.813333pt;}
.y11a{bottom:799.613333pt;}
.yeb{bottom:804.413333pt;}
.y10{bottom:807.133333pt;}
.yf{bottom:811.333333pt;}
.y66{bottom:814.053333pt;}
.y119{bottom:815.013333pt;}
.ycc{bottom:824.133333pt;}
.ye{bottom:826.693333pt;}
.y65{bottom:829.413333pt;}
.yea{bottom:830.373333pt;}
.yd{bottom:842.053333pt;}
.y64{bottom:844.773333pt;}
.ye9{bottom:845.733333pt;}
.ycb{bottom:850.853333pt;}
.yc{bottom:857.253333pt;}
.y63{bottom:860.133333pt;}
.ye8{bottom:861.093333pt;}
.y98{bottom:873.573333pt;}
.y62{bottom:876.133333pt;}
.ye7{bottom:876.453333pt;}
.yca{bottom:877.573333pt;}
.yb{bottom:884.453333pt;}
.y97{bottom:889.733333pt;}
.y61{bottom:891.653333pt;}
.y96{bottom:905.093333pt;}
.ya{bottom:905.893333pt;}
.y60{bottom:907.013333pt;}
.y95{bottom:921.413333pt;}
.y5f{bottom:922.373333pt;}
.y9{bottom:927.333333pt;}
.y5e{bottom:937.733333pt;}
.y8{bottom:952.773333pt;}
.y5d{bottom:953.093333pt;}
.y5a{bottom:955.680000pt;}
.y5c{bottom:968.453333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.ha{height:3.612500pt;}
.h12{height:18.768750pt;}
.h11{height:22.343750pt;}
.h15{height:24.640000pt;}
.hd{height:25.918750pt;}
.h23{height:25.920000pt;}
.h25{height:25.952000pt;}
.h24{height:26.080000pt;}
.hc{height:26.190625pt;}
.h1f{height:28.960000pt;}
.h22{height:29.152000pt;}
.h14{height:33.515625pt;}
.h13{height:33.867188pt;}
.he{height:34.664062pt;}
.h7{height:35.673437pt;}
.h1d{height:36.800000pt;}
.h6{height:37.090625pt;}
.h9{height:37.479688pt;}
.h18{height:38.672812pt;}
.hf{height:39.562500pt;}
.h5{height:41.112500pt;}
.h1b{height:41.280000pt;}
.h1c{height:41.440000pt;}
.h26{height:43.782500pt;}
.h20{height:44.687500pt;}
.h1e{height:45.156250pt;}
.h21{height:47.360000pt;}
.h8{height:52.832812pt;}
.h17{height:52.834688pt;}
.h1a{height:56.640000pt;}
.h19{height:56.672000pt;}
.h16{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h10{height:189.306667pt;}
.hb{height:476.866667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w14{width:59.360000pt;}
.w18{width:62.240000pt;}
.w8{width:64.160000pt;}
.w13{width:83.520000pt;}
.w11{width:84.032000pt;}
.w19{width:86.240000pt;}
.w15{width:88.192000pt;}
.w2{width:92.512000pt;}
.w16{width:94.912000pt;}
.wd{width:97.280000pt;}
.w9{width:100.512000pt;}
.wa{width:101.280000pt;}
.wc{width:110.432000pt;}
.wb{width:110.752000pt;}
.w12{width:116.352000pt;}
.w5{width:117.952000pt;}
.w10{width:142.906667pt;}
.w7{width:144.800000pt;}
.we{width:145.306667pt;}
.w17{width:156.026667pt;}
.wf{width:162.906667pt;}
.w6{width:530.213333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.272000pt;}
.x1a{left:7.200000pt;}
.x2e{left:9.120000pt;}
.x29{left:10.400000pt;}
.x4{left:11.360000pt;}
.x6{left:14.240000pt;}
.x1d{left:16.192000pt;}
.x18{left:17.472000pt;}
.x26{left:18.720000pt;}
.x17{left:20.032000pt;}
.x33{left:20.960000pt;}
.x43{left:23.520000pt;}
.x16{left:24.992000pt;}
.x1f{left:25.952000pt;}
.x2c{left:27.040000pt;}
.x28{left:29.600000pt;}
.x30{left:30.586667pt;}
.x31{left:31.840000pt;}
.x39{left:32.826667pt;}
.x37{left:34.120000pt;}
.x2f{left:35.040000pt;}
.x10{left:38.912000pt;}
.x1e{left:42.432000pt;}
.x11{left:45.152000pt;}
.xf{left:48.832000pt;}
.x20{left:50.752000pt;}
.x42{left:54.240000pt;}
.x1b{left:55.240000pt;}
.x3a{left:57.146667pt;}
.x15{left:59.706667pt;}
.x34{left:62.760000pt;}
.x13{left:63.866667pt;}
.x1{left:69.600000pt;}
.x38{left:73.480000pt;}
.x9{left:76.799988pt;}
.x14{left:79.066667pt;}
.x2{left:85.146667pt;}
.x21{left:91.386667pt;}
.x1c{left:94.906667pt;}
.x23{left:100.831988pt;}
.x24{left:103.232000pt;}
.x12{left:110.746667pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x3c{left:163.866667pt;}
.x25{left:168.026667pt;}
.x19{left:194.746667pt;}
.x32{left:215.866667pt;}
.x3d{left:223.866667pt;}
.x27{left:269.186667pt;}
.x3e{left:312.866667pt;}
.x2a{left:371.106667pt;}
.x35{left:379.426667pt;}
.x3f{left:408.413333pt;}
.x2b{left:482.493333pt;}
.xd{left:503.133322pt;}
.xa{left:519.453322pt;}
.x36{left:522.973333pt;}
.x40{left:565.093333pt;}
.xc{left:573.893322pt;}
.x2d{left:593.573333pt;}
.xb{left:608.453322pt;}
.x44{left:619.013322pt;}
.x41{left:627.973333pt;}
.x8{left:680.933322pt;}
.x3b{left:703.973322pt;}
.x7{left:710.533322pt;}
.xe{left:717.279988pt;}
}




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