
    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_ddac7fb8e844d42055ef5105.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_8c92b21f64eb680609ad917d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_bf3b89c55732933dec3fb8da.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_521e0b22a49b83b4af6e2562.woff')format("woff");}.ff5{font-family:ff5;line-height:0.877441;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_bcce8fb9ff266b0c539828b7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_32ef2c482ebef08d6ae36d90.woff')format("woff");}.ff9{font-family:ff9;line-height:0.912109;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_0c17bfcacd1da8e581b2d551.woff')format("woff");}.ffa{font-family:ffa;line-height:0.877441;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_ee0d9079168eec83d8328824.woff')format("woff");}.ffb{font-family:ffb;line-height:0.912109;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3b336d68e530591304ad030d.woff')format("woff");}.ffc{font-family:ffc;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;}
.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;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-16.380000px;}
.lsd{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.014400px;}
.ls5{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.109440px;}
.ls2{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.978000px;}
.lsa{letter-spacing:1.879920px;}
.ls9{letter-spacing:2.340000px;}
.ls11{letter-spacing:16.506720px;}
.ls3{letter-spacing:46.026720px;}
.ls8{letter-spacing:64.026720px;}
.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;}
}
.ws5{word-spacing:-59.760000px;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.400000px;}
.ws4{word-spacing:0.000000px;}
.ws8{word-spacing:0.360000px;}
.wsa{word-spacing:165.659760px;}
.ws9{word-spacing:225.007920px;}
._29{margin-left:-149.801040px;}
._2a{margin-left:-118.218960px;}
._28{margin-left:-34.453440px;}
._5{margin-left:-4.882800px;}
._4{margin-left:-3.639840px;}
._9{margin-left:-2.443680px;}
._1{margin-left:-1.347840px;}
._0{width:1.254960px;}
._6{width:2.930160px;}
._c{width:3.944160px;}
._12{width:5.079600px;}
._8{width:6.872400px;}
._a{width:8.545680px;}
._b{width:9.594720px;}
._2b{width:11.175120px;}
._d{width:12.854880px;}
._7{width:13.864320px;}
._1d{width:16.075440px;}
._13{width:17.210880px;}
._15{width:18.585360px;}
._11{width:20.019600px;}
._f{width:21.095280px;}
._e{width:22.290480px;}
._26{width:24.132960px;}
._2d{width:25.398000px;}
._16{width:26.533440px;}
._17{width:28.303920px;}
._14{width:30.238560px;}
._33{width:31.254480px;}
._23{width:32.270400px;}
._22{width:33.764400px;}
._1e{width:35.079120px;}
._21{width:36.336240px;}
._24{width:37.519200px;}
._10{width:38.545200px;}
._1a{width:40.278240px;}
._2f{width:41.593680px;}
._19{width:42.628320px;}
._18{width:44.133120px;}
._2e{width:46.193760px;}
._34{width:47.808720px;}
._20{width:49.066320px;}
._31{width:55.044720px;}
._1f{width:58.923360px;}
._1c{width:62.365680px;}
._1b{width:63.608400px;}
._2{width:64.800000px;}
._27{width:66.404160px;}
._3a{width:70.055760px;}
._32{width:71.831520px;}
._25{width:73.733760px;}
._37{width:96.452640px;}
._36{width:97.561440px;}
._35{width:98.962560px;}
._30{width:120.116880px;}
._2c{width:130.773360px;}
._39{width:140.017680px;}
._38{width:141.332160px;}
._3{width:674.100000px;}
.fc3{color:rgb(24,23,23);}
.fc4{color:rgb(0,78,154);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ycd{bottom:3.240000px;}
.ycb{bottom:3.600000px;}
.y12{bottom:5.040000px;}
.ye{bottom:5.760000px;}
.y28{bottom:5.790000px;}
.y26{bottom:5.940000px;}
.y11{bottom:6.480000px;}
.y8{bottom:7.920000px;}
.y1b{bottom:8.820000px;}
.yd{bottom:25.560000px;}
.y25{bottom:25.740000px;}
.y2{bottom:26.640000px;}
.y7{bottom:27.720000px;}
.y24{bottom:45.540000px;}
.y6{bottom:47.520000px;}
.yc{bottom:54.360000px;}
.y13{bottom:58.320000px;}
.y23{bottom:65.340000px;}
.y5{bottom:69.660000px;}
.y10{bottom:73.980000px;}
.yb{bottom:74.340000px;}
.y22{bottom:85.140000px;}
.y4{bottom:97.590000px;}
.yfd{bottom:100.800000px;}
.ya{bottom:103.170000px;}
.y12b{bottom:104.400000px;}
.y21{bottom:105.120000px;}
.y43{bottom:114.840000px;}
.yfc{bottom:120.600000px;}
.yb3{bottom:121.860000px;}
.y9{bottom:122.970000px;}
.y12a{bottom:124.200000px;}
.y20{bottom:124.920000px;}
.y3{bottom:131.970000px;}
.yde{bottom:134.280000px;}
.y42{bottom:134.640000px;}
.y124{bottom:135.000000px;}
.yb2{bottom:141.660000px;}
.y129{bottom:144.000000px;}
.y1f{bottom:144.720000px;}
.yfb{bottom:145.620000px;}
.y58{bottom:147.240000px;}
.y41{bottom:154.470000px;}
.y123{bottom:154.830000px;}
.yb1{bottom:162.750000px;}
.y128{bottom:163.830000px;}
.y1e{bottom:164.520000px;}
.y57{bottom:167.250000px;}
.ydd{bottom:172.830000px;}
.y40{bottom:174.270000px;}
.y122{bottom:174.630000px;}
.yb0{bottom:182.550000px;}
.y127{bottom:183.630000px;}
.y1d{bottom:184.320000px;}
.yfa{bottom:186.870000px;}
.y56{bottom:187.050000px;}
.y86{bottom:194.070000px;}
.y3f{bottom:194.250000px;}
.y121{bottom:194.610000px;}
.yaf{bottom:202.350000px;}
.y126{bottom:203.610000px;}
.y55{bottom:206.850000px;}
.ydc{bottom:210.090000px;}
.y3e{bottom:214.050000px;}
.y120{bottom:214.410000px;}
.yae{bottom:223.230000px;}
.y125{bottom:223.410000px;}
.y54{bottom:226.650000px;}
.yf9{bottom:227.910000px;}
.y3d{bottom:233.850000px;}
.ydb{bottom:242.850000px;}
.y11f{bottom:243.210000px;}
.yad{bottom:244.110000px;}
.y53{bottom:246.450000px;}
.y3c{bottom:253.650000px;}
.yda{bottom:262.650000px;}
.y11e{bottom:263.010000px;}
.yac{bottom:263.910000px;}
.y52{bottom:266.430000px;}
.yf8{bottom:269.130000px;}
.y3b{bottom:273.450000px;}
.y85{bottom:282.450000px;}
.yd9{bottom:282.630000px;}
.y11d{bottom:282.810000px;}
.yab{bottom:284.970000px;}
.y3a{bottom:293.430000px;}
.y51{bottom:295.230000px;}
.y84{bottom:302.250000px;}
.yd8{bottom:302.430000px;}
.y11c{bottom:302.790000px;}
.yf7{bottom:308.910000px;}
.y39{bottom:313.230000px;}
.yaa{bottom:314.310000px;}
.y50{bottom:315.030000px;}
.y83{bottom:322.230000px;}
.y11b{bottom:322.590000px;}
.yd7{bottom:327.450000px;}
.y38{bottom:333.030000px;}
.ya9{bottom:334.470000px;}
.y4f{bottom:334.830000px;}
.y82{bottom:342.030000px;}
.y11a{bottom:342.390000px;}
.yf6{bottom:344.370000px;}
.y37{bottom:352.830000px;}
.ya8{bottom:354.270000px;}
.y4e{bottom:354.630000px;}
.y81{bottom:361.830000px;}
.y119{bottom:362.190000px;}
.yf5{bottom:364.170000px;}
.yd6{bottom:365.970000px;}
.y36{bottom:372.630000px;}
.ya7{bottom:374.070000px;}
.y4d{bottom:374.610000px;}
.y118{bottom:381.990000px;}
.yf4{bottom:389.190000px;}
.y80{bottom:390.630000px;}
.y35{bottom:392.610000px;}
.ya6{bottom:393.870000px;}
.y4c{bottom:394.410000px;}
.y117{bottom:402.015000px;}
.yd5{bottom:404.535000px;}
.y7f{bottom:410.475000px;}
.y34{bottom:412.455000px;}
.ya5{bottom:413.895000px;}
.y4b{bottom:414.255000px;}
.y116{bottom:421.815000px;}
.y7e{bottom:430.455000px;}
.y33{bottom:432.255000px;}
.ya4{bottom:433.695000px;}
.y4a{bottom:434.055000px;}
.y115{bottom:441.615000px;}
.yd4{bottom:443.055000px;}
.y7d{bottom:450.255000px;}
.y32{bottom:452.055000px;}
.ya3{bottom:453.495000px;}
.y114{bottom:461.415000px;}
.y49{bottom:462.855000px;}
.y7c{bottom:470.055000px;}
.yf3{bottom:471.495000px;}
.y31{bottom:471.855000px;}
.ya2{bottom:473.295000px;}
.yd3{bottom:480.495000px;}
.y113{bottom:481.215000px;}
.y48{bottom:482.835000px;}
.y7b{bottom:489.855000px;}
.y30{bottom:491.835000px;}
.ya1{bottom:494.175000px;}
.y112{bottom:501.195000px;}
.y47{bottom:502.635000px;}
.y7a{bottom:509.655000px;}
.y2f{bottom:511.635000px;}
.yf2{bottom:512.715000px;}
.yd2{bottom:513.255000px;}
.ya0{bottom:514.155000px;}
.y111{bottom:520.995000px;}
.y46{bottom:522.435000px;}
.y79{bottom:529.455000px;}
.y2e{bottom:531.435000px;}
.yd1{bottom:533.055000px;}
.y9f{bottom:535.035000px;}
.y110{bottom:540.795000px;}
.y45{bottom:542.235000px;}
.y78{bottom:549.435000px;}
.y2d{bottom:551.235000px;}
.yf1{bottom:552.495000px;}
.y9e{bottom:555.915000px;}
.yd0{bottom:558.075000px;}
.y10f{bottom:560.595000px;}
.y44{bottom:562.035000px;}
.y77{bottom:569.235000px;}
.y2c{bottom:571.035000px;}
.y9d{bottom:576.795000px;}
.y10e{bottom:580.395000px;}
.yf0{bottom:587.955000px;}
.y2b{bottom:591.015000px;}
.y13a{bottom:591.555000px;}
.ycf{bottom:596.955000px;}
.y9c{bottom:597.675000px;}
.y76{bottom:598.035000px;}
.y10d{bottom:600.375000px;}
.yef{bottom:607.755000px;}
.y2a{bottom:610.815000px;}
.y139{bottom:611.355000px;}
.y75{bottom:617.835000px;}
.y10c{bottom:620.175000px;}
.y9b{bottom:626.655000px;}
.y29{bottom:630.615000px;}
.y138{bottom:631.155000px;}
.yee{bottom:632.775000px;}
.yce{bottom:636.015000px;}
.y74{bottom:637.635000px;}
.y10b{bottom:639.975000px;}
.y27{bottom:645.375000px;}
.y9a{bottom:646.455000px;}
.y137{bottom:650.985000px;}
.y73{bottom:657.645000px;}
.y10a{bottom:659.805000px;}
.y1c{bottom:665.925000px;}
.y99{bottom:667.365000px;}
.y136{bottom:670.965000px;}
.yed{bottom:674.025000px;}
.ycc{bottom:674.925000px;}
.y72{bottom:677.445000px;}
.y109{bottom:679.605000px;}
.y98{bottom:687.165000px;}
.y135{bottom:690.765000px;}
.y71{bottom:698.325000px;}
.y97{bottom:708.045000px;}
.y134{bottom:710.565000px;}
.yca{bottom:712.545000px;}
.yec{bottom:715.065000px;}
.y70{bottom:718.125000px;}
.y108{bottom:724.605000px;}
.y96{bottom:727.845000px;}
.y133{bottom:730.365000px;}
.y6f{bottom:737.925000px;}
.yc9{bottom:745.665000px;}
.y95{bottom:748.905000px;}
.y132{bottom:750.165000px;}
.yeb{bottom:756.285000px;}
.y6e{bottom:758.985000px;}
.yc8{bottom:765.645000px;}
.y94{bottom:768.705000px;}
.y131{bottom:770.145000px;}
.y6d{bottom:778.785000px;}
.yc7{bottom:780.405000px;}
.y93{bottom:789.585000px;}
.y130{bottom:789.945000px;}
.yea{bottom:797.325000px;}
.y6c{bottom:798.585000px;}
.yc6{bottom:800.925000px;}
.y107{bottom:806.865000px;}
.y92{bottom:809.385000px;}
.y12f{bottom:809.745000px;}
.y6b{bottom:818.385000px;}
.yc5{bottom:821.625000px;}
.y12e{bottom:829.545000px;}
.y91{bottom:830.265000px;}
.ye9{bottom:838.545000px;}
.y6a{bottom:839.265000px;}
.yc4{bottom:842.145000px;}
.y106{bottom:848.085000px;}
.y12d{bottom:849.345000px;}
.y90{bottom:851.325000px;}
.y69{bottom:859.245000px;}
.yc3{bottom:862.665000px;}
.y1a{bottom:865.185000px;}
.y12c{bottom:869.325000px;}
.y68{bottom:879.045000px;}
.ye8{bottom:879.585000px;}
.y8f{bottom:880.125000px;}
.y105{bottom:887.865000px;}
.yc2{bottom:889.125000px;}
.y19{bottom:895.065000px;}
.y67{bottom:898.890000px;}
.y8e{bottom:899.970000px;}
.yc1{bottom:908.970000px;}
.y18{bottom:916.350000px;}
.y66{bottom:918.690000px;}
.ye7{bottom:919.590000px;}
.y8d{bottom:919.770000px;}
.y104{bottom:923.370000px;}
.yc0{bottom:928.770000px;}
.y17{bottom:936.690000px;}
.y65{bottom:939.570000px;}
.y103{bottom:943.170000px;}
.ybf{bottom:948.570000px;}
.ye6{bottom:954.870000px;}
.ybe{bottom:957.390000px;}
.y16{bottom:958.110000px;}
.y8c{bottom:959.550000px;}
.y102{bottom:968.190000px;}
.y64{bottom:968.550000px;}
.ye5{bottom:974.850000px;}
.ybd{bottom:977.190000px;}
.y8b{bottom:979.350000px;}
.y15{bottom:981.510000px;}
.y63{bottom:988.350000px;}
.ye4{bottom:994.650000px;}
.ybc{bottom:996.990000px;}
.y8a{bottom:999.150000px;}
.y62{bottom:1008.150000px;}
.y101{bottom:1009.410000px;}
.y14{bottom:1013.190000px;}
.ye3{bottom:1014.450000px;}
.ybb{bottom:1016.790000px;}
.y89{bottom:1018.950000px;}
.y61{bottom:1027.950000px;}
.yba{bottom:1036.590000px;}
.y88{bottom:1038.750000px;}
.ye2{bottom:1039.470000px;}
.yf{bottom:1040.010000px;}
.y60{bottom:1047.750000px;}
.y100{bottom:1050.450000px;}
.yb9{bottom:1056.570000px;}
.y87{bottom:1058.730000px;}
.y1{bottom:1062.510000px;}
.y5f{bottom:1067.730000px;}
.ye1{bottom:1077.990000px;}
.yb8{bottom:1085.370000px;}
.y5e{bottom:1087.530000px;}
.yff{bottom:1091.670000px;}
.yb7{bottom:1105.170000px;}
.y5d{bottom:1107.330000px;}
.ye0{bottom:1116.690000px;}
.yb6{bottom:1124.970000px;}
.y5c{bottom:1127.130000px;}
.yfe{bottom:1131.450000px;}
.yb5{bottom:1145.850000px;}
.y5b{bottom:1146.960000px;}
.ydf{bottom:1153.980000px;}
.yb4{bottom:1165.860000px;}
.y5a{bottom:1166.940000px;}
.y59{bottom:1193.400000px;}
.h3{height:2.010938px;}
.h15{height:17.100000px;}
.h16{height:17.280000px;}
.h13{height:17.640000px;}
.h14{height:17.676000px;}
.h12{height:19.800000px;}
.h10{height:19.836000px;}
.h18{height:19.980000px;}
.h17{height:20.016000px;}
.ha{height:21.960000px;}
.he{height:22.860000px;}
.hd{height:40.472227px;}
.h7{height:41.726953px;}
.h4{height:42.164648px;}
.h11{height:43.506914px;}
.h8{height:46.251562px;}
.h6{height:46.736719px;}
.h19{height:49.255313px;}
.hb{height:53.224453px;}
.h5{height:59.436914px;}
.h9{height:65.884219px;}
.hc{height:67.565039px;}
.h2{height:146.016000px;}
.hf{height:198.360000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:52.056000px;}
.w23{width:64.116000px;}
.w17{width:82.080000px;}
.w1a{width:83.700000px;}
.w20{width:89.280000px;}
.w1d{width:95.220000px;}
.w4{width:141.876000px;}
.w2{width:155.730000px;}
.w25{width:167.790000px;}
.wc{width:168.150000px;}
.w24{width:169.590000px;}
.wd{width:181.470000px;}
.wf{width:191.910000px;}
.w8{width:192.270000px;}
.w15{width:199.155000px;}
.w12{width:214.410000px;}
.w18{width:216.435000px;}
.w1b{width:221.115000px;}
.w21{width:235.695000px;}
.w1e{width:251.175000px;}
.w11{width:256.035000px;}
.w10{width:261.795000px;}
.w13{width:292.395000px;}
.wb{width:322.770000px;}
.we{width:327.675000px;}
.w22{width:370.515000px;}
.w1c{width:430.485000px;}
.w16{width:447.045000px;}
.w1f{width:449.025000px;}
.w19{width:464.865000px;}
.w3{width:499.065000px;}
.w14{width:553.605000px;}
.w9{width:585.510000px;}
.w7{width:732.390000px;}
.wa{width:777.780000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:7.560000px;}
.x5{left:8.640000px;}
.x1{left:48.240000px;}
.xa{left:53.999987px;}
.x18{left:55.080000px;}
.x11{left:56.519987px;}
.xc{left:57.600000px;}
.x1b{left:64.440000px;}
.x1e{left:69.840000px;}
.x20{left:73.080000px;}
.x2c{left:75.239987px;}
.x12{left:80.999987px;}
.x2d{left:102.275987px;}
.xb{left:106.776000px;}
.x13{left:108.035987px;}
.x14{left:109.656000px;}
.x4{left:127.665000px;}
.x8{left:142.065000px;}
.x2{left:147.630000px;}
.x7{left:154.305000px;}
.x3{left:203.970000px;}
.x6{left:206.325000px;}
.xd{left:249.870000px;}
.x1c{left:321.195000px;}
.x19{left:383.655000px;}
.x28{left:425.955000px;}
.x16{left:433.155000px;}
.xe{left:473.504987px;}
.x24{left:488.445000px;}
.x29{left:490.965000px;}
.x2b{left:494.744987px;}
.xf{left:500.504987px;}
.x26{left:504.645000px;}
.x21{left:520.845000px;}
.x10{left:527.504987px;}
.x1d{left:536.325000px;}
.x1a{left:576.285000px;}
.x25{left:584.565000px;}
.x27{left:594.645000px;}
.x17{left:602.025000px;}
.x22{left:603.645000px;}
.x23{left:604.725000px;}
.x1f{left:624.165000px;}
.x2a{left:661.290000px;}
.x9{left:703.050000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-14.560000pt;}
.lsd{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.012800pt;}
.ls5{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.097280pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.869333pt;}
.lsa{letter-spacing:1.671040pt;}
.ls9{letter-spacing:2.080000pt;}
.ls11{letter-spacing:14.672640pt;}
.ls3{letter-spacing:40.912640pt;}
.ls8{letter-spacing:56.912640pt;}
.ws5{word-spacing:-53.120000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.800000pt;}
.ws4{word-spacing:0.000000pt;}
.ws8{word-spacing:0.320000pt;}
.wsa{word-spacing:147.253120pt;}
.ws9{word-spacing:200.007040pt;}
._29{margin-left:-133.156480pt;}
._2a{margin-left:-105.083520pt;}
._28{margin-left:-30.625280pt;}
._5{margin-left:-4.340267pt;}
._4{margin-left:-3.235413pt;}
._9{margin-left:-2.172160pt;}
._1{margin-left:-1.198080pt;}
._0{width:1.115520pt;}
._6{width:2.604587pt;}
._c{width:3.505920pt;}
._12{width:4.515200pt;}
._8{width:6.108800pt;}
._a{width:7.596160pt;}
._b{width:8.528640pt;}
._2b{width:9.933440pt;}
._d{width:11.426560pt;}
._7{width:12.323840pt;}
._1d{width:14.289280pt;}
._13{width:15.298560pt;}
._15{width:16.520320pt;}
._11{width:17.795200pt;}
._f{width:18.751360pt;}
._e{width:19.813760pt;}
._26{width:21.451520pt;}
._2d{width:22.576000pt;}
._16{width:23.585280pt;}
._17{width:25.159040pt;}
._14{width:26.878720pt;}
._33{width:27.781760pt;}
._23{width:28.684800pt;}
._22{width:30.012800pt;}
._1e{width:31.181440pt;}
._21{width:32.298880pt;}
._24{width:33.350400pt;}
._10{width:34.262400pt;}
._1a{width:35.802880pt;}
._2f{width:36.972160pt;}
._19{width:37.891840pt;}
._18{width:39.229440pt;}
._2e{width:41.061120pt;}
._34{width:42.496640pt;}
._20{width:43.614507pt;}
._31{width:48.928640pt;}
._1f{width:52.376320pt;}
._1c{width:55.436160pt;}
._1b{width:56.540800pt;}
._2{width:57.600000pt;}
._27{width:59.025920pt;}
._3a{width:62.271787pt;}
._32{width:63.850240pt;}
._25{width:65.541120pt;}
._37{width:85.735680pt;}
._36{width:86.721280pt;}
._35{width:87.966720pt;}
._30{width:106.770560pt;}
._2c{width:116.242987pt;}
._39{width:124.460160pt;}
._38{width:125.628587pt;}
._3{width:599.200000pt;}
.fs0{font-size:2.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ycd{bottom:2.880000pt;}
.ycb{bottom:3.200000pt;}
.y12{bottom:4.480000pt;}
.ye{bottom:5.120000pt;}
.y28{bottom:5.146667pt;}
.y26{bottom:5.280000pt;}
.y11{bottom:5.760000pt;}
.y8{bottom:7.040000pt;}
.y1b{bottom:7.840000pt;}
.yd{bottom:22.720000pt;}
.y25{bottom:22.880000pt;}
.y2{bottom:23.680000pt;}
.y7{bottom:24.640000pt;}
.y24{bottom:40.480000pt;}
.y6{bottom:42.240000pt;}
.yc{bottom:48.320000pt;}
.y13{bottom:51.840000pt;}
.y23{bottom:58.080000pt;}
.y5{bottom:61.920000pt;}
.y10{bottom:65.760000pt;}
.yb{bottom:66.080000pt;}
.y22{bottom:75.680000pt;}
.y4{bottom:86.746667pt;}
.yfd{bottom:89.600000pt;}
.ya{bottom:91.706667pt;}
.y12b{bottom:92.800000pt;}
.y21{bottom:93.440000pt;}
.y43{bottom:102.080000pt;}
.yfc{bottom:107.200000pt;}
.yb3{bottom:108.320000pt;}
.y9{bottom:109.306667pt;}
.y12a{bottom:110.400000pt;}
.y20{bottom:111.040000pt;}
.y3{bottom:117.306667pt;}
.yde{bottom:119.360000pt;}
.y42{bottom:119.680000pt;}
.y124{bottom:120.000000pt;}
.yb2{bottom:125.920000pt;}
.y129{bottom:128.000000pt;}
.y1f{bottom:128.640000pt;}
.yfb{bottom:129.440000pt;}
.y58{bottom:130.880000pt;}
.y41{bottom:137.306667pt;}
.y123{bottom:137.626667pt;}
.yb1{bottom:144.666667pt;}
.y128{bottom:145.626667pt;}
.y1e{bottom:146.240000pt;}
.y57{bottom:148.666667pt;}
.ydd{bottom:153.626667pt;}
.y40{bottom:154.906667pt;}
.y122{bottom:155.226667pt;}
.yb0{bottom:162.266667pt;}
.y127{bottom:163.226667pt;}
.y1d{bottom:163.840000pt;}
.yfa{bottom:166.106667pt;}
.y56{bottom:166.266667pt;}
.y86{bottom:172.506667pt;}
.y3f{bottom:172.666667pt;}
.y121{bottom:172.986667pt;}
.yaf{bottom:179.866667pt;}
.y126{bottom:180.986667pt;}
.y55{bottom:183.866667pt;}
.ydc{bottom:186.746667pt;}
.y3e{bottom:190.266667pt;}
.y120{bottom:190.586667pt;}
.yae{bottom:198.426667pt;}
.y125{bottom:198.586667pt;}
.y54{bottom:201.466667pt;}
.yf9{bottom:202.586667pt;}
.y3d{bottom:207.866667pt;}
.ydb{bottom:215.866667pt;}
.y11f{bottom:216.186667pt;}
.yad{bottom:216.986667pt;}
.y53{bottom:219.066667pt;}
.y3c{bottom:225.466667pt;}
.yda{bottom:233.466667pt;}
.y11e{bottom:233.786667pt;}
.yac{bottom:234.586667pt;}
.y52{bottom:236.826667pt;}
.yf8{bottom:239.226667pt;}
.y3b{bottom:243.066667pt;}
.y85{bottom:251.066667pt;}
.yd9{bottom:251.226667pt;}
.y11d{bottom:251.386667pt;}
.yab{bottom:253.306667pt;}
.y3a{bottom:260.826667pt;}
.y51{bottom:262.426667pt;}
.y84{bottom:268.666667pt;}
.yd8{bottom:268.826667pt;}
.y11c{bottom:269.146667pt;}
.yf7{bottom:274.586667pt;}
.y39{bottom:278.426667pt;}
.yaa{bottom:279.386667pt;}
.y50{bottom:280.026667pt;}
.y83{bottom:286.426667pt;}
.y11b{bottom:286.746667pt;}
.yd7{bottom:291.066667pt;}
.y38{bottom:296.026667pt;}
.ya9{bottom:297.306667pt;}
.y4f{bottom:297.626667pt;}
.y82{bottom:304.026667pt;}
.y11a{bottom:304.346667pt;}
.yf6{bottom:306.106667pt;}
.y37{bottom:313.626667pt;}
.ya8{bottom:314.906667pt;}
.y4e{bottom:315.226667pt;}
.y81{bottom:321.626667pt;}
.y119{bottom:321.946667pt;}
.yf5{bottom:323.706667pt;}
.yd6{bottom:325.306667pt;}
.y36{bottom:331.226667pt;}
.ya7{bottom:332.506667pt;}
.y4d{bottom:332.986667pt;}
.y118{bottom:339.546667pt;}
.yf4{bottom:345.946667pt;}
.y80{bottom:347.226667pt;}
.y35{bottom:348.986667pt;}
.ya6{bottom:350.106667pt;}
.y4c{bottom:350.586667pt;}
.y117{bottom:357.346667pt;}
.yd5{bottom:359.586667pt;}
.y7f{bottom:364.866667pt;}
.y34{bottom:366.626667pt;}
.ya5{bottom:367.906667pt;}
.y4b{bottom:368.226667pt;}
.y116{bottom:374.946667pt;}
.y7e{bottom:382.626667pt;}
.y33{bottom:384.226667pt;}
.ya4{bottom:385.506667pt;}
.y4a{bottom:385.826667pt;}
.y115{bottom:392.546667pt;}
.yd4{bottom:393.826667pt;}
.y7d{bottom:400.226667pt;}
.y32{bottom:401.826667pt;}
.ya3{bottom:403.106667pt;}
.y114{bottom:410.146667pt;}
.y49{bottom:411.426667pt;}
.y7c{bottom:417.826667pt;}
.yf3{bottom:419.106667pt;}
.y31{bottom:419.426667pt;}
.ya2{bottom:420.706667pt;}
.yd3{bottom:427.106667pt;}
.y113{bottom:427.746667pt;}
.y48{bottom:429.186667pt;}
.y7b{bottom:435.426667pt;}
.y30{bottom:437.186667pt;}
.ya1{bottom:439.266667pt;}
.y112{bottom:445.506667pt;}
.y47{bottom:446.786667pt;}
.y7a{bottom:453.026667pt;}
.y2f{bottom:454.786667pt;}
.yf2{bottom:455.746667pt;}
.yd2{bottom:456.226667pt;}
.ya0{bottom:457.026667pt;}
.y111{bottom:463.106667pt;}
.y46{bottom:464.386667pt;}
.y79{bottom:470.626667pt;}
.y2e{bottom:472.386667pt;}
.yd1{bottom:473.826667pt;}
.y9f{bottom:475.586667pt;}
.y110{bottom:480.706667pt;}
.y45{bottom:481.986667pt;}
.y78{bottom:488.386667pt;}
.y2d{bottom:489.986667pt;}
.yf1{bottom:491.106667pt;}
.y9e{bottom:494.146667pt;}
.yd0{bottom:496.066667pt;}
.y10f{bottom:498.306667pt;}
.y44{bottom:499.586667pt;}
.y77{bottom:505.986667pt;}
.y2c{bottom:507.586667pt;}
.y9d{bottom:512.706667pt;}
.y10e{bottom:515.906667pt;}
.yf0{bottom:522.626667pt;}
.y2b{bottom:525.346667pt;}
.y13a{bottom:525.826667pt;}
.ycf{bottom:530.626667pt;}
.y9c{bottom:531.266667pt;}
.y76{bottom:531.586667pt;}
.y10d{bottom:533.666667pt;}
.yef{bottom:540.226667pt;}
.y2a{bottom:542.946667pt;}
.y139{bottom:543.426667pt;}
.y75{bottom:549.186667pt;}
.y10c{bottom:551.266667pt;}
.y9b{bottom:557.026667pt;}
.y29{bottom:560.546667pt;}
.y138{bottom:561.026667pt;}
.yee{bottom:562.466667pt;}
.yce{bottom:565.346667pt;}
.y74{bottom:566.786667pt;}
.y10b{bottom:568.866667pt;}
.y27{bottom:573.666667pt;}
.y9a{bottom:574.626667pt;}
.y137{bottom:578.653333pt;}
.y73{bottom:584.573333pt;}
.y10a{bottom:586.493333pt;}
.y1c{bottom:591.933333pt;}
.y99{bottom:593.213333pt;}
.y136{bottom:596.413333pt;}
.yed{bottom:599.133333pt;}
.ycc{bottom:599.933333pt;}
.y72{bottom:602.173333pt;}
.y109{bottom:604.093333pt;}
.y98{bottom:610.813333pt;}
.y135{bottom:614.013333pt;}
.y71{bottom:620.733333pt;}
.y97{bottom:629.373333pt;}
.y134{bottom:631.613333pt;}
.yca{bottom:633.373333pt;}
.yec{bottom:635.613333pt;}
.y70{bottom:638.333333pt;}
.y108{bottom:644.093333pt;}
.y96{bottom:646.973333pt;}
.y133{bottom:649.213333pt;}
.y6f{bottom:655.933333pt;}
.yc9{bottom:662.813333pt;}
.y95{bottom:665.693333pt;}
.y132{bottom:666.813333pt;}
.yeb{bottom:672.253333pt;}
.y6e{bottom:674.653333pt;}
.yc8{bottom:680.573333pt;}
.y94{bottom:683.293333pt;}
.y131{bottom:684.573333pt;}
.y6d{bottom:692.253333pt;}
.yc7{bottom:693.693333pt;}
.y93{bottom:701.853333pt;}
.y130{bottom:702.173333pt;}
.yea{bottom:708.733333pt;}
.y6c{bottom:709.853333pt;}
.yc6{bottom:711.933333pt;}
.y107{bottom:717.213333pt;}
.y92{bottom:719.453333pt;}
.y12f{bottom:719.773333pt;}
.y6b{bottom:727.453333pt;}
.yc5{bottom:730.333333pt;}
.y12e{bottom:737.373333pt;}
.y91{bottom:738.013333pt;}
.ye9{bottom:745.373333pt;}
.y6a{bottom:746.013333pt;}
.yc4{bottom:748.573333pt;}
.y106{bottom:753.853333pt;}
.y12d{bottom:754.973333pt;}
.y90{bottom:756.733333pt;}
.y69{bottom:763.773333pt;}
.yc3{bottom:766.813333pt;}
.y1a{bottom:769.053333pt;}
.y12c{bottom:772.733333pt;}
.y68{bottom:781.373333pt;}
.ye8{bottom:781.853333pt;}
.y8f{bottom:782.333333pt;}
.y105{bottom:789.213333pt;}
.yc2{bottom:790.333333pt;}
.y19{bottom:795.613333pt;}
.y67{bottom:799.013333pt;}
.y8e{bottom:799.973333pt;}
.yc1{bottom:807.973333pt;}
.y18{bottom:814.533333pt;}
.y66{bottom:816.613333pt;}
.ye7{bottom:817.413333pt;}
.y8d{bottom:817.573333pt;}
.y104{bottom:820.773333pt;}
.yc0{bottom:825.573333pt;}
.y17{bottom:832.613333pt;}
.y65{bottom:835.173333pt;}
.y103{bottom:838.373333pt;}
.ybf{bottom:843.173333pt;}
.ye6{bottom:848.773333pt;}
.ybe{bottom:851.013333pt;}
.y16{bottom:851.653333pt;}
.y8c{bottom:852.933333pt;}
.y102{bottom:860.613333pt;}
.y64{bottom:860.933333pt;}
.ye5{bottom:866.533333pt;}
.ybd{bottom:868.613333pt;}
.y8b{bottom:870.533333pt;}
.y15{bottom:872.453333pt;}
.y63{bottom:878.533333pt;}
.ye4{bottom:884.133333pt;}
.ybc{bottom:886.213333pt;}
.y8a{bottom:888.133333pt;}
.y62{bottom:896.133333pt;}
.y101{bottom:897.253333pt;}
.y14{bottom:900.613333pt;}
.ye3{bottom:901.733333pt;}
.ybb{bottom:903.813333pt;}
.y89{bottom:905.733333pt;}
.y61{bottom:913.733333pt;}
.yba{bottom:921.413333pt;}
.y88{bottom:923.333333pt;}
.ye2{bottom:923.973333pt;}
.yf{bottom:924.453333pt;}
.y60{bottom:931.333333pt;}
.y100{bottom:933.733333pt;}
.yb9{bottom:939.173333pt;}
.y87{bottom:941.093333pt;}
.y1{bottom:944.453333pt;}
.y5f{bottom:949.093333pt;}
.ye1{bottom:958.213333pt;}
.yb8{bottom:964.773333pt;}
.y5e{bottom:966.693333pt;}
.yff{bottom:970.373333pt;}
.yb7{bottom:982.373333pt;}
.y5d{bottom:984.293333pt;}
.ye0{bottom:992.613333pt;}
.yb6{bottom:999.973333pt;}
.y5c{bottom:1001.893333pt;}
.yfe{bottom:1005.733333pt;}
.yb5{bottom:1018.533333pt;}
.y5b{bottom:1019.520000pt;}
.ydf{bottom:1025.760000pt;}
.yb4{bottom:1036.320000pt;}
.y5a{bottom:1037.280000pt;}
.y59{bottom:1060.800000pt;}
.h3{height:1.787500pt;}
.h15{height:15.200000pt;}
.h16{height:15.360000pt;}
.h13{height:15.680000pt;}
.h14{height:15.712000pt;}
.h12{height:17.600000pt;}
.h10{height:17.632000pt;}
.h18{height:17.760000pt;}
.h17{height:17.792000pt;}
.ha{height:19.520000pt;}
.he{height:20.320000pt;}
.hd{height:35.975313pt;}
.h7{height:37.090625pt;}
.h4{height:37.479688pt;}
.h11{height:38.672812pt;}
.h8{height:41.112500pt;}
.h6{height:41.543750pt;}
.h19{height:43.782500pt;}
.hb{height:47.310625pt;}
.h5{height:52.832812pt;}
.h9{height:58.563750pt;}
.hc{height:60.057813pt;}
.h2{height:129.792000pt;}
.hf{height:176.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:46.272000pt;}
.w23{width:56.992000pt;}
.w17{width:72.960000pt;}
.w1a{width:74.400000pt;}
.w20{width:79.360000pt;}
.w1d{width:84.640000pt;}
.w4{width:126.112000pt;}
.w2{width:138.426667pt;}
.w25{width:149.146667pt;}
.wc{width:149.466667pt;}
.w24{width:150.746667pt;}
.wd{width:161.306667pt;}
.wf{width:170.586667pt;}
.w8{width:170.906667pt;}
.w15{width:177.026667pt;}
.w12{width:190.586667pt;}
.w18{width:192.386667pt;}
.w1b{width:196.546667pt;}
.w21{width:209.506667pt;}
.w1e{width:223.266667pt;}
.w11{width:227.586667pt;}
.w10{width:232.706667pt;}
.w13{width:259.906667pt;}
.wb{width:286.906667pt;}
.we{width:291.266667pt;}
.w22{width:329.346667pt;}
.w1c{width:382.653333pt;}
.w16{width:397.373333pt;}
.w1f{width:399.133333pt;}
.w19{width:413.213333pt;}
.w3{width:443.613333pt;}
.w14{width:492.093333pt;}
.w9{width:520.453333pt;}
.w7{width:651.013333pt;}
.wa{width:691.360000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.720000pt;}
.x5{left:7.680000pt;}
.x1{left:42.880000pt;}
.xa{left:47.999988pt;}
.x18{left:48.960000pt;}
.x11{left:50.239988pt;}
.xc{left:51.200000pt;}
.x1b{left:57.280000pt;}
.x1e{left:62.080000pt;}
.x20{left:64.960000pt;}
.x2c{left:66.879988pt;}
.x12{left:71.999988pt;}
.x2d{left:90.911988pt;}
.xb{left:94.912000pt;}
.x13{left:96.031988pt;}
.x14{left:97.472000pt;}
.x4{left:113.480000pt;}
.x8{left:126.280000pt;}
.x2{left:131.226667pt;}
.x7{left:137.160000pt;}
.x3{left:181.306667pt;}
.x6{left:183.400000pt;}
.xd{left:222.106667pt;}
.x1c{left:285.506667pt;}
.x19{left:341.026667pt;}
.x28{left:378.626667pt;}
.x16{left:385.026667pt;}
.xe{left:420.893322pt;}
.x24{left:434.173333pt;}
.x29{left:436.413333pt;}
.x2b{left:439.773322pt;}
.xf{left:444.893322pt;}
.x26{left:448.573333pt;}
.x21{left:462.973333pt;}
.x10{left:468.893322pt;}
.x1d{left:476.733333pt;}
.x1a{left:512.253333pt;}
.x25{left:519.613333pt;}
.x27{left:528.573333pt;}
.x17{left:535.133333pt;}
.x22{left:536.573333pt;}
.x23{left:537.533333pt;}
.x1f{left:554.813333pt;}
.x2a{left:587.813333pt;}
.x9{left:624.933333pt;}
}




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