
    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_92d8505222b50bca10fae500.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.988281;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_3f2794c1773604a715d18f61.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.173340;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_8fad62b02fada39024b3f4f6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_f8f3f23e57ab66ce7c19c300.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_2259852cce69d474da127122.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.014160;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_8a63bfe3b2379edcb5efc474.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.759277;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_4ee96cd40b0b583bda3cb65f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958008;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_545be78f2e8121cf24be8b40.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.851573;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);}
.v1{vertical-align:-129.744000px;}
.v2{vertical-align:-64.512000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.840000px;}
.lsf{letter-spacing:-1.068000px;}
.lsc{letter-spacing:-1.002000px;}
.ls11{letter-spacing:-0.720000px;}
.ls22{letter-spacing:-0.432000px;}
.ls18{letter-spacing:-0.354000px;}
.lse{letter-spacing:-0.345600px;}
.ls3{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.255600px;}
.ls3e{letter-spacing:-0.178800px;}
.ls24{letter-spacing:-0.168000px;}
.ls29{letter-spacing:-0.096600px;}
.ls26{letter-spacing:-0.063600px;}
.ls25{letter-spacing:-0.002874px;}
.ls2{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.007920px;}
.ls0{letter-spacing:0.023040px;}
.ls17{letter-spacing:0.036000px;}
.ls3c{letter-spacing:0.057600px;}
.ls3f{letter-spacing:0.063600px;}
.lsb{letter-spacing:0.091200px;}
.ls23{letter-spacing:0.097200px;}
.ls1b{letter-spacing:0.139800px;}
.lsa{letter-spacing:0.147000px;}
.ls3d{letter-spacing:0.158400px;}
.ls36{letter-spacing:0.222480px;}
.ls28{letter-spacing:0.259200px;}
.ls16{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.326880px;}
.ls3b{letter-spacing:0.327000px;}
.ls27{letter-spacing:0.464400px;}
.ls39{letter-spacing:0.506880px;}
.ls20{letter-spacing:0.942480px;}
.ls12{letter-spacing:2.592000px;}
.ls21{letter-spacing:9.582480px;}
.ls38{letter-spacing:27.582480px;}
.ls37{letter-spacing:28.302480px;}
.ls33{letter-spacing:31.948656px;}
.ls32{letter-spacing:31.960656px;}
.ls2e{letter-spacing:31.984656px;}
.ls31{letter-spacing:32.088960px;}
.ls10{letter-spacing:32.100960px;}
.ls2d{letter-spacing:32.112960px;}
.ls8{letter-spacing:36.172800px;}
.ls7{letter-spacing:37.253520px;}
.lsd{letter-spacing:37.260000px;}
.ls6{letter-spacing:37.973520px;}
.ls35{letter-spacing:40.288416px;}
.ls1a{letter-spacing:40.300416px;}
.ls34{letter-spacing:40.416720px;}
.ls30{letter-spacing:40.420416px;}
.ls1c{letter-spacing:40.428720px;}
.ls2f{letter-spacing:40.548720px;}
.ls2c{letter-spacing:47.998656px;}
.ls5{letter-spacing:48.022656px;}
.ls2a{letter-spacing:48.114960px;}
.ls2b{letter-spacing:48.126960px;}
.ls4{letter-spacing:48.150960px;}
.ls13{letter-spacing:64.476960px;}
.ls15{letter-spacing:72.700416px;}
.ls14{letter-spacing:72.828720px;}
.ls1f{letter-spacing:140.742480px;}
.ls1{letter-spacing:149.976000px;}
.ls1e{letter-spacing:230.742480px;}
.ls9{letter-spacing:684.092112px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(240,127,9),0 0.015em rgb(240,127,9),0.015em 0 rgb(240,127,9),0 -0.015em  rgb(240,127,9);}
.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(240,127,9);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-120.384000px;}
.ws2{word-spacing:-120.240000px;}
.ws12{word-spacing:-60.520320px;}
.ws11{word-spacing:-40.176000px;}
.wsc{word-spacing:-39.888000px;}
.wsb{word-spacing:-39.168000px;}
.ws1f{word-spacing:-37.051200px;}
.ws21{word-spacing:-36.996720px;}
.ws19{word-spacing:-36.961920px;}
.ws22{word-spacing:-36.956160px;}
.ws1e{word-spacing:-36.950400px;}
.ws1d{word-spacing:-36.824520px;}
.ws1a{word-spacing:-36.796608px;}
.wse{word-spacing:-36.785520px;}
.ws20{word-spacing:-36.754320px;}
.ws14{word-spacing:-36.637320px;}
.ws15{word-spacing:-36.594720px;}
.wsd{word-spacing:-36.533520px;}
.ws1c{word-spacing:-36.505440px;}
.ws17{word-spacing:-36.494646px;}
.ws18{word-spacing:-36.433920px;}
.ws1b{word-spacing:-36.400920px;}
.ws16{word-spacing:-36.369408px;}
.ws10{word-spacing:-36.241920px;}
.wsf{word-spacing:-36.183408px;}
.ws13{word-spacing:-36.065520px;}
.ws9{word-spacing:-33.707520px;}
.ws7{word-spacing:-33.667200px;}
.ws3{word-spacing:-33.453480px;}
.ws5{word-spacing:-33.437568px;}
.ws8{word-spacing:-33.321600px;}
.wsa{word-spacing:-32.599200px;}
.ws6{word-spacing:-32.304480px;}
.ws0{word-spacing:-29.736000px;}
.ws1{word-spacing:0.000000px;}
._8{margin-left:-36.543120px;}
._4{margin-left:-11.355120px;}
._5{margin-left:-10.044000px;}
._3{margin-left:-3.032352px;}
._0{margin-left:-1.712880px;}
._2{width:1.317600px;}
._1{width:2.503440px;}
._13{width:4.188000px;}
._11{width:8.477760px;}
._12{width:9.637440px;}
._25{width:11.256720px;}
._21{width:15.694320px;}
._c{width:17.832000px;}
._d{width:19.152000px;}
._10{width:23.448000px;}
._7{width:25.074480px;}
._26{width:28.223760px;}
._9{width:36.478560px;}
._6{width:37.733520px;}
._18{width:45.750960px;}
._17{width:47.214000px;}
._e{width:62.882400px;}
._f{width:64.473600px;}
._22{width:81.794880px;}
._1f{width:85.456416px;}
._14{width:86.493264px;}
._20{width:98.652000px;}
._1d{width:122.282880px;}
._1b{width:140.782560px;}
._15{width:175.002720px;}
._16{width:176.987280px;}
._1c{width:181.564800px;}
._1a{width:229.904160px;}
._a{width:339.036960px;}
._b{width:385.710480px;}
._1e{width:472.559040px;}
._19{width:522.290400px;}
._24{width:589.668000px;}
._23{width:761.435280px;}
.fc4{color:rgb(255,192,0);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(50,50,50);}
.fc2{color:rgb(95,95,95);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(240,127,9);}
.fs21{font-size:18.000000px;}
.fs20{font-size:23.760000px;}
.fs1f{font-size:36.000000px;}
.fs1a{font-size:41.760000px;}
.fs18{font-size:54.000000px;}
.fs17{font-size:77.760000px;}
.fs19{font-size:84.240000px;}
.fs7{font-size:91.440000px;}
.fs9{font-size:91.584000px;}
.fs1e{font-size:95.760000px;}
.fsf{font-size:100.080000px;}
.fs10{font-size:100.224000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:108.144000px;}
.fsd{font-size:109.440000px;}
.fs1b{font-size:109.584000px;}
.fs8{font-size:120.240000px;}
.fsa{font-size:120.384000px;}
.fs0{font-size:131.760000px;}
.fs1{font-size:131.904000px;}
.fse{font-size:144.000000px;}
.fsb{font-size:144.144000px;}
.fs2{font-size:167.760000px;}
.fs3{font-size:167.904000px;}
.fs1d{font-size:180.144000px;}
.fsc{font-size:185.760000px;}
.fs16{font-size:192.240000px;}
.fs1c{font-size:192.384000px;}
.fs12{font-size:216.000000px;}
.fs11{font-size:216.144000px;}
.fs14{font-size:234.000000px;}
.fs13{font-size:234.144000px;}
.fs6{font-size:239.760000px;}
.fs15{font-size:257.760000px;}
.y9c{bottom:-45.036000px;}
.y84{bottom:-39.060000px;}
.y49{bottom:-30.744000px;}
.y0{bottom:0.000000px;}
.y9b{bottom:6.804000px;}
.y83{bottom:8.460000px;}
.y48{bottom:12.816000px;}
.ya8{bottom:45.972000px;}
.yb7{bottom:52.452000px;}
.y82{bottom:55.980000px;}
.y47{bottom:56.412000px;}
.y9a{bottom:58.644000px;}
.y57{bottom:75.996000px;}
.y10{bottom:78.804000px;}
.ya7{bottom:93.492000px;}
.yb6{bottom:96.012000px;}
.y46{bottom:99.972000px;}
.y90{bottom:101.988000px;}
.y81{bottom:103.500000px;}
.y76{bottom:104.040000px;}
.y56{bottom:107.676000px;}
.y99{bottom:110.520000px;}
.yf{bottom:111.204000px;}
.y1b{bottom:126.072000px;}
.y45{bottom:135.612000px;}
.y55{bottom:139.356000px;}
.yb5{bottom:139.572000px;}
.ya6{bottom:141.012000px;}
.yc0{bottom:141.192000px;}
.y80{bottom:151.050000px;}
.y8f{bottom:153.870000px;}
.y60{bottom:155.340000px;}
.y75{bottom:155.910000px;}
.y69{bottom:160.590000px;}
.y98{bottom:162.360000px;}
.y54{bottom:171.030000px;}
.y44{bottom:171.255000px;}
.yb4{bottom:175.215000px;}
.ye{bottom:176.040000px;}
.y1a{bottom:176.685000px;}
.ybf{bottom:180.825000px;}
.ya5{bottom:188.565000px;}
.y5f{bottom:198.540000px;}
.y7f{bottom:198.570000px;}
.y21{bottom:201.630000px;}
.y68{bottom:203.790000px;}
.y8e{bottom:204.450000px;}
.y53{bottom:207.570000px;}
.y74{bottom:207.750000px;}
.yd{bottom:208.440000px;}
.yb3{bottom:212.505000px;}
.y97{bottom:214.200000px;}
.y43{bottom:214.845000px;}
.y19{bottom:219.705000px;}
.yb2{bottom:224.745000px;}
.ybe{bottom:228.525000px;}
.y31{bottom:230.760000px;}
.y52{bottom:234.075000px;}
.ya4{bottom:236.085000px;}
.yc{bottom:240.840000px;}
.y5e{bottom:241.770000px;}
.y7e{bottom:246.090000px;}
.y67{bottom:247.035000px;}
.y8d{bottom:248.910000px;}
.y42{bottom:250.485000px;}
.y20{bottom:252.030000px;}
.y18{bottom:255.705000px;}
.y96{bottom:257.400000px;}
.y29{bottom:257.835000px;}
.y73{bottom:259.590000px;}
.yb1{bottom:262.005000px;}
.y51{bottom:265.755000px;}
.yb{bottom:273.240000px;}
.y30{bottom:273.960000px;}
.yb0{bottom:274.245000px;}
.ybd{bottom:276.045000px;}
.ya3{bottom:283.605000px;}
.y5d{bottom:284.970000px;}
.y41{bottom:286.125000px;}
.y66{bottom:290.235000px;}
.y7d{bottom:293.655000px;}
.y50{bottom:297.435000px;}
.y17{bottom:298.905000px;}
.y8c{bottom:300.750000px;}
.y28{bottom:301.035000px;}
.y1f{bottom:302.430000px;}
.ya{bottom:305.640000px;}
.y95{bottom:309.270000px;}
.y72{bottom:311.475000px;}
.yaf{bottom:311.505000px;}
.ybc{bottom:315.690000px;}
.y40{bottom:321.765000px;}
.yae{bottom:323.745000px;}
.y2f{bottom:325.290000px;}
.y5c{bottom:328.170000px;}
.ya2{bottom:331.125000px;}
.y65{bottom:333.435000px;}
.y16{bottom:334.950000px;}
.y4{bottom:335.700000px;}
.y4f{bottom:337.035000px;}
.y7c{bottom:341.175000px;}
.y8b{bottom:352.620000px;}
.y27{bottom:352.875000px;}
.y71{bottom:357.735000px;}
.yad{bottom:361.050000px;}
.y94{bottom:361.110000px;}
.ybb{bottom:363.210000px;}
.y2e{bottom:364.890000px;}
.y3f{bottom:365.370000px;}
.y4e{bottom:368.715000px;}
.y5b{bottom:371.370000px;}
.yac{bottom:373.290000px;}
.y3{bottom:375.300000px;}
.y64{bottom:376.635000px;}
.y15{bottom:378.330000px;}
.y70{bottom:378.435000px;}
.ya1{bottom:378.690000px;}
.y7b{bottom:380.775000px;}
.y26{bottom:396.075000px;}
.y3e{bottom:401.010000px;}
.y8a{bottom:404.460000px;}
.y4d{bottom:408.345000px;}
.yab{bottom:410.730000px;}
.y2d{bottom:412.410000px;}
.y93{bottom:412.950000px;}
.y14{bottom:414.330000px;}
.y5a{bottom:414.615000px;}
.y2{bottom:414.930000px;}
.y63{bottom:419.865000px;}
.yaa{bottom:424.770000px;}
.ya0{bottom:426.210000px;}
.y6f{bottom:427.035000px;}
.y7a{bottom:428.295000px;}
.y3d{bottom:444.570000px;}
.y25{bottom:447.945000px;}
.y1{bottom:454.530000px;}
.y89{bottom:456.300000px;}
.y13{bottom:457.530000px;}
.y59{bottom:457.815000px;}
.yba{bottom:458.250000px;}
.y2c{bottom:459.975000px;}
.y6e{bottom:460.545000px;}
.ya9{bottom:462.930000px;}
.y62{bottom:463.065000px;}
.y92{bottom:464.835000px;}
.y79{bottom:467.925000px;}
.y9f{bottom:471.750000px;}
.y4c{bottom:479.625000px;}
.y9{bottom:479.880000px;}
.y3c{bottom:480.210000px;}
.y24{bottom:491.145000px;}
.yb9{bottom:497.880000px;}
.y88{bottom:499.530000px;}
.y12{bottom:500.760000px;}
.y58{bottom:501.015000px;}
.y61{bottom:506.265000px;}
.y2b{bottom:508.035000px;}
.y9e{bottom:508.830000px;}
.y4b{bottom:511.305000px;}
.y6d{bottom:512.385000px;}
.y78{bottom:515.445000px;}
.y3b{bottom:515.850000px;}
.y8{bottom:530.310000px;}
.y23{bottom:534.345000px;}
.y1e{bottom:538.770000px;}
.y87{bottom:551.370000px;}
.y2a{bottom:559.875000px;}
.y11{bottom:572.115000px;}
.y7{bottom:580.710000px;}
.y77{bottom:582.375000px;}
.y6c{bottom:583.380000px;}
.y3a{bottom:586.410000px;}
.y4a{bottom:587.370000px;}
.y1d{bottom:589.170000px;}
.y86{bottom:615.705000px;}
.y22{bottom:616.065000px;}
.y91{bottom:619.950000px;}
.yb8{bottom:628.890000px;}
.y6{bottom:631.110000px;}
.y33{bottom:634.680000px;}
.y1c{bottom:639.570000px;}
.y37{bottom:644.250000px;}
.y6b{bottom:651.495000px;}
.y35{bottom:652.785000px;}
.y39{bottom:653.115000px;}
.y9d{bottom:661.650000px;}
.y36{bottom:666.825000px;}
.y32{bottom:668.880000px;}
.y85{bottom:669.060000px;}
.y34{bottom:675.330000px;}
.y5{bottom:681.555000px;}
.y6a{bottom:709.635000px;}
.y38{bottom:716.835000px;}
.h24{height:14.044922px;}
.h23{height:18.539297px;}
.h22{height:28.089844px;}
.h1d{height:32.584219px;}
.h18{height:60.674063px;}
.h1c{height:65.730234px;}
.h21{height:74.718984px;}
.h8{height:93.820078px;}
.h9{height:93.932438px;}
.h1{height:102.808828px;}
.h2{height:102.921188px;}
.h17{height:104.255859px;}
.h1a{height:108.095859px;}
.h10{height:112.359375px;}
.hc{height:112.471734px;}
.h6{height:112.640625px;}
.h5{height:112.790813px;}
.ha{height:116.071523px;}
.hb{height:116.210531px;}
.h26{height:127.192148px;}
.h27{height:127.331156px;}
.he{height:130.898672px;}
.hd{height:131.011031px;}
.h19{height:134.175234px;}
.h1f{height:134.290406px;}
.h16{height:153.754453px;}
.h3{height:161.944102px;}
.h4{height:162.083109px;}
.h20{height:173.898773px;}
.hf{height:179.320078px;}
.h1b{height:185.575430px;}
.h1e{height:185.714438px;}
.h25{height:187.078359px;}
.h15{height:206.157656px;}
.h12{height:208.511719px;}
.h11{height:208.650727px;}
.h14{height:225.887695px;}
.h13{height:226.026703px;}
.h7{height:231.448008px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xe{left:13.284000px;}
.xb{left:24.444000px;}
.x8{left:27.036000px;}
.xd{left:33.264000px;}
.x6{left:36.576000px;}
.xa{left:53.244000px;}
.x1e{left:66.024000px;}
.x7{left:72.576000px;}
.x1f{left:83.052000px;}
.x22{left:98.028000px;}
.x2d{left:100.044000px;}
.x20{left:101.592000px;}
.x32{left:108.576000px;}
.xf{left:111.564000px;}
.x33{left:115.056000px;}
.x27{left:118.404000px;}
.x1a{left:125.568000px;}
.x2e{left:127.332000px;}
.x10{left:131.724000px;}
.x11{left:134.064000px;}
.x5{left:137.196000px;}
.x12{left:142.164000px;}
.x21{left:144.288000px;}
.x16{left:149.796000px;}
.x28{left:150.810000px;}
.x9{left:152.670000px;}
.x1b{left:157.575000px;}
.x1d{left:166.065000px;}
.x2a{left:169.845000px;}
.x13{left:174.570000px;}
.xc{left:179.820000px;}
.x1c{left:201.750000px;}
.x14{left:212.250000px;}
.x15{left:242.670000px;}
.x23{left:550.905000px;}
.x24{left:559.005000px;}
.x26{left:564.405000px;}
.x29{left:569.235000px;}
.x30{left:577.770000px;}
.x25{left:591.405000px;}
.x2b{left:594.750000px;}
.x4{left:601.635000px;}
.x31{left:610.170000px;}
.x2{left:620.535000px;}
.x2c{left:627.150000px;}
.x3{left:631.515000px;}
.x2f{left:637.710000px;}
.x1{left:650.805000px;}
.x19{left:677.010000px;}
.x17{left:717.150000px;}
.x18{left:734.790000px;}
@media print{
.v1{vertical-align:-115.328000pt;}
.v2{vertical-align:-57.344000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.413333pt;}
.lsf{letter-spacing:-0.949333pt;}
.lsc{letter-spacing:-0.890667pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls22{letter-spacing:-0.384000pt;}
.ls18{letter-spacing:-0.314667pt;}
.lse{letter-spacing:-0.307200pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.227200pt;}
.ls3e{letter-spacing:-0.158933pt;}
.ls24{letter-spacing:-0.149333pt;}
.ls29{letter-spacing:-0.085867pt;}
.ls26{letter-spacing:-0.056533pt;}
.ls25{letter-spacing:-0.002555pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.007040pt;}
.ls0{letter-spacing:0.020480pt;}
.ls17{letter-spacing:0.032000pt;}
.ls3c{letter-spacing:0.051200pt;}
.ls3f{letter-spacing:0.056533pt;}
.lsb{letter-spacing:0.081067pt;}
.ls23{letter-spacing:0.086400pt;}
.ls1b{letter-spacing:0.124267pt;}
.lsa{letter-spacing:0.130667pt;}
.ls3d{letter-spacing:0.140800pt;}
.ls36{letter-spacing:0.197760pt;}
.ls28{letter-spacing:0.230400pt;}
.ls16{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.290560pt;}
.ls3b{letter-spacing:0.290667pt;}
.ls27{letter-spacing:0.412800pt;}
.ls39{letter-spacing:0.450560pt;}
.ls20{letter-spacing:0.837760pt;}
.ls12{letter-spacing:2.304000pt;}
.ls21{letter-spacing:8.517760pt;}
.ls38{letter-spacing:24.517760pt;}
.ls37{letter-spacing:25.157760pt;}
.ls33{letter-spacing:28.398805pt;}
.ls32{letter-spacing:28.409472pt;}
.ls2e{letter-spacing:28.430805pt;}
.ls31{letter-spacing:28.523520pt;}
.ls10{letter-spacing:28.534187pt;}
.ls2d{letter-spacing:28.544853pt;}
.ls8{letter-spacing:32.153600pt;}
.ls7{letter-spacing:33.114240pt;}
.lsd{letter-spacing:33.120000pt;}
.ls6{letter-spacing:33.754240pt;}
.ls35{letter-spacing:35.811925pt;}
.ls1a{letter-spacing:35.822592pt;}
.ls34{letter-spacing:35.925973pt;}
.ls30{letter-spacing:35.929259pt;}
.ls1c{letter-spacing:35.936640pt;}
.ls2f{letter-spacing:36.043307pt;}
.ls2c{letter-spacing:42.665472pt;}
.ls5{letter-spacing:42.686805pt;}
.ls2a{letter-spacing:42.768853pt;}
.ls2b{letter-spacing:42.779520pt;}
.ls4{letter-spacing:42.800853pt;}
.ls13{letter-spacing:57.312853pt;}
.ls15{letter-spacing:64.622592pt;}
.ls14{letter-spacing:64.736640pt;}
.ls1f{letter-spacing:125.104427pt;}
.ls1{letter-spacing:133.312000pt;}
.ls1e{letter-spacing:205.104427pt;}
.ls9{letter-spacing:608.081877pt;}
.ws4{word-spacing:-107.008000pt;}
.ws2{word-spacing:-106.880000pt;}
.ws12{word-spacing:-53.795840pt;}
.ws11{word-spacing:-35.712000pt;}
.wsc{word-spacing:-35.456000pt;}
.wsb{word-spacing:-34.816000pt;}
.ws1f{word-spacing:-32.934400pt;}
.ws21{word-spacing:-32.885973pt;}
.ws19{word-spacing:-32.855040pt;}
.ws22{word-spacing:-32.849920pt;}
.ws1e{word-spacing:-32.844800pt;}
.ws1d{word-spacing:-32.732907pt;}
.ws1a{word-spacing:-32.708096pt;}
.wse{word-spacing:-32.698240pt;}
.ws20{word-spacing:-32.670507pt;}
.ws14{word-spacing:-32.566507pt;}
.ws15{word-spacing:-32.528640pt;}
.wsd{word-spacing:-32.474240pt;}
.ws1c{word-spacing:-32.449280pt;}
.ws17{word-spacing:-32.439685pt;}
.ws18{word-spacing:-32.385707pt;}
.ws1b{word-spacing:-32.356373pt;}
.ws16{word-spacing:-32.328363pt;}
.ws10{word-spacing:-32.215040pt;}
.wsf{word-spacing:-32.163029pt;}
.ws13{word-spacing:-32.058240pt;}
.ws9{word-spacing:-29.962240pt;}
.ws7{word-spacing:-29.926400pt;}
.ws3{word-spacing:-29.736427pt;}
.ws5{word-spacing:-29.722283pt;}
.ws8{word-spacing:-29.619200pt;}
.wsa{word-spacing:-28.977067pt;}
.ws6{word-spacing:-28.715093pt;}
.ws0{word-spacing:-26.432000pt;}
.ws1{word-spacing:0.000000pt;}
._8{margin-left:-32.482773pt;}
._4{margin-left:-10.093440pt;}
._5{margin-left:-8.928000pt;}
._3{margin-left:-2.695424pt;}
._0{margin-left:-1.522560pt;}
._2{width:1.171200pt;}
._1{width:2.225280pt;}
._13{width:3.722667pt;}
._11{width:7.535787pt;}
._12{width:8.566613pt;}
._25{width:10.005973pt;}
._21{width:13.950507pt;}
._c{width:15.850667pt;}
._d{width:17.024000pt;}
._10{width:20.842667pt;}
._7{width:22.288427pt;}
._26{width:25.087787pt;}
._9{width:32.425387pt;}
._6{width:33.540907pt;}
._18{width:40.667520pt;}
._17{width:41.968000pt;}
._e{width:55.895467pt;}
._f{width:57.309867pt;}
._22{width:72.706560pt;}
._1f{width:75.961259pt;}
._14{width:76.882901pt;}
._20{width:87.690667pt;}
._1d{width:108.695893pt;}
._1b{width:125.140053pt;}
._15{width:155.557973pt;}
._16{width:157.322027pt;}
._1c{width:161.390933pt;}
._1a{width:204.359253pt;}
._a{width:301.366187pt;}
._b{width:342.853760pt;}
._1e{width:420.052480pt;}
._19{width:464.258133pt;}
._24{width:524.149333pt;}
._23{width:676.831360pt;}
.fs21{font-size:16.000000pt;}
.fs20{font-size:21.120000pt;}
.fs1f{font-size:32.000000pt;}
.fs1a{font-size:37.120000pt;}
.fs18{font-size:48.000000pt;}
.fs17{font-size:69.120000pt;}
.fs19{font-size:74.880000pt;}
.fs7{font-size:81.280000pt;}
.fs9{font-size:81.408000pt;}
.fs1e{font-size:85.120000pt;}
.fsf{font-size:88.960000pt;}
.fs10{font-size:89.088000pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:96.128000pt;}
.fsd{font-size:97.280000pt;}
.fs1b{font-size:97.408000pt;}
.fs8{font-size:106.880000pt;}
.fsa{font-size:107.008000pt;}
.fs0{font-size:117.120000pt;}
.fs1{font-size:117.248000pt;}
.fse{font-size:128.000000pt;}
.fsb{font-size:128.128000pt;}
.fs2{font-size:149.120000pt;}
.fs3{font-size:149.248000pt;}
.fs1d{font-size:160.128000pt;}
.fsc{font-size:165.120000pt;}
.fs16{font-size:170.880000pt;}
.fs1c{font-size:171.008000pt;}
.fs12{font-size:192.000000pt;}
.fs11{font-size:192.128000pt;}
.fs14{font-size:208.000000pt;}
.fs13{font-size:208.128000pt;}
.fs6{font-size:213.120000pt;}
.fs15{font-size:229.120000pt;}
.y9c{bottom:-40.032000pt;}
.y84{bottom:-34.720000pt;}
.y49{bottom:-27.328000pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:6.048000pt;}
.y83{bottom:7.520000pt;}
.y48{bottom:11.392000pt;}
.ya8{bottom:40.864000pt;}
.yb7{bottom:46.624000pt;}
.y82{bottom:49.760000pt;}
.y47{bottom:50.144000pt;}
.y9a{bottom:52.128000pt;}
.y57{bottom:67.552000pt;}
.y10{bottom:70.048000pt;}
.ya7{bottom:83.104000pt;}
.yb6{bottom:85.344000pt;}
.y46{bottom:88.864000pt;}
.y90{bottom:90.656000pt;}
.y81{bottom:92.000000pt;}
.y76{bottom:92.480000pt;}
.y56{bottom:95.712000pt;}
.y99{bottom:98.240000pt;}
.yf{bottom:98.848000pt;}
.y1b{bottom:112.064000pt;}
.y45{bottom:120.544000pt;}
.y55{bottom:123.872000pt;}
.yb5{bottom:124.064000pt;}
.ya6{bottom:125.344000pt;}
.yc0{bottom:125.504000pt;}
.y80{bottom:134.266667pt;}
.y8f{bottom:136.773333pt;}
.y60{bottom:138.080000pt;}
.y75{bottom:138.586667pt;}
.y69{bottom:142.746667pt;}
.y98{bottom:144.320000pt;}
.y54{bottom:152.026667pt;}
.y44{bottom:152.226667pt;}
.yb4{bottom:155.746667pt;}
.ye{bottom:156.480000pt;}
.y1a{bottom:157.053333pt;}
.ybf{bottom:160.733333pt;}
.ya5{bottom:167.613333pt;}
.y5f{bottom:176.480000pt;}
.y7f{bottom:176.506667pt;}
.y21{bottom:179.226667pt;}
.y68{bottom:181.146667pt;}
.y8e{bottom:181.733333pt;}
.y53{bottom:184.506667pt;}
.y74{bottom:184.666667pt;}
.yd{bottom:185.280000pt;}
.yb3{bottom:188.893333pt;}
.y97{bottom:190.400000pt;}
.y43{bottom:190.973333pt;}
.y19{bottom:195.293333pt;}
.yb2{bottom:199.773333pt;}
.ybe{bottom:203.133333pt;}
.y31{bottom:205.120000pt;}
.y52{bottom:208.066667pt;}
.ya4{bottom:209.853333pt;}
.yc{bottom:214.080000pt;}
.y5e{bottom:214.906667pt;}
.y7e{bottom:218.746667pt;}
.y67{bottom:219.586667pt;}
.y8d{bottom:221.253333pt;}
.y42{bottom:222.653333pt;}
.y20{bottom:224.026667pt;}
.y18{bottom:227.293333pt;}
.y96{bottom:228.800000pt;}
.y29{bottom:229.186667pt;}
.y73{bottom:230.746667pt;}
.yb1{bottom:232.893333pt;}
.y51{bottom:236.226667pt;}
.yb{bottom:242.880000pt;}
.y30{bottom:243.520000pt;}
.yb0{bottom:243.773333pt;}
.ybd{bottom:245.373333pt;}
.ya3{bottom:252.093333pt;}
.y5d{bottom:253.306667pt;}
.y41{bottom:254.333333pt;}
.y66{bottom:257.986667pt;}
.y7d{bottom:261.026667pt;}
.y50{bottom:264.386667pt;}
.y17{bottom:265.693333pt;}
.y8c{bottom:267.333333pt;}
.y28{bottom:267.586667pt;}
.y1f{bottom:268.826667pt;}
.ya{bottom:271.680000pt;}
.y95{bottom:274.906667pt;}
.y72{bottom:276.866667pt;}
.yaf{bottom:276.893333pt;}
.ybc{bottom:280.613333pt;}
.y40{bottom:286.013333pt;}
.yae{bottom:287.773333pt;}
.y2f{bottom:289.146667pt;}
.y5c{bottom:291.706667pt;}
.ya2{bottom:294.333333pt;}
.y65{bottom:296.386667pt;}
.y16{bottom:297.733333pt;}
.y4{bottom:298.400000pt;}
.y4f{bottom:299.586667pt;}
.y7c{bottom:303.266667pt;}
.y8b{bottom:313.440000pt;}
.y27{bottom:313.666667pt;}
.y71{bottom:317.986667pt;}
.yad{bottom:320.933333pt;}
.y94{bottom:320.986667pt;}
.ybb{bottom:322.853333pt;}
.y2e{bottom:324.346667pt;}
.y3f{bottom:324.773333pt;}
.y4e{bottom:327.746667pt;}
.y5b{bottom:330.106667pt;}
.yac{bottom:331.813333pt;}
.y3{bottom:333.600000pt;}
.y64{bottom:334.786667pt;}
.y15{bottom:336.293333pt;}
.y70{bottom:336.386667pt;}
.ya1{bottom:336.613333pt;}
.y7b{bottom:338.466667pt;}
.y26{bottom:352.066667pt;}
.y3e{bottom:356.453333pt;}
.y8a{bottom:359.520000pt;}
.y4d{bottom:362.973333pt;}
.yab{bottom:365.093333pt;}
.y2d{bottom:366.586667pt;}
.y93{bottom:367.066667pt;}
.y14{bottom:368.293333pt;}
.y5a{bottom:368.546667pt;}
.y2{bottom:368.826667pt;}
.y63{bottom:373.213333pt;}
.yaa{bottom:377.573333pt;}
.ya0{bottom:378.853333pt;}
.y6f{bottom:379.586667pt;}
.y7a{bottom:380.706667pt;}
.y3d{bottom:395.173333pt;}
.y25{bottom:398.173333pt;}
.y1{bottom:404.026667pt;}
.y89{bottom:405.600000pt;}
.y13{bottom:406.693333pt;}
.y59{bottom:406.946667pt;}
.yba{bottom:407.333333pt;}
.y2c{bottom:408.866667pt;}
.y6e{bottom:409.373333pt;}
.ya9{bottom:411.493333pt;}
.y62{bottom:411.613333pt;}
.y92{bottom:413.186667pt;}
.y79{bottom:415.933333pt;}
.y9f{bottom:419.333333pt;}
.y4c{bottom:426.333333pt;}
.y9{bottom:426.560000pt;}
.y3c{bottom:426.853333pt;}
.y24{bottom:436.573333pt;}
.yb9{bottom:442.560000pt;}
.y88{bottom:444.026667pt;}
.y12{bottom:445.120000pt;}
.y58{bottom:445.346667pt;}
.y61{bottom:450.013333pt;}
.y2b{bottom:451.586667pt;}
.y9e{bottom:452.293333pt;}
.y4b{bottom:454.493333pt;}
.y6d{bottom:455.453333pt;}
.y78{bottom:458.173333pt;}
.y3b{bottom:458.533333pt;}
.y8{bottom:471.386667pt;}
.y23{bottom:474.973333pt;}
.y1e{bottom:478.906667pt;}
.y87{bottom:490.106667pt;}
.y2a{bottom:497.666667pt;}
.y11{bottom:508.546667pt;}
.y7{bottom:516.186667pt;}
.y77{bottom:517.666667pt;}
.y6c{bottom:518.560000pt;}
.y3a{bottom:521.253333pt;}
.y4a{bottom:522.106667pt;}
.y1d{bottom:523.706667pt;}
.y86{bottom:547.293333pt;}
.y22{bottom:547.613333pt;}
.y91{bottom:551.066667pt;}
.yb8{bottom:559.013333pt;}
.y6{bottom:560.986667pt;}
.y33{bottom:564.160000pt;}
.y1c{bottom:568.506667pt;}
.y37{bottom:572.666667pt;}
.y6b{bottom:579.106667pt;}
.y35{bottom:580.253333pt;}
.y39{bottom:580.546667pt;}
.y9d{bottom:588.133333pt;}
.y36{bottom:592.733333pt;}
.y32{bottom:594.560000pt;}
.y85{bottom:594.720000pt;}
.y34{bottom:600.293333pt;}
.y5{bottom:605.826667pt;}
.y6a{bottom:630.786667pt;}
.y38{bottom:637.186667pt;}
.h24{height:12.484375pt;}
.h23{height:16.479375pt;}
.h22{height:24.968750pt;}
.h1d{height:28.963750pt;}
.h18{height:53.932500pt;}
.h1c{height:58.426875pt;}
.h21{height:66.416875pt;}
.h8{height:83.395625pt;}
.h9{height:83.495500pt;}
.h1{height:91.385625pt;}
.h2{height:91.485500pt;}
.h17{height:92.671875pt;}
.h1a{height:96.085208pt;}
.h10{height:99.875000pt;}
.hc{height:99.974875pt;}
.h6{height:100.125000pt;}
.h5{height:100.258500pt;}
.ha{height:103.174687pt;}
.hb{height:103.298250pt;}
.h26{height:113.059687pt;}
.h27{height:113.183250pt;}
.he{height:116.354375pt;}
.hd{height:116.454250pt;}
.h19{height:119.266875pt;}
.h1f{height:119.369250pt;}
.h16{height:136.670625pt;}
.h3{height:143.950312pt;}
.h4{height:144.073875pt;}
.h20{height:154.576687pt;}
.hf{height:159.395625pt;}
.h1b{height:164.955938pt;}
.h1e{height:165.079500pt;}
.h25{height:166.291875pt;}
.h15{height:183.251250pt;}
.h12{height:185.343750pt;}
.h11{height:185.467312pt;}
.h14{height:200.789062pt;}
.h13{height:200.912625pt;}
.h7{height:205.731562pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xe{left:11.808000pt;}
.xb{left:21.728000pt;}
.x8{left:24.032000pt;}
.xd{left:29.568000pt;}
.x6{left:32.512000pt;}
.xa{left:47.328000pt;}
.x1e{left:58.688000pt;}
.x7{left:64.512000pt;}
.x1f{left:73.824000pt;}
.x22{left:87.136000pt;}
.x2d{left:88.928000pt;}
.x20{left:90.304000pt;}
.x32{left:96.512000pt;}
.xf{left:99.168000pt;}
.x33{left:102.272000pt;}
.x27{left:105.248000pt;}
.x1a{left:111.616000pt;}
.x2e{left:113.184000pt;}
.x10{left:117.088000pt;}
.x11{left:119.168000pt;}
.x5{left:121.952000pt;}
.x12{left:126.368000pt;}
.x21{left:128.256000pt;}
.x16{left:133.152000pt;}
.x28{left:134.053333pt;}
.x9{left:135.706667pt;}
.x1b{left:140.066667pt;}
.x1d{left:147.613333pt;}
.x2a{left:150.973333pt;}
.x13{left:155.173333pt;}
.xc{left:159.840000pt;}
.x1c{left:179.333333pt;}
.x14{left:188.666667pt;}
.x15{left:215.706667pt;}
.x23{left:489.693333pt;}
.x24{left:496.893333pt;}
.x26{left:501.693333pt;}
.x29{left:505.986667pt;}
.x30{left:513.573333pt;}
.x25{left:525.693333pt;}
.x2b{left:528.666667pt;}
.x4{left:534.786667pt;}
.x31{left:542.373333pt;}
.x2{left:551.586667pt;}
.x2c{left:557.466667pt;}
.x3{left:561.346667pt;}
.x2f{left:566.853333pt;}
.x1{left:578.493333pt;}
.x19{left:601.786667pt;}
.x17{left:637.466667pt;}
.x18{left:653.146667pt;}
}




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