
    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_e5c51f78508c04c778d07052.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691406;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_12fdac9b8812798d1415025f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e5cd418dd590d2764f4440d9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d642462e855d94b376a17f86.woff2')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_1c16ef93fa310b297cd82d68.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c9c2623b3fac881bc2d39f11.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_447eddc38878073b68b9bb6d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_89664517aed4b1849f8fbf8d.woff2')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;}
.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.540000px;}
.ls2{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.126000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.930000px;}
.ls6{letter-spacing:10.800000px;}
.lsf{letter-spacing:17.280000px;}
.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;}
}
.ws0{word-spacing:-24.870000px;}
.ws1{word-spacing:-21.060000px;}
.ws7{word-spacing:-18.720000px;}
.ws4{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.712000px;}
.ws9{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.716000px;}
.wsa{word-spacing:-13.680000px;}
.ws2{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.374000px;}
.wsb{word-spacing:-12.960000px;}
.ws3{word-spacing:0.000000px;}
._12{margin-left:-2.614320px;}
._2{margin-left:-1.242720px;}
._1{width:1.545600px;}
._3{width:2.565120px;}
._a{width:4.410000px;}
._b{width:5.820720px;}
._c{width:6.883680px;}
._4{width:7.938000px;}
._5{width:9.357120px;}
._8{width:10.738800px;}
._7{width:11.826720px;}
._10{width:13.320000px;}
._11{width:14.328000px;}
._14{width:15.480000px;}
._9{width:16.578000px;}
._d{width:19.560000px;}
._13{width:20.628000px;}
._6{width:21.816000px;}
._15{width:23.059920px;}
._18{width:24.840000px;}
._1b{width:25.848000px;}
._16{width:27.288000px;}
._17{width:28.584000px;}
._1c{width:30.312000px;}
._1d{width:31.752000px;}
._19{width:34.056000px;}
._1a{width:35.226720px;}
._1f{width:37.224000px;}
._20{width:38.232000px;}
._21{width:40.104000px;}
._22{width:41.184000px;}
._1e{width:45.648000px;}
._26{width:46.728000px;}
._e{width:48.024000px;}
._f{width:49.032000px;}
._27{width:53.544000px;}
._23{width:56.064000px;}
._24{width:57.192000px;}
._25{width:58.428000px;}
._0{width:2712.738240px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(51,51,0);}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:41.760000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yd7{bottom:2.880000px;}
.yc5{bottom:3.225000px;}
.yb7{bottom:3.240000px;}
.yd3{bottom:3.270000px;}
.yc3{bottom:3.405000px;}
.yb9{bottom:3.420000px;}
.ye3{bottom:18.885000px;}
.ya8{bottom:117.936000px;}
.ya5{bottom:128.916000px;}
.y23{bottom:129.276000px;}
.y9e{bottom:131.076000px;}
.y7f{bottom:131.796000px;}
.y94{bottom:131.976000px;}
.yb5{bottom:134.856000px;}
.y140{bottom:140.436000px;}
.y3e{bottom:143.856000px;}
.y8b{bottom:144.936000px;}
.ye6{bottom:148.176000px;}
.ya7{bottom:149.076000px;}
.y118{bottom:152.130000px;}
.y59{bottom:155.010000px;}
.y66{bottom:155.730000px;}
.ya4{bottom:159.870000px;}
.y13f{bottom:161.130000px;}
.y9d{bottom:162.030000px;}
.y7e{bottom:162.930000px;}
.y93{bottom:163.110000px;}
.yb4{bottom:165.810000px;}
.ye5{bottom:166.545000px;}
.yf4{bottom:168.870000px;}
.y22{bottom:171.930000px;}
.y117{bottom:172.830000px;}
.y3d{bottom:174.810000px;}
.ya6{bottom:180.030000px;}
.y13e{bottom:181.830000px;}
.y8a{bottom:182.010000px;}
.ye4{bottom:182.025000px;}
.y58{bottom:186.150000px;}
.y65{bottom:186.690000px;}
.y116{bottom:193.530000px;}
.y7d{bottom:193.890000px;}
.y92{bottom:194.070000px;}
.yb3{bottom:196.950000px;}
.ye2{bottom:197.505000px;}
.ya3{bottom:198.930000px;}
.y9c{bottom:199.110000px;}
.yf3{bottom:200.010000px;}
.y13d{bottom:202.530000px;}
.y3c{bottom:205.950000px;}
.y21{bottom:208.110000px;}
.y89{bottom:212.970000px;}
.y115{bottom:214.230000px;}
.y57{bottom:217.110000px;}
.y64{bottom:217.830000px;}
.y13c{bottom:223.230000px;}
.y7c{bottom:225.030000px;}
.y91{bottom:225.210000px;}
.yb2{bottom:227.910000px;}
.ye1{bottom:230.085000px;}
.yf2{bottom:230.970000px;}
.y114{bottom:234.930000px;}
.y20{bottom:236.190000px;}
.y3b{bottom:236.910000px;}
.ya2{bottom:242.130000px;}
.y13b{bottom:243.930000px;}
.y88{bottom:244.110000px;}
.y56{bottom:248.250000px;}
.y63{bottom:248.790000px;}
.y113{bottom:255.630000px;}
.y7b{bottom:255.990000px;}
.y90{bottom:256.170000px;}
.yb1{bottom:259.050000px;}
.yf1{bottom:262.110000px;}
.ye0{bottom:262.470000px;}
.y13a{bottom:264.630000px;}
.y9b{bottom:267.150000px;}
.y3a{bottom:268.050000px;}
.y1f{bottom:272.370000px;}
.ya1{bottom:273.270000px;}
.y87{bottom:275.070000px;}
.y112{bottom:276.330000px;}
.y55{bottom:279.210000px;}
.y62{bottom:280.650000px;}
.y139{bottom:285.330000px;}
.y7a{bottom:287.130000px;}
.y8f{bottom:287.310000px;}
.yb0{bottom:290.010000px;}
.y1e{bottom:290.190000px;}
.yf0{bottom:293.070000px;}
.ydf{bottom:293.610000px;}
.y111{bottom:297.030000px;}
.y39{bottom:299.010000px;}
.y9a{bottom:304.275000px;}
.y138{bottom:306.075000px;}
.y86{bottom:306.255000px;}
.y1d{bottom:308.055000px;}
.y54{bottom:310.215000px;}
.y110{bottom:317.775000px;}
.y79{bottom:318.135000px;}
.y61{bottom:321.195000px;}
.yef{bottom:324.255000px;}
.y8e{bottom:324.435000px;}
.yde{bottom:324.615000px;}
.y1c{bottom:325.875000px;}
.y137{bottom:326.775000px;}
.y38{bottom:330.195000px;}
.y99{bottom:335.415000px;}
.y85{bottom:337.215000px;}
.y10f{bottom:338.475000px;}
.y53{bottom:341.355000px;}
.y1b{bottom:343.875000px;}
.y8d{bottom:344.775000px;}
.y136{bottom:347.475000px;}
.y78{bottom:349.275000px;}
.yaf{bottom:352.155000px;}
.yee{bottom:355.215000px;}
.ydd{bottom:355.755000px;}
.y10e{bottom:359.175000px;}
.y37{bottom:361.155000px;}
.y1a{bottom:361.695000px;}
.y60{bottom:363.315000px;}
.y98{bottom:366.375000px;}
.y135{bottom:368.175000px;}
.y84{bottom:368.355000px;}
.y52{bottom:372.315000px;}
.y8c{bottom:375.735000px;}
.y19{bottom:379.515000px;}
.y10d{bottom:379.875000px;}
.y77{bottom:380.235000px;}
.yae{bottom:383.295000px;}
.ydc{bottom:385.635000px;}
.y134{bottom:388.875000px;}
.y36{bottom:392.295000px;}
.y18{bottom:397.335000px;}
.y97{bottom:397.515000px;}
.y83{bottom:399.315000px;}
.y10c{bottom:400.575000px;}
.y51{bottom:403.455000px;}
.y133{bottom:409.575000px;}
.y76{bottom:411.375000px;}
.ydb{bottom:414.075000px;}
.yad{bottom:414.255000px;}
.y17{bottom:415.155000px;}
.y10b{bottom:421.275000px;}
.y35{bottom:423.255000px;}
.y96{bottom:428.475000px;}
.y132{bottom:430.275000px;}
.y82{bottom:430.455000px;}
.yda{bottom:431.175000px;}
.y16{bottom:432.975000px;}
.y50{bottom:434.415000px;}
.y10a{bottom:441.975000px;}
.yac{bottom:445.395000px;}
.yd9{bottom:446.655000px;}
.y75{bottom:448.275000px;}
.y15{bottom:450.975000px;}
.y34{bottom:454.395000px;}
.y95{bottom:459.615000px;}
.yd8{bottom:462.315000px;}
.y109{bottom:462.675000px;}
.y4f{bottom:465.555000px;}
.y81{bottom:466.275000px;}
.y14{bottom:468.795000px;}
.y131{bottom:471.675000px;}
.yab{bottom:476.355000px;}
.yd6{bottom:477.795000px;}
.y74{bottom:479.415000px;}
.y108{bottom:483.375000px;}
.y33{bottom:485.355000px;}
.y13{bottom:486.615000px;}
.ya0{bottom:490.575000px;}
.y130{bottom:492.375000px;}
.yd5{bottom:493.275000px;}
.y4e{bottom:496.515000px;}
.y80{bottom:497.235000px;}
.y5f{bottom:502.635000px;}
.y107{bottom:504.075000px;}
.y12{bottom:504.435000px;}
.yaa{bottom:507.495000px;}
.yd4{bottom:508.755000px;}
.y73{bottom:510.375000px;}
.y12f{bottom:513.075000px;}
.yed{bottom:516.495000px;}
.y9f{bottom:521.715000px;}
.y11{bottom:522.255000px;}
.y32{bottom:522.435000px;}
.y106{bottom:524.775000px;}
.yd2{bottom:525.135000px;}
.y4d{bottom:527.685000px;}
.y5e{bottom:533.625000px;}
.y12e{bottom:533.805000px;}
.y10{bottom:540.105000px;}
.yd1{bottom:540.660000px;}
.y72{bottom:541.545000px;}
.y105{bottom:545.505000px;}
.ya9{bottom:546.585000px;}
.yec{bottom:547.485000px;}
.y31{bottom:553.605000px;}
.y12d{bottom:554.505000px;}
.yd0{bottom:556.140000px;}
.y4c{bottom:558.645000px;}
.y5d{bottom:564.765000px;}
.yf{bottom:566.205000px;}
.ycf{bottom:571.800000px;}
.y71{bottom:572.505000px;}
.y12c{bottom:575.205000px;}
.yeb{bottom:578.625000px;}
.y30{bottom:584.565000px;}
.y104{bottom:586.905000px;}
.yce{bottom:587.280000px;}
.y4b{bottom:589.785000px;}
.ye{bottom:594.825000px;}
.y5c{bottom:595.725000px;}
.y12b{bottom:595.905000px;}
.ycd{bottom:602.745000px;}
.y70{bottom:603.645000px;}
.y103{bottom:607.605000px;}
.yea{bottom:609.585000px;}
.y2f{bottom:615.705000px;}
.y12a{bottom:616.605000px;}
.ycc{bottom:618.240000px;}
.y4a{bottom:620.745000px;}
.y5b{bottom:626.865000px;}
.yd{bottom:627.945000px;}
.y102{bottom:628.305000px;}
.ycb{bottom:633.900000px;}
.y129{bottom:637.305000px;}
.ye9{bottom:640.725000px;}
.y6f{bottom:642.705000px;}
.y2e{bottom:646.665000px;}
.y101{bottom:649.005000px;}
.yca{bottom:649.380000px;}
.y49{bottom:651.885000px;}
.yc{bottom:654.225000px;}
.y5a{bottom:657.825000px;}
.y128{bottom:658.005000px;}
.yc9{bottom:664.860000px;}
.y100{bottom:669.705000px;}
.ye8{bottom:671.685000px;}
.y2d{bottom:677.805000px;}
.y127{bottom:678.705000px;}
.yc8{bottom:680.340000px;}
.yb{bottom:681.225000px;}
.y6e{bottom:682.845000px;}
.y48{bottom:688.965000px;}
.yff{bottom:690.405000px;}
.yc7{bottom:696.000000px;}
.y126{bottom:699.405000px;}
.ye7{bottom:702.825000px;}
.y2c{bottom:708.765000px;}
.yfe{bottom:711.105000px;}
.yc6{bottom:711.480000px;}
.ya{bottom:713.625000px;}
.y6d{bottom:713.985000px;}
.y47{bottom:719.925000px;}
.y125{bottom:720.105000px;}
.yc4{bottom:726.960000px;}
.yfd{bottom:734.325000px;}
.y2b{bottom:739.905000px;}
.y9{bottom:740.625000px;}
.y124{bottom:740.805000px;}
.yc2{bottom:742.440000px;}
.y6c{bottom:744.945000px;}
.y46{bottom:751.065000px;}
.yfc{bottom:755.610000px;}
.yc1{bottom:758.130000px;}
.y123{bottom:761.550000px;}
.y2a{bottom:770.910000px;}
.y8{bottom:773.070000px;}
.yc0{bottom:773.610000px;}
.y6b{bottom:776.130000px;}
.yfb{bottom:776.310000px;}
.y45{bottom:782.070000px;}
.y122{bottom:782.250000px;}
.ybf{bottom:789.090000px;}
.yfa{bottom:797.010000px;}
.y7{bottom:800.070000px;}
.y29{bottom:801.870000px;}
.y121{bottom:802.950000px;}
.ybe{bottom:804.570000px;}
.y6a{bottom:807.090000px;}
.y44{bottom:813.210000px;}
.yf9{bottom:817.710000px;}
.ybd{bottom:820.050000px;}
.y120{bottom:823.650000px;}
.y28{bottom:833.010000px;}
.y6{bottom:834.090000px;}
.ybc{bottom:835.710000px;}
.y69{bottom:838.230000px;}
.yf8{bottom:838.410000px;}
.y43{bottom:844.170000px;}
.y11f{bottom:844.350000px;}
.ybb{bottom:851.190000px;}
.yf7{bottom:859.110000px;}
.y27{bottom:863.970000px;}
.y11e{bottom:865.050000px;}
.yba{bottom:866.670000px;}
.y68{bottom:869.190000px;}
.y5{bottom:870.630000px;}
.y42{bottom:875.310000px;}
.yf6{bottom:879.810000px;}
.yb8{bottom:882.150000px;}
.y11d{bottom:885.750000px;}
.y26{bottom:895.110000px;}
.yb6{bottom:898.890000px;}
.y67{bottom:900.330000px;}
.yf5{bottom:900.510000px;}
.y41{bottom:906.270000px;}
.y11c{bottom:906.450000px;}
.y4{bottom:907.170000px;}
.y25{bottom:926.070000px;}
.y11b{bottom:927.150000px;}
.y3{bottom:934.890000px;}
.y40{bottom:937.410000px;}
.y11a{bottom:947.850000px;}
.y2{bottom:962.430000px;}
.y24{bottom:965.310000px;}
.y3f{bottom:968.370000px;}
.y119{bottom:968.550000px;}
.y1{bottom:1030.140000px;}
.h10{height:15.465000px;}
.h14{height:15.480000px;}
.h15{height:15.510000px;}
.h11{height:15.645000px;}
.h16{height:15.660000px;}
.h13{height:15.681000px;}
.h2{height:28.485703px;}
.h18{height:31.125000px;}
.hc{height:45.184219px;}
.h12{height:52.971680px;}
.h8{height:52.998047px;}
.h17{height:54.421875px;}
.h5{height:58.651172px;}
.he{height:64.546875px;}
.hd{height:65.010937px;}
.hf{height:70.628906px;}
.hb{height:70.664062px;}
.h6{height:72.562500px;}
.h4{height:82.635820px;}
.ha{height:82.676953px;}
.h9{height:84.898125px;}
.h7{height:86.585445px;}
.h3{height:96.508125px;}
.h1{height:1092.750000px;}
.h0{height:1092.780000px;}
.w2{width:29.331000px;}
.w3{width:33.105000px;}
.w1{width:36.531000px;}
.w7{width:65.145000px;}
.w5{width:65.160000px;}
.w8{width:65.181000px;}
.w6{width:65.196000px;}
.w9{width:65.325000px;}
.w4{width:78.681000px;}
.wa{width:83.151000px;}
.w10{width:85.305000px;}
.wf{width:90.381000px;}
.wc{width:92.721000px;}
.wd{width:94.500000px;}
.we{width:106.596000px;}
.wb{width:469.530000px;}
.w0{width:774.000000px;}
.x0{left:0.000000px;}
.x12{left:5.211000px;}
.x1e{left:8.091000px;}
.x21{left:41.565000px;}
.x11{left:102.465000px;}
.x1{left:108.036000px;}
.x2{left:110.376000px;}
.x1d{left:121.545000px;}
.xa{left:134.136000px;}
.x13{left:139.005000px;}
.x3{left:153.570000px;}
.x14{left:168.345000px;}
.x10{left:198.210000px;}
.x15{left:201.465000px;}
.x1f{left:204.705000px;}
.xe{left:206.310000px;}
.x20{left:207.780000px;}
.x1c{left:219.270000px;}
.xb{left:221.430000px;}
.x7{left:225.030000px;}
.x8{left:249.375000px;}
.x6{left:262.695000px;}
.x16{left:280.155000px;}
.x4{left:285.375000px;}
.x25{left:288.075000px;}
.x9{left:296.895000px;}
.x17{left:345.315000px;}
.x5{left:387.075000px;}
.x22{left:391.935000px;}
.x18{left:410.520000px;}
.x19{left:475.860000px;}
.x23{left:498.540000px;}
.x1a{left:541.020000px;}
.xd{left:574.350000px;}
.x24{left:588.930000px;}
.x1b{left:606.210000px;}
.xf{left:615.390000px;}
.xc{left:700.890000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls2{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.112000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.826667pt;}
.ls6{letter-spacing:9.600000pt;}
.lsf{letter-spacing:15.360000pt;}
.ws0{word-spacing:-22.106667pt;}
.ws1{word-spacing:-18.720000pt;}
.ws7{word-spacing:-16.640000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.744000pt;}
.ws9{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.192000pt;}
.wsa{word-spacing:-12.160000pt;}
.ws2{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.888000pt;}
.wsb{word-spacing:-11.520000pt;}
.ws3{word-spacing:0.000000pt;}
._12{margin-left:-2.323840pt;}
._2{margin-left:-1.104640pt;}
._1{width:1.373867pt;}
._3{width:2.280107pt;}
._a{width:3.920000pt;}
._b{width:5.173973pt;}
._c{width:6.118827pt;}
._4{width:7.056000pt;}
._5{width:8.317440pt;}
._8{width:9.545600pt;}
._7{width:10.512640pt;}
._10{width:11.840000pt;}
._11{width:12.736000pt;}
._14{width:13.760000pt;}
._9{width:14.736000pt;}
._d{width:17.386667pt;}
._13{width:18.336000pt;}
._6{width:19.392000pt;}
._15{width:20.497707pt;}
._18{width:22.080000pt;}
._1b{width:22.976000pt;}
._16{width:24.256000pt;}
._17{width:25.408000pt;}
._1c{width:26.944000pt;}
._1d{width:28.224000pt;}
._19{width:30.272000pt;}
._1a{width:31.312640pt;}
._1f{width:33.088000pt;}
._20{width:33.984000pt;}
._21{width:35.648000pt;}
._22{width:36.608000pt;}
._1e{width:40.576000pt;}
._26{width:41.536000pt;}
._e{width:42.688000pt;}
._f{width:43.584000pt;}
._27{width:47.594667pt;}
._23{width:49.834667pt;}
._24{width:50.837333pt;}
._25{width:51.936000pt;}
._0{width:2411.322880pt;}
.fs0{font-size:37.120000pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yd7{bottom:2.560000pt;}
.yc5{bottom:2.866667pt;}
.yb7{bottom:2.880000pt;}
.yd3{bottom:2.906667pt;}
.yc3{bottom:3.026667pt;}
.yb9{bottom:3.040000pt;}
.ye3{bottom:16.786667pt;}
.ya8{bottom:104.832000pt;}
.ya5{bottom:114.592000pt;}
.y23{bottom:114.912000pt;}
.y9e{bottom:116.512000pt;}
.y7f{bottom:117.152000pt;}
.y94{bottom:117.312000pt;}
.yb5{bottom:119.872000pt;}
.y140{bottom:124.832000pt;}
.y3e{bottom:127.872000pt;}
.y8b{bottom:128.832000pt;}
.ye6{bottom:131.712000pt;}
.ya7{bottom:132.512000pt;}
.y118{bottom:135.226667pt;}
.y59{bottom:137.786667pt;}
.y66{bottom:138.426667pt;}
.ya4{bottom:142.106667pt;}
.y13f{bottom:143.226667pt;}
.y9d{bottom:144.026667pt;}
.y7e{bottom:144.826667pt;}
.y93{bottom:144.986667pt;}
.yb4{bottom:147.386667pt;}
.ye5{bottom:148.040000pt;}
.yf4{bottom:150.106667pt;}
.y22{bottom:152.826667pt;}
.y117{bottom:153.626667pt;}
.y3d{bottom:155.386667pt;}
.ya6{bottom:160.026667pt;}
.y13e{bottom:161.626667pt;}
.y8a{bottom:161.786667pt;}
.ye4{bottom:161.800000pt;}
.y58{bottom:165.466667pt;}
.y65{bottom:165.946667pt;}
.y116{bottom:172.026667pt;}
.y7d{bottom:172.346667pt;}
.y92{bottom:172.506667pt;}
.yb3{bottom:175.066667pt;}
.ye2{bottom:175.560000pt;}
.ya3{bottom:176.826667pt;}
.y9c{bottom:176.986667pt;}
.yf3{bottom:177.786667pt;}
.y13d{bottom:180.026667pt;}
.y3c{bottom:183.066667pt;}
.y21{bottom:184.986667pt;}
.y89{bottom:189.306667pt;}
.y115{bottom:190.426667pt;}
.y57{bottom:192.986667pt;}
.y64{bottom:193.626667pt;}
.y13c{bottom:198.426667pt;}
.y7c{bottom:200.026667pt;}
.y91{bottom:200.186667pt;}
.yb2{bottom:202.586667pt;}
.ye1{bottom:204.520000pt;}
.yf2{bottom:205.306667pt;}
.y114{bottom:208.826667pt;}
.y20{bottom:209.946667pt;}
.y3b{bottom:210.586667pt;}
.ya2{bottom:215.226667pt;}
.y13b{bottom:216.826667pt;}
.y88{bottom:216.986667pt;}
.y56{bottom:220.666667pt;}
.y63{bottom:221.146667pt;}
.y113{bottom:227.226667pt;}
.y7b{bottom:227.546667pt;}
.y90{bottom:227.706667pt;}
.yb1{bottom:230.266667pt;}
.yf1{bottom:232.986667pt;}
.ye0{bottom:233.306667pt;}
.y13a{bottom:235.226667pt;}
.y9b{bottom:237.466667pt;}
.y3a{bottom:238.266667pt;}
.y1f{bottom:242.106667pt;}
.ya1{bottom:242.906667pt;}
.y87{bottom:244.506667pt;}
.y112{bottom:245.626667pt;}
.y55{bottom:248.186667pt;}
.y62{bottom:249.466667pt;}
.y139{bottom:253.626667pt;}
.y7a{bottom:255.226667pt;}
.y8f{bottom:255.386667pt;}
.yb0{bottom:257.786667pt;}
.y1e{bottom:257.946667pt;}
.yf0{bottom:260.506667pt;}
.ydf{bottom:260.986667pt;}
.y111{bottom:264.026667pt;}
.y39{bottom:265.786667pt;}
.y9a{bottom:270.466667pt;}
.y138{bottom:272.066667pt;}
.y86{bottom:272.226667pt;}
.y1d{bottom:273.826667pt;}
.y54{bottom:275.746667pt;}
.y110{bottom:282.466667pt;}
.y79{bottom:282.786667pt;}
.y61{bottom:285.506667pt;}
.yef{bottom:288.226667pt;}
.y8e{bottom:288.386667pt;}
.yde{bottom:288.546667pt;}
.y1c{bottom:289.666667pt;}
.y137{bottom:290.466667pt;}
.y38{bottom:293.506667pt;}
.y99{bottom:298.146667pt;}
.y85{bottom:299.746667pt;}
.y10f{bottom:300.866667pt;}
.y53{bottom:303.426667pt;}
.y1b{bottom:305.666667pt;}
.y8d{bottom:306.466667pt;}
.y136{bottom:308.866667pt;}
.y78{bottom:310.466667pt;}
.yaf{bottom:313.026667pt;}
.yee{bottom:315.746667pt;}
.ydd{bottom:316.226667pt;}
.y10e{bottom:319.266667pt;}
.y37{bottom:321.026667pt;}
.y1a{bottom:321.506667pt;}
.y60{bottom:322.946667pt;}
.y98{bottom:325.666667pt;}
.y135{bottom:327.266667pt;}
.y84{bottom:327.426667pt;}
.y52{bottom:330.946667pt;}
.y8c{bottom:333.986667pt;}
.y19{bottom:337.346667pt;}
.y10d{bottom:337.666667pt;}
.y77{bottom:337.986667pt;}
.yae{bottom:340.706667pt;}
.ydc{bottom:342.786667pt;}
.y134{bottom:345.666667pt;}
.y36{bottom:348.706667pt;}
.y18{bottom:353.186667pt;}
.y97{bottom:353.346667pt;}
.y83{bottom:354.946667pt;}
.y10c{bottom:356.066667pt;}
.y51{bottom:358.626667pt;}
.y133{bottom:364.066667pt;}
.y76{bottom:365.666667pt;}
.ydb{bottom:368.066667pt;}
.yad{bottom:368.226667pt;}
.y17{bottom:369.026667pt;}
.y10b{bottom:374.466667pt;}
.y35{bottom:376.226667pt;}
.y96{bottom:380.866667pt;}
.y132{bottom:382.466667pt;}
.y82{bottom:382.626667pt;}
.yda{bottom:383.266667pt;}
.y16{bottom:384.866667pt;}
.y50{bottom:386.146667pt;}
.y10a{bottom:392.866667pt;}
.yac{bottom:395.906667pt;}
.yd9{bottom:397.026667pt;}
.y75{bottom:398.466667pt;}
.y15{bottom:400.866667pt;}
.y34{bottom:403.906667pt;}
.y95{bottom:408.546667pt;}
.yd8{bottom:410.946667pt;}
.y109{bottom:411.266667pt;}
.y4f{bottom:413.826667pt;}
.y81{bottom:414.466667pt;}
.y14{bottom:416.706667pt;}
.y131{bottom:419.266667pt;}
.yab{bottom:423.426667pt;}
.yd6{bottom:424.706667pt;}
.y74{bottom:426.146667pt;}
.y108{bottom:429.666667pt;}
.y33{bottom:431.426667pt;}
.y13{bottom:432.546667pt;}
.ya0{bottom:436.066667pt;}
.y130{bottom:437.666667pt;}
.yd5{bottom:438.466667pt;}
.y4e{bottom:441.346667pt;}
.y80{bottom:441.986667pt;}
.y5f{bottom:446.786667pt;}
.y107{bottom:448.066667pt;}
.y12{bottom:448.386667pt;}
.yaa{bottom:451.106667pt;}
.yd4{bottom:452.226667pt;}
.y73{bottom:453.666667pt;}
.y12f{bottom:456.066667pt;}
.yed{bottom:459.106667pt;}
.y9f{bottom:463.746667pt;}
.y11{bottom:464.226667pt;}
.y32{bottom:464.386667pt;}
.y106{bottom:466.466667pt;}
.yd2{bottom:466.786667pt;}
.y4d{bottom:469.053333pt;}
.y5e{bottom:474.333333pt;}
.y12e{bottom:474.493333pt;}
.y10{bottom:480.093333pt;}
.yd1{bottom:480.586667pt;}
.y72{bottom:481.373333pt;}
.y105{bottom:484.893333pt;}
.ya9{bottom:485.853333pt;}
.yec{bottom:486.653333pt;}
.y31{bottom:492.093333pt;}
.y12d{bottom:492.893333pt;}
.yd0{bottom:494.346667pt;}
.y4c{bottom:496.573333pt;}
.y5d{bottom:502.013333pt;}
.yf{bottom:503.293333pt;}
.ycf{bottom:508.266667pt;}
.y71{bottom:508.893333pt;}
.y12c{bottom:511.293333pt;}
.yeb{bottom:514.333333pt;}
.y30{bottom:519.613333pt;}
.y104{bottom:521.693333pt;}
.yce{bottom:522.026667pt;}
.y4b{bottom:524.253333pt;}
.ye{bottom:528.733333pt;}
.y5c{bottom:529.533333pt;}
.y12b{bottom:529.693333pt;}
.ycd{bottom:535.773333pt;}
.y70{bottom:536.573333pt;}
.y103{bottom:540.093333pt;}
.yea{bottom:541.853333pt;}
.y2f{bottom:547.293333pt;}
.y12a{bottom:548.093333pt;}
.ycc{bottom:549.546667pt;}
.y4a{bottom:551.773333pt;}
.y5b{bottom:557.213333pt;}
.yd{bottom:558.173333pt;}
.y102{bottom:558.493333pt;}
.ycb{bottom:563.466667pt;}
.y129{bottom:566.493333pt;}
.ye9{bottom:569.533333pt;}
.y6f{bottom:571.293333pt;}
.y2e{bottom:574.813333pt;}
.y101{bottom:576.893333pt;}
.yca{bottom:577.226667pt;}
.y49{bottom:579.453333pt;}
.yc{bottom:581.533333pt;}
.y5a{bottom:584.733333pt;}
.y128{bottom:584.893333pt;}
.yc9{bottom:590.986667pt;}
.y100{bottom:595.293333pt;}
.ye8{bottom:597.053333pt;}
.y2d{bottom:602.493333pt;}
.y127{bottom:603.293333pt;}
.yc8{bottom:604.746667pt;}
.yb{bottom:605.533333pt;}
.y6e{bottom:606.973333pt;}
.y48{bottom:612.413333pt;}
.yff{bottom:613.693333pt;}
.yc7{bottom:618.666667pt;}
.y126{bottom:621.693333pt;}
.ye7{bottom:624.733333pt;}
.y2c{bottom:630.013333pt;}
.yfe{bottom:632.093333pt;}
.yc6{bottom:632.426667pt;}
.ya{bottom:634.333333pt;}
.y6d{bottom:634.653333pt;}
.y47{bottom:639.933333pt;}
.y125{bottom:640.093333pt;}
.yc4{bottom:646.186667pt;}
.yfd{bottom:652.733333pt;}
.y2b{bottom:657.693333pt;}
.y9{bottom:658.333333pt;}
.y124{bottom:658.493333pt;}
.yc2{bottom:659.946667pt;}
.y6c{bottom:662.173333pt;}
.y46{bottom:667.613333pt;}
.yfc{bottom:671.653333pt;}
.yc1{bottom:673.893333pt;}
.y123{bottom:676.933333pt;}
.y2a{bottom:685.253333pt;}
.y8{bottom:687.173333pt;}
.yc0{bottom:687.653333pt;}
.y6b{bottom:689.893333pt;}
.yfb{bottom:690.053333pt;}
.y45{bottom:695.173333pt;}
.y122{bottom:695.333333pt;}
.ybf{bottom:701.413333pt;}
.yfa{bottom:708.453333pt;}
.y7{bottom:711.173333pt;}
.y29{bottom:712.773333pt;}
.y121{bottom:713.733333pt;}
.ybe{bottom:715.173333pt;}
.y6a{bottom:717.413333pt;}
.y44{bottom:722.853333pt;}
.yf9{bottom:726.853333pt;}
.ybd{bottom:728.933333pt;}
.y120{bottom:732.133333pt;}
.y28{bottom:740.453333pt;}
.y6{bottom:741.413333pt;}
.ybc{bottom:742.853333pt;}
.y69{bottom:745.093333pt;}
.yf8{bottom:745.253333pt;}
.y43{bottom:750.373333pt;}
.y11f{bottom:750.533333pt;}
.ybb{bottom:756.613333pt;}
.yf7{bottom:763.653333pt;}
.y27{bottom:767.973333pt;}
.y11e{bottom:768.933333pt;}
.yba{bottom:770.373333pt;}
.y68{bottom:772.613333pt;}
.y5{bottom:773.893333pt;}
.y42{bottom:778.053333pt;}
.yf6{bottom:782.053333pt;}
.yb8{bottom:784.133333pt;}
.y11d{bottom:787.333333pt;}
.y26{bottom:795.653333pt;}
.yb6{bottom:799.013333pt;}
.y67{bottom:800.293333pt;}
.yf5{bottom:800.453333pt;}
.y41{bottom:805.573333pt;}
.y11c{bottom:805.733333pt;}
.y4{bottom:806.373333pt;}
.y25{bottom:823.173333pt;}
.y11b{bottom:824.133333pt;}
.y3{bottom:831.013333pt;}
.y40{bottom:833.253333pt;}
.y11a{bottom:842.533333pt;}
.y2{bottom:855.493333pt;}
.y24{bottom:858.053333pt;}
.y3f{bottom:860.773333pt;}
.y119{bottom:860.933333pt;}
.y1{bottom:915.680000pt;}
.h10{height:13.746667pt;}
.h14{height:13.760000pt;}
.h15{height:13.786667pt;}
.h11{height:13.906667pt;}
.h16{height:13.920000pt;}
.h13{height:13.938667pt;}
.h2{height:25.320625pt;}
.h18{height:27.666667pt;}
.hc{height:40.163750pt;}
.h12{height:47.085938pt;}
.h8{height:47.109375pt;}
.h17{height:48.375000pt;}
.h5{height:52.134375pt;}
.he{height:57.375000pt;}
.hd{height:57.787500pt;}
.hf{height:62.781250pt;}
.hb{height:62.812500pt;}
.h6{height:64.500000pt;}
.h4{height:73.454062pt;}
.ha{height:73.490625pt;}
.h9{height:75.465000pt;}
.h7{height:76.964840pt;}
.h3{height:85.785000pt;}
.h1{height:971.333333pt;}
.h0{height:971.360000pt;}
.w2{width:26.072000pt;}
.w3{width:29.426667pt;}
.w1{width:32.472000pt;}
.w7{width:57.906667pt;}
.w5{width:57.920000pt;}
.w8{width:57.938667pt;}
.w6{width:57.952000pt;}
.w9{width:58.066667pt;}
.w4{width:69.938667pt;}
.wa{width:73.912000pt;}
.w10{width:75.826667pt;}
.wf{width:80.338667pt;}
.wc{width:82.418667pt;}
.wd{width:84.000000pt;}
.we{width:94.752000pt;}
.wb{width:417.360000pt;}
.w0{width:688.000000pt;}
.x0{left:0.000000pt;}
.x12{left:4.632000pt;}
.x1e{left:7.192000pt;}
.x21{left:36.946667pt;}
.x11{left:91.080000pt;}
.x1{left:96.032000pt;}
.x2{left:98.112000pt;}
.x1d{left:108.040000pt;}
.xa{left:119.232000pt;}
.x13{left:123.560000pt;}
.x3{left:136.506667pt;}
.x14{left:149.640000pt;}
.x10{left:176.186667pt;}
.x15{left:179.080000pt;}
.x1f{left:181.960000pt;}
.xe{left:183.386667pt;}
.x20{left:184.693333pt;}
.x1c{left:194.906667pt;}
.xb{left:196.826667pt;}
.x7{left:200.026667pt;}
.x8{left:221.666667pt;}
.x6{left:233.506667pt;}
.x16{left:249.026667pt;}
.x4{left:253.666667pt;}
.x25{left:256.066667pt;}
.x9{left:263.906667pt;}
.x17{left:306.946667pt;}
.x5{left:344.066667pt;}
.x22{left:348.386667pt;}
.x18{left:364.906667pt;}
.x19{left:422.986667pt;}
.x23{left:443.146667pt;}
.x1a{left:480.906667pt;}
.xd{left:510.533333pt;}
.x24{left:523.493333pt;}
.x1b{left:538.853333pt;}
.xf{left:547.013333pt;}
.xc{left:623.013333pt;}
}




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