
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7a048516f92a2d0cfff9d5fb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_5ac5eeaa19075b219ed92963.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_40d801a7ea9ce7fd73b9d0ae.woff')format("woff");}.ff4{font-family:ff4;line-height:1.061035;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_378973ba3d30a9ebcbbafd6f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_d85ac37ec85d244a6ec18236.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_19d6977f6039aaa4dd9b26a1.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_9e12ba0500f1ef9206309b9c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_bd5496559c0929e40024ac88.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2778d84a6a9f19de9f487286.woff')format("woff");}.ffa{font-family:ffa;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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.186600px;}
.ls11{letter-spacing:-0.160800px;}
.ls13{letter-spacing:-0.159600px;}
.ls8{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.063600px;}
.ls14{letter-spacing:-0.037800px;}
.ls16{letter-spacing:-0.014760px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.lsb{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls15{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls4{letter-spacing:8.640000px;}
.ls17{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.wse{word-spacing:-13.425600px;}
.ws7{word-spacing:-13.399800px;}
.ws5{word-spacing:-13.342800px;}
.wsb{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.211640px;}
.wsd{word-spacing:-13.188600px;}
.wsc{word-spacing:-13.162800px;}
.ws9{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._11{margin-left:-4.152239px;}
._e{margin-left:-2.946000px;}
._0{margin-left:-1.110000px;}
._1{width:1.172892px;}
._2{width:2.308192px;}
._9{width:3.727200px;}
._c{width:4.965506px;}
._b{width:6.383160px;}
._a{width:7.395000px;}
._7{width:8.536800px;}
._8{width:9.613059px;}
._13{width:10.863154px;}
._10{width:12.084000px;}
._d{width:14.248200px;}
._12{width:15.871680px;}
._3{width:17.134200px;}
._4{width:18.303120px;}
._f{width:20.053680px;}
._14{width:21.970200px;}
._6{width:23.572803px;}
._5{width:24.616800px;}
._19{width:26.036640px;}
._1a{width:30.661200px;}
._17{width:41.061960px;}
._1d{width:44.748000px;}
._1e{width:46.273680px;}
._16{width:49.418640px;}
._15{width:75.450600px;}
._1b{width:88.496640px;}
._18{width:99.137880px;}
._1f{width:169.478280px;}
._20{width:170.500320px;}
._1c{width:206.782560px;}
._22{width:616.891320px;}
._21{width:1103.442480px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:78.120000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y81{bottom:7.830000px;}
.y7f{bottom:7.920000px;}
.y7e{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yc6{bottom:116.040000px;}
.y5a{bottom:121.170000px;}
.yab{bottom:124.410000px;}
.y135{bottom:124.950000px;}
.y117{bottom:126.390000px;}
.y27{bottom:129.270000px;}
.y59{bottom:138.720000px;}
.yf8{bottom:139.530000px;}
.yaa{bottom:141.960000px;}
.y134{bottom:142.500000px;}
.y116{bottom:143.940000px;}
.y26{bottom:146.820000px;}
.yc5{bottom:151.410000px;}
.yf7{bottom:157.170000px;}
.y133{bottom:160.050000px;}
.y115{bottom:161.580000px;}
.y25{bottom:164.370000px;}
.y58{bottom:174.270000px;}
.yf6{bottom:174.720000px;}
.ya9{bottom:177.600000px;}
.y132{bottom:177.690000px;}
.y114{bottom:179.130000px;}
.yc4{bottom:183.630000px;}
.y7c{bottom:189.480000px;}
.y57{bottom:191.910000px;}
.yf5{bottom:192.270000px;}
.ya8{bottom:195.150000px;}
.y113{bottom:196.680000px;}
.y24{bottom:200.010000px;}
.y56{bottom:209.460000px;}
.yf4{bottom:209.910000px;}
.ya7{bottom:212.700000px;}
.y131{bottom:213.240000px;}
.y112{bottom:214.320000px;}
.y23{bottom:217.560000px;}
.y7b{bottom:225.030000px;}
.y55{bottom:227.100000px;}
.yf3{bottom:227.460000px;}
.ya6{bottom:230.340000px;}
.y130{bottom:230.880000px;}
.y111{bottom:231.870000px;}
.y54{bottom:244.650000px;}
.ya5{bottom:247.890000px;}
.y12f{bottom:248.430000px;}
.y22{bottom:253.200000px;}
.y7a{bottom:260.670000px;}
.yf2{bottom:263.100000px;}
.ya4{bottom:265.440000px;}
.y12e{bottom:265.980000px;}
.y110{bottom:267.510000px;}
.y21{bottom:270.750000px;}
.y53{bottom:271.200000px;}
.y79{bottom:278.220000px;}
.yf1{bottom:280.650000px;}
.ya3{bottom:283.080000px;}
.y12d{bottom:283.620000px;}
.y10f{bottom:285.060000px;}
.y20{bottom:288.300000px;}
.yf0{bottom:298.200000px;}
.y12c{bottom:301.170000px;}
.y10e{bottom:302.610000px;}
.y1f{bottom:305.940000px;}
.y52{bottom:306.840000px;}
.y78{bottom:313.860000px;}
.yef{bottom:315.840000px;}
.ya2{bottom:318.630000px;}
.y12b{bottom:318.810000px;}
.y10d{bottom:320.250000px;}
.y1e{bottom:323.490000px;}
.y51{bottom:324.390000px;}
.y77{bottom:331.410000px;}
.yee{bottom:333.390000px;}
.ya1{bottom:336.270000px;}
.y10c{bottom:337.800000px;}
.y1d{bottom:341.130000px;}
.y50{bottom:341.940000px;}
.y76{bottom:348.960000px;}
.yed{bottom:350.940000px;}
.ya0{bottom:353.820000px;}
.y12a{bottom:354.360000px;}
.y10b{bottom:355.440000px;}
.y4f{bottom:359.580000px;}
.y75{bottom:366.600000px;}
.yec{bottom:368.580000px;}
.y9f{bottom:371.370000px;}
.y129{bottom:371.910000px;}
.y10a{bottom:372.990000px;}
.y1c{bottom:376.680000px;}
.y4e{bottom:377.130000px;}
.y74{bottom:384.150000px;}
.yeb{bottom:386.130000px;}
.y9e{bottom:389.010000px;}
.y128{bottom:389.550000px;}
.y109{bottom:390.540000px;}
.y1b{bottom:394.230000px;}
.y4d{bottom:394.770000px;}
.y73{bottom:401.790000px;}
.y9d{bottom:406.560000px;}
.y127{bottom:407.100000px;}
.y1a{bottom:411.870000px;}
.y4c{bottom:412.320000px;}
.yea{bottom:412.770000px;}
.y9c{bottom:424.200000px;}
.y126{bottom:424.740000px;}
.y108{bottom:426.180000px;}
.y19{bottom:429.420000px;}
.y4b{bottom:429.870000px;}
.y72{bottom:437.340000px;}
.y125{bottom:442.290000px;}
.y107{bottom:443.730000px;}
.y18{bottom:447.060000px;}
.ye9{bottom:448.320000px;}
.y9b{bottom:450.750000px;}
.y71{bottom:454.890000px;}
.y106{bottom:461.370000px;}
.y17{bottom:464.610000px;}
.y4a{bottom:465.510000px;}
.ye8{bottom:465.870000px;}
.y70{bottom:472.560000px;}
.y124{bottom:477.870000px;}
.y105{bottom:478.950000px;}
.y16{bottom:482.190000px;}
.y49{bottom:483.090000px;}
.ye7{bottom:483.540000px;}
.y9a{bottom:486.330000px;}
.y6f{bottom:490.110000px;}
.y123{bottom:495.510000px;}
.y104{bottom:496.500000px;}
.y15{bottom:499.830000px;}
.y48{bottom:500.730000px;}
.ye6{bottom:501.090000px;}
.y99{bottom:503.970000px;}
.y6e{bottom:507.750000px;}
.y122{bottom:513.060000px;}
.y103{bottom:514.140000px;}
.y47{bottom:518.280000px;}
.ye5{bottom:518.730000px;}
.y98{bottom:521.520000px;}
.y6d{bottom:525.300000px;}
.y14{bottom:526.740000px;}
.y121{bottom:530.700000px;}
.y102{bottom:531.690000px;}
.y46{bottom:535.830000px;}
.ye4{bottom:536.280000px;}
.y97{bottom:539.160000px;}
.y6c{bottom:542.850000px;}
.y148{bottom:544.830000px;}
.y120{bottom:548.250000px;}
.y101{bottom:549.330000px;}
.y45{bottom:553.470000px;}
.ye3{bottom:553.830000px;}
.y96{bottom:556.710000px;}
.y147{bottom:562.470000px;}
.y11f{bottom:565.800000px;}
.y100{bottom:566.880000px;}
.yc3{bottom:567.330000px;}
.y6b{bottom:569.490000px;}
.y44{bottom:571.020000px;}
.ye2{bottom:571.470000px;}
.y95{bottom:574.260000px;}
.y13{bottom:574.980000px;}
.y146{bottom:580.020000px;}
.y11e{bottom:583.440000px;}
.yff{bottom:584.430000px;}
.yc2{bottom:584.880000px;}
.y43{bottom:588.660000px;}
.ye1{bottom:589.020000px;}
.y12{bottom:592.890000px;}
.y145{bottom:597.660000px;}
.yc1{bottom:602.430000px;}
.y6a{bottom:605.040000px;}
.y42{bottom:606.210000px;}
.y94{bottom:609.900000px;}
.y11d{bottom:618.990000px;}
.yc0{bottom:620.070000px;}
.y69{bottom:622.590000px;}
.y144{bottom:624.210000px;}
.ye0{bottom:624.660000px;}
.y93{bottom:627.450000px;}
.y11{bottom:629.880000px;}
.y41{bottom:632.760000px;}
.y11c{bottom:636.540000px;}
.ybf{bottom:637.620000px;}
.y68{bottom:640.230000px;}
.y143{bottom:641.760000px;}
.ydf{bottom:642.210000px;}
.y92{bottom:645.090000px;}
.y10{bottom:647.520000px;}
.y11b{bottom:654.180000px;}
.ybe{bottom:655.260000px;}
.y67{bottom:657.780000px;}
.y142{bottom:659.400000px;}
.yde{bottom:659.760000px;}
.y91{bottom:662.640000px;}
.yf{bottom:665.070000px;}
.y40{bottom:668.670000px;}
.ybd{bottom:672.810000px;}
.y66{bottom:675.420000px;}
.y141{bottom:676.950000px;}
.ydd{bottom:677.400000px;}
.y90{bottom:680.190000px;}
.y11a{bottom:681.090000px;}
.ye{bottom:682.710000px;}
.ybc{bottom:690.360000px;}
.y65{bottom:692.970000px;}
.ydc{bottom:694.950000px;}
.y8f{bottom:697.830000px;}
.yd{bottom:700.260000px;}
.y140{bottom:703.590000px;}
.yfe{bottom:708.000000px;}
.ydb{bottom:712.590000px;}
.y8e{bottom:715.380000px;}
.y3f{bottom:717.000000px;}
.yc{bottom:717.810000px;}
.y13f{bottom:721.140000px;}
.yfd{bottom:725.550000px;}
.ybb{bottom:726.000000px;}
.y64{bottom:728.520000px;}
.y119{bottom:729.330000px;}
.yda{bottom:730.140000px;}
.y8d{bottom:733.020000px;}
.y3e{bottom:734.550000px;}
.yb{bottom:735.450000px;}
.y13e{bottom:738.690000px;}
.yba{bottom:743.550000px;}
.y63{bottom:746.160000px;}
.yd9{bottom:747.690000px;}
.y3d{bottom:752.190000px;}
.ya{bottom:753.000000px;}
.yb9{bottom:761.190000px;}
.y118{bottom:761.550000px;}
.y62{bottom:763.710000px;}
.yd8{bottom:765.330000px;}
.y8c{bottom:768.570000px;}
.y3c{bottom:769.740000px;}
.yb8{bottom:778.740000px;}
.y9{bottom:779.910000px;}
.y61{bottom:781.350000px;}
.y13d{bottom:782.880000px;}
.y8b{bottom:786.120000px;}
.yfc{bottom:787.740000px;}
.yb7{bottom:796.290000px;}
.y60{bottom:798.900000px;}
.yd7{bottom:800.880000px;}
.y8a{bottom:803.760000px;}
.y3b{bottom:805.290000px;}
.y13c{bottom:809.520000px;}
.yb6{bottom:813.930000px;}
.y5f{bottom:816.450000px;}
.yd6{bottom:818.520000px;}
.y89{bottom:821.310000px;}
.y3a{bottom:822.930000px;}
.y13b{bottom:827.070000px;}
.y8{bottom:828.240000px;}
.yb5{bottom:831.480000px;}
.y5e{bottom:834.090000px;}
.yd5{bottom:836.070000px;}
.y88{bottom:838.950000px;}
.y39{bottom:840.480000px;}
.y13a{bottom:844.620000px;}
.y5d{bottom:851.640000px;}
.yd4{bottom:853.620000px;}
.y87{bottom:856.500000px;}
.y38{bottom:858.030000px;}
.y7{bottom:863.790000px;}
.yb4{bottom:867.030000px;}
.yd3{bottom:871.260000px;}
.y37{bottom:875.670000px;}
.y5c{bottom:878.190000px;}
.y86{bottom:883.050000px;}
.yb3{bottom:884.670000px;}
.yd2{bottom:888.810000px;}
.y36{bottom:893.220000px;}
.y6{bottom:899.610000px;}
.yb2{bottom:902.220000px;}
.yd1{bottom:906.450000px;}
.y35{bottom:910.860000px;}
.y85{bottom:918.960000px;}
.yb1{bottom:919.860000px;}
.yd0{bottom:924.000000px;}
.yfb{bottom:928.410000px;}
.y5{bottom:935.610000px;}
.yb0{bottom:937.410000px;}
.ycf{bottom:941.550000px;}
.y34{bottom:946.410000px;}
.y139{bottom:950.550000px;}
.yaf{bottom:954.960000px;}
.y33{bottom:963.960000px;}
.y84{bottom:964.680000px;}
.y138{bottom:968.190000px;}
.y4{bottom:971.700000px;}
.yae{bottom:972.600000px;}
.yce{bottom:977.190000px;}
.y32{bottom:981.600000px;}
.y137{bottom:985.740000px;}
.yad{bottom:990.150000px;}
.y83{bottom:991.950000px;}
.ycd{bottom:994.740000px;}
.y31{bottom:999.150000px;}
.yac{bottom:1007.790000px;}
.y3{bottom:1009.980000px;}
.ycc{bottom:1012.320000px;}
.y30{bottom:1016.820000px;}
.y82{bottom:1019.340000px;}
.ycb{bottom:1029.960000px;}
.y2f{bottom:1034.370000px;}
.y80{bottom:1046.700000px;}
.yca{bottom:1047.510000px;}
.y2e{bottom:1051.920000px;}
.yc9{bottom:1065.150000px;}
.yfa{bottom:1069.560000px;}
.y5b{bottom:1069.920000px;}
.y7d{bottom:1073.970000px;}
.y136{bottom:1074.420000px;}
.yf9{bottom:1087.110000px;}
.y2d{bottom:1087.560000px;}
.yc8{bottom:1091.700000px;}
.y2c{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.yc7{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h10{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.he{height:44.190000px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hd{height:59.973223px;}
.h8{height:60.960938px;}
.h11{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:71.019492px;}
.hc{height:74.953125px;}
.h9{height:81.324141px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:117.360000px;}
.w3{width:132.870000px;}
.w6{width:152.400000px;}
.w4{width:169.740000px;}
.w7{width:180.360000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.xc{left:111.239987px;}
.xb{left:128.339987px;}
.xa{left:192.089987px;}
.x5{left:202.350000px;}
.x2{left:211.079987px;}
.x6{left:372.900000px;}
.x7{left:490.980000px;}
.x8{left:644.100000px;}
.x9{left:767.309987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls11{letter-spacing:-0.142933pt;}
.ls13{letter-spacing:-0.141867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.056533pt;}
.ls14{letter-spacing:-0.033600pt;}
.ls16{letter-spacing:-0.013120pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.lsb{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls15{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls4{letter-spacing:7.680000pt;}
.ls17{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.933867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws5{word-spacing:-11.860267pt;}
.wsb{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.743680pt;}
.wsd{word-spacing:-11.723200pt;}
.wsc{word-spacing:-11.700267pt;}
.ws9{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._11{margin-left:-3.690879pt;}
._e{margin-left:-2.618667pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.042570pt;}
._2{width:2.051726pt;}
._9{width:3.313066pt;}
._c{width:4.413783pt;}
._b{width:5.673920pt;}
._a{width:6.573334pt;}
._7{width:7.588266pt;}
._8{width:8.544942pt;}
._13{width:9.656137pt;}
._10{width:10.741333pt;}
._d{width:12.665066pt;}
._12{width:14.108160pt;}
._3{width:15.230400pt;}
._4{width:16.269440pt;}
._f{width:17.825493pt;}
._14{width:19.529067pt;}
._6{width:20.953602pt;}
._5{width:21.881600pt;}
._19{width:23.143680pt;}
._1a{width:27.254400pt;}
._17{width:36.499520pt;}
._1d{width:39.776000pt;}
._1e{width:41.132160pt;}
._16{width:43.927680pt;}
._15{width:67.067200pt;}
._1b{width:78.663680pt;}
._18{width:88.122560pt;}
._1f{width:150.647360pt;}
._20{width:151.555840pt;}
._1c{width:183.806720pt;}
._22{width:548.347840pt;}
._21{width:980.837760pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:69.440000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:6.960000pt;}
.y7f{bottom:7.040000pt;}
.y7e{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yc6{bottom:103.146667pt;}
.y5a{bottom:107.706667pt;}
.yab{bottom:110.586667pt;}
.y135{bottom:111.066667pt;}
.y117{bottom:112.346667pt;}
.y27{bottom:114.906667pt;}
.y59{bottom:123.306667pt;}
.yf8{bottom:124.026667pt;}
.yaa{bottom:126.186667pt;}
.y134{bottom:126.666667pt;}
.y116{bottom:127.946667pt;}
.y26{bottom:130.506667pt;}
.yc5{bottom:134.586667pt;}
.yf7{bottom:139.706667pt;}
.y133{bottom:142.266667pt;}
.y115{bottom:143.626667pt;}
.y25{bottom:146.106667pt;}
.y58{bottom:154.906667pt;}
.yf6{bottom:155.306667pt;}
.ya9{bottom:157.866667pt;}
.y132{bottom:157.946667pt;}
.y114{bottom:159.226667pt;}
.yc4{bottom:163.226667pt;}
.y7c{bottom:168.426667pt;}
.y57{bottom:170.586667pt;}
.yf5{bottom:170.906667pt;}
.ya8{bottom:173.466667pt;}
.y113{bottom:174.826667pt;}
.y24{bottom:177.786667pt;}
.y56{bottom:186.186667pt;}
.yf4{bottom:186.586667pt;}
.ya7{bottom:189.066667pt;}
.y131{bottom:189.546667pt;}
.y112{bottom:190.506667pt;}
.y23{bottom:193.386667pt;}
.y7b{bottom:200.026667pt;}
.y55{bottom:201.866667pt;}
.yf3{bottom:202.186667pt;}
.ya6{bottom:204.746667pt;}
.y130{bottom:205.226667pt;}
.y111{bottom:206.106667pt;}
.y54{bottom:217.466667pt;}
.ya5{bottom:220.346667pt;}
.y12f{bottom:220.826667pt;}
.y22{bottom:225.066667pt;}
.y7a{bottom:231.706667pt;}
.yf2{bottom:233.866667pt;}
.ya4{bottom:235.946667pt;}
.y12e{bottom:236.426667pt;}
.y110{bottom:237.786667pt;}
.y21{bottom:240.666667pt;}
.y53{bottom:241.066667pt;}
.y79{bottom:247.306667pt;}
.yf1{bottom:249.466667pt;}
.ya3{bottom:251.626667pt;}
.y12d{bottom:252.106667pt;}
.y10f{bottom:253.386667pt;}
.y20{bottom:256.266667pt;}
.yf0{bottom:265.066667pt;}
.y12c{bottom:267.706667pt;}
.y10e{bottom:268.986667pt;}
.y1f{bottom:271.946667pt;}
.y52{bottom:272.746667pt;}
.y78{bottom:278.986667pt;}
.yef{bottom:280.746667pt;}
.ya2{bottom:283.226667pt;}
.y12b{bottom:283.386667pt;}
.y10d{bottom:284.666667pt;}
.y1e{bottom:287.546667pt;}
.y51{bottom:288.346667pt;}
.y77{bottom:294.586667pt;}
.yee{bottom:296.346667pt;}
.ya1{bottom:298.906667pt;}
.y10c{bottom:300.266667pt;}
.y1d{bottom:303.226667pt;}
.y50{bottom:303.946667pt;}
.y76{bottom:310.186667pt;}
.yed{bottom:311.946667pt;}
.ya0{bottom:314.506667pt;}
.y12a{bottom:314.986667pt;}
.y10b{bottom:315.946667pt;}
.y4f{bottom:319.626667pt;}
.y75{bottom:325.866667pt;}
.yec{bottom:327.626667pt;}
.y9f{bottom:330.106667pt;}
.y129{bottom:330.586667pt;}
.y10a{bottom:331.546667pt;}
.y1c{bottom:334.826667pt;}
.y4e{bottom:335.226667pt;}
.y74{bottom:341.466667pt;}
.yeb{bottom:343.226667pt;}
.y9e{bottom:345.786667pt;}
.y128{bottom:346.266667pt;}
.y109{bottom:347.146667pt;}
.y1b{bottom:350.426667pt;}
.y4d{bottom:350.906667pt;}
.y73{bottom:357.146667pt;}
.y9d{bottom:361.386667pt;}
.y127{bottom:361.866667pt;}
.y1a{bottom:366.106667pt;}
.y4c{bottom:366.506667pt;}
.yea{bottom:366.906667pt;}
.y9c{bottom:377.066667pt;}
.y126{bottom:377.546667pt;}
.y108{bottom:378.826667pt;}
.y19{bottom:381.706667pt;}
.y4b{bottom:382.106667pt;}
.y72{bottom:388.746667pt;}
.y125{bottom:393.146667pt;}
.y107{bottom:394.426667pt;}
.y18{bottom:397.386667pt;}
.ye9{bottom:398.506667pt;}
.y9b{bottom:400.666667pt;}
.y71{bottom:404.346667pt;}
.y106{bottom:410.106667pt;}
.y17{bottom:412.986667pt;}
.y4a{bottom:413.786667pt;}
.ye8{bottom:414.106667pt;}
.y70{bottom:420.053333pt;}
.y124{bottom:424.773333pt;}
.y105{bottom:425.733333pt;}
.y16{bottom:428.613333pt;}
.y49{bottom:429.413333pt;}
.ye7{bottom:429.813333pt;}
.y9a{bottom:432.293333pt;}
.y6f{bottom:435.653333pt;}
.y123{bottom:440.453333pt;}
.y104{bottom:441.333333pt;}
.y15{bottom:444.293333pt;}
.y48{bottom:445.093333pt;}
.ye6{bottom:445.413333pt;}
.y99{bottom:447.973333pt;}
.y6e{bottom:451.333333pt;}
.y122{bottom:456.053333pt;}
.y103{bottom:457.013333pt;}
.y47{bottom:460.693333pt;}
.ye5{bottom:461.093333pt;}
.y98{bottom:463.573333pt;}
.y6d{bottom:466.933333pt;}
.y14{bottom:468.213333pt;}
.y121{bottom:471.733333pt;}
.y102{bottom:472.613333pt;}
.y46{bottom:476.293333pt;}
.ye4{bottom:476.693333pt;}
.y97{bottom:479.253333pt;}
.y6c{bottom:482.533333pt;}
.y148{bottom:484.293333pt;}
.y120{bottom:487.333333pt;}
.y101{bottom:488.293333pt;}
.y45{bottom:491.973333pt;}
.ye3{bottom:492.293333pt;}
.y96{bottom:494.853333pt;}
.y147{bottom:499.973333pt;}
.y11f{bottom:502.933333pt;}
.y100{bottom:503.893333pt;}
.yc3{bottom:504.293333pt;}
.y6b{bottom:506.213333pt;}
.y44{bottom:507.573333pt;}
.ye2{bottom:507.973333pt;}
.y95{bottom:510.453333pt;}
.y13{bottom:511.093333pt;}
.y146{bottom:515.573333pt;}
.y11e{bottom:518.613333pt;}
.yff{bottom:519.493333pt;}
.yc2{bottom:519.893333pt;}
.y43{bottom:523.253333pt;}
.ye1{bottom:523.573333pt;}
.y12{bottom:527.013333pt;}
.y145{bottom:531.253333pt;}
.yc1{bottom:535.493333pt;}
.y6a{bottom:537.813333pt;}
.y42{bottom:538.853333pt;}
.y94{bottom:542.133333pt;}
.y11d{bottom:550.213333pt;}
.yc0{bottom:551.173333pt;}
.y69{bottom:553.413333pt;}
.y144{bottom:554.853333pt;}
.ye0{bottom:555.253333pt;}
.y93{bottom:557.733333pt;}
.y11{bottom:559.893333pt;}
.y41{bottom:562.453333pt;}
.y11c{bottom:565.813333pt;}
.ybf{bottom:566.773333pt;}
.y68{bottom:569.093333pt;}
.y143{bottom:570.453333pt;}
.ydf{bottom:570.853333pt;}
.y92{bottom:573.413333pt;}
.y10{bottom:575.573333pt;}
.y11b{bottom:581.493333pt;}
.ybe{bottom:582.453333pt;}
.y67{bottom:584.693333pt;}
.y142{bottom:586.133333pt;}
.yde{bottom:586.453333pt;}
.y91{bottom:589.013333pt;}
.yf{bottom:591.173333pt;}
.y40{bottom:594.373333pt;}
.ybd{bottom:598.053333pt;}
.y66{bottom:600.373333pt;}
.y141{bottom:601.733333pt;}
.ydd{bottom:602.133333pt;}
.y90{bottom:604.613333pt;}
.y11a{bottom:605.413333pt;}
.ye{bottom:606.853333pt;}
.ybc{bottom:613.653333pt;}
.y65{bottom:615.973333pt;}
.ydc{bottom:617.733333pt;}
.y8f{bottom:620.293333pt;}
.yd{bottom:622.453333pt;}
.y140{bottom:625.413333pt;}
.yfe{bottom:629.333333pt;}
.ydb{bottom:633.413333pt;}
.y8e{bottom:635.893333pt;}
.y3f{bottom:637.333333pt;}
.yc{bottom:638.053333pt;}
.y13f{bottom:641.013333pt;}
.yfd{bottom:644.933333pt;}
.ybb{bottom:645.333333pt;}
.y64{bottom:647.573333pt;}
.y119{bottom:648.293333pt;}
.yda{bottom:649.013333pt;}
.y8d{bottom:651.573333pt;}
.y3e{bottom:652.933333pt;}
.yb{bottom:653.733333pt;}
.y13e{bottom:656.613333pt;}
.yba{bottom:660.933333pt;}
.y63{bottom:663.253333pt;}
.yd9{bottom:664.613333pt;}
.y3d{bottom:668.613333pt;}
.ya{bottom:669.333333pt;}
.yb9{bottom:676.613333pt;}
.y118{bottom:676.933333pt;}
.y62{bottom:678.853333pt;}
.yd8{bottom:680.293333pt;}
.y8c{bottom:683.173333pt;}
.y3c{bottom:684.213333pt;}
.yb8{bottom:692.213333pt;}
.y9{bottom:693.253333pt;}
.y61{bottom:694.533333pt;}
.y13d{bottom:695.893333pt;}
.y8b{bottom:698.773333pt;}
.yfc{bottom:700.213333pt;}
.yb7{bottom:707.813333pt;}
.y60{bottom:710.133333pt;}
.yd7{bottom:711.893333pt;}
.y8a{bottom:714.453333pt;}
.y3b{bottom:715.813333pt;}
.y13c{bottom:719.573333pt;}
.yb6{bottom:723.493333pt;}
.y5f{bottom:725.733333pt;}
.yd6{bottom:727.573333pt;}
.y89{bottom:730.053333pt;}
.y3a{bottom:731.493333pt;}
.y13b{bottom:735.173333pt;}
.y8{bottom:736.213333pt;}
.yb5{bottom:739.093333pt;}
.y5e{bottom:741.413333pt;}
.yd5{bottom:743.173333pt;}
.y88{bottom:745.733333pt;}
.y39{bottom:747.093333pt;}
.y13a{bottom:750.773333pt;}
.y5d{bottom:757.013333pt;}
.yd4{bottom:758.773333pt;}
.y87{bottom:761.333333pt;}
.y38{bottom:762.693333pt;}
.y7{bottom:767.813333pt;}
.yb4{bottom:770.693333pt;}
.yd3{bottom:774.453333pt;}
.y37{bottom:778.373333pt;}
.y5c{bottom:780.613333pt;}
.y86{bottom:784.933333pt;}
.yb3{bottom:786.373333pt;}
.yd2{bottom:790.053333pt;}
.y36{bottom:793.973333pt;}
.y6{bottom:799.653333pt;}
.yb2{bottom:801.973333pt;}
.yd1{bottom:805.733333pt;}
.y35{bottom:809.653333pt;}
.y85{bottom:816.853333pt;}
.yb1{bottom:817.653333pt;}
.yd0{bottom:821.333333pt;}
.yfb{bottom:825.253333pt;}
.y5{bottom:831.653333pt;}
.yb0{bottom:833.253333pt;}
.ycf{bottom:836.933333pt;}
.y34{bottom:841.253333pt;}
.y139{bottom:844.933333pt;}
.yaf{bottom:848.853333pt;}
.y33{bottom:856.853333pt;}
.y84{bottom:857.493333pt;}
.y138{bottom:860.613333pt;}
.y4{bottom:863.733333pt;}
.yae{bottom:864.533333pt;}
.yce{bottom:868.613333pt;}
.y32{bottom:872.533333pt;}
.y137{bottom:876.213333pt;}
.yad{bottom:880.133333pt;}
.y83{bottom:881.733333pt;}
.ycd{bottom:884.213333pt;}
.y31{bottom:888.133333pt;}
.yac{bottom:895.813333pt;}
.y3{bottom:897.760000pt;}
.ycc{bottom:899.840000pt;}
.y30{bottom:903.840000pt;}
.y82{bottom:906.080000pt;}
.ycb{bottom:915.520000pt;}
.y2f{bottom:919.440000pt;}
.y80{bottom:930.400000pt;}
.yca{bottom:931.120000pt;}
.y2e{bottom:935.040000pt;}
.yc9{bottom:946.800000pt;}
.yfa{bottom:950.720000pt;}
.y5b{bottom:951.040000pt;}
.y7d{bottom:954.640000pt;}
.y136{bottom:955.040000pt;}
.yf9{bottom:966.320000pt;}
.y2d{bottom:966.720000pt;}
.yc8{bottom:970.400000pt;}
.y2c{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.yc7{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h10{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.he{height:39.280000pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hd{height:53.309531pt;}
.h8{height:54.187500pt;}
.h11{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:63.128437pt;}
.hc{height:66.625000pt;}
.h9{height:72.288125pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:104.320000pt;}
.w3{width:118.106667pt;}
.w6{width:135.466667pt;}
.w4{width:150.880000pt;}
.w7{width:160.320000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.xc{left:98.879988pt;}
.xb{left:114.079988pt;}
.xa{left:170.746655pt;}
.x5{left:179.866667pt;}
.x2{left:187.626655pt;}
.x6{left:331.466667pt;}
.x7{left:436.426667pt;}
.x8{left:572.533333pt;}
.x9{left:682.053322pt;}
.x3{left:711.413322pt;}
}




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