
    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_2da229154614fdf4e352daf4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_e33cf0547d596fb566145ae5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.401855;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_45c09711bfb1cce5c7c688f1.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_42b1f733360a536231080788.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_45637e7143ee66fc562143cc.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_629c1f6ce0a0a38c9f8ea6e5.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d1905d1dff23c1e1548b367a.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_67617e743c62a8b83d1b67ca.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_30ac260008d1d8d69da4f462.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5832bc052232843ffd4faeaf.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.129600px;}
.lsa{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.280080px;}
.lse{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.900000px;}
.ls13{letter-spacing:2.160000px;}
.ls15{letter-spacing:3.600000px;}
.ls9{letter-spacing:10.080000px;}
.ls6{letter-spacing:12.960000px;}
.ls11{letter-spacing:13.680000px;}
.ls16{letter-spacing:19.440000px;}
.ls17{letter-spacing:33.984000px;}
.lsc{letter-spacing:44.784000px;}
.lsb{letter-spacing:55.386720px;}
.ls10{letter-spacing:64.002720px;}
.ls7{letter-spacing:64.026720px;}
.ls5{letter-spacing:72.269280px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.ws1{word-spacing:-30.060000px;}
.ws6{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.784000px;}
.ws5{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._27{margin-left:-9.648000px;}
._2{margin-left:-7.992000px;}
._5{margin-left:-6.327840px;}
._0{margin-left:-4.968000px;}
._26{margin-left:-3.888000px;}
._1{margin-left:-2.736000px;}
._4{margin-left:-1.608000px;}
._3{width:1.680000px;}
._6{width:2.688000px;}
._8{width:3.780000px;}
._7{width:5.040000px;}
._9{width:6.228000px;}
._e{width:7.488000px;}
._f{width:8.508000px;}
._a{width:10.152000px;}
._b{width:11.364000px;}
._1a{width:12.972000px;}
._10{width:14.256000px;}
._11{width:15.492000px;}
._14{width:16.764000px;}
._12{width:19.464000px;}
._18{width:20.640000px;}
._17{width:21.672000px;}
._c{width:22.944000px;}
._d{width:24.120000px;}
._19{width:25.200000px;}
._15{width:26.280000px;}
._16{width:27.528000px;}
._1f{width:28.596000px;}
._13{width:29.880000px;}
._21{width:30.960000px;}
._1e{width:32.352000px;}
._1d{width:34.152000px;}
._22{width:35.352000px;}
._1b{width:36.576000px;}
._1c{width:38.160000px;}
._20{width:39.228000px;}
._25{width:40.464000px;}
._23{width:42.120000px;}
._24{width:43.296000px;}
._28{width:52.488000px;}
._29{width:54.216000px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(15,36,62);}
.fc1{color:rgb(148,54,52);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(0,176,80);}
.fs2{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.yb8{bottom:20.340000px;}
.yba{bottom:23.040000px;}
.ye1{bottom:26.265000px;}
.yc6{bottom:26.280000px;}
.ybf{bottom:26.310000px;}
.yda{bottom:26.460000px;}
.yc8{bottom:26.625000px;}
.ycf{bottom:26.640000px;}
.ye4{bottom:26.805000px;}
.yc1{bottom:26.820000px;}
.ydc{bottom:30.960000px;}
.y4{bottom:58.320000px;}
.y3{bottom:78.660000px;}
.y12e{bottom:112.860000px;}
.y63{bottom:122.040000px;}
.y6b{bottom:133.020000px;}
.ye7{bottom:140.580000px;}
.y11e{bottom:142.596000px;}
.y118{bottom:142.956000px;}
.y12d{bottom:143.856000px;}
.y149{bottom:144.756000px;}
.y62{bottom:153.030000px;}
.ya1{bottom:162.210000px;}
.yb4{bottom:162.750000px;}
.y90{bottom:163.110000px;}
.y3f{bottom:164.010000px;}
.ye6{bottom:171.210000px;}
.y22{bottom:173.370000px;}
.y117{bottom:174.090000px;}
.y12c{bottom:174.990000px;}
.y148{bottom:175.890000px;}
.y81{bottom:184.170000px;}
.y79{bottom:185.070000px;}
.y111{bottom:188.310000px;}
.yfc{bottom:193.170000px;}
.y8f{bottom:194.250000px;}
.y11d{bottom:194.790000px;}
.y3e{bottom:195.150000px;}
.y21{bottom:204.330000px;}
.y61{bottom:205.050000px;}
.y12b{bottom:205.950000px;}
.y147{bottom:206.850000px;}
.ya0{bottom:214.230000px;}
.yb3{bottom:214.770000px;}
.y80{bottom:215.130000px;}
.ycc{bottom:215.490000px;}
.y78{bottom:216.030000px;}
.y110{bottom:219.270000px;}
.ye5{bottom:223.230000px;}
.yfb{bottom:224.130000px;}
.y3d{bottom:226.110000px;}
.y20{bottom:235.470000px;}
.y60{bottom:236.190000px;}
.y12a{bottom:237.090000px;}
.y146{bottom:237.990000px;}
.ye3{bottom:240.705000px;}
.ycb{bottom:246.090000px;}
.y8e{bottom:246.270000px;}
.y77{bottom:247.170000px;}
.y3c{bottom:257.250000px;}
.y9f{bottom:266.250000px;}
.y1f{bottom:266.430000px;}
.y7f{bottom:266.790000px;}
.yb2{bottom:267.150000px;}
.y129{bottom:268.050000px;}
.y145{bottom:268.950000px;}
.y10f{bottom:271.110000px;}
.yfa{bottom:275.790000px;}
.y8d{bottom:277.230000px;}
.y76{bottom:278.130000px;}
.ye2{bottom:284.625000px;}
.y3b{bottom:288.210000px;}
.yf9{bottom:293.265000px;}
.y9e{bottom:297.390000px;}
.y1e{bottom:297.570000px;}
.yca{bottom:298.110000px;}
.yb1{bottom:298.290000px;}
.y128{bottom:299.190000px;}
.y144{bottom:300.090000px;}
.y8c{bottom:308.010000px;}
.y6a{bottom:308.910000px;}
.y75{bottom:309.270000px;}
.yc9{bottom:315.765000px;}
.y7e{bottom:318.990000px;}
.y3a{bottom:319.350000px;}
.y10e{bottom:323.490000px;}
.ye0{bottom:328.365000px;}
.y1d{bottom:328.530000px;}
.yb0{bottom:329.250000px;}
.y132{bottom:330.150000px;}
.y143{bottom:331.050000px;}
.yf8{bottom:337.185000px;}
.y8b{bottom:339.330000px;}
.y69{bottom:339.870000px;}
.y74{bottom:340.230000px;}
.y9d{bottom:349.410000px;}
.y39{bottom:350.310000px;}
.y127{bottom:351.210000px;}
.y10d{bottom:354.450000px;}
.yc7{bottom:359.505000px;}
.y1c{bottom:359.670000px;}
.yaf{bottom:360.390000px;}
.y116{bottom:361.290000px;}
.y142{bottom:362.190000px;}
.y8a{bottom:370.470000px;}
.y5f{bottom:371.010000px;}
.y73{bottom:371.370000px;}
.yf7{bottom:380.925000px;}
.y38{bottom:381.270000px;}
.y126{bottom:382.350000px;}
.y10c{bottom:385.590000px;}
.y1b{bottom:390.630000px;}
.yae{bottom:391.395000px;}
.y68{bottom:392.295000px;}
.y141{bottom:393.195000px;}
.y89{bottom:401.475000px;}
.y72{bottom:402.375000px;}
.yc5{bottom:403.275000px;}
.ydf{bottom:407.415000px;}
.y37{bottom:412.455000px;}
.y125{bottom:413.355000px;}
.y10b{bottom:416.595000px;}
.y1a{bottom:421.815000px;}
.yad{bottom:422.535000px;}
.y5e{bottom:423.435000px;}
.y140{bottom:424.335000px;}
.y88{bottom:432.255000px;}
.y7d{bottom:433.515000px;}
.y124{bottom:444.315000px;}
.y10a{bottom:447.735000px;}
.y9c{bottom:453.495000px;}
.y5d{bottom:454.395000px;}
.y13f{bottom:455.295000px;}
.yde{bottom:459.975000px;}
.yf6{bottom:460.155000px;}
.y87{bottom:463.575000px;}
.y4f{bottom:464.115000px;}
.y36{bottom:464.475000px;}
.y19{bottom:473.835000px;}
.y123{bottom:475.455000px;}
.yf5{bottom:477.615000px;}
.yc4{bottom:482.475000px;}
.y9b{bottom:484.635000px;}
.y5c{bottom:485.535000px;}
.y13e{bottom:486.435000px;}
.ydd{bottom:490.575000px;}
.y86{bottom:494.715000px;}
.y35{bottom:495.615000px;}
.y109{bottom:499.395000px;}
.y18{bottom:504.795000px;}
.y122{bottom:506.415000px;}
.ydb{bottom:508.035000px;}
.yac{bottom:515.595000px;}
.y4e{bottom:516.495000px;}
.y13d{bottom:517.395000px;}
.yf4{bottom:521.355000px;}
.y34{bottom:526.575000px;}
.yc3{bottom:534.855000px;}
.y17{bottom:535.935000px;}
.y9a{bottom:536.655000px;}
.y121{bottom:537.555000px;}
.y85{bottom:546.375000px;}
.yab{bottom:546.735000px;}
.y4d{bottom:547.635000px;}
.y13c{bottom:548.535000px;}
.y108{bottom:551.775000px;}
.yd9{bottom:556.095000px;}
.y33{bottom:557.715000px;}
.yf3{bottom:565.095000px;}
.yc2{bottom:565.455000px;}
.y16{bottom:566.895000px;}
.y99{bottom:567.615000px;}
.y131{bottom:568.155000px;}
.y120{bottom:568.515000px;}
.yaa{bottom:577.695000px;}
.y5b{bottom:578.235000px;}
.y4c{bottom:578.595000px;}
.y13b{bottom:579.495000px;}
.y107{bottom:582.555000px;}
.yc0{bottom:582.915000px;}
.y32{bottom:588.675000px;}
.y15{bottom:598.035000px;}
.y84{bottom:598.395000px;}
.y11f{bottom:599.655000px;}
.y106{bottom:600.015000px;}
.ya9{bottom:608.835000px;}
.y4b{bottom:609.735000px;}
.y13a{bottom:610.635000px;}
.y31{bottom:619.815000px;}
.y130{bottom:620.715000px;}
.ybe{bottom:626.835000px;}
.y14{bottom:628.995000px;}
.y98{bottom:629.715000px;}
.y5a{bottom:630.255000px;}
.y11c{bottom:630.615000px;}
.yd8{bottom:635.295000px;}
.ya8{bottom:639.795000px;}
.y4a{bottom:640.725000px;}
.y139{bottom:641.625000px;}
.y105{bottom:643.785000px;}
.yf2{bottom:644.325000px;}
.y30{bottom:650.805000px;}
.y12f{bottom:651.705000px;}
.y13{bottom:660.165000px;}
.y97{bottom:660.885000px;}
.y11b{bottom:661.785000px;}
.ya7{bottom:670.965000px;}
.y49{bottom:671.865000px;}
.y138{bottom:672.765000px;}
.y2f{bottom:681.945000px;}
.y59{bottom:682.845000px;}
.y104{bottom:687.525000px;}
.yd7{bottom:687.705000px;}
.y12{bottom:691.125000px;}
.y71{bottom:692.385000px;}
.y11a{bottom:692.745000px;}
.yf1{bottom:696.705000px;}
.ya6{bottom:701.925000px;}
.y48{bottom:702.825000px;}
.y137{bottom:703.725000px;}
.ybd{bottom:705.885000px;}
.y83{bottom:712.545000px;}
.y2e{bottom:712.905000px;}
.y58{bottom:713.805000px;}
.yd6{bottom:718.665000px;}
.y11{bottom:722.265000px;}
.y70{bottom:723.525000px;}
.y115{bottom:723.885000px;}
.yf0{bottom:727.665000px;}
.ya5{bottom:733.065000px;}
.y47{bottom:733.965000px;}
.y136{bottom:734.865000px;}
.y2d{bottom:743.865000px;}
.y57{bottom:744.945000px;}
.y10{bottom:753.225000px;}
.y67{bottom:754.845000px;}
.ybc{bottom:758.265000px;}
.y46{bottom:764.925000px;}
.y135{bottom:765.825000px;}
.y103{bottom:766.725000px;}
.yd5{bottom:770.505000px;}
.y2c{bottom:775.005000px;}
.y56{bottom:775.905000px;}
.yef{bottom:779.505000px;}
.yf{bottom:784.365000px;}
.ya4{bottom:785.085000px;}
.y66{bottom:785.985000px;}
.ybb{bottom:789.045000px;}
.y82{bottom:795.705000px;}
.y96{bottom:796.065000px;}
.y134{bottom:796.965000px;}
.yb9{bottom:806.505000px;}
.y55{bottom:806.865000px;}
.y7c{bottom:816.585000px;}
.y45{bottom:816.945000px;}
.y102{bottom:819.105000px;}
.yd4{bottom:822.525000px;}
.y2b{bottom:826.665000px;}
.y95{bottom:827.025000px;}
.y133{bottom:827.925000px;}
.yee{bottom:831.525000px;}
.ye{bottom:836.025000px;}
.ya3{bottom:836.745000px;}
.y54{bottom:838.005000px;}
.yb7{bottom:846.645000px;}
.y44{bottom:848.085000px;}
.y101{bottom:850.065000px;}
.yd3{bottom:853.485000px;}
.y94{bottom:857.805000px;}
.y114{bottom:859.065000px;}
.yed{bottom:862.485000px;}
.y119{bottom:868.605000px;}
.y53{bottom:868.965000px;}
.y2a{bottom:879.045000px;}
.yd{bottom:888.045000px;}
.y93{bottom:888.765000px;}
.ya2{bottom:889.125000px;}
.y113{bottom:890.070000px;}
.y52{bottom:900.150000px;}
.y100{bottom:901.950000px;}
.yd2{bottom:905.550000px;}
.y29{bottom:910.230000px;}
.yc{bottom:912.210000px;}
.yec{bottom:914.550000px;}
.yff{bottom:919.410000px;}
.yb6{bottom:919.950000px;}
.y92{bottom:920.310000px;}
.y112{bottom:921.210000px;}
.y6f{bottom:931.110000px;}
.yb{bottom:935.970000px;}
.y43{bottom:941.190000px;}
.y51{bottom:952.170000px;}
.yd1{bottom:958.110000px;}
.ya{bottom:959.910000px;}
.y28{bottom:961.890000px;}
.y6e{bottom:962.250000px;}
.yfe{bottom:963.150000px;}
.yeb{bottom:967.110000px;}
.y91{bottom:971.970000px;}
.y42{bottom:972.330000px;}
.y50{bottom:983.310000px;}
.y9{bottom:983.670000px;}
.yd0{bottom:988.710000px;}
.y6d{bottom:993.210000px;}
.yea{bottom:997.710000px;}
.y41{bottom:1003.290000px;}
.yfd{bottom:1006.890000px;}
.y8{bottom:1007.430000px;}
.yce{bottom:1008.870000px;}
.y27{bottom:1014.270000px;}
.ye9{bottom:1015.170000px;}
.y6c{bottom:1024.350000px;}
.y26{bottom:1045.410000px;}
.y7{bottom:1047.570000px;}
.y40{bottom:1054.950000px;}
.y7b{bottom:1055.310000px;}
.ycd{bottom:1056.390000px;}
.ye8{bottom:1059.090000px;}
.y25{bottom:1076.370000px;}
.y65{bottom:1086.090000px;}
.y7a{bottom:1086.450000px;}
.y6{bottom:1087.350000px;}
.yb5{bottom:1107.150000px;}
.y24{bottom:1107.510000px;}
.y5{bottom:1126.950000px;}
.y64{bottom:1138.110000px;}
.y23{bottom:1138.500000px;}
.y2{bottom:1171.980000px;}
.y1{bottom:1192.320000px;}
.hb{height:37.080000px;}
.hc{height:39.420000px;}
.hf{height:43.005000px;}
.h12{height:43.020000px;}
.h10{height:43.041000px;}
.hd{height:43.050000px;}
.he{height:43.185000px;}
.h11{height:47.325000px;}
.h9{height:50.800781px;}
.h7{height:59.343750px;}
.h8{height:64.546875px;}
.h3{height:70.628906px;}
.h4{height:70.664062px;}
.h2{height:72.562500px;}
.ha{height:74.004654px;}
.h5{height:84.837305px;}
.h6{height:121.179375px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:33.825000px;}
.w10{width:55.245000px;}
.w11{width:59.421000px;}
.w13{width:64.800000px;}
.w3{width:66.240000px;}
.w16{width:72.561000px;}
.w5{width:73.065000px;}
.w6{width:73.965000px;}
.w17{width:77.025000px;}
.w2a{width:78.120000px;}
.w7{width:78.501000px;}
.w29{width:79.200000px;}
.we{width:80.449500px;}
.w15{width:85.125000px;}
.w14{width:90.576000px;}
.w4{width:92.376000px;}
.w25{width:108.396000px;}
.w22{width:112.125000px;}
.w23{width:114.501000px;}
.w26{width:114.645000px;}
.w1c{width:118.440000px;}
.w20{width:122.940000px;}
.w21{width:125.496000px;}
.w2e{width:127.641000px;}
.w19{width:144.396000px;}
.wc{width:153.030000px;}
.w9{width:171.750000px;}
.w1d{width:172.290000px;}
.w2c{width:176.235000px;}
.w1e{width:182.355000px;}
.w27{width:198.915000px;}
.w28{width:202.339500px;}
.w2d{width:221.970000px;}
.w1f{width:228.979500px;}
.w1b{width:235.099500px;}
.wa{width:244.275000px;}
.w2{width:268.039500px;}
.wb{width:270.559500px;}
.w8{width:272.359500px;}
.w18{width:277.759500px;}
.wd{width:283.155000px;}
.w12{width:285.499500px;}
.w1a{width:288.195000px;}
.w24{width:296.299500px;}
.w2b{width:354.315000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:1.069500px;}
.x10{left:7.729500px;}
.x3e{left:8.805000px;}
.x42{left:10.425000px;}
.x43{left:15.480000px;}
.x3f{left:17.445000px;}
.x41{left:20.145000px;}
.x40{left:30.420000px;}
.x3a{left:40.485000px;}
.x3c{left:70.200000px;}
.xf{left:100.306500px;}
.x1c{left:106.966500px;}
.x1{left:108.036000px;}
.x2{left:110.376000px;}
.x3{left:113.976000px;}
.x4{left:127.836000px;}
.x8{left:131.256000px;}
.xb{left:135.036000px;}
.x5{left:157.350000px;}
.xc{left:162.030000px;}
.xa{left:166.710000px;}
.x29{left:172.470000px;}
.x26{left:183.090000px;}
.xd{left:189.030000px;}
.x19{left:190.110000px;}
.x32{left:222.150000px;}
.x1e{left:225.585000px;}
.x20{left:231.870000px;}
.x7{left:236.910000px;}
.xe{left:238.710000px;}
.x16{left:256.890000px;}
.x9{left:260.490000px;}
.x36{left:275.610000px;}
.x1f{left:283.185000px;}
.x2d{left:290.010000px;}
.x37{left:303.375000px;}
.x2e{left:330.015000px;}
.x2a{left:336.135000px;}
.x3b{left:359.895000px;}
.x6{left:365.295000px;}
.x11{left:369.075000px;}
.x1a{left:371.775000px;}
.x17{left:373.395000px;}
.x27{left:378.795000px;}
.x38{left:383.295000px;}
.x21{left:386.535000px;}
.x33{left:397.335000px;}
.x12{left:436.035000px;}
.x22{left:452.235000px;}
.x2f{left:453.675000px;}
.x2b{left:455.295000px;}
.x39{left:462.135000px;}
.x34{left:506.460000px;}
.x28{left:523.920000px;}
.x1b{left:525.540000px;}
.x13{left:529.140000px;}
.x23{left:543.720000px;}
.x18{left:545.880000px;}
.x30{left:580.080000px;}
.x3d{left:582.600000px;}
.x14{left:602.940000px;}
.x35{left:621.840000px;}
.x2c{left:628.320000px;}
.x24{left:629.580000px;}
.x15{left:677.640000px;}
.x31{left:692.940000px;}
.x25{left:702.870000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.115200pt;}
.lsa{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.248960pt;}
.lse{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.800000pt;}
.ls13{letter-spacing:1.920000pt;}
.ls15{letter-spacing:3.200000pt;}
.ls9{letter-spacing:8.960000pt;}
.ls6{letter-spacing:11.520000pt;}
.ls11{letter-spacing:12.160000pt;}
.ls16{letter-spacing:17.280000pt;}
.ls17{letter-spacing:30.208000pt;}
.lsc{letter-spacing:39.808000pt;}
.lsb{letter-spacing:49.232640pt;}
.ls10{letter-spacing:56.891307pt;}
.ls7{letter-spacing:56.912640pt;}
.ls5{letter-spacing:64.239360pt;}
.ws4{word-spacing:-53.120000pt;}
.ws1{word-spacing:-26.720000pt;}
.ws6{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws5{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._27{margin-left:-8.576000pt;}
._2{margin-left:-7.104000pt;}
._5{margin-left:-5.624747pt;}
._0{margin-left:-4.416000pt;}
._26{margin-left:-3.456000pt;}
._1{margin-left:-2.432000pt;}
._4{margin-left:-1.429333pt;}
._3{width:1.493333pt;}
._6{width:2.389333pt;}
._8{width:3.360000pt;}
._7{width:4.480000pt;}
._9{width:5.536000pt;}
._e{width:6.656000pt;}
._f{width:7.562667pt;}
._a{width:9.024000pt;}
._b{width:10.101333pt;}
._1a{width:11.530667pt;}
._10{width:12.672000pt;}
._11{width:13.770667pt;}
._14{width:14.901333pt;}
._12{width:17.301333pt;}
._18{width:18.346667pt;}
._17{width:19.264000pt;}
._c{width:20.394667pt;}
._d{width:21.440000pt;}
._19{width:22.400000pt;}
._15{width:23.360000pt;}
._16{width:24.469333pt;}
._1f{width:25.418667pt;}
._13{width:26.560000pt;}
._21{width:27.520000pt;}
._1e{width:28.757333pt;}
._1d{width:30.357333pt;}
._22{width:31.424000pt;}
._1b{width:32.512000pt;}
._1c{width:33.920000pt;}
._20{width:34.869333pt;}
._25{width:35.968000pt;}
._23{width:37.440000pt;}
._24{width:38.485333pt;}
._28{width:46.656000pt;}
._29{width:48.192000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.yb8{bottom:18.080000pt;}
.yba{bottom:20.480000pt;}
.ye1{bottom:23.346667pt;}
.yc6{bottom:23.360000pt;}
.ybf{bottom:23.386667pt;}
.yda{bottom:23.520000pt;}
.yc8{bottom:23.666667pt;}
.ycf{bottom:23.680000pt;}
.ye4{bottom:23.826667pt;}
.yc1{bottom:23.840000pt;}
.ydc{bottom:27.520000pt;}
.y4{bottom:51.840000pt;}
.y3{bottom:69.920000pt;}
.y12e{bottom:100.320000pt;}
.y63{bottom:108.480000pt;}
.y6b{bottom:118.240000pt;}
.ye7{bottom:124.960000pt;}
.y11e{bottom:126.752000pt;}
.y118{bottom:127.072000pt;}
.y12d{bottom:127.872000pt;}
.y149{bottom:128.672000pt;}
.y62{bottom:136.026667pt;}
.ya1{bottom:144.186667pt;}
.yb4{bottom:144.666667pt;}
.y90{bottom:144.986667pt;}
.y3f{bottom:145.786667pt;}
.ye6{bottom:152.186667pt;}
.y22{bottom:154.106667pt;}
.y117{bottom:154.746667pt;}
.y12c{bottom:155.546667pt;}
.y148{bottom:156.346667pt;}
.y81{bottom:163.706667pt;}
.y79{bottom:164.506667pt;}
.y111{bottom:167.386667pt;}
.yfc{bottom:171.706667pt;}
.y8f{bottom:172.666667pt;}
.y11d{bottom:173.146667pt;}
.y3e{bottom:173.466667pt;}
.y21{bottom:181.626667pt;}
.y61{bottom:182.266667pt;}
.y12b{bottom:183.066667pt;}
.y147{bottom:183.866667pt;}
.ya0{bottom:190.426667pt;}
.yb3{bottom:190.906667pt;}
.y80{bottom:191.226667pt;}
.ycc{bottom:191.546667pt;}
.y78{bottom:192.026667pt;}
.y110{bottom:194.906667pt;}
.ye5{bottom:198.426667pt;}
.yfb{bottom:199.226667pt;}
.y3d{bottom:200.986667pt;}
.y20{bottom:209.306667pt;}
.y60{bottom:209.946667pt;}
.y12a{bottom:210.746667pt;}
.y146{bottom:211.546667pt;}
.ye3{bottom:213.960000pt;}
.ycb{bottom:218.746667pt;}
.y8e{bottom:218.906667pt;}
.y77{bottom:219.706667pt;}
.y3c{bottom:228.666667pt;}
.y9f{bottom:236.666667pt;}
.y1f{bottom:236.826667pt;}
.y7f{bottom:237.146667pt;}
.yb2{bottom:237.466667pt;}
.y129{bottom:238.266667pt;}
.y145{bottom:239.066667pt;}
.y10f{bottom:240.986667pt;}
.yfa{bottom:245.146667pt;}
.y8d{bottom:246.426667pt;}
.y76{bottom:247.226667pt;}
.ye2{bottom:253.000000pt;}
.y3b{bottom:256.186667pt;}
.yf9{bottom:260.680000pt;}
.y9e{bottom:264.346667pt;}
.y1e{bottom:264.506667pt;}
.yca{bottom:264.986667pt;}
.yb1{bottom:265.146667pt;}
.y128{bottom:265.946667pt;}
.y144{bottom:266.746667pt;}
.y8c{bottom:273.786667pt;}
.y6a{bottom:274.586667pt;}
.y75{bottom:274.906667pt;}
.yc9{bottom:280.680000pt;}
.y7e{bottom:283.546667pt;}
.y3a{bottom:283.866667pt;}
.y10e{bottom:287.546667pt;}
.ye0{bottom:291.880000pt;}
.y1d{bottom:292.026667pt;}
.yb0{bottom:292.666667pt;}
.y132{bottom:293.466667pt;}
.y143{bottom:294.266667pt;}
.yf8{bottom:299.720000pt;}
.y8b{bottom:301.626667pt;}
.y69{bottom:302.106667pt;}
.y74{bottom:302.426667pt;}
.y9d{bottom:310.586667pt;}
.y39{bottom:311.386667pt;}
.y127{bottom:312.186667pt;}
.y10d{bottom:315.066667pt;}
.yc7{bottom:319.560000pt;}
.y1c{bottom:319.706667pt;}
.yaf{bottom:320.346667pt;}
.y116{bottom:321.146667pt;}
.y142{bottom:321.946667pt;}
.y8a{bottom:329.306667pt;}
.y5f{bottom:329.786667pt;}
.y73{bottom:330.106667pt;}
.yf7{bottom:338.600000pt;}
.y38{bottom:338.906667pt;}
.y126{bottom:339.866667pt;}
.y10c{bottom:342.746667pt;}
.y1b{bottom:347.226667pt;}
.yae{bottom:347.906667pt;}
.y68{bottom:348.706667pt;}
.y141{bottom:349.506667pt;}
.y89{bottom:356.866667pt;}
.y72{bottom:357.666667pt;}
.yc5{bottom:358.466667pt;}
.ydf{bottom:362.146667pt;}
.y37{bottom:366.626667pt;}
.y125{bottom:367.426667pt;}
.y10b{bottom:370.306667pt;}
.y1a{bottom:374.946667pt;}
.yad{bottom:375.586667pt;}
.y5e{bottom:376.386667pt;}
.y140{bottom:377.186667pt;}
.y88{bottom:384.226667pt;}
.y7d{bottom:385.346667pt;}
.y124{bottom:394.946667pt;}
.y10a{bottom:397.986667pt;}
.y9c{bottom:403.106667pt;}
.y5d{bottom:403.906667pt;}
.y13f{bottom:404.706667pt;}
.yde{bottom:408.866667pt;}
.yf6{bottom:409.026667pt;}
.y87{bottom:412.066667pt;}
.y4f{bottom:412.546667pt;}
.y36{bottom:412.866667pt;}
.y19{bottom:421.186667pt;}
.y123{bottom:422.626667pt;}
.yf5{bottom:424.546667pt;}
.yc4{bottom:428.866667pt;}
.y9b{bottom:430.786667pt;}
.y5c{bottom:431.586667pt;}
.y13e{bottom:432.386667pt;}
.ydd{bottom:436.066667pt;}
.y86{bottom:439.746667pt;}
.y35{bottom:440.546667pt;}
.y109{bottom:443.906667pt;}
.y18{bottom:448.706667pt;}
.y122{bottom:450.146667pt;}
.ydb{bottom:451.586667pt;}
.yac{bottom:458.306667pt;}
.y4e{bottom:459.106667pt;}
.y13d{bottom:459.906667pt;}
.yf4{bottom:463.426667pt;}
.y34{bottom:468.066667pt;}
.yc3{bottom:475.426667pt;}
.y17{bottom:476.386667pt;}
.y9a{bottom:477.026667pt;}
.y121{bottom:477.826667pt;}
.y85{bottom:485.666667pt;}
.yab{bottom:485.986667pt;}
.y4d{bottom:486.786667pt;}
.y13c{bottom:487.586667pt;}
.y108{bottom:490.466667pt;}
.yd9{bottom:494.306667pt;}
.y33{bottom:495.746667pt;}
.yf3{bottom:502.306667pt;}
.yc2{bottom:502.626667pt;}
.y16{bottom:503.906667pt;}
.y99{bottom:504.546667pt;}
.y131{bottom:505.026667pt;}
.y120{bottom:505.346667pt;}
.yaa{bottom:513.506667pt;}
.y5b{bottom:513.986667pt;}
.y4c{bottom:514.306667pt;}
.y13b{bottom:515.106667pt;}
.y107{bottom:517.826667pt;}
.yc0{bottom:518.146667pt;}
.y32{bottom:523.266667pt;}
.y15{bottom:531.586667pt;}
.y84{bottom:531.906667pt;}
.y11f{bottom:533.026667pt;}
.y106{bottom:533.346667pt;}
.ya9{bottom:541.186667pt;}
.y4b{bottom:541.986667pt;}
.y13a{bottom:542.786667pt;}
.y31{bottom:550.946667pt;}
.y130{bottom:551.746667pt;}
.ybe{bottom:557.186667pt;}
.y14{bottom:559.106667pt;}
.y98{bottom:559.746667pt;}
.y5a{bottom:560.226667pt;}
.y11c{bottom:560.546667pt;}
.yd8{bottom:564.706667pt;}
.ya8{bottom:568.706667pt;}
.y4a{bottom:569.533333pt;}
.y139{bottom:570.333333pt;}
.y105{bottom:572.253333pt;}
.yf2{bottom:572.733333pt;}
.y30{bottom:578.493333pt;}
.y12f{bottom:579.293333pt;}
.y13{bottom:586.813333pt;}
.y97{bottom:587.453333pt;}
.y11b{bottom:588.253333pt;}
.ya7{bottom:596.413333pt;}
.y49{bottom:597.213333pt;}
.y138{bottom:598.013333pt;}
.y2f{bottom:606.173333pt;}
.y59{bottom:606.973333pt;}
.y104{bottom:611.133333pt;}
.yd7{bottom:611.293333pt;}
.y12{bottom:614.333333pt;}
.y71{bottom:615.453333pt;}
.y11a{bottom:615.773333pt;}
.yf1{bottom:619.293333pt;}
.ya6{bottom:623.933333pt;}
.y48{bottom:624.733333pt;}
.y137{bottom:625.533333pt;}
.ybd{bottom:627.453333pt;}
.y83{bottom:633.373333pt;}
.y2e{bottom:633.693333pt;}
.y58{bottom:634.493333pt;}
.yd6{bottom:638.813333pt;}
.y11{bottom:642.013333pt;}
.y70{bottom:643.133333pt;}
.y115{bottom:643.453333pt;}
.yf0{bottom:646.813333pt;}
.ya5{bottom:651.613333pt;}
.y47{bottom:652.413333pt;}
.y136{bottom:653.213333pt;}
.y2d{bottom:661.213333pt;}
.y57{bottom:662.173333pt;}
.y10{bottom:669.533333pt;}
.y67{bottom:670.973333pt;}
.ybc{bottom:674.013333pt;}
.y46{bottom:679.933333pt;}
.y135{bottom:680.733333pt;}
.y103{bottom:681.533333pt;}
.yd5{bottom:684.893333pt;}
.y2c{bottom:688.893333pt;}
.y56{bottom:689.693333pt;}
.yef{bottom:692.893333pt;}
.yf{bottom:697.213333pt;}
.ya4{bottom:697.853333pt;}
.y66{bottom:698.653333pt;}
.ybb{bottom:701.373333pt;}
.y82{bottom:707.293333pt;}
.y96{bottom:707.613333pt;}
.y134{bottom:708.413333pt;}
.yb9{bottom:716.893333pt;}
.y55{bottom:717.213333pt;}
.y7c{bottom:725.853333pt;}
.y45{bottom:726.173333pt;}
.y102{bottom:728.093333pt;}
.yd4{bottom:731.133333pt;}
.y2b{bottom:734.813333pt;}
.y95{bottom:735.133333pt;}
.y133{bottom:735.933333pt;}
.yee{bottom:739.133333pt;}
.ye{bottom:743.133333pt;}
.ya3{bottom:743.773333pt;}
.y54{bottom:744.893333pt;}
.yb7{bottom:752.573333pt;}
.y44{bottom:753.853333pt;}
.y101{bottom:755.613333pt;}
.yd3{bottom:758.653333pt;}
.y94{bottom:762.493333pt;}
.y114{bottom:763.613333pt;}
.yed{bottom:766.653333pt;}
.y119{bottom:772.093333pt;}
.y53{bottom:772.413333pt;}
.y2a{bottom:781.373333pt;}
.yd{bottom:789.373333pt;}
.y93{bottom:790.013333pt;}
.ya2{bottom:790.333333pt;}
.y113{bottom:791.173333pt;}
.y52{bottom:800.133333pt;}
.y100{bottom:801.733333pt;}
.yd2{bottom:804.933333pt;}
.y29{bottom:809.093333pt;}
.yc{bottom:810.853333pt;}
.yec{bottom:812.933333pt;}
.yff{bottom:817.253333pt;}
.yb6{bottom:817.733333pt;}
.y92{bottom:818.053333pt;}
.y112{bottom:818.853333pt;}
.y6f{bottom:827.653333pt;}
.yb{bottom:831.973333pt;}
.y43{bottom:836.613333pt;}
.y51{bottom:846.373333pt;}
.yd1{bottom:851.653333pt;}
.ya{bottom:853.253333pt;}
.y28{bottom:855.013333pt;}
.y6e{bottom:855.333333pt;}
.yfe{bottom:856.133333pt;}
.yeb{bottom:859.653333pt;}
.y91{bottom:863.973333pt;}
.y42{bottom:864.293333pt;}
.y50{bottom:874.053333pt;}
.y9{bottom:874.373333pt;}
.yd0{bottom:878.853333pt;}
.y6d{bottom:882.853333pt;}
.yea{bottom:886.853333pt;}
.y41{bottom:891.813333pt;}
.yfd{bottom:895.013333pt;}
.y8{bottom:895.493333pt;}
.yce{bottom:896.773333pt;}
.y27{bottom:901.573333pt;}
.ye9{bottom:902.373333pt;}
.y6c{bottom:910.533333pt;}
.y26{bottom:929.253333pt;}
.y7{bottom:931.173333pt;}
.y40{bottom:937.733333pt;}
.y7b{bottom:938.053333pt;}
.ycd{bottom:939.013333pt;}
.ye8{bottom:941.413333pt;}
.y25{bottom:956.773333pt;}
.y65{bottom:965.413333pt;}
.y7a{bottom:965.733333pt;}
.y6{bottom:966.533333pt;}
.yb5{bottom:984.133333pt;}
.y24{bottom:984.453333pt;}
.y5{bottom:1001.733333pt;}
.y64{bottom:1011.653333pt;}
.y23{bottom:1012.000000pt;}
.y2{bottom:1041.760000pt;}
.y1{bottom:1059.840000pt;}
.hb{height:32.960000pt;}
.hc{height:35.040000pt;}
.hf{height:38.226667pt;}
.h12{height:38.240000pt;}
.h10{height:38.258667pt;}
.hd{height:38.266667pt;}
.he{height:38.386667pt;}
.h11{height:42.066667pt;}
.h9{height:45.156250pt;}
.h7{height:52.750000pt;}
.h8{height:57.375000pt;}
.h3{height:62.781250pt;}
.h4{height:62.812500pt;}
.h2{height:64.500000pt;}
.ha{height:65.781915pt;}
.h5{height:75.410937pt;}
.h6{height:107.715000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:30.066667pt;}
.w10{width:49.106667pt;}
.w11{width:52.818667pt;}
.w13{width:57.600000pt;}
.w3{width:58.880000pt;}
.w16{width:64.498667pt;}
.w5{width:64.946667pt;}
.w6{width:65.746667pt;}
.w17{width:68.466667pt;}
.w2a{width:69.440000pt;}
.w7{width:69.778667pt;}
.w29{width:70.400000pt;}
.we{width:71.510667pt;}
.w15{width:75.666667pt;}
.w14{width:80.512000pt;}
.w4{width:82.112000pt;}
.w25{width:96.352000pt;}
.w22{width:99.666667pt;}
.w23{width:101.778667pt;}
.w26{width:101.906667pt;}
.w1c{width:105.280000pt;}
.w20{width:109.280000pt;}
.w21{width:111.552000pt;}
.w2e{width:113.458667pt;}
.w19{width:128.352000pt;}
.wc{width:136.026667pt;}
.w9{width:152.666667pt;}
.w1d{width:153.146667pt;}
.w2c{width:156.653333pt;}
.w1e{width:162.093333pt;}
.w27{width:176.813333pt;}
.w28{width:179.857333pt;}
.w2d{width:197.306667pt;}
.w1f{width:203.537333pt;}
.w1b{width:208.977333pt;}
.wa{width:217.133333pt;}
.w2{width:238.257333pt;}
.wb{width:240.497333pt;}
.w8{width:242.097333pt;}
.w18{width:246.897333pt;}
.wd{width:251.693333pt;}
.w12{width:253.777333pt;}
.w1a{width:256.173333pt;}
.w24{width:263.377333pt;}
.w2b{width:314.946667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:0.950667pt;}
.x10{left:6.870667pt;}
.x3e{left:7.826667pt;}
.x42{left:9.266667pt;}
.x43{left:13.760000pt;}
.x3f{left:15.506667pt;}
.x41{left:17.906667pt;}
.x40{left:27.040000pt;}
.x3a{left:35.986667pt;}
.x3c{left:62.400000pt;}
.xf{left:89.161333pt;}
.x1c{left:95.081333pt;}
.x1{left:96.032000pt;}
.x2{left:98.112000pt;}
.x3{left:101.312000pt;}
.x4{left:113.632000pt;}
.x8{left:116.672000pt;}
.xb{left:120.032000pt;}
.x5{left:139.866667pt;}
.xc{left:144.026667pt;}
.xa{left:148.186667pt;}
.x29{left:153.306667pt;}
.x26{left:162.746667pt;}
.xd{left:168.026667pt;}
.x19{left:168.986667pt;}
.x32{left:197.466667pt;}
.x1e{left:200.520000pt;}
.x20{left:206.106667pt;}
.x7{left:210.586667pt;}
.xe{left:212.186667pt;}
.x16{left:228.346667pt;}
.x9{left:231.546667pt;}
.x36{left:244.986667pt;}
.x1f{left:251.720000pt;}
.x2d{left:257.786667pt;}
.x37{left:269.666667pt;}
.x2e{left:293.346667pt;}
.x2a{left:298.786667pt;}
.x3b{left:319.906667pt;}
.x6{left:324.706667pt;}
.x11{left:328.066667pt;}
.x1a{left:330.466667pt;}
.x17{left:331.906667pt;}
.x27{left:336.706667pt;}
.x38{left:340.706667pt;}
.x21{left:343.586667pt;}
.x33{left:353.186667pt;}
.x12{left:387.586667pt;}
.x22{left:401.986667pt;}
.x2f{left:403.266667pt;}
.x2b{left:404.706667pt;}
.x39{left:410.786667pt;}
.x34{left:450.186667pt;}
.x28{left:465.706667pt;}
.x1b{left:467.146667pt;}
.x13{left:470.346667pt;}
.x23{left:483.306667pt;}
.x18{left:485.226667pt;}
.x30{left:515.626667pt;}
.x3d{left:517.866667pt;}
.x14{left:535.946667pt;}
.x35{left:552.746667pt;}
.x2c{left:558.506667pt;}
.x24{left:559.626667pt;}
.x15{left:602.346667pt;}
.x31{left:615.946667pt;}
.x25{left:624.773333pt;}
}




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