
    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_315a538231991b1419820a59.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cb3f5d2ed6e0707748b21e10.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_85d40b072cf13d3c67f8d307.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1decbbe3d4134a0eb08443b4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740723;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_9a63416af05cbc771342fecb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5cf2d9e376503fc0537ef567.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_e0f784291199003359d806fe.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_74ec327a3a1610abc9a7043d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3fd3bca8501fe289347a142f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5d208cc99c411b12dbbf5840.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v1{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls9{letter-spacing:-1.176000px;}
.ls7{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.109200px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.149760px;}
.lsb{letter-spacing:0.262200px;}
.ls4{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls5{letter-spacing:16.865280px;}
.lsa{letter-spacing:26.225280px;}
.ls6{letter-spacing:41.130720px;}
.ls8{letter-spacing:45.504000px;}
.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;}
}
.ws2{word-spacing:-66.240000px;}
.ws7{word-spacing:-59.760000px;}
.ws0{word-spacing:-18.305520px;}
.ws4{word-spacing:-16.865400px;}
.wsa{word-spacing:-16.822200px;}
.wsb{word-spacing:-16.669200px;}
.ws5{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.384000px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-0.066240px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-4.335840px;}
._4{margin-left:-2.354400px;}
._0{margin-left:-1.045440px;}
._3{width:1.049760px;}
._1{width:2.112720px;}
._9{width:3.421440px;}
._d{width:4.426560px;}
._6{width:5.461920px;}
._5{width:6.593760px;}
._8{width:8.206560px;}
._7{width:9.516960px;}
._c{width:10.723680px;}
._a{width:11.959200px;}
._b{width:13.076640px;}
._f{width:14.904000px;}
._e{width:18.613440px;}
._10{width:19.673280px;}
._19{width:20.733120px;}
._13{width:22.750080px;}
._12{width:23.780160px;}
._1a{width:25.142400px;}
._14{width:26.614080px;}
._15{width:27.660960px;}
._11{width:30.072960px;}
._18{width:34.711200px;}
._17{width:36.133920px;}
._16{width:45.360000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:87.120000px;}
.y0{bottom:0.000000px;}
.y69{bottom:3.420000px;}
.yb7{bottom:3.585000px;}
.y9b{bottom:3.600000px;}
.ybb{bottom:3.765000px;}
.y6b{bottom:3.780000px;}
.y9f{bottom:3.960000px;}
.y9d{bottom:4.140000px;}
.y6{bottom:7.200000px;}
.y70{bottom:20.700000px;}
.y71{bottom:21.060000px;}
.y4{bottom:43.200000px;}
.yc6{bottom:68.940000px;}
.y139{bottom:69.660000px;}
.y6f{bottom:74.340000px;}
.yed{bottom:79.560000px;}
.y99{bottom:80.460000px;}
.y39{bottom:82.080000px;}
.y114{bottom:87.660000px;}
.yc5{bottom:97.020000px;}
.y138{bottom:97.560000px;}
.yec{bottom:98.460000px;}
.y98{bottom:99.540000px;}
.y6e{bottom:109.620000px;}
.y38{bottom:110.700000px;}
.y113{bottom:115.560000px;}
.yeb{bottom:117.180000px;}
.y97{bottom:118.440000px;}
.yc4{bottom:124.920000px;}
.y137{bottom:125.460000px;}
.y6d{bottom:127.620000px;}
.y37{bottom:129.600000px;}
.yc3{bottom:143.460000px;}
.yea{bottom:145.440000px;}
.y6c{bottom:145.620000px;}
.y96{bottom:146.520000px;}
.y36{bottom:148.680000px;}
.y15c{bottom:149.580000px;}
.y136{bottom:153.540000px;}
.y6a{bottom:163.620000px;}
.ye9{bottom:164.520000px;}
.y35{bottom:167.580000px;}
.yc2{bottom:171.540000px;}
.y95{bottom:174.420000px;}
.y15b{bottom:178.380000px;}
.y135{bottom:181.440000px;}
.y68{bottom:181.620000px;}
.ye8{bottom:183.060000px;}
.y112{bottom:190.080000px;}
.y34{bottom:195.660000px;}
.yc1{bottom:199.800000px;}
.y94{bottom:202.320000px;}
.y15a{bottom:206.310000px;}
.y134{bottom:209.550000px;}
.ye7{bottom:211.350000px;}
.y67{bottom:212.610000px;}
.y33{bottom:214.590000px;}
.y111{bottom:218.190000px;}
.y93{bottom:221.070000px;}
.yc0{bottom:227.910000px;}
.y133{bottom:228.090000px;}
.ye6{bottom:230.430000px;}
.y66{bottom:231.690000px;}
.y32{bottom:233.490000px;}
.y159{bottom:234.210000px;}
.y110{bottom:246.450000px;}
.ye5{bottom:248.970000px;}
.y92{bottom:249.330000px;}
.y65{bottom:250.590000px;}
.y31{bottom:252.570000px;}
.ybf{bottom:255.810000px;}
.y132{bottom:256.350000px;}
.y158{bottom:262.290000px;}
.y10f{bottom:265.350000px;}
.y91{bottom:268.410000px;}
.y64{bottom:269.490000px;}
.y30{bottom:271.470000px;}
.y131{bottom:275.430000px;}
.ye4{bottom:277.410000px;}
.ybe{bottom:283.710000px;}
.y10e{bottom:284.070000px;}
.y63{bottom:288.570000px;}
.y157{bottom:290.190000px;}
.y130{bottom:294.330000px;}
.y90{bottom:296.310000px;}
.y2f{bottom:299.550000px;}
.ybd{bottom:302.430000px;}
.y62{bottom:307.470000px;}
.y10d{bottom:312.330000px;}
.ye3{bottom:315.210000px;}
.y156{bottom:318.270000px;}
.y2e{bottom:318.450000px;}
.y12f{bottom:322.410000px;}
.y8f{bottom:324.210000px;}
.y61{bottom:326.550000px;}
.ybc{bottom:330.885000px;}
.ye2{bottom:333.930000px;}
.y2d{bottom:337.350000px;}
.y10c{bottom:340.410000px;}
.y12e{bottom:341.310000px;}
.y60{bottom:345.450000px;}
.y155{bottom:346.170000px;}
.y8e{bottom:352.290000px;}
.yba{bottom:355.005000px;}
.y2c{bottom:356.430000px;}
.ye1{bottom:362.190000px;}
.y5f{bottom:364.350000px;}
.y10b{bottom:368.310000px;}
.y12d{bottom:369.210000px;}
.y8d{bottom:370.830000px;}
.y154{bottom:374.070000px;}
.y2b{bottom:375.330000px;}
.yb9{bottom:379.305000px;}
.ye0{bottom:381.270000px;}
.y5e{bottom:383.430000px;}
.y12c{bottom:388.290000px;}
.y2a{bottom:394.410000px;}
.y10a{bottom:396.210000px;}
.y8c{bottom:399.270000px;}
.ydf{bottom:400.170000px;}
.y153{bottom:402.150000px;}
.y5d{bottom:402.330000px;}
.yb8{bottom:403.605000px;}
.y12b{bottom:407.190000px;}
.y8b{bottom:418.170000px;}
.yde{bottom:418.710000px;}
.y5c{bottom:421.410000px;}
.y29{bottom:422.310000px;}
.y109{bottom:424.290000px;}
.y12a{bottom:426.270000px;}
.yb6{bottom:427.725000px;}
.y152{bottom:430.050000px;}
.y8a{bottom:436.710000px;}
.y5b{bottom:439.950000px;}
.y28{bottom:441.255000px;}
.y108{bottom:442.875000px;}
.ydd{bottom:447.195000px;}
.y129{bottom:454.215000px;}
.y151{bottom:458.175000px;}
.y27{bottom:460.335000px;}
.yb5{bottom:463.575000px;}
.y89{bottom:464.835000px;}
.ydc{bottom:466.095000px;}
.y5a{bottom:468.255000px;}
.y107{bottom:470.955000px;}
.y128{bottom:473.115000px;}
.y26{bottom:479.235000px;}
.ydb{bottom:484.815000px;}
.y150{bottom:486.075000px;}
.y59{bottom:487.335000px;}
.yb4{bottom:491.835000px;}
.y127{bottom:492.195000px;}
.y88{bottom:493.095000px;}
.y25{bottom:498.315000px;}
.y106{bottom:499.215000px;}
.y58{bottom:506.235000px;}
.yda{bottom:513.075000px;}
.y14f{bottom:514.155000px;}
.y24{bottom:517.215000px;}
.y105{bottom:518.115000px;}
.yb3{bottom:519.915000px;}
.y126{bottom:520.095000px;}
.y87{bottom:521.175000px;}
.y57{bottom:525.315000px;}
.yd9{bottom:532.155000px;}
.y23{bottom:536.115000px;}
.y104{bottom:536.835000px;}
.y125{bottom:539.175000px;}
.y14e{bottom:542.055000px;}
.y56{bottom:544.215000px;}
.yb2{bottom:547.815000px;}
.y86{bottom:549.075000px;}
.yd8{bottom:560.055000px;}
.y22{bottom:564.195000px;}
.y103{bottom:565.095000px;}
.y124{bottom:567.075000px;}
.y14d{bottom:569.955000px;}
.y55{bottom:572.115000px;}
.yb1{bottom:575.715000px;}
.y85{bottom:577.155000px;}
.y21{bottom:583.095000px;}
.y102{bottom:584.175000px;}
.y123{bottom:586.155000px;}
.yd7{bottom:587.955000px;}
.y54{bottom:591.195000px;}
.yb0{bottom:594.435000px;}
.y14c{bottom:598.035000px;}
.y20{bottom:602.175000px;}
.y101{bottom:602.715000px;}
.y84{bottom:605.055000px;}
.y53{bottom:610.095000px;}
.y122{bottom:614.055000px;}
.yd6{bottom:616.035000px;}
.y1f{bottom:621.075000px;}
.yaf{bottom:622.875000px;}
.y14b{bottom:625.935000px;}
.y52{bottom:629.175000px;}
.y100{bottom:631.155000px;}
.y83{bottom:632.955000px;}
.y1e{bottom:640.155000px;}
.yd5{bottom:643.935000px;}
.yae{bottom:646.995000px;}
.yff{bottom:650.055000px;}
.y121{bottom:652.035000px;}
.y14a{bottom:654.015000px;}
.y51{bottom:657.075000px;}
.y1d{bottom:659.055000px;}
.y82{bottom:661.035000px;}
.yd4{bottom:662.655000px;}
.yfe{bottom:668.955000px;}
.y120{bottom:670.935000px;}
.yad{bottom:671.295000px;}
.y50{bottom:676.185000px;}
.y1c{bottom:677.985000px;}
.y149{bottom:681.945000px;}
.yfd{bottom:687.705000px;}
.y81{bottom:688.965000px;}
.y11f{bottom:689.685000px;}
.yd3{bottom:690.945000px;}
.y4f{bottom:695.085000px;}
.yac{bottom:695.445000px;}
.y1b{bottom:696.705000px;}
.y80{bottom:708.045000px;}
.y148{bottom:709.845000px;}
.y4e{bottom:713.985000px;}
.yfc{bottom:715.965000px;}
.y11e{bottom:717.945000px;}
.yd2{bottom:718.485000px;}
.yab{bottom:719.745000px;}
.y4d{bottom:733.065000px;}
.y1a{bottom:733.965000px;}
.yfb{bottom:735.045000px;}
.y7f{bottom:735.945000px;}
.y147{bottom:737.925000px;}
.yaa{bottom:744.045000px;}
.y11d{bottom:745.845000px;}
.yd1{bottom:746.565000px;}
.y19{bottom:753.045000px;}
.yfa{bottom:753.585000px;}
.y7e{bottom:754.845000px;}
.y4c{bottom:760.965000px;}
.y146{bottom:765.825000px;}
.ya9{bottom:768.165000px;}
.y11c{bottom:773.925000px;}
.yd0{bottom:774.825000px;}
.y4b{bottom:780.045000px;}
.y18{bottom:780.945000px;}
.yf9{bottom:781.845000px;}
.y7d{bottom:782.925000px;}
.y145{bottom:793.905000px;}
.y4a{bottom:798.945000px;}
.y17{bottom:799.845000px;}
.yf8{bottom:800.925000px;}
.y11b{bottom:801.825000px;}
.ycf{bottom:802.905000px;}
.ya8{bottom:803.985000px;}
.y7c{bottom:810.825000px;}
.y49{bottom:817.845000px;}
.y16{bottom:818.925000px;}
.yf7{bottom:819.465000px;}
.y11a{bottom:820.545000px;}
.y144{bottom:821.805000px;}
.y7b{bottom:829.905000px;}
.yce{bottom:830.805000px;}
.ya7{bottom:832.245000px;}
.y48{bottom:836.925000px;}
.y15{bottom:837.825000px;}
.yf6{bottom:847.905000px;}
.y119{bottom:848.445000px;}
.y143{bottom:849.705000px;}
.y14{bottom:856.905000px;}
.y7a{bottom:857.805000px;}
.ycd{bottom:858.705000px;}
.ya6{bottom:860.325000px;}
.y47{bottom:864.825000px;}
.yf5{bottom:866.805000px;}
.y13{bottom:875.805000px;}
.y79{bottom:876.705000px;}
.ycc{bottom:877.425000px;}
.y142{bottom:877.785000px;}
.y46{bottom:883.905000px;}
.yf4{bottom:885.345000px;}
.ya5{bottom:888.225000px;}
.y12{bottom:894.705000px;}
.y118{bottom:895.785000px;}
.y45{bottom:902.805000px;}
.y78{bottom:904.785000px;}
.ycb{bottom:905.685000px;}
.y11{bottom:913.830000px;}
.y117{bottom:914.370000px;}
.ya4{bottom:916.350000px;}
.y44{bottom:921.750000px;}
.y77{bottom:923.730000px;}
.y141{bottom:924.810000px;}
.y10{bottom:932.730000px;}
.yca{bottom:933.810000px;}
.ya3{bottom:934.890000px;}
.y43{bottom:940.830000px;}
.y76{bottom:942.450000px;}
.y116{bottom:942.810000px;}
.yf3{bottom:951.450000px;}
.yf{bottom:951.810000px;}
.y140{bottom:952.710000px;}
.y42{bottom:959.730000px;}
.yc9{bottom:961.710000px;}
.ya2{bottom:963.330000px;}
.ye{bottom:970.710000px;}
.y41{bottom:978.810000px;}
.yf2{bottom:979.710000px;}
.y13f{bottom:980.610000px;}
.ya1{bottom:987.450000px;}
.yd{bottom:989.610000px;}
.yf1{bottom:998.610000px;}
.y13e{bottom:999.690000px;}
.y40{bottom:1006.710000px;}
.y75{bottom:1008.330000px;}
.yc{bottom:1008.690000px;}
.ya0{bottom:1011.750000px;}
.y3f{bottom:1025.610000px;}
.yf0{bottom:1026.690000px;}
.yb{bottom:1027.230000px;}
.y13d{bottom:1027.590000px;}
.y9e{bottom:1036.050000px;}
.y74{bottom:1036.590000px;}
.y3e{bottom:1044.690000px;}
.y115{bottom:1045.230000px;}
.yef{bottom:1054.590000px;}
.y13c{bottom:1055.670000px;}
.y9c{bottom:1060.170000px;}
.y3d{bottom:1063.590000px;}
.y73{bottom:1064.670000px;}
.ya{bottom:1072.230000px;}
.yee{bottom:1073.310000px;}
.y3c{bottom:1082.670000px;}
.y13b{bottom:1083.570000px;}
.y9a{bottom:1084.470000px;}
.y9{bottom:1091.130000px;}
.y72{bottom:1092.570000px;}
.y3b{bottom:1101.570000px;}
.y8{bottom:1109.850000px;}
.yc8{bottom:1111.290000px;}
.y13a{bottom:1111.650000px;}
.y3a{bottom:1120.650000px;}
.y7{bottom:1139.190000px;}
.yc7{bottom:1139.550000px;}
.y3{bottom:1159.200000px;}
.y2{bottom:1179.180000px;}
.y5{bottom:1181.700000px;}
.y1{bottom:1200.240000px;}
.h10{height:17.275500px;}
.hd{height:17.280000px;}
.h16{height:18.885000px;}
.h12{height:18.900000px;}
.h17{height:18.921000px;}
.h14{height:18.930000px;}
.h15{height:19.065000px;}
.h13{height:19.080000px;}
.h6{height:23.580000px;}
.h11{height:34.555500px;}
.ha{height:40.985156px;}
.h9{height:42.086250px;}
.h7{height:52.417969px;}
.hf{height:58.651172px;}
.he{height:60.226875px;}
.hb{height:64.978594px;}
.hc{height:65.010937px;}
.h4{height:65.884219px;}
.h8{height:66.757500px;}
.h5{height:69.086250px;}
.h3{height:70.664062px;}
.h2{height:87.800625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:138.981000px;}
.w3{width:143.316000px;}
.w2{width:151.050000px;}
.w6{width:152.670000px;}
.wc{width:157.530000px;}
.w7{width:160.395000px;}
.wa{width:165.255000px;}
.w9{width:167.970000px;}
.w5{width:205.590000px;}
.w8{width:211.890000px;}
.wb{width:213.330000px;}
.w4{width:405.075000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:7.740000px;}
.x14{left:9.540000px;}
.xe{left:12.240000px;}
.x4{left:16.920000px;}
.x13{left:19.800000px;}
.xa{left:23.760000px;}
.x11{left:26.460000px;}
.xd{left:28.980000px;}
.x1e{left:32.385000px;}
.x2d{left:36.180000px;}
.x27{left:38.340000px;}
.x12{left:41.220000px;}
.x23{left:46.080000px;}
.x28{left:49.320000px;}
.x2a{left:51.120000px;}
.x1f{left:57.780000px;}
.x20{left:61.050000px;}
.x22{left:63.180000px;}
.x1b{left:65.160000px;}
.x24{left:67.890000px;}
.x2e{left:70.410000px;}
.x29{left:71.460000px;}
.x10{left:73.800000px;}
.x1{left:75.600000px;}
.x21{left:83.025000px;}
.x16{left:139.356000px;}
.x15{left:149.610000px;}
.xc{left:162.030000px;}
.x9{left:172.650000px;}
.x1a{left:184.890000px;}
.x5{left:189.750000px;}
.x7{left:196.590000px;}
.x6{left:248.070000px;}
.x8{left:265.215000px;}
.xb{left:316.875000px;}
.x25{left:386.535000px;}
.x1c{left:393.555000px;}
.x2b{left:405.615000px;}
.x18{left:533.085000px;}
.x1d{left:549.120000px;}
.x26{left:557.580000px;}
.x2c{left:566.220000px;}
.x17{left:621.330000px;}
.x19{left:625.110000px;}
.x3{left:673.530000px;}
.x2{left:791.250000px;}
@media print{
.v1{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls9{letter-spacing:-1.045333pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.097067pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.133120pt;}
.lsb{letter-spacing:0.233067pt;}
.ls4{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls5{letter-spacing:14.991360pt;}
.lsa{letter-spacing:23.311360pt;}
.ls6{letter-spacing:36.560640pt;}
.ls8{letter-spacing:40.448000pt;}
.ws2{word-spacing:-58.880000pt;}
.ws7{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.271573pt;}
.ws4{word-spacing:-14.991467pt;}
.wsa{word-spacing:-14.953067pt;}
.wsb{word-spacing:-14.817067pt;}
.ws5{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.080000pt;}
.ws9{word-spacing:-13.674667pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-0.058880pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-3.854080pt;}
._4{margin-left:-2.092800pt;}
._0{margin-left:-0.929280pt;}
._3{width:0.933120pt;}
._1{width:1.877973pt;}
._9{width:3.041280pt;}
._d{width:3.934720pt;}
._6{width:4.855040pt;}
._5{width:5.861120pt;}
._8{width:7.294720pt;}
._7{width:8.459520pt;}
._c{width:9.532160pt;}
._a{width:10.630400pt;}
._b{width:11.623680pt;}
._f{width:13.248000pt;}
._e{width:16.545280pt;}
._10{width:17.487360pt;}
._19{width:18.429440pt;}
._13{width:20.222293pt;}
._12{width:21.137920pt;}
._1a{width:22.348800pt;}
._14{width:23.656960pt;}
._15{width:24.587520pt;}
._11{width:26.731520pt;}
._18{width:30.854400pt;}
._17{width:32.119040pt;}
._16{width:40.320000pt;}
.fs3{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:77.440000pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:3.040000pt;}
.yb7{bottom:3.186667pt;}
.y9b{bottom:3.200000pt;}
.ybb{bottom:3.346667pt;}
.y6b{bottom:3.360000pt;}
.y9f{bottom:3.520000pt;}
.y9d{bottom:3.680000pt;}
.y6{bottom:6.400000pt;}
.y70{bottom:18.400000pt;}
.y71{bottom:18.720000pt;}
.y4{bottom:38.400000pt;}
.yc6{bottom:61.280000pt;}
.y139{bottom:61.920000pt;}
.y6f{bottom:66.080000pt;}
.yed{bottom:70.720000pt;}
.y99{bottom:71.520000pt;}
.y39{bottom:72.960000pt;}
.y114{bottom:77.920000pt;}
.yc5{bottom:86.240000pt;}
.y138{bottom:86.720000pt;}
.yec{bottom:87.520000pt;}
.y98{bottom:88.480000pt;}
.y6e{bottom:97.440000pt;}
.y38{bottom:98.400000pt;}
.y113{bottom:102.720000pt;}
.yeb{bottom:104.160000pt;}
.y97{bottom:105.280000pt;}
.yc4{bottom:111.040000pt;}
.y137{bottom:111.520000pt;}
.y6d{bottom:113.440000pt;}
.y37{bottom:115.200000pt;}
.yc3{bottom:127.520000pt;}
.yea{bottom:129.280000pt;}
.y6c{bottom:129.440000pt;}
.y96{bottom:130.240000pt;}
.y36{bottom:132.160000pt;}
.y15c{bottom:132.960000pt;}
.y136{bottom:136.480000pt;}
.y6a{bottom:145.440000pt;}
.ye9{bottom:146.240000pt;}
.y35{bottom:148.960000pt;}
.yc2{bottom:152.480000pt;}
.y95{bottom:155.040000pt;}
.y15b{bottom:158.560000pt;}
.y135{bottom:161.280000pt;}
.y68{bottom:161.440000pt;}
.ye8{bottom:162.720000pt;}
.y112{bottom:168.960000pt;}
.y34{bottom:173.920000pt;}
.yc1{bottom:177.600000pt;}
.y94{bottom:179.840000pt;}
.y15a{bottom:183.386667pt;}
.y134{bottom:186.266667pt;}
.ye7{bottom:187.866667pt;}
.y67{bottom:188.986667pt;}
.y33{bottom:190.746667pt;}
.y111{bottom:193.946667pt;}
.y93{bottom:196.506667pt;}
.yc0{bottom:202.586667pt;}
.y133{bottom:202.746667pt;}
.ye6{bottom:204.826667pt;}
.y66{bottom:205.946667pt;}
.y32{bottom:207.546667pt;}
.y159{bottom:208.186667pt;}
.y110{bottom:219.066667pt;}
.ye5{bottom:221.306667pt;}
.y92{bottom:221.626667pt;}
.y65{bottom:222.746667pt;}
.y31{bottom:224.506667pt;}
.ybf{bottom:227.386667pt;}
.y132{bottom:227.866667pt;}
.y158{bottom:233.146667pt;}
.y10f{bottom:235.866667pt;}
.y91{bottom:238.586667pt;}
.y64{bottom:239.546667pt;}
.y30{bottom:241.306667pt;}
.y131{bottom:244.826667pt;}
.ye4{bottom:246.586667pt;}
.ybe{bottom:252.186667pt;}
.y10e{bottom:252.506667pt;}
.y63{bottom:256.506667pt;}
.y157{bottom:257.946667pt;}
.y130{bottom:261.626667pt;}
.y90{bottom:263.386667pt;}
.y2f{bottom:266.266667pt;}
.ybd{bottom:268.826667pt;}
.y62{bottom:273.306667pt;}
.y10d{bottom:277.626667pt;}
.ye3{bottom:280.186667pt;}
.y156{bottom:282.906667pt;}
.y2e{bottom:283.066667pt;}
.y12f{bottom:286.586667pt;}
.y8f{bottom:288.186667pt;}
.y61{bottom:290.266667pt;}
.ybc{bottom:294.120000pt;}
.ye2{bottom:296.826667pt;}
.y2d{bottom:299.866667pt;}
.y10c{bottom:302.586667pt;}
.y12e{bottom:303.386667pt;}
.y60{bottom:307.066667pt;}
.y155{bottom:307.706667pt;}
.y8e{bottom:313.146667pt;}
.yba{bottom:315.560000pt;}
.y2c{bottom:316.826667pt;}
.ye1{bottom:321.946667pt;}
.y5f{bottom:323.866667pt;}
.y10b{bottom:327.386667pt;}
.y12d{bottom:328.186667pt;}
.y8d{bottom:329.626667pt;}
.y154{bottom:332.506667pt;}
.y2b{bottom:333.626667pt;}
.yb9{bottom:337.160000pt;}
.ye0{bottom:338.906667pt;}
.y5e{bottom:340.826667pt;}
.y12c{bottom:345.146667pt;}
.y2a{bottom:350.586667pt;}
.y10a{bottom:352.186667pt;}
.y8c{bottom:354.906667pt;}
.ydf{bottom:355.706667pt;}
.y153{bottom:357.466667pt;}
.y5d{bottom:357.626667pt;}
.yb8{bottom:358.760000pt;}
.y12b{bottom:361.946667pt;}
.y8b{bottom:371.706667pt;}
.yde{bottom:372.186667pt;}
.y5c{bottom:374.586667pt;}
.y29{bottom:375.386667pt;}
.y109{bottom:377.146667pt;}
.y12a{bottom:378.906667pt;}
.yb6{bottom:380.200000pt;}
.y152{bottom:382.266667pt;}
.y8a{bottom:388.186667pt;}
.y5b{bottom:391.066667pt;}
.y28{bottom:392.226667pt;}
.y108{bottom:393.666667pt;}
.ydd{bottom:397.506667pt;}
.y129{bottom:403.746667pt;}
.y151{bottom:407.266667pt;}
.y27{bottom:409.186667pt;}
.yb5{bottom:412.066667pt;}
.y89{bottom:413.186667pt;}
.ydc{bottom:414.306667pt;}
.y5a{bottom:416.226667pt;}
.y107{bottom:418.626667pt;}
.y128{bottom:420.546667pt;}
.y26{bottom:425.986667pt;}
.ydb{bottom:430.946667pt;}
.y150{bottom:432.066667pt;}
.y59{bottom:433.186667pt;}
.yb4{bottom:437.186667pt;}
.y127{bottom:437.506667pt;}
.y88{bottom:438.306667pt;}
.y25{bottom:442.946667pt;}
.y106{bottom:443.746667pt;}
.y58{bottom:449.986667pt;}
.yda{bottom:456.066667pt;}
.y14f{bottom:457.026667pt;}
.y24{bottom:459.746667pt;}
.y105{bottom:460.546667pt;}
.yb3{bottom:462.146667pt;}
.y126{bottom:462.306667pt;}
.y87{bottom:463.266667pt;}
.y57{bottom:466.946667pt;}
.yd9{bottom:473.026667pt;}
.y23{bottom:476.546667pt;}
.y104{bottom:477.186667pt;}
.y125{bottom:479.266667pt;}
.y14e{bottom:481.826667pt;}
.y56{bottom:483.746667pt;}
.yb2{bottom:486.946667pt;}
.y86{bottom:488.066667pt;}
.yd8{bottom:497.826667pt;}
.y22{bottom:501.506667pt;}
.y103{bottom:502.306667pt;}
.y124{bottom:504.066667pt;}
.y14d{bottom:506.626667pt;}
.y55{bottom:508.546667pt;}
.yb1{bottom:511.746667pt;}
.y85{bottom:513.026667pt;}
.y21{bottom:518.306667pt;}
.y102{bottom:519.266667pt;}
.y123{bottom:521.026667pt;}
.yd7{bottom:522.626667pt;}
.y54{bottom:525.506667pt;}
.yb0{bottom:528.386667pt;}
.y14c{bottom:531.586667pt;}
.y20{bottom:535.266667pt;}
.y101{bottom:535.746667pt;}
.y84{bottom:537.826667pt;}
.y53{bottom:542.306667pt;}
.y122{bottom:545.826667pt;}
.yd6{bottom:547.586667pt;}
.y1f{bottom:552.066667pt;}
.yaf{bottom:553.666667pt;}
.y14b{bottom:556.386667pt;}
.y52{bottom:559.266667pt;}
.y100{bottom:561.026667pt;}
.y83{bottom:562.626667pt;}
.y1e{bottom:569.026667pt;}
.yd5{bottom:572.386667pt;}
.yae{bottom:575.106667pt;}
.yff{bottom:577.826667pt;}
.y121{bottom:579.586667pt;}
.y14a{bottom:581.346667pt;}
.y51{bottom:584.066667pt;}
.y1d{bottom:585.826667pt;}
.y82{bottom:587.586667pt;}
.yd4{bottom:589.026667pt;}
.yfe{bottom:594.626667pt;}
.y120{bottom:596.386667pt;}
.yad{bottom:596.706667pt;}
.y50{bottom:601.053333pt;}
.y1c{bottom:602.653333pt;}
.y149{bottom:606.173333pt;}
.yfd{bottom:611.293333pt;}
.y81{bottom:612.413333pt;}
.y11f{bottom:613.053333pt;}
.yd3{bottom:614.173333pt;}
.y4f{bottom:617.853333pt;}
.yac{bottom:618.173333pt;}
.y1b{bottom:619.293333pt;}
.y80{bottom:629.373333pt;}
.y148{bottom:630.973333pt;}
.y4e{bottom:634.653333pt;}
.yfc{bottom:636.413333pt;}
.y11e{bottom:638.173333pt;}
.yd2{bottom:638.653333pt;}
.yab{bottom:639.773333pt;}
.y4d{bottom:651.613333pt;}
.y1a{bottom:652.413333pt;}
.yfb{bottom:653.373333pt;}
.y7f{bottom:654.173333pt;}
.y147{bottom:655.933333pt;}
.yaa{bottom:661.373333pt;}
.y11d{bottom:662.973333pt;}
.yd1{bottom:663.613333pt;}
.y19{bottom:669.373333pt;}
.yfa{bottom:669.853333pt;}
.y7e{bottom:670.973333pt;}
.y4c{bottom:676.413333pt;}
.y146{bottom:680.733333pt;}
.ya9{bottom:682.813333pt;}
.y11c{bottom:687.933333pt;}
.yd0{bottom:688.733333pt;}
.y4b{bottom:693.373333pt;}
.y18{bottom:694.173333pt;}
.yf9{bottom:694.973333pt;}
.y7d{bottom:695.933333pt;}
.y145{bottom:705.693333pt;}
.y4a{bottom:710.173333pt;}
.y17{bottom:710.973333pt;}
.yf8{bottom:711.933333pt;}
.y11b{bottom:712.733333pt;}
.ycf{bottom:713.693333pt;}
.ya8{bottom:714.653333pt;}
.y7c{bottom:720.733333pt;}
.y49{bottom:726.973333pt;}
.y16{bottom:727.933333pt;}
.yf7{bottom:728.413333pt;}
.y11a{bottom:729.373333pt;}
.y144{bottom:730.493333pt;}
.y7b{bottom:737.693333pt;}
.yce{bottom:738.493333pt;}
.ya7{bottom:739.773333pt;}
.y48{bottom:743.933333pt;}
.y15{bottom:744.733333pt;}
.yf6{bottom:753.693333pt;}
.y119{bottom:754.173333pt;}
.y143{bottom:755.293333pt;}
.y14{bottom:761.693333pt;}
.y7a{bottom:762.493333pt;}
.ycd{bottom:763.293333pt;}
.ya6{bottom:764.733333pt;}
.y47{bottom:768.733333pt;}
.yf5{bottom:770.493333pt;}
.y13{bottom:778.493333pt;}
.y79{bottom:779.293333pt;}
.ycc{bottom:779.933333pt;}
.y142{bottom:780.253333pt;}
.y46{bottom:785.693333pt;}
.yf4{bottom:786.973333pt;}
.ya5{bottom:789.533333pt;}
.y12{bottom:795.293333pt;}
.y118{bottom:796.253333pt;}
.y45{bottom:802.493333pt;}
.y78{bottom:804.253333pt;}
.ycb{bottom:805.053333pt;}
.y11{bottom:812.293333pt;}
.y117{bottom:812.773333pt;}
.ya4{bottom:814.533333pt;}
.y44{bottom:819.333333pt;}
.y77{bottom:821.093333pt;}
.y141{bottom:822.053333pt;}
.y10{bottom:829.093333pt;}
.yca{bottom:830.053333pt;}
.ya3{bottom:831.013333pt;}
.y43{bottom:836.293333pt;}
.y76{bottom:837.733333pt;}
.y116{bottom:838.053333pt;}
.yf3{bottom:845.733333pt;}
.yf{bottom:846.053333pt;}
.y140{bottom:846.853333pt;}
.y42{bottom:853.093333pt;}
.yc9{bottom:854.853333pt;}
.ya2{bottom:856.293333pt;}
.ye{bottom:862.853333pt;}
.y41{bottom:870.053333pt;}
.yf2{bottom:870.853333pt;}
.y13f{bottom:871.653333pt;}
.ya1{bottom:877.733333pt;}
.yd{bottom:879.653333pt;}
.yf1{bottom:887.653333pt;}
.y13e{bottom:888.613333pt;}
.y40{bottom:894.853333pt;}
.y75{bottom:896.293333pt;}
.yc{bottom:896.613333pt;}
.ya0{bottom:899.333333pt;}
.y3f{bottom:911.653333pt;}
.yf0{bottom:912.613333pt;}
.yb{bottom:913.093333pt;}
.y13d{bottom:913.413333pt;}
.y9e{bottom:920.933333pt;}
.y74{bottom:921.413333pt;}
.y3e{bottom:928.613333pt;}
.y115{bottom:929.093333pt;}
.yef{bottom:937.413333pt;}
.y13c{bottom:938.373333pt;}
.y9c{bottom:942.373333pt;}
.y3d{bottom:945.413333pt;}
.y73{bottom:946.373333pt;}
.ya{bottom:953.093333pt;}
.yee{bottom:954.053333pt;}
.y3c{bottom:962.373333pt;}
.y13b{bottom:963.173333pt;}
.y9a{bottom:963.973333pt;}
.y9{bottom:969.893333pt;}
.y72{bottom:971.173333pt;}
.y3b{bottom:979.173333pt;}
.y8{bottom:986.533333pt;}
.yc8{bottom:987.813333pt;}
.y13a{bottom:988.133333pt;}
.y3a{bottom:996.133333pt;}
.y7{bottom:1012.613333pt;}
.yc7{bottom:1012.933333pt;}
.y3{bottom:1030.400000pt;}
.y2{bottom:1048.160000pt;}
.y5{bottom:1050.400000pt;}
.y1{bottom:1066.880000pt;}
.h10{height:15.356000pt;}
.hd{height:15.360000pt;}
.h16{height:16.786667pt;}
.h12{height:16.800000pt;}
.h17{height:16.818667pt;}
.h14{height:16.826667pt;}
.h15{height:16.946667pt;}
.h13{height:16.960000pt;}
.h6{height:20.960000pt;}
.h11{height:30.716000pt;}
.ha{height:36.431250pt;}
.h9{height:37.410000pt;}
.h7{height:46.593750pt;}
.hf{height:52.134375pt;}
.he{height:53.535000pt;}
.hb{height:57.758750pt;}
.hc{height:57.787500pt;}
.h4{height:58.563750pt;}
.h8{height:59.340000pt;}
.h5{height:61.410000pt;}
.h3{height:62.812500pt;}
.h2{height:78.045000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:123.538667pt;}
.w3{width:127.392000pt;}
.w2{width:134.266667pt;}
.w6{width:135.706667pt;}
.wc{width:140.026667pt;}
.w7{width:142.573333pt;}
.wa{width:146.893333pt;}
.w9{width:149.306667pt;}
.w5{width:182.746667pt;}
.w8{width:188.346667pt;}
.wb{width:189.626667pt;}
.w4{width:360.066667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.880000pt;}
.x14{left:8.480000pt;}
.xe{left:10.880000pt;}
.x4{left:15.040000pt;}
.x13{left:17.600000pt;}
.xa{left:21.120000pt;}
.x11{left:23.520000pt;}
.xd{left:25.760000pt;}
.x1e{left:28.786667pt;}
.x2d{left:32.160000pt;}
.x27{left:34.080000pt;}
.x12{left:36.640000pt;}
.x23{left:40.960000pt;}
.x28{left:43.840000pt;}
.x2a{left:45.440000pt;}
.x1f{left:51.360000pt;}
.x20{left:54.266667pt;}
.x22{left:56.160000pt;}
.x1b{left:57.920000pt;}
.x24{left:60.346667pt;}
.x2e{left:62.586667pt;}
.x29{left:63.520000pt;}
.x10{left:65.600000pt;}
.x1{left:67.200000pt;}
.x21{left:73.800000pt;}
.x16{left:123.872000pt;}
.x15{left:132.986667pt;}
.xc{left:144.026667pt;}
.x9{left:153.466667pt;}
.x1a{left:164.346667pt;}
.x5{left:168.666667pt;}
.x7{left:174.746667pt;}
.x6{left:220.506667pt;}
.x8{left:235.746667pt;}
.xb{left:281.666667pt;}
.x25{left:343.586667pt;}
.x1c{left:349.826667pt;}
.x2b{left:360.546667pt;}
.x18{left:473.853333pt;}
.x1d{left:488.106667pt;}
.x26{left:495.626667pt;}
.x2c{left:503.306667pt;}
.x17{left:552.293333pt;}
.x19{left:555.653333pt;}
.x3{left:598.693333pt;}
.x2{left:703.333333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  