
    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_8571cd5902f02e1161c9674e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.943848;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_814d879c19d429158af7cbdd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_c876703a62ff1b695709b620.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936523;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_b31986de2a40b45382f4042a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.903320;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_27a0827bac1fe8965aa8be8d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932129;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_5439d57e719a7f9d15f680c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.687988;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.800000px;}
.v1{vertical-align:41.400000px;}
.ls1{letter-spacing:-2.760420px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls4{letter-spacing:63.168000px;}
.ls6{letter-spacing:64.512000px;}
.ls2{letter-spacing:85.968000px;}
.ls5{letter-spacing:87.804000px;}
.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;}
}
.wsa{word-spacing:-26.592000px;}
.wsb{word-spacing:-20.016000px;}
.ws1{word-spacing:-19.944000px;}
.ws4{word-spacing:-18.282000px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:13.056000px;}
.wsc{word-spacing:29.640000px;}
.ws6{word-spacing:52.032000px;}
.ws2{word-spacing:78.294000px;}
.ws5{word-spacing:96.120000px;}
.ws9{word-spacing:251.616000px;}
.ws3{word-spacing:604.464000px;}
.ws8{word-spacing:756.312000px;}
._3e{margin-left:-2670.054000px;}
._45{margin-left:-2534.496000px;}
._3c{margin-left:-2149.482000px;}
._49{margin-left:-1859.796000px;}
._0{margin-left:-1.140000px;}
._1{width:1.068000px;}
._1b{width:2.304000px;}
._17{width:3.570000px;}
._2{width:4.572000px;}
._5{width:6.516000px;}
._18{width:7.854000px;}
._19{width:8.910000px;}
._36{width:10.026000px;}
._3a{width:11.268000px;}
._d{width:12.384000px;}
._c{width:13.680000px;}
._41{width:15.096000px;}
._3b{width:16.200000px;}
._42{width:17.280000px;}
._35{width:18.576000px;}
._38{width:21.384000px;}
._39{width:22.536000px;}
._55{width:24.192000px;}
._43{width:25.272000px;}
._44{width:26.784000px;}
._5a{width:27.816000px;}
._47{width:28.944000px;}
._48{width:30.600000px;}
._6{width:36.576000px;}
._37{width:39.456000px;}
._57{width:40.824000px;}
._58{width:42.132000px;}
._4b{width:48.024000px;}
._4c{width:52.056000px;}
._59{width:53.352000px;}
._29{width:56.016000px;}
._34{width:62.880000px;}
._4f{width:72.072000px;}
._23{width:78.624000px;}
._16{width:96.468000px;}
._4d{width:102.600000px;}
._4e{width:103.608000px;}
._27{width:115.992000px;}
._32{width:124.728000px;}
._50{width:126.552000px;}
._10{width:140.580000px;}
._52{width:161.220000px;}
._1e{width:179.868000px;}
._13{width:186.120000px;}
._15{width:213.726000px;}
._21{width:237.990000px;}
._1d{width:256.926000px;}
._12{width:267.456000px;}
._11{width:268.524000px;}
._22{width:274.134000px;}
._14{width:283.578000px;}
._51{width:290.736000px;}
._54{width:333.084000px;}
._a{width:359.400000px;}
._1c{width:367.314000px;}
._1f{width:381.402000px;}
._7{width:398.280000px;}
._f{width:479.280000px;}
._3{width:490.368000px;}
._31{width:492.288000px;}
._8{width:502.320000px;}
._56{width:512.976000px;}
._9{width:515.424000px;}
._b{width:539.472000px;}
._20{width:575.094000px;}
._2a{width:628.068000px;}
._4{width:638.472000px;}
._1a{width:640.326000px;}
._2d{width:732.252000px;}
._53{width:787.080000px;}
._e{width:851.448000px;}
._30{width:1197.528000px;}
._25{width:1384.176000px;}
._2f{width:1431.024000px;}
._26{width:1650.672000px;}
._2e{width:1675.884000px;}
._28{width:1711.176000px;}
._2b{width:1715.484000px;}
._4a{width:1821.960000px;}
._24{width:1847.952000px;}
._2c{width:1987.152000px;}
._3d{width:2112.408000px;}
._33{width:2124.984000px;}
._46{width:2497.608000px;}
._3f{width:2633.760000px;}
._40{width:2635.530000px;}
.fc5{color:rgb(7,62,135);}
.fc3{color:transparent;}
.fc7{color:rgb(127,127,127);}
.fc6{color:rgb(1,52,75);}
.fc4{color:rgb(38,38,38);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(243,149,120);}
.fs3{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:69.000000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:96.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y6{bottom:96.541500px;}
.y5{bottom:113.791500px;}
.y60{bottom:138.841500px;}
.y170{bottom:140.341500px;}
.y5f{bottom:159.541500px;}
.y2a{bottom:160.141500px;}
.y157{bottom:160.291500px;}
.y134{bottom:161.341500px;}
.y83{bottom:169.741500px;}
.y16f{bottom:170.791500px;}
.yee{bottom:173.341500px;}
.y5e{bottom:180.241500px;}
.y156{bottom:180.991500px;}
.ya6{bottom:182.641500px;}
.yed{bottom:183.691500px;}
.y82{bottom:190.441500px;}
.y29{bottom:197.491500px;}
.y16e{bottom:197.941500px;}
.y5d{bottom:200.941500px;}
.y155{bottom:201.691500px;}
.y133{bottom:202.741500px;}
.ya5{bottom:203.341500px;}
.y81{bottom:211.141500px;}
.y10c{bottom:211.291500px;}
.y5c{bottom:221.641500px;}
.y132{bottom:223.441500px;}
.ya4{bottom:224.041500px;}
.yec{bottom:224.491500px;}
.y80{bottom:231.841500px;}
.y16d{bottom:234.841500px;}
.y5b{bottom:242.341500px;}
.y154{bottom:243.091500px;}
.y131{bottom:244.141500px;}
.ya3{bottom:244.741500px;}
.y7f{bottom:252.541500px;}
.y10b{bottom:252.691500px;}
.ye9{bottom:254.941500px;}
.y5a{bottom:263.041500px;}
.y153{bottom:263.791500px;}
.yeb{bottom:265.291500px;}
.y7e{bottom:273.241500px;}
.y10a{bottom:273.391500px;}
.yc2{bottom:275.491500px;}
.ye8{bottom:275.641500px;}
.y59{bottom:283.741500px;}
.y152{bottom:284.491500px;}
.y130{bottom:285.541500px;}
.yea{bottom:285.991500px;}
.y7d{bottom:293.941500px;}
.y109{bottom:294.091500px;}
.yc1{bottom:296.191500px;}
.ye7{bottom:296.341500px;}
.ya2{bottom:299.791500px;}
.y58{bottom:304.441500px;}
.y12f{bottom:306.241500px;}
.y4{bottom:310.291500px;}
.yc0{bottom:316.891500px;}
.ya1{bottom:320.491500px;}
.y151{bottom:325.891500px;}
.ye5{bottom:326.791500px;}
.y12e{bottom:326.941500px;}
.y16c{bottom:327.391500px;}
.ye1{bottom:329.041500px;}
.y28{bottom:330.841500px;}
.y7c{bottom:332.641500px;}
.ya0{bottom:341.191500px;}
.y3{bottom:341.341500px;}
.y57{bottom:343.141500px;}
.y108{bottom:344.491500px;}
.y150{bottom:346.591500px;}
.ye4{bottom:347.491500px;}
.y12d{bottom:347.641500px;}
.y16b{bottom:348.091500px;}
.ye0{bottom:349.741500px;}
.y27{bottom:349.891500px;}
.ybf{bottom:358.291500px;}
.ye6{bottom:360.091500px;}
.y9f{bottom:361.891500px;}
.y38{bottom:364.141500px;}
.y14f{bottom:367.291500px;}
.ye3{bottom:368.191500px;}
.y12c{bottom:368.341500px;}
.y26{bottom:369.541500px;}
.ydf{bottom:370.441500px;}
.y107{bottom:374.941500px;}
.ybe{bottom:378.991500px;}
.y9e{bottom:382.591500px;}
.y37{bottom:384.841500px;}
.y14e{bottom:387.991500px;}
.y12b{bottom:389.041500px;}
.y25{bottom:389.341500px;}
.yde{bottom:391.141500px;}
.y7b{bottom:392.041500px;}
.ye2{bottom:393.391500px;}
.y106{bottom:395.641500px;}
.y16a{bottom:395.941500px;}
.ybd{bottom:399.691500px;}
.y56{bottom:402.541500px;}
.y9d{bottom:403.291500px;}
.y36{bottom:405.541500px;}
.y24{bottom:408.241500px;}
.y14d{bottom:408.691500px;}
.y2{bottom:409.291500px;}
.y12a{bottom:409.741500px;}
.y7a{bottom:412.741500px;}
.y103{bottom:416.341500px;}
.ybc{bottom:420.391500px;}
.ydd{bottom:423.841500px;}
.y9c{bottom:423.991500px;}
.y35{bottom:426.241500px;}
.y23{bottom:428.041500px;}
.y14c{bottom:429.391500px;}
.y169{bottom:432.841500px;}
.y79{bottom:433.441500px;}
.y105{bottom:437.041500px;}
.ybb{bottom:441.091500px;}
.y55{bottom:443.941500px;}
.y22{bottom:446.941500px;}
.ydc{bottom:449.041500px;}
.y14b{bottom:450.091500px;}
.y129{bottom:451.141500px;}
.y78{bottom:454.741500px;}
.y104{bottom:457.741500px;}
.yd8{bottom:461.641500px;}
.yba{bottom:461.791500px;}
.y21{bottom:466.741500px;}
.y168{bottom:469.741500px;}
.y128{bottom:471.841500px;}
.ydb{bottom:474.241500px;}
.y9b{bottom:479.041500px;}
.y102{bottom:479.191500px;}
.yd7{bottom:482.341500px;}
.y20{bottom:486.391500px;}
.y14a{bottom:491.491500px;}
.y127{bottom:492.541500px;}
.yda{bottom:499.441500px;}
.y9a{bottom:499.741500px;}
.y101{bottom:499.891500px;}
.y167{bottom:500.191500px;}
.yb9{bottom:503.791500px;}
.y77{bottom:510.391500px;}
.y126{bottom:513.241500px;}
.yd9{bottom:520.141500px;}
.y99{bottom:520.441500px;}
.y166{bottom:520.891500px;}
.y100{bottom:521.941500px;}
.yb8{bottom:525.841500px;}
.y1f{bottom:526.141500px;}
.y76{bottom:531.091500px;}
.y149{bottom:532.891500px;}
.y125{bottom:533.941500px;}
.y98{bottom:541.141500px;}
.y165{bottom:541.591500px;}
.yb7{bottom:547.741500px;}
.yd6{bottom:550.591500px;}
.y75{bottom:551.791500px;}
.y148{bottom:553.591500px;}
.y124{bottom:554.641500px;}
.y97{bottom:561.841500px;}
.yd2{bottom:563.191500px;}
.yff{bottom:564.541500px;}
.yd5{bottom:571.291500px;}
.y74{bottom:572.491500px;}
.y1e{bottom:573.391500px;}
.y34{bottom:574.141500px;}
.y147{bottom:574.291500px;}
.y123{bottom:575.341500px;}
.y96{bottom:582.541500px;}
.y164{bottom:582.991500px;}
.yd1{bottom:583.891500px;}
.yfe{bottom:585.241500px;}
.yb6{bottom:589.741500px;}
.yd4{bottom:591.991500px;}
.y73{bottom:593.191500px;}
.y146{bottom:594.991500px;}
.y1d{bottom:600.691500px;}
.y163{bottom:603.691500px;}
.yd0{bottom:604.591500px;}
.yb5{bottom:610.441500px;}
.y72{bottom:614.641500px;}
.y145{bottom:615.691500px;}
.y122{bottom:616.741500px;}
.yd3{bottom:617.191500px;}
.yfd{bottom:624.091500px;}
.y162{bottom:624.391500px;}
.y95{bottom:625.591500px;}
.y33{bottom:626.641500px;}
.y1c{bottom:627.991500px;}
.y144{bottom:636.391500px;}
.y94{bottom:646.291500px;}
.y32{bottom:647.341500px;}
.yfc{bottom:647.791500px;}
.yb4{bottom:649.141500px;}
.y1b{bottom:655.291500px;}
.y143{bottom:657.091500px;}
.y121{bottom:658.141500px;}
.y47{bottom:663.391500px;}
.y161{bottom:665.791500px;}
.y93{bottom:667.591500px;}
.y71{bottom:670.291500px;}
.yfb{bottom:671.641500px;}
.ycf{bottom:672.841500px;}
.y142{bottom:677.791500px;}
.y120{bottom:678.841500px;}
.y46{bottom:684.091500px;}
.yb3{bottom:684.841500px;}
.y1a{bottom:685.891500px;}
.y160{bottom:686.491500px;}
.y70{bottom:690.991500px;}
.yfa{bottom:695.341500px;}
.y141{bottom:698.491500px;}
.y11f{bottom:699.541500px;}
.yce{bottom:702.241500px;}
.yb2{bottom:705.541500px;}
.y15f{bottom:707.191500px;}
.y19{bottom:709.141500px;}
.y6f{bottom:711.691500px;}
.y45{bottom:715.141500px;}
.yf9{bottom:719.191500px;}
.y11e{bottom:720.241500px;}
.y92{bottom:723.241500px;}
.yb1{bottom:726.241500px;}
.y18{bottom:732.241500px;}
.y6e{bottom:732.391500px;}
.y140{bottom:739.891500px;}
.y11d{bottom:740.941500px;}
.yf8{bottom:742.891500px;}
.y91{bottom:745.591500px;}
.y15e{bottom:748.591500px;}
.y44{bottom:750.541500px;}
.ycd{bottom:751.291500px;}
.y6d{bottom:753.691500px;}
.y17{bottom:755.491500px;}
.y13f{bottom:760.591500px;}
.y11c{bottom:761.641500px;}
.yb0{bottom:767.641500px;}
.y90{bottom:767.941500px;}
.y15d{bottom:769.291500px;}
.y43{bottom:771.241500px;}
.ycc{bottom:771.991500px;}
.y16{bottom:778.591500px;}
.y13e{bottom:781.291500px;}
.yf7{bottom:781.741500px;}
.y11b{bottom:782.341500px;}
.yaf{bottom:788.341500px;}
.y8f{bottom:790.291500px;}
.y42{bottom:791.941500px;}
.y15{bottom:800.041500px;}
.y13d{bottom:801.991500px;}
.y11a{bottom:803.041500px;}
.yf6{bottom:805.741500px;}
.yae{bottom:809.041500px;}
.y6c{bottom:809.341500px;}
.ycb{bottom:810.691500px;}
.y15c{bottom:812.191500px;}
.y41{bottom:812.641500px;}
.y14{bottom:820.741500px;}
.y31{bottom:822.091500px;}
.y119{bottom:823.741500px;}
.y6b{bottom:830.041500px;}
.yf5{bottom:830.341500px;}
.y40{bottom:833.341500px;}
.y50{bottom:838.291500px;}
.y15b{bottom:839.941500px;}
.y13c{bottom:843.391500px;}
.y13{bottom:843.991500px;}
.y118{bottom:844.441500px;}
.y8e{bottom:845.341500px;}
.yad{bottom:850.441500px;}
.y6a{bottom:850.741500px;}
.y3f{bottom:854.041500px;}
.y4f{bottom:858.991500px;}
.y13b{bottom:864.091500px;}
.y117{bottom:865.141500px;}
.y8d{bottom:866.041500px;}
.y12{bottom:866.341500px;}
.yca{bottom:870.091500px;}
.y69{bottom:871.441500px;}
.yf4{bottom:872.341500px;}
.y3e{bottom:874.741500px;}
.y4e{bottom:879.691500px;}
.y13a{bottom:884.791500px;}
.y116{bottom:885.841500px;}
.y8c{bottom:886.741500px;}
.y15a{bottom:888.541500px;}
.yac{bottom:889.141500px;}
.yc9{bottom:890.791500px;}
.y68{bottom:892.891500px;}
.yf3{bottom:893.041500px;}
.y3d{bottom:895.441500px;}
.y4d{bottom:900.391500px;}
.y139{bottom:905.491500px;}
.y115{bottom:906.541500px;}
.y8b{bottom:907.441500px;}
.y11{bottom:912.541500px;}
.y30{bottom:914.341500px;}
.y176{bottom:917.791500px;}
.y4c{bottom:921.091500px;}
.y138{bottom:926.191500px;}
.y3c{bottom:926.341500px;}
.y114{bottom:927.241500px;}
.y8a{bottom:928.141500px;}
.y54{bottom:928.741500px;}
.yc8{bottom:932.191500px;}
.yf2{bottom:934.441500px;}
.y67{bottom:934.891500px;}
.y175{bottom:938.491500px;}
.y10{bottom:941.041500px;}
.y4b{bottom:941.791500px;}
.y137{bottom:946.891500px;}
.y113{bottom:947.941500px;}
.yab{bottom:948.541500px;}
.y89{bottom:948.841500px;}
.y53{bottom:949.441500px;}
.y2f{bottom:952.141500px;}
.yc7{bottom:952.891500px;}
.yf1{bottom:955.141500px;}
.y66{bottom:955.591500px;}
.yf{bottom:961.741500px;}
.y4a{bottom:962.491500px;}
.y3b{bottom:963.091500px;}
.y174{bottom:965.641500px;}
.y159{bottom:968.641500px;}
.yaa{bottom:969.241500px;}
.y88{bottom:969.541500px;}
.y52{bottom:970.141500px;}
.yc6{bottom:973.591500px;}
.yf0{bottom:975.841500px;}
.y65{bottom:976.291500px;}
.ye{bottom:982.441500px;}
.y49{bottom:983.191500px;}
.y112{bottom:989.341500px;}
.y2e{bottom:989.791500px;}
.y87{bottom:990.241500px;}
.y136{bottom:990.541500px;}
.y173{bottom:996.091500px;}
.y64{bottom:996.991500px;}
.y3a{bottom:999.691500px;}
.yd{bottom:1003.891500px;}
.ya9{bottom:1009.291500px;}
.y111{bottom:1010.041500px;}
.y86{bottom:1010.941500px;}
.yc5{bottom:1014.991500px;}
.y172{bottom:1016.791500px;}
.y63{bottom:1017.691500px;}
.yef{bottom:1018.891500px;}
.yc{bottom:1024.591500px;}
.y2d{bottom:1027.591500px;}
.y110{bottom:1030.741500px;}
.y85{bottom:1032.391500px;}
.y51{bottom:1033.891500px;}
.yc4{bottom:1035.691500px;}
.y62{bottom:1038.391500px;}
.y171{bottom:1043.941500px;}
.yb{bottom:1045.291500px;}
.y10f{bottom:1051.441500px;}
.y135{bottom:1054.141500px;}
.yc3{bottom:1056.391500px;}
.y39{bottom:1064.791500px;}
.ya{bottom:1067.791500px;}
.y10e{bottom:1072.141500px;}
.y84{bottom:1074.391500px;}
.y61{bottom:1077.091500px;}
.y48{bottom:1086.541500px;}
.y158{bottom:1092.841500px;}
.ya8{bottom:1095.091500px;}
.y2c{bottom:1096.741500px;}
.y9{bottom:1104.541500px;}
.y10d{bottom:1113.541500px;}
.ya7{bottom:1115.791500px;}
.y2b{bottom:1116.391500px;}
.y8{bottom:1177.891500px;}
.y7{bottom:1202.835000px;}
.hc{height:43.476562px;}
.h9{height:43.886719px;}
.h5{height:44.179688px;}
.hb{height:47.824219px;}
.h4{height:48.597656px;}
.ha{height:49.998047px;}
.h6{height:50.062500px;}
.he{height:52.171875px;}
.h7{height:53.015625px;}
.h10{height:53.971875px;}
.hd{height:70.687500px;}
.h8{height:86.953125px;}
.h3{height:88.359375px;}
.hf{height:94.415625px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w3{width:892.950000px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.200000px;}
.x4{left:94.050000px;}
.x12{left:99.300000px;}
.xa{left:103.200000px;}
.xd{left:112.200000px;}
.xe{left:117.150000px;}
.x16{left:118.350000px;}
.xb{left:121.200000px;}
.x1a{left:128.400000px;}
.x15{left:131.400000px;}
.x7{left:139.200000px;}
.x17{left:158.400000px;}
.x2{left:159.750000px;}
.xc{left:162.000000px;}
.xf{left:166.200000px;}
.x19{left:169.950000px;}
.x10{left:193.200000px;}
.x11{left:201.150000px;}
.x8{left:285.000000px;}
.x18{left:310.200000px;}
.x6{left:345.900000px;}
.x5{left:348.600000px;}
.x13{left:375.300000px;}
.x9{left:455.250000px;}
.x14{left:610.050000px;}
.x3{left:678.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.600000pt;}
.v1{vertical-align:36.800000pt;}
.ls1{letter-spacing:-2.453707pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls4{letter-spacing:56.149333pt;}
.ls6{letter-spacing:57.344000pt;}
.ls2{letter-spacing:76.416000pt;}
.ls5{letter-spacing:78.048000pt;}
.wsa{word-spacing:-23.637333pt;}
.wsb{word-spacing:-17.792000pt;}
.ws1{word-spacing:-17.728000pt;}
.ws4{word-spacing:-16.250667pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:11.605333pt;}
.wsc{word-spacing:26.346667pt;}
.ws6{word-spacing:46.250667pt;}
.ws2{word-spacing:69.594667pt;}
.ws5{word-spacing:85.440000pt;}
.ws9{word-spacing:223.658667pt;}
.ws3{word-spacing:537.301333pt;}
.ws8{word-spacing:672.277333pt;}
._3e{margin-left:-2373.381333pt;}
._45{margin-left:-2252.885333pt;}
._3c{margin-left:-1910.650667pt;}
._49{margin-left:-1653.152000pt;}
._0{margin-left:-1.013333pt;}
._1{width:0.949333pt;}
._1b{width:2.048000pt;}
._17{width:3.173333pt;}
._2{width:4.064000pt;}
._5{width:5.792000pt;}
._18{width:6.981333pt;}
._19{width:7.920000pt;}
._36{width:8.912000pt;}
._3a{width:10.016000pt;}
._d{width:11.008000pt;}
._c{width:12.160000pt;}
._41{width:13.418667pt;}
._3b{width:14.400000pt;}
._42{width:15.360000pt;}
._35{width:16.512000pt;}
._38{width:19.008000pt;}
._39{width:20.032000pt;}
._55{width:21.504000pt;}
._43{width:22.464000pt;}
._44{width:23.808000pt;}
._5a{width:24.725333pt;}
._47{width:25.728000pt;}
._48{width:27.200000pt;}
._6{width:32.512000pt;}
._37{width:35.072000pt;}
._57{width:36.288000pt;}
._58{width:37.450667pt;}
._4b{width:42.688000pt;}
._4c{width:46.272000pt;}
._59{width:47.424000pt;}
._29{width:49.792000pt;}
._34{width:55.893333pt;}
._4f{width:64.064000pt;}
._23{width:69.888000pt;}
._16{width:85.749333pt;}
._4d{width:91.200000pt;}
._4e{width:92.096000pt;}
._27{width:103.104000pt;}
._32{width:110.869333pt;}
._50{width:112.490667pt;}
._10{width:124.960000pt;}
._52{width:143.306667pt;}
._1e{width:159.882667pt;}
._13{width:165.440000pt;}
._15{width:189.978667pt;}
._21{width:211.546667pt;}
._1d{width:228.378667pt;}
._12{width:237.738667pt;}
._11{width:238.688000pt;}
._22{width:243.674667pt;}
._14{width:252.069333pt;}
._51{width:258.432000pt;}
._54{width:296.074667pt;}
._a{width:319.466667pt;}
._1c{width:326.501333pt;}
._1f{width:339.024000pt;}
._7{width:354.026667pt;}
._f{width:426.026667pt;}
._3{width:435.882667pt;}
._31{width:437.589333pt;}
._8{width:446.506667pt;}
._56{width:455.978667pt;}
._9{width:458.154667pt;}
._b{width:479.530667pt;}
._20{width:511.194667pt;}
._2a{width:558.282667pt;}
._4{width:567.530667pt;}
._1a{width:569.178667pt;}
._2d{width:650.890667pt;}
._53{width:699.626667pt;}
._e{width:756.842667pt;}
._30{width:1064.469333pt;}
._25{width:1230.378667pt;}
._2f{width:1272.021333pt;}
._26{width:1467.264000pt;}
._2e{width:1489.674667pt;}
._28{width:1521.045333pt;}
._2b{width:1524.874667pt;}
._4a{width:1619.520000pt;}
._24{width:1642.624000pt;}
._2c{width:1766.357333pt;}
._3d{width:1877.696000pt;}
._33{width:1888.874667pt;}
._46{width:2220.096000pt;}
._3f{width:2341.120000pt;}
._40{width:2342.693333pt;}
.fs3{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:61.333333pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:85.333333pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y6{bottom:85.814667pt;}
.y5{bottom:101.148000pt;}
.y60{bottom:123.414667pt;}
.y170{bottom:124.748000pt;}
.y5f{bottom:141.814667pt;}
.y2a{bottom:142.348000pt;}
.y157{bottom:142.481333pt;}
.y134{bottom:143.414667pt;}
.y83{bottom:150.881333pt;}
.y16f{bottom:151.814667pt;}
.yee{bottom:154.081333pt;}
.y5e{bottom:160.214667pt;}
.y156{bottom:160.881333pt;}
.ya6{bottom:162.348000pt;}
.yed{bottom:163.281333pt;}
.y82{bottom:169.281333pt;}
.y29{bottom:175.548000pt;}
.y16e{bottom:175.948000pt;}
.y5d{bottom:178.614667pt;}
.y155{bottom:179.281333pt;}
.y133{bottom:180.214667pt;}
.ya5{bottom:180.748000pt;}
.y81{bottom:187.681333pt;}
.y10c{bottom:187.814667pt;}
.y5c{bottom:197.014667pt;}
.y132{bottom:198.614667pt;}
.ya4{bottom:199.148000pt;}
.yec{bottom:199.548000pt;}
.y80{bottom:206.081333pt;}
.y16d{bottom:208.748000pt;}
.y5b{bottom:215.414667pt;}
.y154{bottom:216.081333pt;}
.y131{bottom:217.014667pt;}
.ya3{bottom:217.548000pt;}
.y7f{bottom:224.481333pt;}
.y10b{bottom:224.614667pt;}
.ye9{bottom:226.614667pt;}
.y5a{bottom:233.814667pt;}
.y153{bottom:234.481333pt;}
.yeb{bottom:235.814667pt;}
.y7e{bottom:242.881333pt;}
.y10a{bottom:243.014667pt;}
.yc2{bottom:244.881333pt;}
.ye8{bottom:245.014667pt;}
.y59{bottom:252.214667pt;}
.y152{bottom:252.881333pt;}
.y130{bottom:253.814667pt;}
.yea{bottom:254.214667pt;}
.y7d{bottom:261.281333pt;}
.y109{bottom:261.414667pt;}
.yc1{bottom:263.281333pt;}
.ye7{bottom:263.414667pt;}
.ya2{bottom:266.481333pt;}
.y58{bottom:270.614667pt;}
.y12f{bottom:272.214667pt;}
.y4{bottom:275.814667pt;}
.yc0{bottom:281.681333pt;}
.ya1{bottom:284.881333pt;}
.y151{bottom:289.681333pt;}
.ye5{bottom:290.481333pt;}
.y12e{bottom:290.614667pt;}
.y16c{bottom:291.014667pt;}
.ye1{bottom:292.481333pt;}
.y28{bottom:294.081333pt;}
.y7c{bottom:295.681333pt;}
.ya0{bottom:303.281333pt;}
.y3{bottom:303.414667pt;}
.y57{bottom:305.014667pt;}
.y108{bottom:306.214667pt;}
.y150{bottom:308.081333pt;}
.ye4{bottom:308.881333pt;}
.y12d{bottom:309.014667pt;}
.y16b{bottom:309.414667pt;}
.ye0{bottom:310.881333pt;}
.y27{bottom:311.014667pt;}
.ybf{bottom:318.481333pt;}
.ye6{bottom:320.081333pt;}
.y9f{bottom:321.681333pt;}
.y38{bottom:323.681333pt;}
.y14f{bottom:326.481333pt;}
.ye3{bottom:327.281333pt;}
.y12c{bottom:327.414667pt;}
.y26{bottom:328.481333pt;}
.ydf{bottom:329.281333pt;}
.y107{bottom:333.281333pt;}
.ybe{bottom:336.881333pt;}
.y9e{bottom:340.081333pt;}
.y37{bottom:342.081333pt;}
.y14e{bottom:344.881333pt;}
.y12b{bottom:345.814667pt;}
.y25{bottom:346.081333pt;}
.yde{bottom:347.681333pt;}
.y7b{bottom:348.481333pt;}
.ye2{bottom:349.681333pt;}
.y106{bottom:351.681333pt;}
.y16a{bottom:351.948000pt;}
.ybd{bottom:355.281333pt;}
.y56{bottom:357.814667pt;}
.y9d{bottom:358.481333pt;}
.y36{bottom:360.481333pt;}
.y24{bottom:362.881333pt;}
.y14d{bottom:363.281333pt;}
.y2{bottom:363.814667pt;}
.y12a{bottom:364.214667pt;}
.y7a{bottom:366.881333pt;}
.y103{bottom:370.081333pt;}
.ybc{bottom:373.681333pt;}
.ydd{bottom:376.748000pt;}
.y9c{bottom:376.881333pt;}
.y35{bottom:378.881333pt;}
.y23{bottom:380.481333pt;}
.y14c{bottom:381.681333pt;}
.y169{bottom:384.748000pt;}
.y79{bottom:385.281333pt;}
.y105{bottom:388.481333pt;}
.ybb{bottom:392.081333pt;}
.y55{bottom:394.614667pt;}
.y22{bottom:397.281333pt;}
.ydc{bottom:399.148000pt;}
.y14b{bottom:400.081333pt;}
.y129{bottom:401.014667pt;}
.y78{bottom:404.214667pt;}
.y104{bottom:406.881333pt;}
.yd8{bottom:410.348000pt;}
.yba{bottom:410.481333pt;}
.y21{bottom:414.881333pt;}
.y168{bottom:417.548000pt;}
.y128{bottom:419.414667pt;}
.ydb{bottom:421.548000pt;}
.y9b{bottom:425.814667pt;}
.y102{bottom:425.948000pt;}
.yd7{bottom:428.748000pt;}
.y20{bottom:432.348000pt;}
.y14a{bottom:436.881333pt;}
.y127{bottom:437.814667pt;}
.yda{bottom:443.948000pt;}
.y9a{bottom:444.214667pt;}
.y101{bottom:444.348000pt;}
.y167{bottom:444.614667pt;}
.yb9{bottom:447.814667pt;}
.y77{bottom:453.681333pt;}
.y126{bottom:456.214667pt;}
.yd9{bottom:462.348000pt;}
.y99{bottom:462.614667pt;}
.y166{bottom:463.014667pt;}
.y100{bottom:463.948000pt;}
.yb8{bottom:467.414667pt;}
.y1f{bottom:467.681333pt;}
.y76{bottom:472.081333pt;}
.y149{bottom:473.681333pt;}
.y125{bottom:474.614667pt;}
.y98{bottom:481.014667pt;}
.y165{bottom:481.414667pt;}
.yb7{bottom:486.881333pt;}
.yd6{bottom:489.414667pt;}
.y75{bottom:490.481333pt;}
.y148{bottom:492.081333pt;}
.y124{bottom:493.014667pt;}
.y97{bottom:499.414667pt;}
.yd2{bottom:500.614667pt;}
.yff{bottom:501.814667pt;}
.yd5{bottom:507.814667pt;}
.y74{bottom:508.881333pt;}
.y1e{bottom:509.681333pt;}
.y34{bottom:510.348000pt;}
.y147{bottom:510.481333pt;}
.y123{bottom:511.414667pt;}
.y96{bottom:517.814667pt;}
.y164{bottom:518.214667pt;}
.yd1{bottom:519.014667pt;}
.yfe{bottom:520.214667pt;}
.yb6{bottom:524.214667pt;}
.yd4{bottom:526.214667pt;}
.y73{bottom:527.281333pt;}
.y146{bottom:528.881333pt;}
.y1d{bottom:533.948000pt;}
.y163{bottom:536.614667pt;}
.yd0{bottom:537.414667pt;}
.yb5{bottom:542.614667pt;}
.y72{bottom:546.348000pt;}
.y145{bottom:547.281333pt;}
.y122{bottom:548.214667pt;}
.yd3{bottom:548.614667pt;}
.yfd{bottom:554.748000pt;}
.y162{bottom:555.014667pt;}
.y95{bottom:556.081333pt;}
.y33{bottom:557.014667pt;}
.y1c{bottom:558.214667pt;}
.y144{bottom:565.681333pt;}
.y94{bottom:574.481333pt;}
.y32{bottom:575.414667pt;}
.yfc{bottom:575.814667pt;}
.yb4{bottom:577.014667pt;}
.y1b{bottom:582.481333pt;}
.y143{bottom:584.081333pt;}
.y121{bottom:585.014667pt;}
.y47{bottom:589.681333pt;}
.y161{bottom:591.814667pt;}
.y93{bottom:593.414667pt;}
.y71{bottom:595.814667pt;}
.yfb{bottom:597.014667pt;}
.ycf{bottom:598.081333pt;}
.y142{bottom:602.481333pt;}
.y120{bottom:603.414667pt;}
.y46{bottom:608.081333pt;}
.yb3{bottom:608.748000pt;}
.y1a{bottom:609.681333pt;}
.y160{bottom:610.214667pt;}
.y70{bottom:614.214667pt;}
.yfa{bottom:618.081333pt;}
.y141{bottom:620.881333pt;}
.y11f{bottom:621.814667pt;}
.yce{bottom:624.214667pt;}
.yb2{bottom:627.148000pt;}
.y15f{bottom:628.614667pt;}
.y19{bottom:630.348000pt;}
.y6f{bottom:632.614667pt;}
.y45{bottom:635.681333pt;}
.yf9{bottom:639.281333pt;}
.y11e{bottom:640.214667pt;}
.y92{bottom:642.881333pt;}
.yb1{bottom:645.548000pt;}
.y18{bottom:650.881333pt;}
.y6e{bottom:651.014667pt;}
.y140{bottom:657.681333pt;}
.y11d{bottom:658.614667pt;}
.yf8{bottom:660.348000pt;}
.y91{bottom:662.748000pt;}
.y15e{bottom:665.414667pt;}
.y44{bottom:667.148000pt;}
.ycd{bottom:667.814667pt;}
.y6d{bottom:669.948000pt;}
.y17{bottom:671.548000pt;}
.y13f{bottom:676.081333pt;}
.y11c{bottom:677.014667pt;}
.yb0{bottom:682.348000pt;}
.y90{bottom:682.614667pt;}
.y15d{bottom:683.814667pt;}
.y43{bottom:685.548000pt;}
.ycc{bottom:686.214667pt;}
.y16{bottom:692.081333pt;}
.y13e{bottom:694.481333pt;}
.yf7{bottom:694.881333pt;}
.y11b{bottom:695.414667pt;}
.yaf{bottom:700.748000pt;}
.y8f{bottom:702.481333pt;}
.y42{bottom:703.948000pt;}
.y15{bottom:711.148000pt;}
.y13d{bottom:712.881333pt;}
.y11a{bottom:713.814667pt;}
.yf6{bottom:716.214667pt;}
.yae{bottom:719.148000pt;}
.y6c{bottom:719.414667pt;}
.ycb{bottom:720.614667pt;}
.y15c{bottom:721.948000pt;}
.y41{bottom:722.348000pt;}
.y14{bottom:729.548000pt;}
.y31{bottom:730.748000pt;}
.y119{bottom:732.214667pt;}
.y6b{bottom:737.814667pt;}
.yf5{bottom:738.081333pt;}
.y40{bottom:740.748000pt;}
.y50{bottom:745.148000pt;}
.y15b{bottom:746.614667pt;}
.y13c{bottom:749.681333pt;}
.y13{bottom:750.214667pt;}
.y118{bottom:750.614667pt;}
.y8e{bottom:751.414667pt;}
.yad{bottom:755.948000pt;}
.y6a{bottom:756.214667pt;}
.y3f{bottom:759.148000pt;}
.y4f{bottom:763.548000pt;}
.y13b{bottom:768.081333pt;}
.y117{bottom:769.014667pt;}
.y8d{bottom:769.814667pt;}
.y12{bottom:770.081333pt;}
.yca{bottom:773.414667pt;}
.y69{bottom:774.614667pt;}
.yf4{bottom:775.414667pt;}
.y3e{bottom:777.548000pt;}
.y4e{bottom:781.948000pt;}
.y13a{bottom:786.481333pt;}
.y116{bottom:787.414667pt;}
.y8c{bottom:788.214667pt;}
.y15a{bottom:789.814667pt;}
.yac{bottom:790.348000pt;}
.yc9{bottom:791.814667pt;}
.y68{bottom:793.681333pt;}
.yf3{bottom:793.814667pt;}
.y3d{bottom:795.948000pt;}
.y4d{bottom:800.348000pt;}
.y139{bottom:804.881333pt;}
.y115{bottom:805.814667pt;}
.y8b{bottom:806.614667pt;}
.y11{bottom:811.148000pt;}
.y30{bottom:812.748000pt;}
.y176{bottom:815.814667pt;}
.y4c{bottom:818.748000pt;}
.y138{bottom:823.281333pt;}
.y3c{bottom:823.414667pt;}
.y114{bottom:824.214667pt;}
.y8a{bottom:825.014667pt;}
.y54{bottom:825.548000pt;}
.yc8{bottom:828.614667pt;}
.yf2{bottom:830.614667pt;}
.y67{bottom:831.014667pt;}
.y175{bottom:834.214667pt;}
.y10{bottom:836.481333pt;}
.y4b{bottom:837.148000pt;}
.y137{bottom:841.681333pt;}
.y113{bottom:842.614667pt;}
.yab{bottom:843.148000pt;}
.y89{bottom:843.414667pt;}
.y53{bottom:843.948000pt;}
.y2f{bottom:846.348000pt;}
.yc7{bottom:847.014667pt;}
.yf1{bottom:849.014667pt;}
.y66{bottom:849.414667pt;}
.yf{bottom:854.881333pt;}
.y4a{bottom:855.548000pt;}
.y3b{bottom:856.081333pt;}
.y174{bottom:858.348000pt;}
.y159{bottom:861.014667pt;}
.yaa{bottom:861.548000pt;}
.y88{bottom:861.814667pt;}
.y52{bottom:862.348000pt;}
.yc6{bottom:865.414667pt;}
.yf0{bottom:867.414667pt;}
.y65{bottom:867.814667pt;}
.ye{bottom:873.281333pt;}
.y49{bottom:873.948000pt;}
.y112{bottom:879.414667pt;}
.y2e{bottom:879.814667pt;}
.y87{bottom:880.214667pt;}
.y136{bottom:880.481333pt;}
.y173{bottom:885.414667pt;}
.y64{bottom:886.214667pt;}
.y3a{bottom:888.614667pt;}
.yd{bottom:892.348000pt;}
.ya9{bottom:897.148000pt;}
.y111{bottom:897.814667pt;}
.y86{bottom:898.614667pt;}
.yc5{bottom:902.214667pt;}
.y172{bottom:903.814667pt;}
.y63{bottom:904.614667pt;}
.yef{bottom:905.681333pt;}
.yc{bottom:910.748000pt;}
.y2d{bottom:913.414667pt;}
.y110{bottom:916.214667pt;}
.y85{bottom:917.681333pt;}
.y51{bottom:919.014667pt;}
.yc4{bottom:920.614667pt;}
.y62{bottom:923.014667pt;}
.y171{bottom:927.948000pt;}
.yb{bottom:929.148000pt;}
.y10f{bottom:934.614667pt;}
.y135{bottom:937.014667pt;}
.yc3{bottom:939.014667pt;}
.y39{bottom:946.481333pt;}
.ya{bottom:949.148000pt;}
.y10e{bottom:953.014667pt;}
.y84{bottom:955.014667pt;}
.y61{bottom:957.414667pt;}
.y48{bottom:965.814667pt;}
.y158{bottom:971.414667pt;}
.ya8{bottom:973.414667pt;}
.y2c{bottom:974.881333pt;}
.y9{bottom:981.814667pt;}
.y10d{bottom:989.814667pt;}
.ya7{bottom:991.814667pt;}
.y2b{bottom:992.348000pt;}
.y8{bottom:1047.014667pt;}
.y7{bottom:1069.186667pt;}
.hc{height:38.645833pt;}
.h9{height:39.010417pt;}
.h5{height:39.270833pt;}
.hb{height:42.510417pt;}
.h4{height:43.197917pt;}
.ha{height:44.442708pt;}
.h6{height:44.500000pt;}
.he{height:46.375000pt;}
.h7{height:47.125000pt;}
.h10{height:47.975000pt;}
.hd{height:62.833333pt;}
.h8{height:77.291667pt;}
.h3{height:78.541667pt;}
.hf{height:83.925000pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w3{width:793.733333pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.733333pt;}
.x4{left:83.600000pt;}
.x12{left:88.266667pt;}
.xa{left:91.733333pt;}
.xd{left:99.733333pt;}
.xe{left:104.133333pt;}
.x16{left:105.200000pt;}
.xb{left:107.733333pt;}
.x1a{left:114.133333pt;}
.x15{left:116.800000pt;}
.x7{left:123.733333pt;}
.x17{left:140.800000pt;}
.x2{left:142.000000pt;}
.xc{left:144.000000pt;}
.xf{left:147.733333pt;}
.x19{left:151.066667pt;}
.x10{left:171.733333pt;}
.x11{left:178.800000pt;}
.x8{left:253.333333pt;}
.x18{left:275.733333pt;}
.x6{left:307.466667pt;}
.x5{left:309.866667pt;}
.x13{left:333.600000pt;}
.x9{left:404.666667pt;}
.x14{left:542.266667pt;}
.x3{left:602.666667pt;}
}




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