
    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_1df721d419ac881144942065.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_d5962333815e005d445359b2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_6a8ea160a55ce12e5edc65a6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_2ee91d743d8442c3ae59c9de.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_a98b6e4aac77bc3b05f74f84.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_bf038412ab74d811e8b71360.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940918;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_ff46496bafc3874d02827e87.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_aeb835132287fec3b818ef54.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8434c03a76ab50f710e79911.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls15{letter-spacing:-0.960000px;}
.ls27{letter-spacing:-0.579600px;}
.ls2b{letter-spacing:-0.546000px;}
.lsf{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.ls2e{letter-spacing:-0.431400px;}
.lse{letter-spacing:-0.414000px;}
.lsb{letter-spacing:-0.326400px;}
.ls21{letter-spacing:-0.298200px;}
.ls13{letter-spacing:-0.240600px;}
.ls2d{letter-spacing:-0.226800px;}
.ls24{letter-spacing:-0.186600px;}
.ls28{letter-spacing:-0.115800px;}
.ls2c{letter-spacing:-0.078600px;}
.ls11{letter-spacing:-0.067200px;}
.ls1a{letter-spacing:-0.064800px;}
.ls18{letter-spacing:-0.058320px;}
.ls22{letter-spacing:-0.041040px;}
.ls1e{letter-spacing:-0.032400px;}
.ls4{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.060480px;}
.ls8{letter-spacing:0.060600px;}
.ls7{letter-spacing:0.066000px;}
.ls12{letter-spacing:0.140400px;}
.ls20{letter-spacing:0.174000px;}
.ls19{letter-spacing:0.174240px;}
.ls14{letter-spacing:0.175200px;}
.ls9{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.186600px;}
.ls3{letter-spacing:0.190080px;}
.ls6{letter-spacing:0.256200px;}
.ls29{letter-spacing:0.274800px;}
.ls1d{letter-spacing:0.288600px;}
.lsd{letter-spacing:0.306000px;}
.ls23{letter-spacing:0.393600px;}
.ls10{letter-spacing:0.479400px;}
.ls30{letter-spacing:0.479520px;}
.ls26{letter-spacing:0.780480px;}
.ls16{letter-spacing:0.894240px;}
.ls1b{letter-spacing:1.116000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls2a{letter-spacing:4.494240px;}
.ls31{letter-spacing:12.186720px;}
.ls2f{letter-spacing:42.570720px;}
.ls17{letter-spacing:46.026720px;}
.ls1f{letter-spacing:94.494240px;}
.ls1c{letter-spacing:120.414240px;}
.lsa{letter-spacing:202.638240px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws0{word-spacing:-41.040000px;}
.ws3{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws13{word-spacing:-13.899360px;}
.ws11{word-spacing:-13.780560px;}
.ws10{word-spacing:-13.692360px;}
.ws9{word-spacing:-13.680960px;}
.ws12{word-spacing:-13.646160px;}
.ws6{word-spacing:-13.505760px;}
.wsc{word-spacing:-13.473360px;}
.wse{word-spacing:-13.464720px;}
.wsa{word-spacing:-13.447440px;}
.wsb{word-spacing:-13.440960px;}
.wsf{word-spacing:-13.319160px;}
.ws8{word-spacing:-13.265160px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-1454.840400px;}
._2{margin-left:-1333.157760px;}
._3{margin-left:-1013.284800px;}
._5{margin-left:-585.756960px;}
._11{margin-left:-4.842720px;}
._6{margin-left:-3.312000px;}
._f{margin-left:-2.300880px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._7{width:2.466720px;}
._8{width:3.857760px;}
._e{width:5.248320px;}
._d{width:6.262560px;}
._9{width:7.470000px;}
._10{width:8.784720px;}
._a{width:10.717920px;}
._c{width:12.071520px;}
._b{width:15.179040px;}
._17{width:16.254720px;}
._15{width:17.270640px;}
._16{width:18.644400px;}
._19{width:20.676960px;}
._22{width:21.792480px;}
._27{width:23.007600px;}
._23{width:24.068400px;}
._1d{width:25.995600px;}
._1e{width:33.983520px;}
._1f{width:45.894720px;}
._25{width:56.891520px;}
._24{width:58.086720px;}
._26{width:59.325840px;}
._1c{width:91.791360px;}
._12{width:97.419120px;}
._20{width:103.658640px;}
._21{width:127.973280px;}
._1a{width:131.472000px;}
._1b{width:152.268480px;}
._18{width:189.132480px;}
._13{width:202.638240px;}
._14{width:205.518240px;}
.fc3{color:transparent;}
.fc4{color:rgb(192,80,77);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs7{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y12c{bottom:6.654000px;}
.ybd{bottom:6.660000px;}
.y155{bottom:7.014000px;}
.yf5{bottom:8.280000px;}
.yb9{bottom:10.800000px;}
.y127{bottom:17.100000px;}
.y103{bottom:18.180000px;}
.yfe{bottom:23.580000px;}
.y128{bottom:27.540000px;}
.y12b{bottom:27.714000px;}
.ybc{bottom:27.720000px;}
.y12e{bottom:27.750000px;}
.y109{bottom:27.765000px;}
.y154{bottom:28.074000px;}
.y151{bottom:35.454000px;}
.yc2{bottom:38.340000px;}
.y102{bottom:39.270000px;}
.yfd{bottom:44.640000px;}
.y12a{bottom:48.774000px;}
.ybb{bottom:48.780000px;}
.y111{bottom:48.810000px;}
.y108{bottom:48.825000px;}
.y153{bottom:49.494000px;}
.y6{bottom:58.356000px;}
.y101{bottom:60.330000px;}
.yfc{bottom:65.694000px;}
.yf8{bottom:69.834000px;}
.yc1{bottom:69.840000px;}
.y110{bottom:69.870000px;}
.y107{bottom:69.885000px;}
.y152{bottom:70.554000px;}
.y100{bottom:81.390000px;}
.yfb{bottom:86.754000px;}
.yf1{bottom:86.976000px;}
.yf7{bottom:90.894000px;}
.y133{bottom:90.900000px;}
.y10f{bottom:90.930000px;}
.y94{bottom:91.296000px;}
.y125{bottom:91.485000px;}
.y9f{bottom:94.356000px;}
.y122{bottom:98.496000px;}
.y77{bottom:103.356000px;}
.ye9{bottom:104.976000px;}
.y63{bottom:106.416000px;}
.yfa{bottom:107.814000px;}
.y14f{bottom:111.636000px;}
.yf6{bottom:111.954000px;}
.y10e{bottom:111.990000px;}
.y93{bottom:112.356000px;}
.y124{bottom:112.545000px;}
.y9e{bottom:115.416000px;}
.y121{bottom:119.556000px;}
.y30{bottom:124.416000px;}
.ye8{bottom:126.036000px;}
.y62{bottom:127.476000px;}
.yf9{bottom:128.874000px;}
.y14e{bottom:132.696000px;}
.yf3{bottom:133.014000px;}
.y10d{bottom:133.050000px;}
.y92{bottom:133.416000px;}
.y9d{bottom:136.476000px;}
.y120{bottom:140.616000px;}
.y2f{bottom:145.476000px;}
.y129{bottom:145.836000px;}
.y150{bottom:146.016000px;}
.ye7{bottom:147.096000px;}
.y61{bottom:148.536000px;}
.y14d{bottom:153.750000px;}
.yf2{bottom:154.074000px;}
.y91{bottom:154.470000px;}
.y9c{bottom:157.530000px;}
.y11f{bottom:161.670000px;}
.y2e{bottom:166.530000px;}
.ye6{bottom:168.150000px;}
.y60{bottom:169.590000px;}
.y14c{bottom:174.810000px;}
.y90{bottom:175.530000px;}
.y9b{bottom:178.590000px;}
.y11e{bottom:182.730000px;}
.y2d{bottom:187.590000px;}
.ye5{bottom:189.210000px;}
.y5f{bottom:190.650000px;}
.y14b{bottom:195.870000px;}
.y8f{bottom:196.590000px;}
.y9a{bottom:199.650000px;}
.y11d{bottom:203.790000px;}
.y2c{bottom:208.650000px;}
.ye4{bottom:210.270000px;}
.y5e{bottom:211.710000px;}
.y14a{bottom:216.930000px;}
.y8e{bottom:217.650000px;}
.y99{bottom:220.710000px;}
.y11c{bottom:224.850000px;}
.y2b{bottom:229.710000px;}
.y123{bottom:230.790000px;}
.yf4{bottom:230.970000px;}
.ye3{bottom:231.330000px;}
.yb6{bottom:232.770000px;}
.y149{bottom:237.990000px;}
.y8d{bottom:238.710000px;}
.y5d{bottom:241.770000px;}
.y11b{bottom:245.910000px;}
.y2a{bottom:250.770000px;}
.ye2{bottom:252.390000px;}
.yb5{bottom:253.830000px;}
.y148{bottom:259.050000px;}
.y8c{bottom:259.770000px;}
.y5c{bottom:262.830000px;}
.y11a{bottom:266.970000px;}
.y29{bottom:271.830000px;}
.ye1{bottom:273.495000px;}
.yb4{bottom:274.935000px;}
.y147{bottom:280.155000px;}
.y8b{bottom:280.875000px;}
.y5b{bottom:283.935000px;}
.y119{bottom:288.075000px;}
.y28{bottom:292.935000px;}
.ye0{bottom:294.555000px;}
.yb3{bottom:295.995000px;}
.y146{bottom:301.215000px;}
.y8a{bottom:301.935000px;}
.y5a{bottom:304.995000px;}
.y118{bottom:309.135000px;}
.y27{bottom:313.995000px;}
.ydf{bottom:315.615000px;}
.y126{bottom:315.795000px;}
.yb2{bottom:317.055000px;}
.y145{bottom:322.275000px;}
.y89{bottom:322.995000px;}
.y59{bottom:326.055000px;}
.y117{bottom:330.195000px;}
.y26{bottom:335.055000px;}
.yde{bottom:336.675000px;}
.yb1{bottom:338.115000px;}
.y144{bottom:343.335000px;}
.y88{bottom:344.055000px;}
.y58{bottom:347.115000px;}
.y116{bottom:351.255000px;}
.y25{bottom:356.115000px;}
.ydd{bottom:357.735000px;}
.yb0{bottom:359.175000px;}
.y143{bottom:364.395000px;}
.y87{bottom:365.115000px;}
.y57{bottom:368.175000px;}
.y115{bottom:372.315000px;}
.y24{bottom:377.175000px;}
.ydc{bottom:378.795000px;}
.yaf{bottom:380.235000px;}
.y142{bottom:385.455000px;}
.y86{bottom:386.175000px;}
.y56{bottom:389.235000px;}
.y114{bottom:393.375000px;}
.y23{bottom:398.055000px;}
.y76{bottom:398.235000px;}
.ydb{bottom:399.855000px;}
.yae{bottom:401.295000px;}
.y141{bottom:406.515000px;}
.y85{bottom:407.235000px;}
.y55{bottom:410.295000px;}
.y113{bottom:414.435000px;}
.y22{bottom:419.115000px;}
.y75{bottom:419.295000px;}
.yda{bottom:420.915000px;}
.yad{bottom:422.355000px;}
.y140{bottom:427.395000px;}
.y84{bottom:428.295000px;}
.y112{bottom:429.555000px;}
.y54{bottom:431.355000px;}
.y21{bottom:440.175000px;}
.y74{bottom:440.355000px;}
.yd9{bottom:441.975000px;}
.yac{bottom:443.415000px;}
.y13f{bottom:448.455000px;}
.y83{bottom:449.355000px;}
.y53{bottom:452.415000px;}
.y20{bottom:461.235000px;}
.y73{bottom:461.415000px;}
.yd8{bottom:463.035000px;}
.yab{bottom:464.475000px;}
.y13e{bottom:469.515000px;}
.y82{bottom:470.415000px;}
.y52{bottom:473.475000px;}
.y72{bottom:482.475000px;}
.yd7{bottom:484.095000px;}
.y1f{bottom:484.815000px;}
.y13d{bottom:490.575000px;}
.y81{bottom:491.475000px;}
.y51{bottom:494.535000px;}
.y71{bottom:503.535000px;}
.yd6{bottom:505.155000px;}
.y13c{bottom:511.635000px;}
.y80{bottom:512.535000px;}
.y10c{bottom:513.795000px;}
.y1e{bottom:514.695000px;}
.yaa{bottom:515.595000px;}
.y50{bottom:524.595000px;}
.yd5{bottom:526.215000px;}
.y13b{bottom:532.695000px;}
.y7f{bottom:533.595000px;}
.y1d{bottom:535.755000px;}
.ya9{bottom:536.655000px;}
.y4f{bottom:545.655000px;}
.yd4{bottom:547.275000px;}
.y13a{bottom:553.755000px;}
.y7e{bottom:554.655000px;}
.y1c{bottom:556.845000px;}
.ya8{bottom:557.745000px;}
.y4e{bottom:566.745000px;}
.yd3{bottom:568.365000px;}
.y139{bottom:574.845000px;}
.y7d{bottom:575.745000px;}
.y1b{bottom:577.905000px;}
.ya7{bottom:578.805000px;}
.y4d{bottom:587.805000px;}
.yd2{bottom:589.425000px;}
.y138{bottom:595.905000px;}
.y7c{bottom:596.805000px;}
.y1a{bottom:598.965000px;}
.ya6{bottom:599.865000px;}
.y4c{bottom:608.865000px;}
.yd1{bottom:610.485000px;}
.y137{bottom:616.965000px;}
.y7b{bottom:617.865000px;}
.y19{bottom:620.025000px;}
.ya5{bottom:620.925000px;}
.y4b{bottom:629.925000px;}
.yd0{bottom:631.545000px;}
.yc4{bottom:633.165000px;}
.y136{bottom:638.025000px;}
.y7a{bottom:638.925000px;}
.y18{bottom:641.085000px;}
.ya4{bottom:641.805000px;}
.y4a{bottom:650.805000px;}
.ycf{bottom:652.605000px;}
.yc3{bottom:655.665000px;}
.y135{bottom:659.085000px;}
.y79{bottom:659.805000px;}
.y10b{bottom:661.245000px;}
.y17{bottom:662.145000px;}
.ya3{bottom:662.865000px;}
.y49{bottom:671.865000px;}
.yce{bottom:673.665000px;}
.y134{bottom:674.205000px;}
.y78{bottom:680.865000px;}
.y16{bottom:683.205000px;}
.ya2{bottom:683.925000px;}
.y70{bottom:692.925000px;}
.ycd{bottom:694.725000px;}
.y48{bottom:701.925000px;}
.y15{bottom:704.265000px;}
.y6f{bottom:713.985000px;}
.ycc{bottom:715.785000px;}
.yc0{bottom:718.845000px;}
.y47{bottom:722.985000px;}
.y14{bottom:725.325000px;}
.y6e{bottom:735.045000px;}
.ycb{bottom:736.845000px;}
.y132{bottom:737.385000px;}
.y46{bottom:744.045000px;}
.y10a{bottom:745.485000px;}
.y13{bottom:746.385000px;}
.y6d{bottom:756.105000px;}
.yca{bottom:757.905000px;}
.y45{bottom:765.105000px;}
.y12{bottom:767.445000px;}
.y6c{bottom:777.165000px;}
.yc9{bottom:778.965000px;}
.y44{bottom:786.165000px;}
.y11{bottom:788.505000px;}
.y6b{bottom:798.225000px;}
.yc8{bottom:800.025000px;}
.ybf{bottom:803.085000px;}
.y43{bottom:807.225000px;}
.y10{bottom:809.565000px;}
.y6a{bottom:819.285000px;}
.yc7{bottom:821.085000px;}
.y42{bottom:828.285000px;}
.y106{bottom:829.725000px;}
.yf{bottom:830.625000px;}
.y69{bottom:840.390000px;}
.yc6{bottom:842.190000px;}
.y131{bottom:842.730000px;}
.ybe{bottom:845.250000px;}
.y41{bottom:849.390000px;}
.ye{bottom:851.730000px;}
.y68{bottom:861.450000px;}
.yc5{bottom:863.250000px;}
.y40{bottom:870.450000px;}
.yd{bottom:872.790000px;}
.yf0{bottom:877.650000px;}
.y67{bottom:882.510000px;}
.y3f{bottom:891.510000px;}
.yc{bottom:896.010000px;}
.y66{bottom:903.570000px;}
.yba{bottom:908.430000px;}
.y3e{bottom:912.570000px;}
.y105{bottom:914.010000px;}
.yef{bottom:920.490000px;}
.yb{bottom:922.290000px;}
.y65{bottom:924.630000px;}
.y130{bottom:926.970000px;}
.y3d{bottom:933.630000px;}
.ya{bottom:939.030000px;}
.yee{bottom:942.270000px;}
.y64{bottom:945.690000px;}
.y3c{bottom:954.690000px;}
.y9{bottom:961.350000px;}
.y98{bottom:966.750000px;}
.yb8{bottom:973.230000px;}
.y3b{bottom:975.750000px;}
.yed{bottom:984.390000px;}
.y8{bottom:986.550000px;}
.y97{bottom:987.810000px;}
.y3a{bottom:996.810000px;}
.y104{bottom:998.250000px;}
.y96{bottom:1008.870000px;}
.y12f{bottom:1011.210000px;}
.y39{bottom:1017.870000px;}
.y7{bottom:1020.210000px;}
.yec{bottom:1026.510000px;}
.y95{bottom:1029.930000px;}
.y38{bottom:1038.930000px;}
.ya1{bottom:1050.990000px;}
.y37{bottom:1059.990000px;}
.y5{bottom:1060.350000px;}
.yeb{bottom:1068.630000px;}
.ya0{bottom:1072.050000px;}
.y36{bottom:1081.050000px;}
.yff{bottom:1083.210000px;}
.yea{bottom:1090.410000px;}
.y4{bottom:1092.570000px;}
.yb7{bottom:1093.110000px;}
.y12d{bottom:1095.450000px;}
.y35{bottom:1102.110000px;}
.y34{bottom:1123.200000px;}
.y3{bottom:1124.640000px;}
.y33{bottom:1144.260000px;}
.y2{bottom:1156.860000px;}
.y32{bottom:1165.320000px;}
.y1{bottom:1191.420000px;}
.y31{bottom:1193.220000px;}
.h1c{height:2.864531px;}
.h10{height:21.060000px;}
.h13{height:24.480000px;}
.hc{height:29.160000px;}
.h8{height:38.671172px;}
.h19{height:41.940000px;}
.h11{height:42.120000px;}
.he{height:42.156000px;}
.ha{height:45.578672px;}
.hb{height:45.637031px;}
.h2{height:56.146289px;}
.h9{height:59.439023px;}
.h6{height:61.189805px;}
.hd{height:63.180000px;}
.h4{height:65.884219px;}
.h7{height:67.824844px;}
.h3{height:71.613281px;}
.hf{height:84.240000px;}
.h16{height:84.276000px;}
.h1b{height:84.960000px;}
.h15{height:95.796000px;}
.h5{height:98.051133px;}
.h1a{height:105.336000px;}
.h18{height:126.936000px;}
.h14{height:143.280000px;}
.h17{height:147.456000px;}
.h12{height:168.480000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:67.500000px;}
.w1a{width:70.920000px;}
.w15{width:72.000000px;}
.w12{width:82.476000px;}
.w18{width:87.120000px;}
.w8{width:87.696000px;}
.wf{width:89.460000px;}
.w19{width:89.496000px;}
.w11{width:90.900000px;}
.w10{width:91.296000px;}
.we{width:91.476000px;}
.w4{width:94.536000px;}
.w17{width:99.036000px;}
.w16{width:101.520000px;}
.w9{width:108.000000px;}
.w6{width:159.150000px;}
.wa{width:175.530000px;}
.wc{width:192.090000px;}
.w1b{width:210.810000px;}
.w13{width:263.235000px;}
.w7{width:310.530000px;}
.w3{width:357.690000px;}
.w14{width:377.175000px;}
.wd{width:445.605000px;}
.w1c{width:580.965000px;}
.wb{width:681.765000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.640000px;}
.x19{left:47.159987px;}
.x1{left:53.999987px;}
.x3{left:60.839987px;}
.x4{left:80.999987px;}
.x14{left:90.360000px;}
.xe{left:93.960000px;}
.x1a{left:101.375987px;}
.xa{left:105.156000px;}
.x5{left:106.596000px;}
.x2{left:108.035987px;}
.x1b{left:191.370000px;}
.x1c{left:264.810000px;}
.xf{left:286.050000px;}
.x15{left:353.595000px;}
.x11{left:377.535000px;}
.xb{left:415.695000px;}
.x16{left:455.115000px;}
.x7{left:464.295000px;}
.x12{left:466.995000px;}
.xc{left:503.385000px;}
.x17{left:554.145000px;}
.x8{left:558.825000px;}
.xd{left:611.385000px;}
.x9{left:626.325000px;}
.x18{left:641.265000px;}
.x13{left:649.185000px;}
.x10{left:731.670000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls15{letter-spacing:-0.853333pt;}
.ls27{letter-spacing:-0.515200pt;}
.ls2b{letter-spacing:-0.485333pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls2e{letter-spacing:-0.383467pt;}
.lse{letter-spacing:-0.368000pt;}
.lsb{letter-spacing:-0.290133pt;}
.ls21{letter-spacing:-0.265067pt;}
.ls13{letter-spacing:-0.213867pt;}
.ls2d{letter-spacing:-0.201600pt;}
.ls24{letter-spacing:-0.165867pt;}
.ls28{letter-spacing:-0.102933pt;}
.ls2c{letter-spacing:-0.069867pt;}
.ls11{letter-spacing:-0.059733pt;}
.ls1a{letter-spacing:-0.057600pt;}
.ls18{letter-spacing:-0.051840pt;}
.ls22{letter-spacing:-0.036480pt;}
.ls1e{letter-spacing:-0.028800pt;}
.ls4{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.053760pt;}
.ls8{letter-spacing:0.053867pt;}
.ls7{letter-spacing:0.058667pt;}
.ls12{letter-spacing:0.124800pt;}
.ls20{letter-spacing:0.154667pt;}
.ls19{letter-spacing:0.154880pt;}
.ls14{letter-spacing:0.155733pt;}
.ls9{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.165867pt;}
.ls3{letter-spacing:0.168960pt;}
.ls6{letter-spacing:0.227733pt;}
.ls29{letter-spacing:0.244267pt;}
.ls1d{letter-spacing:0.256533pt;}
.lsd{letter-spacing:0.272000pt;}
.ls23{letter-spacing:0.349867pt;}
.ls10{letter-spacing:0.426133pt;}
.ls30{letter-spacing:0.426240pt;}
.ls26{letter-spacing:0.693760pt;}
.ls16{letter-spacing:0.794880pt;}
.ls1b{letter-spacing:0.992000pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls2a{letter-spacing:3.994880pt;}
.ls31{letter-spacing:10.832640pt;}
.ls2f{letter-spacing:37.840640pt;}
.ls17{letter-spacing:40.912640pt;}
.ls1f{letter-spacing:83.994880pt;}
.ls1c{letter-spacing:107.034880pt;}
.lsa{letter-spacing:180.122880pt;}
.wsd{word-spacing:-53.120000pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws13{word-spacing:-12.354987pt;}
.ws11{word-spacing:-12.249387pt;}
.ws10{word-spacing:-12.170987pt;}
.ws9{word-spacing:-12.160853pt;}
.ws12{word-spacing:-12.129920pt;}
.ws6{word-spacing:-12.005120pt;}
.wsc{word-spacing:-11.976320pt;}
.wse{word-spacing:-11.968640pt;}
.wsa{word-spacing:-11.953280pt;}
.wsb{word-spacing:-11.947520pt;}
.wsf{word-spacing:-11.839253pt;}
.ws8{word-spacing:-11.791253pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-1293.191467pt;}
._2{margin-left:-1185.029120pt;}
._3{margin-left:-900.697600pt;}
._5{margin-left:-520.672853pt;}
._11{margin-left:-4.304640pt;}
._6{margin-left:-2.944000pt;}
._f{margin-left:-2.045227pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._7{width:2.192640pt;}
._8{width:3.429120pt;}
._e{width:4.665173pt;}
._d{width:5.566720pt;}
._9{width:6.640000pt;}
._10{width:7.808640pt;}
._a{width:9.527040pt;}
._c{width:10.730240pt;}
._b{width:13.492480pt;}
._17{width:14.448640pt;}
._15{width:15.351680pt;}
._16{width:16.572800pt;}
._19{width:18.379520pt;}
._22{width:19.371093pt;}
._27{width:20.451200pt;}
._23{width:21.394133pt;}
._1d{width:23.107200pt;}
._1e{width:30.207573pt;}
._1f{width:40.795307pt;}
._25{width:50.570240pt;}
._24{width:51.632640pt;}
._26{width:52.734080pt;}
._1c{width:81.592320pt;}
._12{width:86.594773pt;}
._20{width:92.141013pt;}
._21{width:113.754027pt;}
._1a{width:116.864000pt;}
._1b{width:135.349760pt;}
._18{width:168.117760pt;}
._13{width:180.122880pt;}
._14{width:182.682880pt;}
.fs7{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y12c{bottom:5.914667pt;}
.ybd{bottom:5.920000pt;}
.y155{bottom:6.234667pt;}
.yf5{bottom:7.360000pt;}
.yb9{bottom:9.600000pt;}
.y127{bottom:15.200000pt;}
.y103{bottom:16.160000pt;}
.yfe{bottom:20.960000pt;}
.y128{bottom:24.480000pt;}
.y12b{bottom:24.634667pt;}
.ybc{bottom:24.640000pt;}
.y12e{bottom:24.666667pt;}
.y109{bottom:24.680000pt;}
.y154{bottom:24.954667pt;}
.y151{bottom:31.514667pt;}
.yc2{bottom:34.080000pt;}
.y102{bottom:34.906667pt;}
.yfd{bottom:39.680000pt;}
.y12a{bottom:43.354667pt;}
.ybb{bottom:43.360000pt;}
.y111{bottom:43.386667pt;}
.y108{bottom:43.400000pt;}
.y153{bottom:43.994667pt;}
.y6{bottom:51.872000pt;}
.y101{bottom:53.626667pt;}
.yfc{bottom:58.394667pt;}
.yf8{bottom:62.074667pt;}
.yc1{bottom:62.080000pt;}
.y110{bottom:62.106667pt;}
.y107{bottom:62.120000pt;}
.y152{bottom:62.714667pt;}
.y100{bottom:72.346667pt;}
.yfb{bottom:77.114667pt;}
.yf1{bottom:77.312000pt;}
.yf7{bottom:80.794667pt;}
.y133{bottom:80.800000pt;}
.y10f{bottom:80.826667pt;}
.y94{bottom:81.152000pt;}
.y125{bottom:81.320000pt;}
.y9f{bottom:83.872000pt;}
.y122{bottom:87.552000pt;}
.y77{bottom:91.872000pt;}
.ye9{bottom:93.312000pt;}
.y63{bottom:94.592000pt;}
.yfa{bottom:95.834667pt;}
.y14f{bottom:99.232000pt;}
.yf6{bottom:99.514667pt;}
.y10e{bottom:99.546667pt;}
.y93{bottom:99.872000pt;}
.y124{bottom:100.040000pt;}
.y9e{bottom:102.592000pt;}
.y121{bottom:106.272000pt;}
.y30{bottom:110.592000pt;}
.ye8{bottom:112.032000pt;}
.y62{bottom:113.312000pt;}
.yf9{bottom:114.554667pt;}
.y14e{bottom:117.952000pt;}
.yf3{bottom:118.234667pt;}
.y10d{bottom:118.266667pt;}
.y92{bottom:118.592000pt;}
.y9d{bottom:121.312000pt;}
.y120{bottom:124.992000pt;}
.y2f{bottom:129.312000pt;}
.y129{bottom:129.632000pt;}
.y150{bottom:129.792000pt;}
.ye7{bottom:130.752000pt;}
.y61{bottom:132.032000pt;}
.y14d{bottom:136.666667pt;}
.yf2{bottom:136.954667pt;}
.y91{bottom:137.306667pt;}
.y9c{bottom:140.026667pt;}
.y11f{bottom:143.706667pt;}
.y2e{bottom:148.026667pt;}
.ye6{bottom:149.466667pt;}
.y60{bottom:150.746667pt;}
.y14c{bottom:155.386667pt;}
.y90{bottom:156.026667pt;}
.y9b{bottom:158.746667pt;}
.y11e{bottom:162.426667pt;}
.y2d{bottom:166.746667pt;}
.ye5{bottom:168.186667pt;}
.y5f{bottom:169.466667pt;}
.y14b{bottom:174.106667pt;}
.y8f{bottom:174.746667pt;}
.y9a{bottom:177.466667pt;}
.y11d{bottom:181.146667pt;}
.y2c{bottom:185.466667pt;}
.ye4{bottom:186.906667pt;}
.y5e{bottom:188.186667pt;}
.y14a{bottom:192.826667pt;}
.y8e{bottom:193.466667pt;}
.y99{bottom:196.186667pt;}
.y11c{bottom:199.866667pt;}
.y2b{bottom:204.186667pt;}
.y123{bottom:205.146667pt;}
.yf4{bottom:205.306667pt;}
.ye3{bottom:205.626667pt;}
.yb6{bottom:206.906667pt;}
.y149{bottom:211.546667pt;}
.y8d{bottom:212.186667pt;}
.y5d{bottom:214.906667pt;}
.y11b{bottom:218.586667pt;}
.y2a{bottom:222.906667pt;}
.ye2{bottom:224.346667pt;}
.yb5{bottom:225.626667pt;}
.y148{bottom:230.266667pt;}
.y8c{bottom:230.906667pt;}
.y5c{bottom:233.626667pt;}
.y11a{bottom:237.306667pt;}
.y29{bottom:241.626667pt;}
.ye1{bottom:243.106667pt;}
.yb4{bottom:244.386667pt;}
.y147{bottom:249.026667pt;}
.y8b{bottom:249.666667pt;}
.y5b{bottom:252.386667pt;}
.y119{bottom:256.066667pt;}
.y28{bottom:260.386667pt;}
.ye0{bottom:261.826667pt;}
.yb3{bottom:263.106667pt;}
.y146{bottom:267.746667pt;}
.y8a{bottom:268.386667pt;}
.y5a{bottom:271.106667pt;}
.y118{bottom:274.786667pt;}
.y27{bottom:279.106667pt;}
.ydf{bottom:280.546667pt;}
.y126{bottom:280.706667pt;}
.yb2{bottom:281.826667pt;}
.y145{bottom:286.466667pt;}
.y89{bottom:287.106667pt;}
.y59{bottom:289.826667pt;}
.y117{bottom:293.506667pt;}
.y26{bottom:297.826667pt;}
.yde{bottom:299.266667pt;}
.yb1{bottom:300.546667pt;}
.y144{bottom:305.186667pt;}
.y88{bottom:305.826667pt;}
.y58{bottom:308.546667pt;}
.y116{bottom:312.226667pt;}
.y25{bottom:316.546667pt;}
.ydd{bottom:317.986667pt;}
.yb0{bottom:319.266667pt;}
.y143{bottom:323.906667pt;}
.y87{bottom:324.546667pt;}
.y57{bottom:327.266667pt;}
.y115{bottom:330.946667pt;}
.y24{bottom:335.266667pt;}
.ydc{bottom:336.706667pt;}
.yaf{bottom:337.986667pt;}
.y142{bottom:342.626667pt;}
.y86{bottom:343.266667pt;}
.y56{bottom:345.986667pt;}
.y114{bottom:349.666667pt;}
.y23{bottom:353.826667pt;}
.y76{bottom:353.986667pt;}
.ydb{bottom:355.426667pt;}
.yae{bottom:356.706667pt;}
.y141{bottom:361.346667pt;}
.y85{bottom:361.986667pt;}
.y55{bottom:364.706667pt;}
.y113{bottom:368.386667pt;}
.y22{bottom:372.546667pt;}
.y75{bottom:372.706667pt;}
.yda{bottom:374.146667pt;}
.yad{bottom:375.426667pt;}
.y140{bottom:379.906667pt;}
.y84{bottom:380.706667pt;}
.y112{bottom:381.826667pt;}
.y54{bottom:383.426667pt;}
.y21{bottom:391.266667pt;}
.y74{bottom:391.426667pt;}
.yd9{bottom:392.866667pt;}
.yac{bottom:394.146667pt;}
.y13f{bottom:398.626667pt;}
.y83{bottom:399.426667pt;}
.y53{bottom:402.146667pt;}
.y20{bottom:409.986667pt;}
.y73{bottom:410.146667pt;}
.yd8{bottom:411.586667pt;}
.yab{bottom:412.866667pt;}
.y13e{bottom:417.346667pt;}
.y82{bottom:418.146667pt;}
.y52{bottom:420.866667pt;}
.y72{bottom:428.866667pt;}
.yd7{bottom:430.306667pt;}
.y1f{bottom:430.946667pt;}
.y13d{bottom:436.066667pt;}
.y81{bottom:436.866667pt;}
.y51{bottom:439.586667pt;}
.y71{bottom:447.586667pt;}
.yd6{bottom:449.026667pt;}
.y13c{bottom:454.786667pt;}
.y80{bottom:455.586667pt;}
.y10c{bottom:456.706667pt;}
.y1e{bottom:457.506667pt;}
.yaa{bottom:458.306667pt;}
.y50{bottom:466.306667pt;}
.yd5{bottom:467.746667pt;}
.y13b{bottom:473.506667pt;}
.y7f{bottom:474.306667pt;}
.y1d{bottom:476.226667pt;}
.ya9{bottom:477.026667pt;}
.y4f{bottom:485.026667pt;}
.yd4{bottom:486.466667pt;}
.y13a{bottom:492.226667pt;}
.y7e{bottom:493.026667pt;}
.y1c{bottom:494.973333pt;}
.ya8{bottom:495.773333pt;}
.y4e{bottom:503.773333pt;}
.yd3{bottom:505.213333pt;}
.y139{bottom:510.973333pt;}
.y7d{bottom:511.773333pt;}
.y1b{bottom:513.693333pt;}
.ya7{bottom:514.493333pt;}
.y4d{bottom:522.493333pt;}
.yd2{bottom:523.933333pt;}
.y138{bottom:529.693333pt;}
.y7c{bottom:530.493333pt;}
.y1a{bottom:532.413333pt;}
.ya6{bottom:533.213333pt;}
.y4c{bottom:541.213333pt;}
.yd1{bottom:542.653333pt;}
.y137{bottom:548.413333pt;}
.y7b{bottom:549.213333pt;}
.y19{bottom:551.133333pt;}
.ya5{bottom:551.933333pt;}
.y4b{bottom:559.933333pt;}
.yd0{bottom:561.373333pt;}
.yc4{bottom:562.813333pt;}
.y136{bottom:567.133333pt;}
.y7a{bottom:567.933333pt;}
.y18{bottom:569.853333pt;}
.ya4{bottom:570.493333pt;}
.y4a{bottom:578.493333pt;}
.ycf{bottom:580.093333pt;}
.yc3{bottom:582.813333pt;}
.y135{bottom:585.853333pt;}
.y79{bottom:586.493333pt;}
.y10b{bottom:587.773333pt;}
.y17{bottom:588.573333pt;}
.ya3{bottom:589.213333pt;}
.y49{bottom:597.213333pt;}
.yce{bottom:598.813333pt;}
.y134{bottom:599.293333pt;}
.y78{bottom:605.213333pt;}
.y16{bottom:607.293333pt;}
.ya2{bottom:607.933333pt;}
.y70{bottom:615.933333pt;}
.ycd{bottom:617.533333pt;}
.y48{bottom:623.933333pt;}
.y15{bottom:626.013333pt;}
.y6f{bottom:634.653333pt;}
.ycc{bottom:636.253333pt;}
.yc0{bottom:638.973333pt;}
.y47{bottom:642.653333pt;}
.y14{bottom:644.733333pt;}
.y6e{bottom:653.373333pt;}
.ycb{bottom:654.973333pt;}
.y132{bottom:655.453333pt;}
.y46{bottom:661.373333pt;}
.y10a{bottom:662.653333pt;}
.y13{bottom:663.453333pt;}
.y6d{bottom:672.093333pt;}
.yca{bottom:673.693333pt;}
.y45{bottom:680.093333pt;}
.y12{bottom:682.173333pt;}
.y6c{bottom:690.813333pt;}
.yc9{bottom:692.413333pt;}
.y44{bottom:698.813333pt;}
.y11{bottom:700.893333pt;}
.y6b{bottom:709.533333pt;}
.yc8{bottom:711.133333pt;}
.ybf{bottom:713.853333pt;}
.y43{bottom:717.533333pt;}
.y10{bottom:719.613333pt;}
.y6a{bottom:728.253333pt;}
.yc7{bottom:729.853333pt;}
.y42{bottom:736.253333pt;}
.y106{bottom:737.533333pt;}
.yf{bottom:738.333333pt;}
.y69{bottom:747.013333pt;}
.yc6{bottom:748.613333pt;}
.y131{bottom:749.093333pt;}
.ybe{bottom:751.333333pt;}
.y41{bottom:755.013333pt;}
.ye{bottom:757.093333pt;}
.y68{bottom:765.733333pt;}
.yc5{bottom:767.333333pt;}
.y40{bottom:773.733333pt;}
.yd{bottom:775.813333pt;}
.yf0{bottom:780.133333pt;}
.y67{bottom:784.453333pt;}
.y3f{bottom:792.453333pt;}
.yc{bottom:796.453333pt;}
.y66{bottom:803.173333pt;}
.yba{bottom:807.493333pt;}
.y3e{bottom:811.173333pt;}
.y105{bottom:812.453333pt;}
.yef{bottom:818.213333pt;}
.yb{bottom:819.813333pt;}
.y65{bottom:821.893333pt;}
.y130{bottom:823.973333pt;}
.y3d{bottom:829.893333pt;}
.ya{bottom:834.693333pt;}
.yee{bottom:837.573333pt;}
.y64{bottom:840.613333pt;}
.y3c{bottom:848.613333pt;}
.y9{bottom:854.533333pt;}
.y98{bottom:859.333333pt;}
.yb8{bottom:865.093333pt;}
.y3b{bottom:867.333333pt;}
.yed{bottom:875.013333pt;}
.y8{bottom:876.933333pt;}
.y97{bottom:878.053333pt;}
.y3a{bottom:886.053333pt;}
.y104{bottom:887.333333pt;}
.y96{bottom:896.773333pt;}
.y12f{bottom:898.853333pt;}
.y39{bottom:904.773333pt;}
.y7{bottom:906.853333pt;}
.yec{bottom:912.453333pt;}
.y95{bottom:915.493333pt;}
.y38{bottom:923.493333pt;}
.ya1{bottom:934.213333pt;}
.y37{bottom:942.213333pt;}
.y5{bottom:942.533333pt;}
.yeb{bottom:949.893333pt;}
.ya0{bottom:952.933333pt;}
.y36{bottom:960.933333pt;}
.yff{bottom:962.853333pt;}
.yea{bottom:969.253333pt;}
.y4{bottom:971.173333pt;}
.yb7{bottom:971.653333pt;}
.y12d{bottom:973.733333pt;}
.y35{bottom:979.653333pt;}
.y34{bottom:998.400000pt;}
.y3{bottom:999.680000pt;}
.y33{bottom:1017.120000pt;}
.y2{bottom:1028.320000pt;}
.y32{bottom:1035.840000pt;}
.y1{bottom:1059.040000pt;}
.y31{bottom:1060.640000pt;}
.h1c{height:2.546250pt;}
.h10{height:18.720000pt;}
.h13{height:21.760000pt;}
.hc{height:25.920000pt;}
.h8{height:34.374375pt;}
.h19{height:37.280000pt;}
.h11{height:37.440000pt;}
.he{height:37.472000pt;}
.ha{height:40.514375pt;}
.hb{height:40.566250pt;}
.h2{height:49.907812pt;}
.h9{height:52.834688pt;}
.h6{height:54.390938pt;}
.hd{height:56.160000pt;}
.h4{height:58.563750pt;}
.h7{height:60.288750pt;}
.h3{height:63.656250pt;}
.hf{height:74.880000pt;}
.h16{height:74.912000pt;}
.h1b{height:75.520000pt;}
.h15{height:85.152000pt;}
.h5{height:87.156562pt;}
.h1a{height:93.632000pt;}
.h18{height:112.832000pt;}
.h14{height:127.360000pt;}
.h17{height:131.072000pt;}
.h12{height:149.760000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:60.000000pt;}
.w1a{width:63.040000pt;}
.w15{width:64.000000pt;}
.w12{width:73.312000pt;}
.w18{width:77.440000pt;}
.w8{width:77.952000pt;}
.wf{width:79.520000pt;}
.w19{width:79.552000pt;}
.w11{width:80.800000pt;}
.w10{width:81.152000pt;}
.we{width:81.312000pt;}
.w4{width:84.032000pt;}
.w17{width:88.032000pt;}
.w16{width:90.240000pt;}
.w9{width:96.000000pt;}
.w6{width:141.466667pt;}
.wa{width:156.026667pt;}
.wc{width:170.746667pt;}
.w1b{width:187.386667pt;}
.w13{width:233.986667pt;}
.w7{width:276.026667pt;}
.w3{width:317.946667pt;}
.w14{width:335.266667pt;}
.wd{width:396.093333pt;}
.w1c{width:516.413333pt;}
.wb{width:606.013333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.680000pt;}
.x19{left:41.919988pt;}
.x1{left:47.999988pt;}
.x3{left:54.079988pt;}
.x4{left:71.999988pt;}
.x14{left:80.320000pt;}
.xe{left:83.520000pt;}
.x1a{left:90.111988pt;}
.xa{left:93.472000pt;}
.x5{left:94.752000pt;}
.x2{left:96.031988pt;}
.x1b{left:170.106667pt;}
.x1c{left:235.386667pt;}
.xf{left:254.266667pt;}
.x15{left:314.306667pt;}
.x11{left:335.586667pt;}
.xb{left:369.506667pt;}
.x16{left:404.546667pt;}
.x7{left:412.706667pt;}
.x12{left:415.106667pt;}
.xc{left:447.453333pt;}
.x17{left:492.573333pt;}
.x8{left:496.733333pt;}
.xd{left:543.453333pt;}
.x9{left:556.733333pt;}
.x18{left:570.013333pt;}
.x13{left:577.053333pt;}
.x10{left:650.373333pt;}
}




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