
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_afa96be2b2c891e8dd4c8d55.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952637;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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_9a5b39923ab1b48d84475a7b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959473;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_4eba95544384e65924d7257e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927734;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_868a9f5289eda73bed61727b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_143e0f4c352725a12506ebb0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959473;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f11ba4951a8eecca847ad0cc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.729412;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_be41b9cb1e81715254576af7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.899902;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_fe98a7654a1e9ef163f2842b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.853027;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:27.360000px;}
.ls6{letter-spacing:-0.864000px;}
.lsb{letter-spacing:-0.648000px;}
.lsc{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.205800px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.239040px;}
.ls4{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.624000px;}
.lse{letter-spacing:0.720000px;}
.ls1{letter-spacing:44.100000px;}
.ls7{letter-spacing:1431.096000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(118,113,113),0 0.015em rgb(118,113,113),0.015em 0 rgb(118,113,113),0 -0.015em  rgb(118,113,113);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(118,113,113);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-72.000000px;}
.ws1{word-spacing:-21.060000px;}
.ws3{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.352000px;}
.ws6{word-spacing:-17.136000px;}
.ws8{word-spacing:-16.527000px;}
.ws7{word-spacing:0.000000px;}
._21{margin-left:-4.320000px;}
._c{margin-left:-3.168000px;}
._b{margin-left:-2.088000px;}
._0{margin-left:-1.026000px;}
._3{width:1.020000px;}
._1{width:2.436000px;}
._2{width:3.672000px;}
._e{width:5.256000px;}
._9{width:6.984000px;}
._8{width:8.064000px;}
._10{width:9.162000px;}
._f{width:10.944000px;}
._1d{width:12.144000px;}
._12{width:13.176000px;}
._11{width:14.400000px;}
._1a{width:15.696000px;}
._1c{width:16.764000px;}
._7{width:19.152000px;}
._22{width:20.160000px;}
._a{width:21.168000px;}
._d{width:22.752000px;}
._1e{width:23.976000px;}
._1f{width:25.056000px;}
._26{width:26.412000px;}
._17{width:28.848000px;}
._16{width:29.880000px;}
._19{width:31.038000px;}
._18{width:32.160000px;}
._13{width:39.792000px;}
._20{width:41.256000px;}
._14{width:43.416000px;}
._15{width:45.240000px;}
._23{width:50.400000px;}
._24{width:51.468000px;}
._2a{width:54.360000px;}
._29{width:55.368000px;}
._2b{width:56.796000px;}
._6{width:71.472000px;}
._25{width:72.936000px;}
._28{width:74.436000px;}
._27{width:76.176000px;}
._5{width:470.916000px;}
._1b{width:1261.794240px;}
._4{width:1433.832000px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc1{color:rgb(118,113,113);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y37{bottom:1.800000px;}
.y39{bottom:8.100000px;}
.y35{bottom:51.840000px;}
.y8{bottom:57.600000px;}
.y38{bottom:67.680000px;}
.y36{bottom:74.700000px;}
.y7{bottom:76.860000px;}
.y6{bottom:91.980000px;}
.y5{bottom:107.280000px;}
.y4{bottom:122.400000px;}
.y34{bottom:122.580000px;}
.y3{bottom:137.520000px;}
.ye8{bottom:140.400000px;}
.y9c{bottom:141.840000px;}
.ycc{bottom:142.920000px;}
.yb3{bottom:144.000000px;}
.y112{bottom:147.780000px;}
.y67{bottom:154.110000px;}
.y75{bottom:155.370000px;}
.ye7{bottom:160.770000px;}
.y9b{bottom:162.030000px;}
.ycb{bottom:163.110000px;}
.yb2{bottom:164.370000px;}
.y31{bottom:165.270000px;}
.y111{bottom:168.150000px;}
.y66{bottom:174.450000px;}
.y74{bottom:175.530000px;}
.y9a{bottom:182.370000px;}
.y30{bottom:185.430000px;}
.ye6{bottom:187.050000px;}
.y110{bottom:188.310000px;}
.yca{bottom:192.270000px;}
.yb1{bottom:193.530000px;}
.y11d{bottom:194.250000px;}
.y65{bottom:194.610000px;}
.y73{bottom:195.870000px;}
.y99{bottom:202.530000px;}
.y2f{bottom:205.770000px;}
.ye5{bottom:207.390000px;}
.yc9{bottom:212.610000px;}
.yb0{bottom:213.870000px;}
.y10f{bottom:214.410000px;}
.y11c{bottom:214.590000px;}
.y98{bottom:222.870000px;}
.y64{bottom:224.670000px;}
.y72{bottom:225.030000px;}
.y2e{bottom:225.930000px;}
.ye4{bottom:227.550000px;}
.yc8{bottom:232.950000px;}
.yaf{bottom:234.030000px;}
.y11b{bottom:234.750000px;}
.y10e{bottom:240.690000px;}
.y97{bottom:243.030000px;}
.y71{bottom:245.370000px;}
.y13d{bottom:249.690000px;}
.yc7{bottom:253.110000px;}
.ye3{bottom:253.830000px;}
.yae{bottom:254.370000px;}
.y2d{bottom:255.990000px;}
.y63{bottom:256.530000px;}
.y10d{bottom:261.030000px;}
.y96{bottom:263.370000px;}
.y70{bottom:265.530000px;}
.yc6{bottom:273.450000px;}
.ye2{bottom:274.170000px;}
.yad{bottom:274.530000px;}
.y2c{bottom:278.850000px;}
.y10c{bottom:281.370000px;}
.y13c{bottom:283.530000px;}
.y62{bottom:285.690000px;}
.y6f{bottom:285.870000px;}
.y95{bottom:293.250000px;}
.yc5{bottom:293.610000px;}
.yac{bottom:294.870000px;}
.ye1{bottom:295.950000px;}
.y11a{bottom:301.530000px;}
.y61{bottom:306.030000px;}
.y10b{bottom:307.470000px;}
.y2b{bottom:308.010000px;}
.y13b{bottom:309.810000px;}
.yc4{bottom:313.950000px;}
.yab{bottom:315.030000px;}
.ye0{bottom:322.050000px;}
.y94{bottom:325.110000px;}
.y60{bottom:326.370000px;}
.y10a{bottom:327.810000px;}
.y2a{bottom:328.350000px;}
.yc3{bottom:334.110000px;}
.yaa{bottom:335.370000px;}
.y13a{bottom:335.910000px;}
.ydf{bottom:342.390000px;}
.y5f{bottom:346.530000px;}
.y119{bottom:348.150000px;}
.y29{bottom:348.690000px;}
.y109{bottom:353.910000px;}
.y93{bottom:354.270000px;}
.ya9{bottom:355.530000px;}
.y139{bottom:362.190000px;}
.yc2{bottom:363.270000px;}
.y5e{bottom:366.870000px;}
.yde{bottom:368.670000px;}
.y28{bottom:368.850000px;}
.y108{bottom:374.250000px;}
.y92{bottom:374.610000px;}
.y6e{bottom:375.690000px;}
.ya8{bottom:375.870000px;}
.y138{bottom:382.530000px;}
.yc1{bottom:383.610000px;}
.ydd{bottom:389.010000px;}
.y107{bottom:394.590000px;}
.y91{bottom:394.950000px;}
.y5d{bottom:396.030000px;}
.y27{bottom:398.010000px;}
.yc0{bottom:403.995000px;}
.y137{bottom:408.855000px;}
.ydc{bottom:409.215000px;}
.y118{bottom:414.795000px;}
.y90{bottom:415.155000px;}
.y5c{bottom:416.415000px;}
.y106{bottom:420.735000px;}
.ybf{bottom:424.155000px;}
.ya7{bottom:425.235000px;}
.y26{bottom:427.395000px;}
.y136{bottom:429.195000px;}
.ydb{bottom:429.555000px;}
.y8f{bottom:435.495000px;}
.y5b{bottom:436.575000px;}
.y105{bottom:441.075000px;}
.ybe{bottom:444.495000px;}
.ya6{bottom:445.575000px;}
.y25{bottom:447.735000px;}
.y135{bottom:449.355000px;}
.y8e{bottom:455.655000px;}
.y5a{bottom:456.915000px;}
.y117{bottom:461.415000px;}
.ybd{bottom:464.655000px;}
.ya5{bottom:465.915000px;}
.y104{bottom:467.355000px;}
.y24{bottom:467.895000px;}
.y134{bottom:475.455000px;}
.y8d{bottom:475.995000px;}
.y59{bottom:477.075000px;}
.ybc{bottom:484.995000px;}
.ya4{bottom:486.075000px;}
.y116{bottom:487.515000px;}
.y103{bottom:487.695000px;}
.y8c{bottom:496.155000px;}
.y23{bottom:497.055000px;}
.y58{bottom:497.415000px;}
.y133{bottom:501.735000px;}
.yda{bottom:502.095000px;}
.ybb{bottom:505.155000px;}
.ya3{bottom:506.415000px;}
.y102{bottom:507.855000px;}
.y8b{bottom:516.495000px;}
.y22{bottom:517.395000px;}
.y57{bottom:517.575000px;}
.y132{bottom:522.075000px;}
.yd9{bottom:522.435000px;}
.y6d{bottom:526.575000px;}
.y115{bottom:528.195000px;}
.y101{bottom:533.955000px;}
.yba{bottom:535.215000px;}
.y21{bottom:537.735000px;}
.yd8{bottom:542.775000px;}
.y8a{bottom:545.655000px;}
.y56{bottom:546.735000px;}
.y6c{bottom:546.915000px;}
.y131{bottom:548.355000px;}
.y100{bottom:554.295000px;}
.y20{bottom:557.895000px;}
.y89{bottom:565.995000px;}
.y55{bottom:567.075000px;}
.y130{bottom:568.695000px;}
.yd7{bottom:568.875000px;}
.yff{bottom:574.635000px;}
.y1f{bottom:578.235000px;}
.y88{bottom:586.155000px;}
.y54{bottom:587.415000px;}
.yd6{bottom:589.215000px;}
.y12f{bottom:594.795000px;}
.yb9{bottom:596.235000px;}
.y1e{bottom:598.395000px;}
.yfe{bottom:600.735000px;}
.y87{bottom:606.495000px;}
.y53{bottom:607.575000px;}
.yd5{bottom:609.555000px;}
.y12e{bottom:615.135000px;}
.ya2{bottom:616.575000px;}
.y1d{bottom:618.735000px;}
.yfd{bottom:621.075000px;}
.y86{bottom:626.655000px;}
.y52{bottom:627.915000px;}
.y12d{bottom:635.295000px;}
.yd4{bottom:635.655000px;}
.ya1{bottom:636.915000px;}
.y1c{bottom:638.895000px;}
.yfc{bottom:641.415000px;}
.y85{bottom:646.995000px;}
.y51{bottom:648.075000px;}
.yd3{bottom:656.025000px;}
.ya0{bottom:657.105000px;}
.y1b{bottom:659.265000px;}
.y12c{bottom:661.605000px;}
.y84{bottom:667.185000px;}
.yfb{bottom:667.545000px;}
.y50{bottom:668.445000px;}
.yd2{bottom:676.185000px;}
.y9f{bottom:677.445000px;}
.y1a{bottom:679.425000px;}
.y12b{bottom:681.945000px;}
.yfa{bottom:687.885000px;}
.y6b{bottom:688.605000px;}
.y83{bottom:696.345000px;}
.y4f{bottom:697.605000px;}
.y19{bottom:699.765000px;}
.yd1{bottom:706.245000px;}
.y12a{bottom:708.045000px;}
.y114{bottom:708.225000px;}
.yf9{bottom:713.985000px;}
.y82{bottom:716.685000px;}
.y6a{bottom:717.765000px;}
.y4e{bottom:717.945000px;}
.y18{bottom:719.925000px;}
.y129{bottom:728.385000px;}
.yf8{bottom:734.325000px;}
.y81{bottom:737.025000px;}
.y4d{bottom:738.105000px;}
.y17{bottom:740.265000px;}
.y128{bottom:754.485000px;}
.yf7{bottom:754.665000px;}
.y80{bottom:757.185000px;}
.y4c{bottom:758.445000px;}
.y16{bottom:760.425000px;}
.yd0{bottom:767.265000px;}
.y127{bottom:774.825000px;}
.y7f{bottom:777.525000px;}
.y4b{bottom:778.605000px;}
.y15{bottom:780.765000px;}
.yb8{bottom:787.605000px;}
.ycf{bottom:797.325000px;}
.y7e{bottom:797.685000px;}
.y4a{bottom:798.945000px;}
.y14{bottom:800.925000px;}
.yf6{bottom:801.105000px;}
.yb7{bottom:807.945000px;}
.y7d{bottom:818.025000px;}
.y49{bottom:819.105000px;}
.y13{bottom:821.265000px;}
.yf5{bottom:821.445000px;}
.y9e{bottom:828.105000px;}
.yce{bottom:829.185000px;}
.y7c{bottom:838.185000px;}
.y48{bottom:839.445000px;}
.y12{bottom:841.425000px;}
.y126{bottom:841.605000px;}
.yf4{bottom:847.545000px;}
.y9d{bottom:848.445000px;}
.ycd{bottom:858.345000px;}
.y7b{bottom:858.525000px;}
.y11{bottom:861.765000px;}
.yf3{bottom:867.885000px;}
.y47{bottom:868.605000px;}
.y113{bottom:888.225000px;}
.y7a{bottom:888.585000px;}
.y46{bottom:888.945000px;}
.y10{bottom:891.645000px;}
.yf2{bottom:893.985000px;}
.y125{bottom:908.430000px;}
.y45{bottom:909.150000px;}
.yf1{bottom:914.370000px;}
.yf{bottom:914.550000px;}
.y79{bottom:920.310000px;}
.y44{bottom:929.490000px;}
.y124{bottom:934.530000px;}
.yf0{bottom:934.710000px;}
.ye{bottom:943.710000px;}
.y43{bottom:949.650000px;}
.y123{bottom:954.870000px;}
.yef{bottom:960.810000px;}
.yd{bottom:964.230000px;}
.y42{bottom:969.990000px;}
.yb6{bottom:978.810000px;}
.yee{bottom:981.150000px;}
.y41{bottom:990.150000px;}
.yb5{bottom:999.150000px;}
.y122{bottom:1001.490000px;}
.yc{bottom:1006.530000px;}
.yed{bottom:1007.430000px;}
.y40{bottom:1010.490000px;}
.yb4{bottom:1019.490000px;}
.y121{bottom:1021.650000px;}
.yec{bottom:1027.770000px;}
.y69{bottom:1030.650000px;}
.yb{bottom:1033.530000px;}
.y3f{bottom:1039.650000px;}
.yeb{bottom:1047.930000px;}
.y78{bottom:1050.990000px;}
.y68{bottom:1059.810000px;}
.y3e{bottom:1059.990000px;}
.ya{bottom:1060.530000px;}
.y120{bottom:1068.270000px;}
.y77{bottom:1071.150000px;}
.yea{bottom:1074.030000px;}
.y3d{bottom:1080.150000px;}
.y9{bottom:1085.910000px;}
.ye9{bottom:1094.370000px;}
.y76{bottom:1100.310000px;}
.y3c{bottom:1100.490000px;}
.y2{bottom:1101.390000px;}
.y11f{bottom:1114.710000px;}
.y3b{bottom:1120.650000px;}
.y11e{bottom:1140.810000px;}
.y3a{bottom:1140.990000px;}
.y33{bottom:1178.820000px;}
.y1{bottom:1194.120000px;}
.y32{bottom:1196.280000px;}
.hc{height:22.500000px;}
.he{height:24.120000px;}
.h3{height:37.599609px;}
.ha{height:41.610234px;}
.hb{height:47.796328px;}
.hf{height:48.761719px;}
.h4{height:50.132812px;}
.h7{height:56.437031px;}
.h8{height:57.051211px;}
.h9{height:59.439023px;}
.h10{height:60.679688px;}
.h5{height:64.853086px;}
.h2{height:65.884219px;}
.h6{height:66.676641px;}
.hd{height:67.375547px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.536000px;}
.w4{width:677.340000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:10.800000px;}
.x15{left:12.420000px;}
.x3{left:106.415987px;}
.x5{left:126.035987px;}
.x16{left:148.895987px;}
.x4{left:155.729987px;}
.xb{left:180.209987px;}
.x6{left:215.669987px;}
.x10{left:342.614987px;}
.xf{left:343.874987px;}
.x13{left:358.454987px;}
.x12{left:363.494987px;}
.x8{left:365.294987px;}
.xe{left:367.454987px;}
.x7{left:371.054987px;}
.xa{left:390.134987px;}
.x11{left:396.074987px;}
.x14{left:397.694987px;}
.x9{left:409.394987px;}
.x1{left:446.504987px;}
.x2{left:786.749987px;}
.xc{left:789.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls6{letter-spacing:-0.768000pt;}
.lsb{letter-spacing:-0.576000pt;}
.lsc{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.182933pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.212480pt;}
.ls4{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.554667pt;}
.lse{letter-spacing:0.640000pt;}
.ls1{letter-spacing:39.200000pt;}
.ls7{letter-spacing:1272.085333pt;}
.ws0{word-spacing:-64.000000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws3{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.424000pt;}
.ws6{word-spacing:-15.232000pt;}
.ws8{word-spacing:-14.690667pt;}
.ws7{word-spacing:0.000000pt;}
._21{margin-left:-3.840000pt;}
._c{margin-left:-2.816000pt;}
._b{margin-left:-1.856000pt;}
._0{margin-left:-0.912000pt;}
._3{width:0.906667pt;}
._1{width:2.165333pt;}
._2{width:3.264000pt;}
._e{width:4.672000pt;}
._9{width:6.208000pt;}
._8{width:7.168000pt;}
._10{width:8.144000pt;}
._f{width:9.728000pt;}
._1d{width:10.794667pt;}
._12{width:11.712000pt;}
._11{width:12.800000pt;}
._1a{width:13.952000pt;}
._1c{width:14.901333pt;}
._7{width:17.024000pt;}
._22{width:17.920000pt;}
._a{width:18.816000pt;}
._d{width:20.224000pt;}
._1e{width:21.312000pt;}
._1f{width:22.272000pt;}
._26{width:23.477333pt;}
._17{width:25.642667pt;}
._16{width:26.560000pt;}
._19{width:27.589333pt;}
._18{width:28.586667pt;}
._13{width:35.370667pt;}
._20{width:36.672000pt;}
._14{width:38.592000pt;}
._15{width:40.213333pt;}
._23{width:44.800000pt;}
._24{width:45.749333pt;}
._2a{width:48.320000pt;}
._29{width:49.216000pt;}
._2b{width:50.485333pt;}
._6{width:63.530667pt;}
._25{width:64.832000pt;}
._28{width:66.165333pt;}
._27{width:67.712000pt;}
._5{width:418.592000pt;}
._1b{width:1121.594880pt;}
._4{width:1274.517333pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:1.600000pt;}
.y39{bottom:7.200000pt;}
.y35{bottom:46.080000pt;}
.y8{bottom:51.200000pt;}
.y38{bottom:60.160000pt;}
.y36{bottom:66.400000pt;}
.y7{bottom:68.320000pt;}
.y6{bottom:81.760000pt;}
.y5{bottom:95.360000pt;}
.y4{bottom:108.800000pt;}
.y34{bottom:108.960000pt;}
.y3{bottom:122.240000pt;}
.ye8{bottom:124.800000pt;}
.y9c{bottom:126.080000pt;}
.ycc{bottom:127.040000pt;}
.yb3{bottom:128.000000pt;}
.y112{bottom:131.360000pt;}
.y67{bottom:136.986667pt;}
.y75{bottom:138.106667pt;}
.ye7{bottom:142.906667pt;}
.y9b{bottom:144.026667pt;}
.ycb{bottom:144.986667pt;}
.yb2{bottom:146.106667pt;}
.y31{bottom:146.906667pt;}
.y111{bottom:149.466667pt;}
.y66{bottom:155.066667pt;}
.y74{bottom:156.026667pt;}
.y9a{bottom:162.106667pt;}
.y30{bottom:164.826667pt;}
.ye6{bottom:166.266667pt;}
.y110{bottom:167.386667pt;}
.yca{bottom:170.906667pt;}
.yb1{bottom:172.026667pt;}
.y11d{bottom:172.666667pt;}
.y65{bottom:172.986667pt;}
.y73{bottom:174.106667pt;}
.y99{bottom:180.026667pt;}
.y2f{bottom:182.906667pt;}
.ye5{bottom:184.346667pt;}
.yc9{bottom:188.986667pt;}
.yb0{bottom:190.106667pt;}
.y10f{bottom:190.586667pt;}
.y11c{bottom:190.746667pt;}
.y98{bottom:198.106667pt;}
.y64{bottom:199.706667pt;}
.y72{bottom:200.026667pt;}
.y2e{bottom:200.826667pt;}
.ye4{bottom:202.266667pt;}
.yc8{bottom:207.066667pt;}
.yaf{bottom:208.026667pt;}
.y11b{bottom:208.666667pt;}
.y10e{bottom:213.946667pt;}
.y97{bottom:216.026667pt;}
.y71{bottom:218.106667pt;}
.y13d{bottom:221.946667pt;}
.yc7{bottom:224.986667pt;}
.ye3{bottom:225.626667pt;}
.yae{bottom:226.106667pt;}
.y2d{bottom:227.546667pt;}
.y63{bottom:228.026667pt;}
.y10d{bottom:232.026667pt;}
.y96{bottom:234.106667pt;}
.y70{bottom:236.026667pt;}
.yc6{bottom:243.066667pt;}
.ye2{bottom:243.706667pt;}
.yad{bottom:244.026667pt;}
.y2c{bottom:247.866667pt;}
.y10c{bottom:250.106667pt;}
.y13c{bottom:252.026667pt;}
.y62{bottom:253.946667pt;}
.y6f{bottom:254.106667pt;}
.y95{bottom:260.666667pt;}
.yc5{bottom:260.986667pt;}
.yac{bottom:262.106667pt;}
.ye1{bottom:263.066667pt;}
.y11a{bottom:268.026667pt;}
.y61{bottom:272.026667pt;}
.y10b{bottom:273.306667pt;}
.y2b{bottom:273.786667pt;}
.y13b{bottom:275.386667pt;}
.yc4{bottom:279.066667pt;}
.yab{bottom:280.026667pt;}
.ye0{bottom:286.266667pt;}
.y94{bottom:288.986667pt;}
.y60{bottom:290.106667pt;}
.y10a{bottom:291.386667pt;}
.y2a{bottom:291.866667pt;}
.yc3{bottom:296.986667pt;}
.yaa{bottom:298.106667pt;}
.y13a{bottom:298.586667pt;}
.ydf{bottom:304.346667pt;}
.y5f{bottom:308.026667pt;}
.y119{bottom:309.466667pt;}
.y29{bottom:309.946667pt;}
.y109{bottom:314.586667pt;}
.y93{bottom:314.906667pt;}
.ya9{bottom:316.026667pt;}
.y139{bottom:321.946667pt;}
.yc2{bottom:322.906667pt;}
.y5e{bottom:326.106667pt;}
.yde{bottom:327.706667pt;}
.y28{bottom:327.866667pt;}
.y108{bottom:332.666667pt;}
.y92{bottom:332.986667pt;}
.y6e{bottom:333.946667pt;}
.ya8{bottom:334.106667pt;}
.y138{bottom:340.026667pt;}
.yc1{bottom:340.986667pt;}
.ydd{bottom:345.786667pt;}
.y107{bottom:350.746667pt;}
.y91{bottom:351.066667pt;}
.y5d{bottom:352.026667pt;}
.y27{bottom:353.786667pt;}
.yc0{bottom:359.106667pt;}
.y137{bottom:363.426667pt;}
.ydc{bottom:363.746667pt;}
.y118{bottom:368.706667pt;}
.y90{bottom:369.026667pt;}
.y5c{bottom:370.146667pt;}
.y106{bottom:373.986667pt;}
.ybf{bottom:377.026667pt;}
.ya7{bottom:377.986667pt;}
.y26{bottom:379.906667pt;}
.y136{bottom:381.506667pt;}
.ydb{bottom:381.826667pt;}
.y8f{bottom:387.106667pt;}
.y5b{bottom:388.066667pt;}
.y105{bottom:392.066667pt;}
.ybe{bottom:395.106667pt;}
.ya6{bottom:396.066667pt;}
.y25{bottom:397.986667pt;}
.y135{bottom:399.426667pt;}
.y8e{bottom:405.026667pt;}
.y5a{bottom:406.146667pt;}
.y117{bottom:410.146667pt;}
.ybd{bottom:413.026667pt;}
.ya5{bottom:414.146667pt;}
.y104{bottom:415.426667pt;}
.y24{bottom:415.906667pt;}
.y134{bottom:422.626667pt;}
.y8d{bottom:423.106667pt;}
.y59{bottom:424.066667pt;}
.ybc{bottom:431.106667pt;}
.ya4{bottom:432.066667pt;}
.y116{bottom:433.346667pt;}
.y103{bottom:433.506667pt;}
.y8c{bottom:441.026667pt;}
.y23{bottom:441.826667pt;}
.y58{bottom:442.146667pt;}
.y133{bottom:445.986667pt;}
.yda{bottom:446.306667pt;}
.ybb{bottom:449.026667pt;}
.ya3{bottom:450.146667pt;}
.y102{bottom:451.426667pt;}
.y8b{bottom:459.106667pt;}
.y22{bottom:459.906667pt;}
.y57{bottom:460.066667pt;}
.y132{bottom:464.066667pt;}
.yd9{bottom:464.386667pt;}
.y6d{bottom:468.066667pt;}
.y115{bottom:469.506667pt;}
.y101{bottom:474.626667pt;}
.yba{bottom:475.746667pt;}
.y21{bottom:477.986667pt;}
.yd8{bottom:482.466667pt;}
.y8a{bottom:485.026667pt;}
.y56{bottom:485.986667pt;}
.y6c{bottom:486.146667pt;}
.y131{bottom:487.426667pt;}
.y100{bottom:492.706667pt;}
.y20{bottom:495.906667pt;}
.y89{bottom:503.106667pt;}
.y55{bottom:504.066667pt;}
.y130{bottom:505.506667pt;}
.yd7{bottom:505.666667pt;}
.yff{bottom:510.786667pt;}
.y1f{bottom:513.986667pt;}
.y88{bottom:521.026667pt;}
.y54{bottom:522.146667pt;}
.yd6{bottom:523.746667pt;}
.y12f{bottom:528.706667pt;}
.yb9{bottom:529.986667pt;}
.y1e{bottom:531.906667pt;}
.yfe{bottom:533.986667pt;}
.y87{bottom:539.106667pt;}
.y53{bottom:540.066667pt;}
.yd5{bottom:541.826667pt;}
.y12e{bottom:546.786667pt;}
.ya2{bottom:548.066667pt;}
.y1d{bottom:549.986667pt;}
.yfd{bottom:552.066667pt;}
.y86{bottom:557.026667pt;}
.y52{bottom:558.146667pt;}
.y12d{bottom:564.706667pt;}
.yd4{bottom:565.026667pt;}
.ya1{bottom:566.146667pt;}
.y1c{bottom:567.906667pt;}
.yfc{bottom:570.146667pt;}
.y85{bottom:575.106667pt;}
.y51{bottom:576.066667pt;}
.yd3{bottom:583.133333pt;}
.ya0{bottom:584.093333pt;}
.y1b{bottom:586.013333pt;}
.y12c{bottom:588.093333pt;}
.y84{bottom:593.053333pt;}
.yfb{bottom:593.373333pt;}
.y50{bottom:594.173333pt;}
.yd2{bottom:601.053333pt;}
.y9f{bottom:602.173333pt;}
.y1a{bottom:603.933333pt;}
.y12b{bottom:606.173333pt;}
.yfa{bottom:611.453333pt;}
.y6b{bottom:612.093333pt;}
.y83{bottom:618.973333pt;}
.y4f{bottom:620.093333pt;}
.y19{bottom:622.013333pt;}
.yd1{bottom:627.773333pt;}
.y12a{bottom:629.373333pt;}
.y114{bottom:629.533333pt;}
.yf9{bottom:634.653333pt;}
.y82{bottom:637.053333pt;}
.y6a{bottom:638.013333pt;}
.y4e{bottom:638.173333pt;}
.y18{bottom:639.933333pt;}
.y129{bottom:647.453333pt;}
.yf8{bottom:652.733333pt;}
.y81{bottom:655.133333pt;}
.y4d{bottom:656.093333pt;}
.y17{bottom:658.013333pt;}
.y128{bottom:670.653333pt;}
.yf7{bottom:670.813333pt;}
.y80{bottom:673.053333pt;}
.y4c{bottom:674.173333pt;}
.y16{bottom:675.933333pt;}
.yd0{bottom:682.013333pt;}
.y127{bottom:688.733333pt;}
.y7f{bottom:691.133333pt;}
.y4b{bottom:692.093333pt;}
.y15{bottom:694.013333pt;}
.yb8{bottom:700.093333pt;}
.ycf{bottom:708.733333pt;}
.y7e{bottom:709.053333pt;}
.y4a{bottom:710.173333pt;}
.y14{bottom:711.933333pt;}
.yf6{bottom:712.093333pt;}
.yb7{bottom:718.173333pt;}
.y7d{bottom:727.133333pt;}
.y49{bottom:728.093333pt;}
.y13{bottom:730.013333pt;}
.yf5{bottom:730.173333pt;}
.y9e{bottom:736.093333pt;}
.yce{bottom:737.053333pt;}
.y7c{bottom:745.053333pt;}
.y48{bottom:746.173333pt;}
.y12{bottom:747.933333pt;}
.y126{bottom:748.093333pt;}
.yf4{bottom:753.373333pt;}
.y9d{bottom:754.173333pt;}
.ycd{bottom:762.973333pt;}
.y7b{bottom:763.133333pt;}
.y11{bottom:766.013333pt;}
.yf3{bottom:771.453333pt;}
.y47{bottom:772.093333pt;}
.y113{bottom:789.533333pt;}
.y7a{bottom:789.853333pt;}
.y46{bottom:790.173333pt;}
.y10{bottom:792.573333pt;}
.yf2{bottom:794.653333pt;}
.y125{bottom:807.493333pt;}
.y45{bottom:808.133333pt;}
.yf1{bottom:812.773333pt;}
.yf{bottom:812.933333pt;}
.y79{bottom:818.053333pt;}
.y44{bottom:826.213333pt;}
.y124{bottom:830.693333pt;}
.yf0{bottom:830.853333pt;}
.ye{bottom:838.853333pt;}
.y43{bottom:844.133333pt;}
.y123{bottom:848.773333pt;}
.yef{bottom:854.053333pt;}
.yd{bottom:857.093333pt;}
.y42{bottom:862.213333pt;}
.yb6{bottom:870.053333pt;}
.yee{bottom:872.133333pt;}
.y41{bottom:880.133333pt;}
.yb5{bottom:888.133333pt;}
.y122{bottom:890.213333pt;}
.yc{bottom:894.693333pt;}
.yed{bottom:895.493333pt;}
.y40{bottom:898.213333pt;}
.yb4{bottom:906.213333pt;}
.y121{bottom:908.133333pt;}
.yec{bottom:913.573333pt;}
.y69{bottom:916.133333pt;}
.yb{bottom:918.693333pt;}
.y3f{bottom:924.133333pt;}
.yeb{bottom:931.493333pt;}
.y78{bottom:934.213333pt;}
.y68{bottom:942.053333pt;}
.y3e{bottom:942.213333pt;}
.ya{bottom:942.693333pt;}
.y120{bottom:949.573333pt;}
.y77{bottom:952.133333pt;}
.yea{bottom:954.693333pt;}
.y3d{bottom:960.133333pt;}
.y9{bottom:965.253333pt;}
.ye9{bottom:972.773333pt;}
.y76{bottom:978.053333pt;}
.y3c{bottom:978.213333pt;}
.y2{bottom:979.013333pt;}
.y11f{bottom:990.853333pt;}
.y3b{bottom:996.133333pt;}
.y11e{bottom:1014.053333pt;}
.y3a{bottom:1014.213333pt;}
.y33{bottom:1047.840000pt;}
.y1{bottom:1061.440000pt;}
.y32{bottom:1063.360000pt;}
.hc{height:20.000000pt;}
.he{height:21.440000pt;}
.h3{height:33.421875pt;}
.ha{height:36.986875pt;}
.hb{height:42.485625pt;}
.hf{height:43.343750pt;}
.h4{height:44.562500pt;}
.h7{height:50.166250pt;}
.h8{height:50.712187pt;}
.h9{height:52.834688pt;}
.h10{height:53.937500pt;}
.h5{height:57.647187pt;}
.h2{height:58.563750pt;}
.h6{height:59.268125pt;}
.hd{height:59.889375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.032000pt;}
.w4{width:602.080000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:9.600000pt;}
.x15{left:11.040000pt;}
.x3{left:94.591988pt;}
.x5{left:112.031988pt;}
.x16{left:132.351988pt;}
.x4{left:138.426655pt;}
.xb{left:160.186655pt;}
.x6{left:191.706655pt;}
.x10{left:304.546655pt;}
.xf{left:305.666655pt;}
.x13{left:318.626655pt;}
.x12{left:323.106655pt;}
.x8{left:324.706655pt;}
.xe{left:326.626655pt;}
.x7{left:329.826655pt;}
.xa{left:346.786655pt;}
.x11{left:352.066655pt;}
.x14{left:353.506655pt;}
.x9{left:363.906655pt;}
.x1{left:396.893322pt;}
.x2{left:699.333322pt;}
.xc{left:701.413333pt;}
}




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