
    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_349475a26bedb3f312547d87.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_f2ac01e24b2ebb18ca12a91b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936000;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_3adff9fbd2008f03fa4a059f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.913000;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;}
.ls1{letter-spacing:-1.080000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1{word-spacing:-14.178000px;}
.ws66{word-spacing:-5.814000px;}
.ws20{word-spacing:-5.661000px;}
.ws1e{word-spacing:-4.539000px;}
.wse{word-spacing:-4.335000px;}
.ws21{word-spacing:-4.029000px;}
.ws22{word-spacing:-3.315000px;}
.ws52{word-spacing:-2.601000px;}
.ws1f{word-spacing:-2.040000px;}
.ws63{word-spacing:-1.989000px;}
.ws2f{word-spacing:-1.887000px;}
.wsf{word-spacing:-1.581000px;}
.ws65{word-spacing:-1.479000px;}
.ws1a{word-spacing:-1.428000px;}
.ws2b{word-spacing:-1.377000px;}
.ws16{word-spacing:-1.224000px;}
.ws11{word-spacing:-0.663000px;}
.ws3f{word-spacing:-0.561000px;}
.ws83{word-spacing:-0.306000px;}
.ws0{word-spacing:0.000000px;}
.ws25{word-spacing:0.255000px;}
.ws2a{word-spacing:0.306000px;}
.ws40{word-spacing:0.510000px;}
.ws7c{word-spacing:0.612000px;}
.ws4d{word-spacing:0.765000px;}
.ws7e{word-spacing:0.918000px;}
.ws1c{word-spacing:0.969000px;}
.ws4a{word-spacing:1.428000px;}
.ws24{word-spacing:1.479000px;}
.ws15{word-spacing:2.244000px;}
.ws9{word-spacing:2.295000px;}
.ws2d{word-spacing:2.346000px;}
.ws62{word-spacing:2.601000px;}
.ws23{word-spacing:2.703000px;}
.ws64{word-spacing:3.009000px;}
.ws17{word-spacing:3.213000px;}
.wsd{word-spacing:3.264000px;}
.ws12{word-spacing:3.366000px;}
.wsa{word-spacing:3.417000px;}
.ws4e{word-spacing:3.468000px;}
.ws51{word-spacing:4.029000px;}
.ws1d{word-spacing:4.080000px;}
.ws18{word-spacing:4.131000px;}
.ws14{word-spacing:4.182000px;}
.ws4b{word-spacing:4.386000px;}
.ws54{word-spacing:4.998000px;}
.ws76{word-spacing:5.559000px;}
.ws49{word-spacing:5.661000px;}
.ws82{word-spacing:5.865000px;}
.ws2c{word-spacing:6.120000px;}
.ws42{word-spacing:6.171000px;}
.ws7b{word-spacing:6.324000px;}
.ws47{word-spacing:6.375000px;}
.wsb{word-spacing:6.477000px;}
.ws48{word-spacing:6.732000px;}
.ws79{word-spacing:6.783000px;}
.ws74{word-spacing:6.885000px;}
.ws2e{word-spacing:6.936000px;}
.ws55{word-spacing:6.987000px;}
.ws60{word-spacing:7.089000px;}
.ws43{word-spacing:7.497000px;}
.ws8{word-spacing:7.548000px;}
.ws81{word-spacing:7.752000px;}
.ws7d{word-spacing:7.956000px;}
.wsc{word-spacing:8.670000px;}
.ws31{word-spacing:8.721000px;}
.ws27{word-spacing:9.027000px;}
.ws2{word-spacing:9.078000px;}
.ws4{word-spacing:9.282000px;}
.ws5f{word-spacing:9.435000px;}
.ws30{word-spacing:9.639000px;}
.ws19{word-spacing:9.792000px;}
.ws10{word-spacing:9.945000px;}
.ws50{word-spacing:10.047000px;}
.ws3e{word-spacing:10.200000px;}
.ws77{word-spacing:10.404000px;}
.ws46{word-spacing:11.169000px;}
.ws80{word-spacing:11.220000px;}
.ws5e{word-spacing:11.373000px;}
.ws58{word-spacing:11.679000px;}
.ws73{word-spacing:11.883000px;}
.ws39{word-spacing:11.985000px;}
.ws13{word-spacing:12.444000px;}
.ws57{word-spacing:13.413000px;}
.ws1b{word-spacing:13.515000px;}
.ws6{word-spacing:13.617000px;}
.ws7{word-spacing:13.719000px;}
.ws75{word-spacing:13.770000px;}
.ws5a{word-spacing:14.025000px;}
.ws67{word-spacing:14.178000px;}
.ws6b{word-spacing:14.637000px;}
.ws53{word-spacing:14.739000px;}
.ws78{word-spacing:15.147000px;}
.ws69{word-spacing:15.249000px;}
.ws5{word-spacing:15.300000px;}
.ws7f{word-spacing:15.912000px;}
.ws4f{word-spacing:16.371000px;}
.ws7a{word-spacing:16.473000px;}
.ws41{word-spacing:16.575000px;}
.ws70{word-spacing:17.391000px;}
.ws44{word-spacing:17.493000px;}
.ws34{word-spacing:18.156000px;}
.ws29{word-spacing:18.258000px;}
.ws5c{word-spacing:18.717000px;}
.ws5d{word-spacing:19.278000px;}
.ws26{word-spacing:19.839000px;}
.ws3{word-spacing:20.298000px;}
.ws68{word-spacing:20.757000px;}
.ws4c{word-spacing:21.012000px;}
.ws45{word-spacing:21.675000px;}
.ws56{word-spacing:21.981000px;}
.ws36{word-spacing:22.032000px;}
.ws6d{word-spacing:22.491000px;}
.ws5b{word-spacing:23.613000px;}
.ws6a{word-spacing:24.378000px;}
.ws6e{word-spacing:24.429000px;}
.ws3d{word-spacing:26.775000px;}
.ws6c{word-spacing:27.795000px;}
.ws6f{word-spacing:29.121000px;}
.ws38{word-spacing:29.733000px;}
.ws61{word-spacing:30.243000px;}
.ws59{word-spacing:32.130000px;}
.ws72{word-spacing:32.283000px;}
.ws28{word-spacing:32.793000px;}
.ws3c{word-spacing:32.844000px;}
.ws71{word-spacing:36.108000px;}
.ws3b{word-spacing:36.261000px;}
.ws3a{word-spacing:37.026000px;}
.ws32{word-spacing:37.791000px;}
.ws37{word-spacing:42.534000px;}
.ws33{word-spacing:47.481000px;}
.ws35{word-spacing:58.548000px;}
._e{margin-left:-8.619000px;}
._2{margin-left:-4.692000px;}
._1{margin-left:-2.703000px;}
._0{margin-left:-1.035300px;}
._7{width:1.626900px;}
._c{width:4.146300px;}
._6{width:9.190200px;}
._9{width:10.388700px;}
._4{width:12.607200px;}
._8{width:18.880200px;}
._a{width:20.160300px;}
._b{width:21.537300px;}
._5{width:22.608300px;}
._3{width:28.356000px;}
._d{width:48.603000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:51.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y178{bottom:12.023100px;}
.y177{bottom:42.023850px;}
.y176{bottom:57.017850px;}
.y175{bottom:72.011850px;}
.y174{bottom:87.005850px;}
.ya2{bottom:184.480800px;}
.y28{bottom:192.075300px;}
.y67{bottom:199.156050px;}
.ya1{bottom:199.474800px;}
.y27{bottom:207.069300px;}
.y66{bottom:214.150050px;}
.ya0{bottom:214.468800px;}
.y26{bottom:222.063300px;}
.y65{bottom:229.144050px;}
.y9f{bottom:229.462800px;}
.y25{bottom:237.057300px;}
.y64{bottom:244.138050px;}
.y9e{bottom:244.456800px;}
.y24{bottom:252.051300px;}
.y63{bottom:259.132050px;}
.y9d{bottom:259.450800px;}
.y23{bottom:267.045300px;}
.y62{bottom:274.126050px;}
.y9c{bottom:274.444800px;}
.y120{bottom:275.750400px;}
.y22{bottom:282.039300px;}
.y61{bottom:289.120050px;}
.y9b{bottom:289.438800px;}
.y11f{bottom:290.744400px;}
.y42{bottom:294.011550px;}
.y21{bottom:297.033300px;}
.y60{bottom:304.114050px;}
.y9a{bottom:304.432800px;}
.yda{bottom:304.996800px;}
.y11e{bottom:305.738400px;}
.y41{bottom:309.005550px;}
.y20{bottom:312.027300px;}
.y5f{bottom:319.108050px;}
.y99{bottom:319.426800px;}
.ybb{bottom:319.914300px;}
.yc2{bottom:319.927050px;}
.yd9{bottom:319.990800px;}
.y11d{bottom:320.732400px;}
.y126{bottom:320.770650px;}
.y12c{bottom:320.783400px;}
.y13f{bottom:320.859900px;}
.y40{bottom:323.999550px;}
.y1f{bottom:327.021300px;}
.y5e{bottom:334.102050px;}
.y98{bottom:334.420800px;}
.yab{bottom:334.844550px;}
.yba{bottom:334.908300px;}
.yc1{bottom:334.921050px;}
.yc8{bottom:334.933800px;}
.yd8{bottom:334.984800px;}
.ye0{bottom:335.010300px;}
.y3f{bottom:338.993550px;}
.y5d{bottom:349.096050px;}
.y97{bottom:349.414800px;}
.yaa{bottom:349.838550px;}
.y11c{bottom:350.733150px;}
.y125{bottom:350.771400px;}
.y137{bottom:350.835150px;}
.y3e{bottom:353.987550px;}
.y1e{bottom:357.022050px;}
.y5c{bottom:364.090050px;}
.y96{bottom:364.408800px;}
.ya9{bottom:364.832550px;}
.yb9{bottom:364.909050px;}
.yd7{bottom:364.985550px;}
.yf4{bottom:365.727150px;}
.y124{bottom:365.765400px;}
.y16d{bottom:365.794800px;}
.y136{bottom:365.829150px;}
.y3d{bottom:368.981550px;}
.y1d{bottom:372.016050px;}
.y5{bottom:378.691050px;}
.y5b{bottom:379.084050px;}
.ya8{bottom:379.826550px;}
.y156{bottom:379.883550px;}
.yb8{bottom:379.903050px;}
.yc0{bottom:379.915800px;}
.yc7{bottom:379.928550px;}
.yd6{bottom:379.979550px;}
.ydf{bottom:380.005050px;}
.yf3{bottom:380.721150px;}
.yfe{bottom:380.746650px;}
.y123{bottom:380.759400px;}
.y10a{bottom:380.772150px;}
.y12b{bottom:380.784900px;}
.y16c{bottom:380.788800px;}
.y135{bottom:380.823150px;}
.y3c{bottom:383.975550px;}
.y1c{bottom:387.010050px;}
.y5a{bottom:394.078050px;}
.y95{bottom:394.409550px;}
.y155{bottom:394.877550px;}
.yf2{bottom:395.715150px;}
.yfd{bottom:395.740650px;}
.y104{bottom:395.753400px;}
.y109{bottom:395.766150px;}
.y110{bottom:395.778900px;}
.y16b{bottom:395.782800px;}
.y13e{bottom:395.855400px;}
.y1b{bottom:402.004050px;}
.y4{bottom:407.203050px;}
.y59{bottom:409.072050px;}
.y94{bottom:409.403550px;}
.y154{bottom:409.871550px;}
.y15e{bottom:409.897050px;}
.y11b{bottom:410.721900px;}
.y164{bottom:410.751300px;}
.y16a{bottom:410.776800px;}
.y173{bottom:410.789550px;}
.y3b{bottom:412.471800px;}
.y1a{bottom:416.998050px;}
.y58{bottom:424.066050px;}
.y93{bottom:424.397550px;}
.y113{bottom:425.677650px;}
.y11a{bottom:425.715900px;}
.y108{bottom:425.766900px;}
.y134{bottom:425.817900px;}
.y3a{bottom:428.970300px;}
.y19{bottom:431.992050px;}
.y92{bottom:439.391550px;}
.y153{bottom:439.872300px;}
.y112{bottom:440.671650px;}
.y119{bottom:440.709900px;}
.y107{bottom:440.760900px;}
.y12a{bottom:440.786400px;}
.y133{bottom:440.811900px;}
.y13d{bottom:440.850150px;}
.y39{bottom:443.964300px;}
.y18{bottom:446.986050px;}
.y57{bottom:454.066800px;}
.y91{bottom:454.385550px;}
.y145{bottom:454.828050px;}
.y152{bottom:454.866300px;}
.yfc{bottom:455.742150px;}
.y169{bottom:455.771550px;}
.y38{bottom:458.958300px;}
.y17{bottom:461.980050px;}
.y56{bottom:469.060800px;}
.y90{bottom:469.379550px;}
.y144{bottom:469.822050px;}
.y151{bottom:469.860300px;}
.y15d{bottom:469.898550px;}
.yd5{bottom:469.981800px;}
.ye5{bottom:470.672400px;}
.yf1{bottom:470.710650px;}
.yfb{bottom:470.736150px;}
.y163{bottom:470.752800px;}
.y106{bottom:470.761650px;}
.y168{bottom:470.765550px;}
.y172{bottom:470.791050px;}
.y37{bottom:473.952300px;}
.y16{bottom:476.974050px;}
.y55{bottom:484.054800px;}
.y8f{bottom:484.373550px;}
.yd4{bottom:484.975800px;}
.ye4{bottom:485.666400px;}
.yf0{bottom:485.704650px;}
.yfa{bottom:485.730150px;}
.y103{bottom:485.755650px;}
.y10f{bottom:485.781150px;}
.y15{bottom:491.968050px;}
.y3{bottom:492.712050px;}
.y36{bottom:494.951550px;}
.y54{bottom:499.048800px;}
.y8e{bottom:499.367550px;}
.yd3{bottom:499.969800px;}
.y14{bottom:506.962050px;}
.y35{bottom:509.945550px;}
.y53{bottom:514.042800px;}
.y8d{bottom:514.361550px;}
.yb7{bottom:514.900050px;}
.y2{bottom:521.224050px;}
.y13{bottom:521.956050px;}
.y34{bottom:524.939550px;}
.y52{bottom:529.036800px;}
.y8c{bottom:529.355550px;}
.yb6{bottom:529.894050px;}
.yd2{bottom:529.970550px;}
.y118{bottom:530.712150px;}
.y12{bottom:536.950050px;}
.y33{bottom:539.933550px;}
.y51{bottom:544.030800px;}
.yb5{bottom:544.888050px;}
.ybf{bottom:544.913550px;}
.yc6{bottom:544.926300px;}
.yd1{bottom:544.964550px;}
.yde{bottom:545.002800px;}
.y117{bottom:545.706150px;}
.y1{bottom:549.736050px;}
.y11{bottom:551.944050px;}
.y32{bottom:554.927550px;}
.y50{bottom:559.024800px;}
.y8b{bottom:559.356300px;}
.y150{bottom:559.862550px;}
.y116{bottom:560.700150px;}
.y129{bottom:560.789400px;}
.y13c{bottom:560.853150px;}
.y10{bottom:566.938050px;}
.y4f{bottom:574.018800px;}
.y74{bottom:574.222800px;}
.y8a{bottom:574.350300px;}
.y14f{bottom:574.856550px;}
.yb4{bottom:574.888800px;}
.y15c{bottom:574.894800px;}
.yef{bottom:575.706900px;}
.y31{bottom:575.926800px;}
.yf{bottom:581.932050px;}
.y4e{bottom:589.012800px;}
.y73{bottom:589.216800px;}
.y89{bottom:589.344300px;}
.y14e{bottom:589.850550px;}
.yb3{bottom:589.882800px;}
.y15b{bottom:589.888800px;}
.yd0{bottom:589.959300px;}
.yee{bottom:590.700900px;}
.yf9{bottom:590.726400px;}
.y102{bottom:590.751900px;}
.y162{bottom:590.755800px;}
.y167{bottom:590.768550px;}
.y10e{bottom:590.777400px;}
.y171{bottom:590.794050px;}
.y30{bottom:590.920800px;}
.y4d{bottom:604.006800px;}
.y72{bottom:604.210800px;}
.y88{bottom:604.338300px;}
.yb2{bottom:604.876800px;}
.ybe{bottom:604.915050px;}
.yc5{bottom:604.927800px;}
.ycf{bottom:604.953300px;}
.ydd{bottom:605.004300px;}
.y115{bottom:605.694900px;}
.y128{bottom:605.784150px;}
.y13b{bottom:605.847900px;}
.y2f{bottom:605.914800px;}
.ye{bottom:611.932800px;}
.y4c{bottom:619.000800px;}
.y71{bottom:619.204800px;}
.y87{bottom:619.332300px;}
.y14d{bottom:619.851300px;}
.yed{bottom:620.701650px;}
.y2e{bottom:626.914050px;}
.yd{bottom:626.926800px;}
.y4b{bottom:633.994800px;}
.y70{bottom:634.198800px;}
.y7d{bottom:634.275300px;}
.y86{bottom:634.326300px;}
.y14c{bottom:634.845300px;}
.yce{bottom:634.954050px;}
.yec{bottom:635.695650px;}
.y122{bottom:635.759400px;}
.y132{bottom:635.810400px;}
.y2d{bottom:641.908050px;}
.yc{bottom:641.920800px;}
.y6f{bottom:649.192800px;}
.y7c{bottom:649.269300px;}
.y85{bottom:649.320300px;}
.y14b{bottom:649.839300px;}
.yb1{bottom:649.871550px;}
.y15a{bottom:649.890300px;}
.ycd{bottom:649.948050px;}
.yeb{bottom:650.689650px;}
.yf8{bottom:650.727900px;}
.y105{bottom:650.753400px;}
.y127{bottom:650.778900px;}
.y131{bottom:650.804400px;}
.y13a{bottom:650.842650px;}
.y2c{bottom:656.902050px;}
.yb{bottom:656.914800px;}
.y4a{bottom:663.995550px;}
.y6e{bottom:664.186800px;}
.y7b{bottom:664.263300px;}
.y84{bottom:664.314300px;}
.y14a{bottom:664.833300px;}
.yb0{bottom:664.865550px;}
.y159{bottom:664.884300px;}
.ycc{bottom:664.942050px;}
.yea{bottom:665.683650px;}
.yf7{bottom:665.721900px;}
.y101{bottom:665.747400px;}
.y161{bottom:665.751300px;}
.y166{bottom:665.764050px;}
.y10d{bottom:665.772900px;}
.y170{bottom:665.789550px;}
.y2b{bottom:671.896050px;}
.ya{bottom:671.908800px;}
.y49{bottom:678.989550px;}
.y6d{bottom:679.180800px;}
.y7a{bottom:679.257300px;}
.y83{bottom:679.308300px;}
.ya7{bottom:679.821300px;}
.yaf{bottom:679.859550px;}
.y114{bottom:680.690400px;}
.y2a{bottom:686.890050px;}
.y9{bottom:686.902800px;}
.y48{bottom:693.983550px;}
.y6c{bottom:694.174800px;}
.y79{bottom:694.251300px;}
.y82{bottom:694.302300px;}
.ya6{bottom:694.815300px;}
.y143{bottom:694.821300px;}
.y149{bottom:694.834050px;}
.yae{bottom:694.853550px;}
.ycb{bottom:694.942800px;}
.y111{bottom:695.671650px;}
.ye9{bottom:695.684400px;}
.y130{bottom:695.799150px;}
.y8{bottom:701.896800px;}
.y47{bottom:708.977550px;}
.y6b{bottom:709.168800px;}
.y78{bottom:709.245300px;}
.y81{bottom:709.296300px;}
.ya5{bottom:709.809300px;}
.y142{bottom:709.815300px;}
.y148{bottom:709.828050px;}
.yad{bottom:709.847550px;}
.ybd{bottom:709.911300px;}
.yc4{bottom:709.924050px;}
.yca{bottom:709.936800px;}
.ydc{bottom:710.000550px;}
.ye3{bottom:710.665650px;}
.ye8{bottom:710.678400px;}
.y121{bottom:710.754900px;}
.y165{bottom:710.758800px;}
.y12f{bottom:710.793150px;}
.y7{bottom:716.890800px;}
.y46{bottom:723.971550px;}
.y6a{bottom:724.162800px;}
.y77{bottom:724.239300px;}
.y80{bottom:724.290300px;}
.y141{bottom:724.809300px;}
.y147{bottom:724.822050px;}
.y158{bottom:724.885800px;}
.ye2{bottom:725.659650px;}
.ye7{bottom:725.672400px;}
.yf6{bottom:725.723400px;}
.y100{bottom:725.748900px;}
.y160{bottom:725.752800px;}
.y10c{bottom:725.774400px;}
.y12e{bottom:725.787150px;}
.y16f{bottom:725.791050px;}
.y139{bottom:725.838150px;}
.y6{bottom:731.884800px;}
.y45{bottom:738.965550px;}
.y69{bottom:739.156800px;}
.y76{bottom:739.233300px;}
.y7f{bottom:739.284300px;}
.ya4{bottom:739.810050px;}
.yac{bottom:739.848300px;}
.ybc{bottom:739.912050px;}
.yc3{bottom:739.924800px;}
.yc9{bottom:739.937550px;}
.ydb{bottom:740.001300px;}
.y44{bottom:753.959550px;}
.y68{bottom:754.150800px;}
.y75{bottom:754.227300px;}
.y7e{bottom:754.278300px;}
.y140{bottom:754.810050px;}
.y146{bottom:754.822800px;}
.y157{bottom:754.886550px;}
.ye1{bottom:755.660400px;}
.ye6{bottom:755.673150px;}
.yf5{bottom:755.724150px;}
.yff{bottom:755.749650px;}
.y15f{bottom:755.753550px;}
.y10b{bottom:755.775150px;}
.y12d{bottom:755.787900px;}
.y16e{bottom:755.791800px;}
.y138{bottom:755.838900px;}
.y29{bottom:843.871800px;}
.y43{bottom:854.253750px;}
.ya3{bottom:858.871800px;}
.h3{height:37.281000px;}
.h2{height:78.948000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.292000px;}
.w3{width:1258.500000px;}
.w2{width:1258.582500px;}
.x0{left:0.000000px;}
.xe{left:12.755850px;}
.x6{left:28.700850px;}
.x3{left:29.763750px;}
.x9{left:56.768250px;}
.x1{left:66.330750px;}
.xa{left:223.946250px;}
.x2{left:321.023550px;}
.xb{left:418.116000px;}
.x8{left:659.052750px;}
.x4{left:667.559100px;}
.x5{left:684.567600px;}
.xc{left:853.235250px;}
.x7{left:950.313750px;}
.xd{left:1047.405000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.960000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-12.602667pt;}
.ws66{word-spacing:-5.168000pt;}
.ws20{word-spacing:-5.032000pt;}
.ws1e{word-spacing:-4.034667pt;}
.wse{word-spacing:-3.853333pt;}
.ws21{word-spacing:-3.581333pt;}
.ws22{word-spacing:-2.946667pt;}
.ws52{word-spacing:-2.312000pt;}
.ws1f{word-spacing:-1.813333pt;}
.ws63{word-spacing:-1.768000pt;}
.ws2f{word-spacing:-1.677333pt;}
.wsf{word-spacing:-1.405333pt;}
.ws65{word-spacing:-1.314667pt;}
.ws1a{word-spacing:-1.269333pt;}
.ws2b{word-spacing:-1.224000pt;}
.ws16{word-spacing:-1.088000pt;}
.ws11{word-spacing:-0.589333pt;}
.ws3f{word-spacing:-0.498667pt;}
.ws83{word-spacing:-0.272000pt;}
.ws0{word-spacing:0.000000pt;}
.ws25{word-spacing:0.226667pt;}
.ws2a{word-spacing:0.272000pt;}
.ws40{word-spacing:0.453333pt;}
.ws7c{word-spacing:0.544000pt;}
.ws4d{word-spacing:0.680000pt;}
.ws7e{word-spacing:0.816000pt;}
.ws1c{word-spacing:0.861333pt;}
.ws4a{word-spacing:1.269333pt;}
.ws24{word-spacing:1.314667pt;}
.ws15{word-spacing:1.994667pt;}
.ws9{word-spacing:2.040000pt;}
.ws2d{word-spacing:2.085333pt;}
.ws62{word-spacing:2.312000pt;}
.ws23{word-spacing:2.402667pt;}
.ws64{word-spacing:2.674667pt;}
.ws17{word-spacing:2.856000pt;}
.wsd{word-spacing:2.901333pt;}
.ws12{word-spacing:2.992000pt;}
.wsa{word-spacing:3.037333pt;}
.ws4e{word-spacing:3.082667pt;}
.ws51{word-spacing:3.581333pt;}
.ws1d{word-spacing:3.626667pt;}
.ws18{word-spacing:3.672000pt;}
.ws14{word-spacing:3.717333pt;}
.ws4b{word-spacing:3.898667pt;}
.ws54{word-spacing:4.442667pt;}
.ws76{word-spacing:4.941333pt;}
.ws49{word-spacing:5.032000pt;}
.ws82{word-spacing:5.213333pt;}
.ws2c{word-spacing:5.440000pt;}
.ws42{word-spacing:5.485333pt;}
.ws7b{word-spacing:5.621333pt;}
.ws47{word-spacing:5.666667pt;}
.wsb{word-spacing:5.757333pt;}
.ws48{word-spacing:5.984000pt;}
.ws79{word-spacing:6.029333pt;}
.ws74{word-spacing:6.120000pt;}
.ws2e{word-spacing:6.165333pt;}
.ws55{word-spacing:6.210667pt;}
.ws60{word-spacing:6.301333pt;}
.ws43{word-spacing:6.664000pt;}
.ws8{word-spacing:6.709333pt;}
.ws81{word-spacing:6.890667pt;}
.ws7d{word-spacing:7.072000pt;}
.wsc{word-spacing:7.706667pt;}
.ws31{word-spacing:7.752000pt;}
.ws27{word-spacing:8.024000pt;}
.ws2{word-spacing:8.069333pt;}
.ws4{word-spacing:8.250667pt;}
.ws5f{word-spacing:8.386667pt;}
.ws30{word-spacing:8.568000pt;}
.ws19{word-spacing:8.704000pt;}
.ws10{word-spacing:8.840000pt;}
.ws50{word-spacing:8.930667pt;}
.ws3e{word-spacing:9.066667pt;}
.ws77{word-spacing:9.248000pt;}
.ws46{word-spacing:9.928000pt;}
.ws80{word-spacing:9.973333pt;}
.ws5e{word-spacing:10.109333pt;}
.ws58{word-spacing:10.381333pt;}
.ws73{word-spacing:10.562667pt;}
.ws39{word-spacing:10.653333pt;}
.ws13{word-spacing:11.061333pt;}
.ws57{word-spacing:11.922667pt;}
.ws1b{word-spacing:12.013333pt;}
.ws6{word-spacing:12.104000pt;}
.ws7{word-spacing:12.194667pt;}
.ws75{word-spacing:12.240000pt;}
.ws5a{word-spacing:12.466667pt;}
.ws67{word-spacing:12.602667pt;}
.ws6b{word-spacing:13.010667pt;}
.ws53{word-spacing:13.101333pt;}
.ws78{word-spacing:13.464000pt;}
.ws69{word-spacing:13.554667pt;}
.ws5{word-spacing:13.600000pt;}
.ws7f{word-spacing:14.144000pt;}
.ws4f{word-spacing:14.552000pt;}
.ws7a{word-spacing:14.642667pt;}
.ws41{word-spacing:14.733333pt;}
.ws70{word-spacing:15.458667pt;}
.ws44{word-spacing:15.549333pt;}
.ws34{word-spacing:16.138667pt;}
.ws29{word-spacing:16.229333pt;}
.ws5c{word-spacing:16.637333pt;}
.ws5d{word-spacing:17.136000pt;}
.ws26{word-spacing:17.634667pt;}
.ws3{word-spacing:18.042667pt;}
.ws68{word-spacing:18.450667pt;}
.ws4c{word-spacing:18.677333pt;}
.ws45{word-spacing:19.266667pt;}
.ws56{word-spacing:19.538667pt;}
.ws36{word-spacing:19.584000pt;}
.ws6d{word-spacing:19.992000pt;}
.ws5b{word-spacing:20.989333pt;}
.ws6a{word-spacing:21.669333pt;}
.ws6e{word-spacing:21.714667pt;}
.ws3d{word-spacing:23.800000pt;}
.ws6c{word-spacing:24.706667pt;}
.ws6f{word-spacing:25.885333pt;}
.ws38{word-spacing:26.429333pt;}
.ws61{word-spacing:26.882667pt;}
.ws59{word-spacing:28.560000pt;}
.ws72{word-spacing:28.696000pt;}
.ws28{word-spacing:29.149333pt;}
.ws3c{word-spacing:29.194667pt;}
.ws71{word-spacing:32.096000pt;}
.ws3b{word-spacing:32.232000pt;}
.ws3a{word-spacing:32.912000pt;}
.ws32{word-spacing:33.592000pt;}
.ws37{word-spacing:37.808000pt;}
.ws33{word-spacing:42.205333pt;}
.ws35{word-spacing:52.042667pt;}
._e{margin-left:-7.661333pt;}
._2{margin-left:-4.170667pt;}
._1{margin-left:-2.402667pt;}
._0{margin-left:-0.920267pt;}
._7{width:1.446133pt;}
._c{width:3.685600pt;}
._6{width:8.169067pt;}
._9{width:9.234400pt;}
._4{width:11.206400pt;}
._8{width:16.782400pt;}
._a{width:17.920267pt;}
._b{width:19.144267pt;}
._5{width:20.096267pt;}
._3{width:25.205333pt;}
._d{width:43.202667pt;}
.fs1{font-size:45.333333pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y178{bottom:10.687200pt;}
.y177{bottom:37.354533pt;}
.y176{bottom:50.682533pt;}
.y175{bottom:64.010533pt;}
.y174{bottom:77.338533pt;}
.ya2{bottom:163.982933pt;}
.y28{bottom:170.733600pt;}
.y67{bottom:177.027600pt;}
.ya1{bottom:177.310933pt;}
.y27{bottom:184.061600pt;}
.y66{bottom:190.355600pt;}
.ya0{bottom:190.638933pt;}
.y26{bottom:197.389600pt;}
.y65{bottom:203.683600pt;}
.y9f{bottom:203.966933pt;}
.y25{bottom:210.717600pt;}
.y64{bottom:217.011600pt;}
.y9e{bottom:217.294933pt;}
.y24{bottom:224.045600pt;}
.y63{bottom:230.339600pt;}
.y9d{bottom:230.622933pt;}
.y23{bottom:237.373600pt;}
.y62{bottom:243.667600pt;}
.y9c{bottom:243.950933pt;}
.y120{bottom:245.111467pt;}
.y22{bottom:250.701600pt;}
.y61{bottom:256.995600pt;}
.y9b{bottom:257.278933pt;}
.y11f{bottom:258.439467pt;}
.y42{bottom:261.343600pt;}
.y21{bottom:264.029600pt;}
.y60{bottom:270.323600pt;}
.y9a{bottom:270.606933pt;}
.yda{bottom:271.108267pt;}
.y11e{bottom:271.767467pt;}
.y41{bottom:274.671600pt;}
.y20{bottom:277.357600pt;}
.y5f{bottom:283.651600pt;}
.y99{bottom:283.934933pt;}
.ybb{bottom:284.368267pt;}
.yc2{bottom:284.379600pt;}
.yd9{bottom:284.436267pt;}
.y11d{bottom:285.095467pt;}
.y126{bottom:285.129467pt;}
.y12c{bottom:285.140800pt;}
.y13f{bottom:285.208800pt;}
.y40{bottom:287.999600pt;}
.y1f{bottom:290.685600pt;}
.y5e{bottom:296.979600pt;}
.y98{bottom:297.262933pt;}
.yab{bottom:297.639600pt;}
.yba{bottom:297.696267pt;}
.yc1{bottom:297.707600pt;}
.yc8{bottom:297.718933pt;}
.yd8{bottom:297.764267pt;}
.ye0{bottom:297.786933pt;}
.y3f{bottom:301.327600pt;}
.y5d{bottom:310.307600pt;}
.y97{bottom:310.590933pt;}
.yaa{bottom:310.967600pt;}
.y11c{bottom:311.762800pt;}
.y125{bottom:311.796800pt;}
.y137{bottom:311.853467pt;}
.y3e{bottom:314.655600pt;}
.y1e{bottom:317.352933pt;}
.y5c{bottom:323.635600pt;}
.y96{bottom:323.918933pt;}
.ya9{bottom:324.295600pt;}
.yb9{bottom:324.363600pt;}
.yd7{bottom:324.431600pt;}
.yf4{bottom:325.090800pt;}
.y124{bottom:325.124800pt;}
.y16d{bottom:325.150933pt;}
.y136{bottom:325.181467pt;}
.y3d{bottom:327.983600pt;}
.y1d{bottom:330.680933pt;}
.y5{bottom:336.614267pt;}
.y5b{bottom:336.963600pt;}
.ya8{bottom:337.623600pt;}
.y156{bottom:337.674267pt;}
.yb8{bottom:337.691600pt;}
.yc0{bottom:337.702933pt;}
.yc7{bottom:337.714267pt;}
.yd6{bottom:337.759600pt;}
.ydf{bottom:337.782267pt;}
.yf3{bottom:338.418800pt;}
.yfe{bottom:338.441467pt;}
.y123{bottom:338.452800pt;}
.y10a{bottom:338.464133pt;}
.y12b{bottom:338.475467pt;}
.y16c{bottom:338.478933pt;}
.y135{bottom:338.509467pt;}
.y3c{bottom:341.311600pt;}
.y1c{bottom:344.008933pt;}
.y5a{bottom:350.291600pt;}
.y95{bottom:350.586267pt;}
.y155{bottom:351.002267pt;}
.yf2{bottom:351.746800pt;}
.yfd{bottom:351.769467pt;}
.y104{bottom:351.780800pt;}
.y109{bottom:351.792133pt;}
.y110{bottom:351.803467pt;}
.y16b{bottom:351.806933pt;}
.y13e{bottom:351.871467pt;}
.y1b{bottom:357.336933pt;}
.y4{bottom:361.958267pt;}
.y59{bottom:363.619600pt;}
.y94{bottom:363.914267pt;}
.y154{bottom:364.330267pt;}
.y15e{bottom:364.352933pt;}
.y11b{bottom:365.086133pt;}
.y164{bottom:365.112267pt;}
.y16a{bottom:365.134933pt;}
.y173{bottom:365.146267pt;}
.y3b{bottom:366.641600pt;}
.y1a{bottom:370.664933pt;}
.y58{bottom:376.947600pt;}
.y93{bottom:377.242267pt;}
.y113{bottom:378.380133pt;}
.y11a{bottom:378.414133pt;}
.y108{bottom:378.459467pt;}
.y134{bottom:378.504800pt;}
.y3a{bottom:381.306933pt;}
.y19{bottom:383.992933pt;}
.y92{bottom:390.570267pt;}
.y153{bottom:390.997600pt;}
.y112{bottom:391.708133pt;}
.y119{bottom:391.742133pt;}
.y107{bottom:391.787467pt;}
.y12a{bottom:391.810133pt;}
.y133{bottom:391.832800pt;}
.y13d{bottom:391.866800pt;}
.y39{bottom:394.634933pt;}
.y18{bottom:397.320933pt;}
.y57{bottom:403.614933pt;}
.y91{bottom:403.898267pt;}
.y145{bottom:404.291600pt;}
.y152{bottom:404.325600pt;}
.yfc{bottom:405.104133pt;}
.y169{bottom:405.130267pt;}
.y38{bottom:407.962933pt;}
.y17{bottom:410.648933pt;}
.y56{bottom:416.942933pt;}
.y90{bottom:417.226267pt;}
.y144{bottom:417.619600pt;}
.y151{bottom:417.653600pt;}
.y15d{bottom:417.687600pt;}
.yd5{bottom:417.761600pt;}
.ye5{bottom:418.375467pt;}
.yf1{bottom:418.409467pt;}
.yfb{bottom:418.432133pt;}
.y163{bottom:418.446933pt;}
.y106{bottom:418.454800pt;}
.y168{bottom:418.458267pt;}
.y172{bottom:418.480933pt;}
.y37{bottom:421.290933pt;}
.y16{bottom:423.976933pt;}
.y55{bottom:430.270933pt;}
.y8f{bottom:430.554267pt;}
.yd4{bottom:431.089600pt;}
.ye4{bottom:431.703467pt;}
.yf0{bottom:431.737467pt;}
.yfa{bottom:431.760133pt;}
.y103{bottom:431.782800pt;}
.y10f{bottom:431.805467pt;}
.y15{bottom:437.304933pt;}
.y3{bottom:437.966267pt;}
.y36{bottom:439.956933pt;}
.y54{bottom:443.598933pt;}
.y8e{bottom:443.882267pt;}
.yd3{bottom:444.417600pt;}
.y14{bottom:450.632933pt;}
.y35{bottom:453.284933pt;}
.y53{bottom:456.926933pt;}
.y8d{bottom:457.210267pt;}
.yb7{bottom:457.688933pt;}
.y2{bottom:463.310267pt;}
.y13{bottom:463.960933pt;}
.y34{bottom:466.612933pt;}
.y52{bottom:470.254933pt;}
.y8c{bottom:470.538267pt;}
.yb6{bottom:471.016933pt;}
.yd2{bottom:471.084933pt;}
.y118{bottom:471.744133pt;}
.y12{bottom:477.288933pt;}
.y33{bottom:479.940933pt;}
.y51{bottom:483.582933pt;}
.yb5{bottom:484.344933pt;}
.ybf{bottom:484.367600pt;}
.yc6{bottom:484.378933pt;}
.yd1{bottom:484.412933pt;}
.yde{bottom:484.446933pt;}
.y117{bottom:485.072133pt;}
.y1{bottom:488.654267pt;}
.y11{bottom:490.616933pt;}
.y32{bottom:493.268933pt;}
.y50{bottom:496.910933pt;}
.y8b{bottom:497.205600pt;}
.y150{bottom:497.655600pt;}
.y116{bottom:498.400133pt;}
.y129{bottom:498.479467pt;}
.y13c{bottom:498.536133pt;}
.y10{bottom:503.944933pt;}
.y4f{bottom:510.238933pt;}
.y74{bottom:510.420267pt;}
.y8a{bottom:510.533600pt;}
.y14f{bottom:510.983600pt;}
.yb4{bottom:511.012267pt;}
.y15c{bottom:511.017600pt;}
.yef{bottom:511.739467pt;}
.y31{bottom:511.934933pt;}
.yf{bottom:517.272933pt;}
.y4e{bottom:523.566933pt;}
.y73{bottom:523.748267pt;}
.y89{bottom:523.861600pt;}
.y14e{bottom:524.311600pt;}
.yb3{bottom:524.340267pt;}
.y15b{bottom:524.345600pt;}
.yd0{bottom:524.408267pt;}
.yee{bottom:525.067467pt;}
.yf9{bottom:525.090133pt;}
.y102{bottom:525.112800pt;}
.y162{bottom:525.116267pt;}
.y167{bottom:525.127600pt;}
.y10e{bottom:525.135467pt;}
.y171{bottom:525.150267pt;}
.y30{bottom:525.262933pt;}
.y4d{bottom:536.894933pt;}
.y72{bottom:537.076267pt;}
.y88{bottom:537.189600pt;}
.yb2{bottom:537.668267pt;}
.ybe{bottom:537.702267pt;}
.yc5{bottom:537.713600pt;}
.ycf{bottom:537.736267pt;}
.ydd{bottom:537.781600pt;}
.y115{bottom:538.395467pt;}
.y128{bottom:538.474800pt;}
.y13b{bottom:538.531467pt;}
.y2f{bottom:538.590933pt;}
.ye{bottom:543.940267pt;}
.y4c{bottom:550.222933pt;}
.y71{bottom:550.404267pt;}
.y87{bottom:550.517600pt;}
.y14d{bottom:550.978933pt;}
.yed{bottom:551.734800pt;}
.y2e{bottom:557.256933pt;}
.yd{bottom:557.268267pt;}
.y4b{bottom:563.550933pt;}
.y70{bottom:563.732267pt;}
.y7d{bottom:563.800267pt;}
.y86{bottom:563.845600pt;}
.y14c{bottom:564.306933pt;}
.yce{bottom:564.403600pt;}
.yec{bottom:565.062800pt;}
.y122{bottom:565.119467pt;}
.y132{bottom:565.164800pt;}
.y2d{bottom:570.584933pt;}
.yc{bottom:570.596267pt;}
.y6f{bottom:577.060267pt;}
.y7c{bottom:577.128267pt;}
.y85{bottom:577.173600pt;}
.y14b{bottom:577.634933pt;}
.yb1{bottom:577.663600pt;}
.y15a{bottom:577.680267pt;}
.ycd{bottom:577.731600pt;}
.yeb{bottom:578.390800pt;}
.yf8{bottom:578.424800pt;}
.y105{bottom:578.447467pt;}
.y127{bottom:578.470133pt;}
.y131{bottom:578.492800pt;}
.y13a{bottom:578.526800pt;}
.y2c{bottom:583.912933pt;}
.yb{bottom:583.924267pt;}
.y4a{bottom:590.218267pt;}
.y6e{bottom:590.388267pt;}
.y7b{bottom:590.456267pt;}
.y84{bottom:590.501600pt;}
.y14a{bottom:590.962933pt;}
.yb0{bottom:590.991600pt;}
.y159{bottom:591.008267pt;}
.ycc{bottom:591.059600pt;}
.yea{bottom:591.718800pt;}
.yf7{bottom:591.752800pt;}
.y101{bottom:591.775467pt;}
.y161{bottom:591.778933pt;}
.y166{bottom:591.790267pt;}
.y10d{bottom:591.798133pt;}
.y170{bottom:591.812933pt;}
.y2b{bottom:597.240933pt;}
.ya{bottom:597.252267pt;}
.y49{bottom:603.546267pt;}
.y6d{bottom:603.716267pt;}
.y7a{bottom:603.784267pt;}
.y83{bottom:603.829600pt;}
.ya7{bottom:604.285600pt;}
.yaf{bottom:604.319600pt;}
.y114{bottom:605.058133pt;}
.y2a{bottom:610.568933pt;}
.y9{bottom:610.580267pt;}
.y48{bottom:616.874267pt;}
.y6c{bottom:617.044267pt;}
.y79{bottom:617.112267pt;}
.y82{bottom:617.157600pt;}
.ya6{bottom:617.613600pt;}
.y143{bottom:617.618933pt;}
.y149{bottom:617.630267pt;}
.yae{bottom:617.647600pt;}
.ycb{bottom:617.726933pt;}
.y111{bottom:618.374800pt;}
.ye9{bottom:618.386133pt;}
.y130{bottom:618.488133pt;}
.y8{bottom:623.908267pt;}
.y47{bottom:630.202267pt;}
.y6b{bottom:630.372267pt;}
.y78{bottom:630.440267pt;}
.y81{bottom:630.485600pt;}
.ya5{bottom:630.941600pt;}
.y142{bottom:630.946933pt;}
.y148{bottom:630.958267pt;}
.yad{bottom:630.975600pt;}
.ybd{bottom:631.032267pt;}
.yc4{bottom:631.043600pt;}
.yca{bottom:631.054933pt;}
.ydc{bottom:631.111600pt;}
.ye3{bottom:631.702800pt;}
.ye8{bottom:631.714133pt;}
.y121{bottom:631.782133pt;}
.y165{bottom:631.785600pt;}
.y12f{bottom:631.816133pt;}
.y7{bottom:637.236267pt;}
.y46{bottom:643.530267pt;}
.y6a{bottom:643.700267pt;}
.y77{bottom:643.768267pt;}
.y80{bottom:643.813600pt;}
.y141{bottom:644.274933pt;}
.y147{bottom:644.286267pt;}
.y158{bottom:644.342933pt;}
.ye2{bottom:645.030800pt;}
.ye7{bottom:645.042133pt;}
.yf6{bottom:645.087467pt;}
.y100{bottom:645.110133pt;}
.y160{bottom:645.113600pt;}
.y10c{bottom:645.132800pt;}
.y12e{bottom:645.144133pt;}
.y16f{bottom:645.147600pt;}
.y139{bottom:645.189467pt;}
.y6{bottom:650.564267pt;}
.y45{bottom:656.858267pt;}
.y69{bottom:657.028267pt;}
.y76{bottom:657.096267pt;}
.y7f{bottom:657.141600pt;}
.ya4{bottom:657.608933pt;}
.yac{bottom:657.642933pt;}
.ybc{bottom:657.699600pt;}
.yc3{bottom:657.710933pt;}
.yc9{bottom:657.722267pt;}
.ydb{bottom:657.778933pt;}
.y44{bottom:670.186267pt;}
.y68{bottom:670.356267pt;}
.y75{bottom:670.424267pt;}
.y7e{bottom:670.469600pt;}
.y140{bottom:670.942267pt;}
.y146{bottom:670.953600pt;}
.y157{bottom:671.010267pt;}
.ye1{bottom:671.698133pt;}
.ye6{bottom:671.709467pt;}
.yf5{bottom:671.754800pt;}
.yff{bottom:671.777467pt;}
.y15f{bottom:671.780933pt;}
.y10b{bottom:671.800133pt;}
.y12d{bottom:671.811467pt;}
.y16e{bottom:671.814933pt;}
.y138{bottom:671.856800pt;}
.y29{bottom:750.108267pt;}
.y43{bottom:759.336667pt;}
.ya3{bottom:763.441600pt;}
.h3{height:33.138667pt;}
.h2{height:70.176000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.370667pt;}
.w3{width:1118.666667pt;}
.w2{width:1118.740000pt;}
.x0{left:0.000000pt;}
.xe{left:11.338533pt;}
.x6{left:25.511867pt;}
.x3{left:26.456667pt;}
.x9{left:50.460667pt;}
.x1{left:58.960667pt;}
.xa{left:199.063333pt;}
.x2{left:285.354267pt;}
.xb{left:371.658667pt;}
.x8{left:585.824667pt;}
.x4{left:593.385867pt;}
.x5{left:608.504533pt;}
.xc{left:758.431333pt;}
.x7{left:844.723333pt;}
.xd{left:931.026667pt;}
}




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