
    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_5b57eec5baa57ce7d954e33e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.114746;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_c707c0fba4f0aea93c72c230.woff')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_beedfc3ea263ffac09f7588e.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_79fa0cbe911ef67e89df20b1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f8a32d71094649b027874013.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1d71b15971c523aebc3ed08d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4fd6b6fc708a5c998089bf2f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.005859;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_242be61a4629cb2dc70f519d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.059082;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_c7ff908e914fd9ed2582b884.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b988b024c9cdb2272b8b832a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.232644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232644,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-91.440000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.567600px;}
.ls9{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.172800px;}
.lsc{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.109200px;}
.ls8{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.023040px;}
.ls10{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.256200px;}
.ls3{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.364673px;}
.ls12{letter-spacing:7.344000px;}
.ls4{letter-spacing:8.820000px;}
.ls6{letter-spacing:22.986720px;}
.lse{letter-spacing:26.586720px;}
.ls13{letter-spacing:36.000000px;}
.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;}
}
.wsb{word-spacing:-18.288000px;}
.ws9{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws4{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.450800px;}
.ws5{word-spacing:-15.992400px;}
.ws2{word-spacing:-15.300000px;}
.ws0{word-spacing:-15.226440px;}
.ws1{word-spacing:-15.093600px;}
.ws3{word-spacing:-14.580000px;}
.wsa{word-spacing:-11.636034px;}
.ws7{word-spacing:0.000000px;}
._13{margin-left:-5.256000px;}
._f{margin-left:-4.173120px;}
._9{margin-left:-2.882880px;}
._1{margin-left:-1.432080px;}
._0{width:1.195200px;}
._2{width:2.977920px;}
._4{width:4.084560px;}
._3{width:5.141520px;}
._6{width:6.497520px;}
._5{width:7.816320px;}
._d{width:8.850960px;}
._e{width:10.424880px;}
._7{width:11.856960px;}
._8{width:13.106160px;}
._10{width:14.247360px;}
._25{width:15.344640px;}
._1c{width:16.408080px;}
._27{width:19.080000px;}
._b{width:20.550240px;}
._a{width:21.594240px;}
._24{width:23.256000px;}
._37{width:24.696000px;}
._33{width:25.920000px;}
._17{width:26.928000px;}
._c{width:28.483200px;}
._18{width:30.024000px;}
._22{width:31.096080px;}
._20{width:32.256000px;}
._41{width:33.552000px;}
._1a{width:34.776000px;}
._1b{width:35.928000px;}
._26{width:37.728000px;}
._15{width:39.168000px;}
._16{width:40.320000px;}
._36{width:41.472000px;}
._38{width:43.004880px;}
._1f{width:44.372880px;}
._30{width:45.683280px;}
._28{width:46.743840px;}
._1e{width:47.800080px;}
._3b{width:49.104000px;}
._46{width:50.320080px;}
._3a{width:51.408000px;}
._3d{width:54.280080px;}
._19{width:55.800000px;}
._2c{width:57.456000px;}
._2b{width:58.536000px;}
._4e{width:59.544000px;}
._2d{width:61.560000px;}
._34{width:63.216000px;}
._2e{width:65.016000px;}
._2f{width:66.168000px;}
._4a{width:67.176000px;}
._47{width:68.904000px;}
._32{width:70.488000px;}
._51{width:71.562960px;}
._31{width:72.688080px;}
._21{width:74.352000px;}
._2a{width:75.528000px;}
._23{width:77.328000px;}
._43{width:81.864000px;}
._3e{width:83.448000px;}
._3f{width:85.248000px;}
._53{width:87.304320px;}
._14{width:91.368000px;}
._39{width:93.960000px;}
._3c{width:95.320080px;}
._29{width:98.352000px;}
._1d{width:99.792000px;}
._11{width:104.112000px;}
._12{width:105.552000px;}
._4c{width:106.632000px;}
._4d{width:107.640000px;}
._4f{width:116.568000px;}
._50{width:117.792000px;}
._42{width:127.728000px;}
._40{width:130.248000px;}
._35{width:133.004880px;}
._4b{width:137.592000px;}
._44{width:164.808000px;}
._45{width:165.816000px;}
._54{width:349.217280px;}
._48{width:376.920000px;}
._49{width:377.928000px;}
._52{width:834.557760px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs6{font-size:45.085442px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ycc{bottom:2.244399px;}
.ya8{bottom:8.249055px;}
.yaa{bottom:8.254031px;}
.yb2{bottom:8.254032px;}
.yb0{bottom:8.254058px;}
.yc3{bottom:9.002130px;}
.yc7{bottom:9.002131px;}
.yc5{bottom:9.002157px;}
.ya3{bottom:9.004126px;}
.ya6{bottom:9.004143px;}
.ya2{bottom:27.776427px;}
.ya5{bottom:27.776439px;}
.y2{bottom:57.420000px;}
.y1{bottom:77.616000px;}
.y64{bottom:112.716000px;}
.ya0{bottom:113.256000px;}
.yd9{bottom:116.136000px;}
.y10e{bottom:117.576000px;}
.y79{bottom:119.556000px;}
.y34{bottom:124.956000px;}
.y30{bottom:128.376000px;}
.ye3{bottom:133.056000px;}
.y63{bottom:133.416000px;}
.y9f{bottom:133.956000px;}
.y10d{bottom:136.476000px;}
.yd8{bottom:136.836000px;}
.y78{bottom:140.256000px;}
.y33{bottom:145.656000px;}
.y2f{bottom:149.076000px;}
.ye2{bottom:151.950000px;}
.y62{bottom:154.110000px;}
.y9e{bottom:154.650000px;}
.y10c{bottom:155.550000px;}
.yd7{bottom:157.530000px;}
.y77{bottom:160.950000px;}
.y32{bottom:166.350000px;}
.y2e{bottom:169.770000px;}
.ye1{bottom:171.030000px;}
.y10b{bottom:174.450000px;}
.y61{bottom:174.810000px;}
.y9d{bottom:175.350000px;}
.yd6{bottom:178.230000px;}
.y76{bottom:181.650000px;}
.y31{bottom:187.050000px;}
.y2d{bottom:189.750000px;}
.ye0{bottom:189.930000px;}
.y10a{bottom:193.350000px;}
.y60{bottom:195.510000px;}
.y9c{bottom:196.050000px;}
.yd5{bottom:198.930000px;}
.y75{bottom:202.350000px;}
.ydf{bottom:209.010000px;}
.y109{bottom:212.430000px;}
.y5f{bottom:216.210000px;}
.y9b{bottom:216.750000px;}
.y2c{bottom:219.270000px;}
.yd4{bottom:219.630000px;}
.y74{bottom:223.050000px;}
.yde{bottom:227.910000px;}
.y108{bottom:231.330000px;}
.y5e{bottom:236.910000px;}
.y9a{bottom:237.450000px;}
.yd3{bottom:240.330000px;}
.y73{bottom:243.750000px;}
.ydd{bottom:246.810000px;}
.y2b{bottom:250.230000px;}
.y107{bottom:250.410000px;}
.y5d{bottom:257.610000px;}
.y99{bottom:258.150000px;}
.yd2{bottom:261.030000px;}
.y72{bottom:264.450000px;}
.ydc{bottom:265.890000px;}
.y2a{bottom:269.310000px;}
.y5c{bottom:278.310000px;}
.y98{bottom:278.850000px;}
.yd1{bottom:281.730000px;}
.ydb{bottom:284.430000px;}
.y71{bottom:285.150000px;}
.y106{bottom:288.210000px;}
.y29{bottom:288.390000px;}
.y5b{bottom:299.010000px;}
.y97{bottom:299.550000px;}
.yda{bottom:301.710000px;}
.yd0{bottom:302.430000px;}
.y70{bottom:305.850000px;}
.y28{bottom:307.290000px;}
.y5a{bottom:319.755000px;}
.y96{bottom:320.295000px;}
.ycf{bottom:323.175000px;}
.y105{bottom:326.235000px;}
.y27{bottom:326.415000px;}
.y6f{bottom:326.595000px;}
.y59{bottom:340.455000px;}
.y95{bottom:340.995000px;}
.yce{bottom:343.875000px;}
.y26{bottom:345.315000px;}
.y6e{bottom:347.295000px;}
.y58{bottom:361.155000px;}
.y94{bottom:361.695000px;}
.ycd{bottom:363.855000px;}
.y25{bottom:364.215000px;}
.y6d{bottom:367.995000px;}
.y57{bottom:381.675000px;}
.y93{bottom:382.395000px;}
.y104{bottom:383.115000px;}
.y24{bottom:383.295000px;}
.y6c{bottom:388.695000px;}
.y23{bottom:402.195000px;}
.y56{bottom:402.375000px;}
.y92{bottom:403.095000px;}
.y6b{bottom:409.395000px;}
.y103{bottom:421.095000px;}
.y22{bottom:421.275000px;}
.y55{bottom:423.075000px;}
.y91{bottom:423.795000px;}
.y6a{bottom:430.095000px;}
.y21{bottom:440.175000px;}
.y54{bottom:443.775000px;}
.y90{bottom:444.495000px;}
.y69{bottom:450.795000px;}
.y102{bottom:459.075000px;}
.y20{bottom:459.255000px;}
.y53{bottom:464.475000px;}
.y8f{bottom:465.195000px;}
.y68{bottom:471.495000px;}
.y1f{bottom:478.155000px;}
.y52{bottom:485.175000px;}
.y8e{bottom:485.895000px;}
.y67{bottom:492.195000px;}
.y1e{bottom:497.055000px;}
.y51{bottom:505.875000px;}
.y8d{bottom:506.595000px;}
.y66{bottom:512.175000px;}
.y101{bottom:515.955000px;}
.y1d{bottom:516.135000px;}
.y50{bottom:526.575000px;}
.y8c{bottom:527.295000px;}
.y65{bottom:529.455000px;}
.y100{bottom:535.035000px;}
.y1c{bottom:547.275000px;}
.y8b{bottom:547.995000px;}
.yff{bottom:553.935000px;}
.y1b{bottom:567.795000px;}
.y4f{bottom:567.975000px;}
.y8a{bottom:568.725000px;}
.yfe{bottom:573.045000px;}
.y1a{bottom:586.725000px;}
.y4e{bottom:588.705000px;}
.y89{bottom:589.425000px;}
.yfd{bottom:591.945000px;}
.y19{bottom:605.805000px;}
.y4d{bottom:609.405000px;}
.y88{bottom:610.125000px;}
.yfc{bottom:610.845000px;}
.y18{bottom:624.705000px;}
.yfb{bottom:629.925000px;}
.y4c{bottom:630.105000px;}
.y87{bottom:630.825000px;}
.y17{bottom:643.605000px;}
.yfa{bottom:648.825000px;}
.y4b{bottom:650.805000px;}
.y86{bottom:651.525000px;}
.y16{bottom:662.685000px;}
.yf9{bottom:667.905000px;}
.y4a{bottom:671.505000px;}
.y85{bottom:672.225000px;}
.y15{bottom:681.585000px;}
.yf8{bottom:686.805000px;}
.y49{bottom:692.205000px;}
.y84{bottom:692.925000px;}
.y14{bottom:700.665000px;}
.yf7{bottom:705.705000px;}
.y48{bottom:712.905000px;}
.y83{bottom:713.625000px;}
.y13{bottom:719.565000px;}
.yf6{bottom:724.785000px;}
.y47{bottom:733.605000px;}
.y82{bottom:734.325000px;}
.y12{bottom:738.465000px;}
.yf5{bottom:743.685000px;}
.y46{bottom:754.305000px;}
.y81{bottom:755.025000px;}
.y11{bottom:757.545000px;}
.yf4{bottom:762.765000px;}
.y45{bottom:775.005000px;}
.y80{bottom:775.725000px;}
.y10{bottom:776.445000px;}
.yf3{bottom:781.665000px;}
.yf{bottom:795.525000px;}
.y44{bottom:795.705000px;}
.y7f{bottom:796.425000px;}
.yf2{bottom:800.565000px;}
.ye{bottom:814.425000px;}
.y43{bottom:816.405000px;}
.y7e{bottom:817.125000px;}
.yf1{bottom:819.690000px;}
.yd{bottom:833.550000px;}
.y42{bottom:837.150000px;}
.y7d{bottom:837.870000px;}
.yf0{bottom:838.590000px;}
.yc{bottom:852.450000px;}
.yef{bottom:857.670000px;}
.y41{bottom:857.850000px;}
.y7c{bottom:858.570000px;}
.yb{bottom:871.350000px;}
.yee{bottom:876.570000px;}
.y40{bottom:878.550000px;}
.ya{bottom:890.430000px;}
.yed{bottom:895.470000px;}
.y7b{bottom:895.830000px;}
.y3f{bottom:899.250000px;}
.y9{bottom:909.330000px;}
.y7a{bottom:909.870000px;}
.ycb{bottom:910.326524px;}
.yec{bottom:914.550000px;}
.y3e{bottom:919.950000px;}
.yca{bottom:923.094221px;}
.yc9{bottom:923.094226px;}
.yc8{bottom:923.094232px;}
.yc6{bottom:923.094237px;}
.yc4{bottom:923.094242px;}
.yc2{bottom:923.094273px;}
.y8{bottom:928.410000px;}
.yeb{bottom:933.450000px;}
.y3d{bottom:940.650000px;}
.yc1{bottom:942.619609px;}
.yc0{bottom:942.619614px;}
.ybf{bottom:942.619619px;}
.ybe{bottom:942.619624px;}
.ybd{bottom:942.619629px;}
.ybc{bottom:942.619661px;}
.y7{bottom:947.310000px;}
.yea{bottom:952.530000px;}
.y3c{bottom:961.350000px;}
.ybb{bottom:962.144996px;}
.yba{bottom:962.145002px;}
.yb9{bottom:962.145007px;}
.yb8{bottom:962.145012px;}
.yb7{bottom:962.145017px;}
.yb6{bottom:962.145048px;}
.y6{bottom:967.110000px;}
.ye9{bottom:971.430000px;}
.yb5{bottom:981.670384px;}
.yb4{bottom:981.670389px;}
.yb3{bottom:981.670394px;}
.yb1{bottom:981.670400px;}
.yaf{bottom:981.670405px;}
.yae{bottom:981.670436px;}
.y3b{bottom:982.050000px;}
.ye8{bottom:990.510000px;}
.yad{bottom:1001.195772px;}
.yac{bottom:1001.195777px;}
.yab{bottom:1001.195782px;}
.ya9{bottom:1001.195787px;}
.ya4{bottom:1001.195792px;}
.ya1{bottom:1001.195824px;}
.y3a{bottom:1002.750000px;}
.ye7{bottom:1009.410000px;}
.y5{bottom:1014.090000px;}
.ya7{bottom:1020.723154px;}
.y39{bottom:1023.450000px;}
.ye6{bottom:1028.310000px;}
.y4{bottom:1031.370000px;}
.y38{bottom:1044.150000px;}
.ye5{bottom:1047.390000px;}
.y37{bottom:1064.850000px;}
.ye4{bottom:1066.290000px;}
.y3{bottom:1067.550000px;}
.y36{bottom:1098.360000px;}
.y35{bottom:1117.620000px;}
.h10{height:18.777294px;}
.hf{height:18.777309px;}
.h11{height:18.777320px;}
.h12{height:19.525392px;}
.h13{height:19.525419px;}
.hc{height:38.302681px;}
.he{height:38.302708px;}
.hd{height:44.248895px;}
.h16{height:46.251562px;}
.hb{height:50.273438px;}
.ha{height:55.825312px;}
.h3{height:58.651172px;}
.h2{height:60.226875px;}
.h9{height:62.211094px;}
.h5{height:64.978594px;}
.h7{height:65.010937px;}
.h1{height:65.884219px;}
.h6{height:66.757500px;}
.h8{height:70.664062px;}
.h15{height:74.004654px;}
.h4{height:84.898125px;}
.h14{height:129.893476px;}
.h0{height:1188.000000px;}
.w7{width:24.388870px;}
.w2{width:24.388872px;}
.w6{width:25.781194px;}
.w5{width:25.804399px;}
.w4{width:105.259668px;}
.w8{width:160.302861px;}
.w3{width:160.302863px;}
.w9{width:348.795024px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:1.392324px;}
.x16{left:8.372507px;}
.x15{left:28.579764px;}
.x13{left:47.380775px;}
.x12{left:78.067586px;}
.x1a{left:120.824990px;}
.x2{left:127.655986px;}
.xc{left:131.435986px;}
.x3{left:138.455986px;}
.x1b{left:147.995986px;}
.xf{left:150.806359px;}
.xa{left:168.149986px;}
.x1e{left:170.129986px;}
.x11{left:175.195227px;}
.x8{left:327.854986px;}
.x14{left:335.502729px;}
.x17{left:362.003290px;}
.x7{left:371.594986px;}
.x18{left:388.476003px;}
.x4{left:397.874986px;}
.x19{left:414.957998px;}
.x6{left:423.434986px;}
.x9{left:440.714986px;}
.x1{left:461.234986px;}
.x5{left:469.694986px;}
.xb{left:482.144986px;}
.x1c{left:502.484986px;}
.xd{left:522.644986px;}
.x1d{left:524.624986px;}
.xe{left:536.684986px;}
@media print{
.v1{vertical-align:-81.280000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.504533pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.153600pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.097067pt;}
.ls8{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.020480pt;}
.ls10{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.227733pt;}
.ls3{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.324154pt;}
.ls12{letter-spacing:6.528000pt;}
.ls4{letter-spacing:7.840000pt;}
.ls6{letter-spacing:20.432640pt;}
.lse{letter-spacing:23.632640pt;}
.ls13{letter-spacing:32.000000pt;}
.wsb{word-spacing:-16.256000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws4{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.622933pt;}
.ws5{word-spacing:-14.215467pt;}
.ws2{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws1{word-spacing:-13.416533pt;}
.ws3{word-spacing:-12.960000pt;}
.wsa{word-spacing:-10.343141pt;}
.ws7{word-spacing:0.000000pt;}
._13{margin-left:-4.672000pt;}
._f{margin-left:-3.709440pt;}
._9{margin-left:-2.562560pt;}
._1{margin-left:-1.272960pt;}
._0{width:1.062400pt;}
._2{width:2.647040pt;}
._4{width:3.630720pt;}
._3{width:4.570240pt;}
._6{width:5.775573pt;}
._5{width:6.947840pt;}
._d{width:7.867520pt;}
._e{width:9.266560pt;}
._7{width:10.539520pt;}
._8{width:11.649920pt;}
._10{width:12.664320pt;}
._25{width:13.639680pt;}
._1c{width:14.584960pt;}
._27{width:16.960000pt;}
._b{width:18.266880pt;}
._a{width:19.194880pt;}
._24{width:20.672000pt;}
._37{width:21.952000pt;}
._33{width:23.040000pt;}
._17{width:23.936000pt;}
._c{width:25.318400pt;}
._18{width:26.688000pt;}
._22{width:27.640960pt;}
._20{width:28.672000pt;}
._41{width:29.824000pt;}
._1a{width:30.912000pt;}
._1b{width:31.936000pt;}
._26{width:33.536000pt;}
._15{width:34.816000pt;}
._16{width:35.840000pt;}
._36{width:36.864000pt;}
._38{width:38.226560pt;}
._1f{width:39.442560pt;}
._30{width:40.607360pt;}
._28{width:41.550080pt;}
._1e{width:42.488960pt;}
._3b{width:43.648000pt;}
._46{width:44.728960pt;}
._3a{width:45.696000pt;}
._3d{width:48.248960pt;}
._19{width:49.600000pt;}
._2c{width:51.072000pt;}
._2b{width:52.032000pt;}
._4e{width:52.928000pt;}
._2d{width:54.720000pt;}
._34{width:56.192000pt;}
._2e{width:57.792000pt;}
._2f{width:58.816000pt;}
._4a{width:59.712000pt;}
._47{width:61.248000pt;}
._32{width:62.656000pt;}
._51{width:63.611520pt;}
._31{width:64.611627pt;}
._21{width:66.090667pt;}
._2a{width:67.136000pt;}
._23{width:68.736000pt;}
._43{width:72.768000pt;}
._3e{width:74.176000pt;}
._3f{width:75.776000pt;}
._53{width:77.603840pt;}
._14{width:81.216000pt;}
._39{width:83.520000pt;}
._3c{width:84.728960pt;}
._29{width:87.424000pt;}
._1d{width:88.704000pt;}
._11{width:92.544000pt;}
._12{width:93.824000pt;}
._4c{width:94.784000pt;}
._4d{width:95.680000pt;}
._4f{width:103.616000pt;}
._50{width:104.704000pt;}
._42{width:113.536000pt;}
._40{width:115.776000pt;}
._35{width:118.226560pt;}
._4b{width:122.304000pt;}
._44{width:146.496000pt;}
._45{width:147.392000pt;}
._54{width:310.415360pt;}
._48{width:335.040000pt;}
._49{width:335.936000pt;}
._52{width:741.829120pt;}
.fs3{font-size:37.120000pt;}
.fs6{font-size:40.075948pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ycc{bottom:1.995021pt;}
.ya8{bottom:7.332493pt;}
.yaa{bottom:7.336916pt;}
.yb2{bottom:7.336917pt;}
.yb0{bottom:7.336941pt;}
.yc3{bottom:8.001893pt;}
.yc7{bottom:8.001894pt;}
.yc5{bottom:8.001918pt;}
.ya3{bottom:8.003667pt;}
.ya6{bottom:8.003683pt;}
.ya2{bottom:24.690157pt;}
.ya5{bottom:24.690168pt;}
.y2{bottom:51.040000pt;}
.y1{bottom:68.992000pt;}
.y64{bottom:100.192000pt;}
.ya0{bottom:100.672000pt;}
.yd9{bottom:103.232000pt;}
.y10e{bottom:104.512000pt;}
.y79{bottom:106.272000pt;}
.y34{bottom:111.072000pt;}
.y30{bottom:114.112000pt;}
.ye3{bottom:118.272000pt;}
.y63{bottom:118.592000pt;}
.y9f{bottom:119.072000pt;}
.y10d{bottom:121.312000pt;}
.yd8{bottom:121.632000pt;}
.y78{bottom:124.672000pt;}
.y33{bottom:129.472000pt;}
.y2f{bottom:132.512000pt;}
.ye2{bottom:135.066667pt;}
.y62{bottom:136.986667pt;}
.y9e{bottom:137.466667pt;}
.y10c{bottom:138.266667pt;}
.yd7{bottom:140.026667pt;}
.y77{bottom:143.066667pt;}
.y32{bottom:147.866667pt;}
.y2e{bottom:150.906667pt;}
.ye1{bottom:152.026667pt;}
.y10b{bottom:155.066667pt;}
.y61{bottom:155.386667pt;}
.y9d{bottom:155.866667pt;}
.yd6{bottom:158.426667pt;}
.y76{bottom:161.466667pt;}
.y31{bottom:166.266667pt;}
.y2d{bottom:168.666667pt;}
.ye0{bottom:168.826667pt;}
.y10a{bottom:171.866667pt;}
.y60{bottom:173.786667pt;}
.y9c{bottom:174.266667pt;}
.yd5{bottom:176.826667pt;}
.y75{bottom:179.866667pt;}
.ydf{bottom:185.786667pt;}
.y109{bottom:188.826667pt;}
.y5f{bottom:192.186667pt;}
.y9b{bottom:192.666667pt;}
.y2c{bottom:194.906667pt;}
.yd4{bottom:195.226667pt;}
.y74{bottom:198.266667pt;}
.yde{bottom:202.586667pt;}
.y108{bottom:205.626667pt;}
.y5e{bottom:210.586667pt;}
.y9a{bottom:211.066667pt;}
.yd3{bottom:213.626667pt;}
.y73{bottom:216.666667pt;}
.ydd{bottom:219.386667pt;}
.y2b{bottom:222.426667pt;}
.y107{bottom:222.586667pt;}
.y5d{bottom:228.986667pt;}
.y99{bottom:229.466667pt;}
.yd2{bottom:232.026667pt;}
.y72{bottom:235.066667pt;}
.ydc{bottom:236.346667pt;}
.y2a{bottom:239.386667pt;}
.y5c{bottom:247.386667pt;}
.y98{bottom:247.866667pt;}
.yd1{bottom:250.426667pt;}
.ydb{bottom:252.826667pt;}
.y71{bottom:253.466667pt;}
.y106{bottom:256.186667pt;}
.y29{bottom:256.346667pt;}
.y5b{bottom:265.786667pt;}
.y97{bottom:266.266667pt;}
.yda{bottom:268.186667pt;}
.yd0{bottom:268.826667pt;}
.y70{bottom:271.866667pt;}
.y28{bottom:273.146667pt;}
.y5a{bottom:284.226667pt;}
.y96{bottom:284.706667pt;}
.ycf{bottom:287.266667pt;}
.y105{bottom:289.986667pt;}
.y27{bottom:290.146667pt;}
.y6f{bottom:290.306667pt;}
.y59{bottom:302.626667pt;}
.y95{bottom:303.106667pt;}
.yce{bottom:305.666667pt;}
.y26{bottom:306.946667pt;}
.y6e{bottom:308.706667pt;}
.y58{bottom:321.026667pt;}
.y94{bottom:321.506667pt;}
.ycd{bottom:323.426667pt;}
.y25{bottom:323.746667pt;}
.y6d{bottom:327.106667pt;}
.y57{bottom:339.266667pt;}
.y93{bottom:339.906667pt;}
.y104{bottom:340.546667pt;}
.y24{bottom:340.706667pt;}
.y6c{bottom:345.506667pt;}
.y23{bottom:357.506667pt;}
.y56{bottom:357.666667pt;}
.y92{bottom:358.306667pt;}
.y6b{bottom:363.906667pt;}
.y103{bottom:374.306667pt;}
.y22{bottom:374.466667pt;}
.y55{bottom:376.066667pt;}
.y91{bottom:376.706667pt;}
.y6a{bottom:382.306667pt;}
.y21{bottom:391.266667pt;}
.y54{bottom:394.466667pt;}
.y90{bottom:395.106667pt;}
.y69{bottom:400.706667pt;}
.y102{bottom:408.066667pt;}
.y20{bottom:408.226667pt;}
.y53{bottom:412.866667pt;}
.y8f{bottom:413.506667pt;}
.y68{bottom:419.106667pt;}
.y1f{bottom:425.026667pt;}
.y52{bottom:431.266667pt;}
.y8e{bottom:431.906667pt;}
.y67{bottom:437.506667pt;}
.y1e{bottom:441.826667pt;}
.y51{bottom:449.666667pt;}
.y8d{bottom:450.306667pt;}
.y66{bottom:455.266667pt;}
.y101{bottom:458.626667pt;}
.y1d{bottom:458.786667pt;}
.y50{bottom:468.066667pt;}
.y8c{bottom:468.706667pt;}
.y65{bottom:470.626667pt;}
.y100{bottom:475.586667pt;}
.y1c{bottom:486.466667pt;}
.y8b{bottom:487.106667pt;}
.yff{bottom:492.386667pt;}
.y1b{bottom:504.706667pt;}
.y4f{bottom:504.866667pt;}
.y8a{bottom:505.533333pt;}
.yfe{bottom:509.373333pt;}
.y1a{bottom:521.533333pt;}
.y4e{bottom:523.293333pt;}
.y89{bottom:523.933333pt;}
.yfd{bottom:526.173333pt;}
.y19{bottom:538.493333pt;}
.y4d{bottom:541.693333pt;}
.y88{bottom:542.333333pt;}
.yfc{bottom:542.973333pt;}
.y18{bottom:555.293333pt;}
.yfb{bottom:559.933333pt;}
.y4c{bottom:560.093333pt;}
.y87{bottom:560.733333pt;}
.y17{bottom:572.093333pt;}
.yfa{bottom:576.733333pt;}
.y4b{bottom:578.493333pt;}
.y86{bottom:579.133333pt;}
.y16{bottom:589.053333pt;}
.yf9{bottom:593.693333pt;}
.y4a{bottom:596.893333pt;}
.y85{bottom:597.533333pt;}
.y15{bottom:605.853333pt;}
.yf8{bottom:610.493333pt;}
.y49{bottom:615.293333pt;}
.y84{bottom:615.933333pt;}
.y14{bottom:622.813333pt;}
.yf7{bottom:627.293333pt;}
.y48{bottom:633.693333pt;}
.y83{bottom:634.333333pt;}
.y13{bottom:639.613333pt;}
.yf6{bottom:644.253333pt;}
.y47{bottom:652.093333pt;}
.y82{bottom:652.733333pt;}
.y12{bottom:656.413333pt;}
.yf5{bottom:661.053333pt;}
.y46{bottom:670.493333pt;}
.y81{bottom:671.133333pt;}
.y11{bottom:673.373333pt;}
.yf4{bottom:678.013333pt;}
.y45{bottom:688.893333pt;}
.y80{bottom:689.533333pt;}
.y10{bottom:690.173333pt;}
.yf3{bottom:694.813333pt;}
.yf{bottom:707.133333pt;}
.y44{bottom:707.293333pt;}
.y7f{bottom:707.933333pt;}
.yf2{bottom:711.613333pt;}
.ye{bottom:723.933333pt;}
.y43{bottom:725.693333pt;}
.y7e{bottom:726.333333pt;}
.yf1{bottom:728.613333pt;}
.yd{bottom:740.933333pt;}
.y42{bottom:744.133333pt;}
.y7d{bottom:744.773333pt;}
.yf0{bottom:745.413333pt;}
.yc{bottom:757.733333pt;}
.yef{bottom:762.373333pt;}
.y41{bottom:762.533333pt;}
.y7c{bottom:763.173333pt;}
.yb{bottom:774.533333pt;}
.yee{bottom:779.173333pt;}
.y40{bottom:780.933333pt;}
.ya{bottom:791.493333pt;}
.yed{bottom:795.973333pt;}
.y7b{bottom:796.293333pt;}
.y3f{bottom:799.333333pt;}
.y9{bottom:808.293333pt;}
.y7a{bottom:808.773333pt;}
.ycb{bottom:809.179133pt;}
.yec{bottom:812.933333pt;}
.y3e{bottom:817.733333pt;}
.yca{bottom:820.528197pt;}
.yc9{bottom:820.528201pt;}
.yc8{bottom:820.528206pt;}
.yc6{bottom:820.528210pt;}
.yc4{bottom:820.528215pt;}
.yc2{bottom:820.528243pt;}
.y8{bottom:825.253333pt;}
.yeb{bottom:829.733333pt;}
.y3d{bottom:836.133333pt;}
.yc1{bottom:837.884097pt;}
.yc0{bottom:837.884101pt;}
.ybf{bottom:837.884106pt;}
.ybe{bottom:837.884111pt;}
.ybd{bottom:837.884115pt;}
.ybc{bottom:837.884143pt;}
.y7{bottom:842.053333pt;}
.yea{bottom:846.693333pt;}
.y3c{bottom:854.533333pt;}
.ybb{bottom:855.239997pt;}
.yba{bottom:855.240001pt;}
.yb9{bottom:855.240006pt;}
.yb8{bottom:855.240011pt;}
.yb7{bottom:855.240015pt;}
.yb6{bottom:855.240043pt;}
.y6{bottom:859.653333pt;}
.ye9{bottom:863.493333pt;}
.yb5{bottom:872.595897pt;}
.yb4{bottom:872.595902pt;}
.yb3{bottom:872.595906pt;}
.yb1{bottom:872.595911pt;}
.yaf{bottom:872.595915pt;}
.yae{bottom:872.595943pt;}
.y3b{bottom:872.933333pt;}
.ye8{bottom:880.453333pt;}
.yad{bottom:889.951797pt;}
.yac{bottom:889.951802pt;}
.yab{bottom:889.951806pt;}
.ya9{bottom:889.951811pt;}
.ya4{bottom:889.951815pt;}
.ya1{bottom:889.951843pt;}
.y3a{bottom:891.333333pt;}
.ye7{bottom:897.253333pt;}
.y5{bottom:901.413333pt;}
.ya7{bottom:907.309470pt;}
.y39{bottom:909.733333pt;}
.ye6{bottom:914.053333pt;}
.y4{bottom:916.773333pt;}
.y38{bottom:928.133333pt;}
.ye5{bottom:931.013333pt;}
.y37{bottom:946.533333pt;}
.ye4{bottom:947.813333pt;}
.y3{bottom:948.933333pt;}
.y36{bottom:976.320000pt;}
.y35{bottom:993.440000pt;}
.h10{height:16.690928pt;}
.hf{height:16.690941pt;}
.h11{height:16.690951pt;}
.h12{height:17.355904pt;}
.h13{height:17.355928pt;}
.hc{height:34.046827pt;}
.he{height:34.046851pt;}
.hd{height:39.332351pt;}
.h16{height:41.112500pt;}
.hb{height:44.687500pt;}
.ha{height:49.622500pt;}
.h3{height:52.134375pt;}
.h2{height:53.535000pt;}
.h9{height:55.298750pt;}
.h5{height:57.758750pt;}
.h7{height:57.787500pt;}
.h1{height:58.563750pt;}
.h6{height:59.340000pt;}
.h8{height:62.812500pt;}
.h15{height:65.781915pt;}
.h4{height:75.465000pt;}
.h14{height:115.460867pt;}
.h0{height:1056.000000pt;}
.w7{width:21.678996pt;}
.w2{width:21.678997pt;}
.w6{width:22.916617pt;}
.w5{width:22.937244pt;}
.w4{width:93.564149pt;}
.w8{width:142.491432pt;}
.w3{width:142.491434pt;}
.w9{width:310.040021pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:1.237622pt;}
.x16{left:7.442228pt;}
.x15{left:25.404234pt;}
.x13{left:42.116245pt;}
.x12{left:69.393410pt;}
.x1a{left:107.399991pt;}
.x2{left:113.471988pt;}
.xc{left:116.831988pt;}
.x3{left:123.071988pt;}
.x1b{left:131.551988pt;}
.xf{left:134.050097pt;}
.xa{left:149.466655pt;}
.x1e{left:151.226655pt;}
.x11{left:155.729091pt;}
.x8{left:291.426655pt;}
.x14{left:298.224648pt;}
.x17{left:321.780702pt;}
.x7{left:330.306655pt;}
.x18{left:345.312003pt;}
.x4{left:353.666655pt;}
.x19{left:368.851554pt;}
.x6{left:376.386655pt;}
.x9{left:391.746655pt;}
.x1{left:409.986655pt;}
.x5{left:417.506655pt;}
.xb{left:428.573321pt;}
.x1c{left:446.653321pt;}
.xd{left:464.573321pt;}
.x1d{left:466.333321pt;}
.xe{left:477.053321pt;}
}




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