
    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_47ba895480e489b3833ab977.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e1388f5de8455ba226234931.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_275d247845a7a5ee8bd8a7a3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8faeb89d42f45e573fc2f5df.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_af685c6231705a9c3517f688.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_1f02213709b86e8c359367f0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_97abdaef976ddd629c69fc84.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v2{vertical-align:-69.120000px;}
.v4{vertical-align:-61.920000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls24{letter-spacing:-1.524000px;}
.ls15{letter-spacing:-1.464000px;}
.lsd{letter-spacing:-1.440000px;}
.ls33{letter-spacing:-1.422000px;}
.ls34{letter-spacing:-0.972000px;}
.ls3a{letter-spacing:-0.936000px;}
.lse{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.678000px;}
.ls32{letter-spacing:-0.544200px;}
.ls39{letter-spacing:-0.486600px;}
.ls10{letter-spacing:-0.466800px;}
.ls1b{letter-spacing:-0.031680px;}
.lsa{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012960px;}
.ls6{letter-spacing:0.020160px;}
.ls1f{letter-spacing:0.032160px;}
.ls25{letter-spacing:0.099840px;}
.ls16{letter-spacing:0.140160px;}
.ls28{letter-spacing:0.164160px;}
.ls9{letter-spacing:0.316800px;}
.ls23{letter-spacing:0.342720px;}
.lsb{letter-spacing:0.414600px;}
.lsc{letter-spacing:0.466800px;}
.ls0{letter-spacing:0.720000px;}
.ls1a{letter-spacing:0.864000px;}
.ls27{letter-spacing:1.460160px;}
.ls2a{letter-spacing:1.944000px;}
.ls14{letter-spacing:2.160000px;}
.ls26{letter-spacing:3.600000px;}
.ls5{letter-spacing:3.720000px;}
.ls4{letter-spacing:5.040000px;}
.ls21{letter-spacing:6.480000px;}
.ls17{letter-spacing:9.360000px;}
.ls19{letter-spacing:10.800000px;}
.ls18{letter-spacing:12.240000px;}
.ls22{letter-spacing:15.240000px;}
.ls2c{letter-spacing:18.000000px;}
.ls1e{letter-spacing:19.440000px;}
.ls1d{letter-spacing:20.880000px;}
.ls1{letter-spacing:20.892000px;}
.ls12{letter-spacing:23.760000px;}
.ls1c{letter-spacing:26.640000px;}
.ls13{letter-spacing:28.080000px;}
.ls30{letter-spacing:29.520000px;}
.ls2e{letter-spacing:30.960000px;}
.ls2f{letter-spacing:31.080000px;}
.ls3{letter-spacing:32.400000px;}
.ls31{letter-spacing:35.280000px;}
.ls29{letter-spacing:36.720000px;}
.ls7{letter-spacing:45.360000px;}
.ls11{letter-spacing:75.600000px;}
.ls2{letter-spacing:111.612000px;}
.ls8{letter-spacing:154.800000px;}
.ls37{letter-spacing:163.198560px;}
.ls36{letter-spacing:164.638560px;}
.ls35{letter-spacing:193.438560px;}
.ls2d{letter-spacing:193.558560px;}
.ls2b{letter-spacing:194.998560px;}
.ls38{letter-spacing:1155.216000px;}
.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;}
}
.ws2{word-spacing:-15.586800px;}
.ws1{word-spacing:-15.534600px;}
.ws9{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.wsa{word-spacing:-15.088320px;}
.ws7{word-spacing:-14.653200px;}
.ws11{word-spacing:-14.633400px;}
.wse{word-spacing:-14.575800px;}
.wsd{word-spacing:-14.400000px;}
.ws12{word-spacing:-14.184000px;}
.ws10{word-spacing:-14.148000px;}
.wsf{word-spacing:-13.698000px;}
.ws3{word-spacing:-13.680000px;}
.wsc{word-spacing:-13.596000px;}
.ws4{word-spacing:-12.240000px;}
.ws6{word-spacing:-9.732960px;}
.wsb{word-spacing:-9.720000px;}
.ws5{word-spacing:-9.000000px;}
.ws8{word-spacing:0.000000px;}
._3b{margin-left:-16.093440px;}
._3a{margin-left:-13.213440px;}
._2d{margin-left:-8.581920px;}
._2c{margin-left:-5.880960px;}
._24{margin-left:-3.870720px;}
._2{margin-left:-2.856000px;}
._0{margin-left:-1.440000px;}
._1{width:1.108320px;}
._3{width:2.408640px;}
._11{width:3.665760px;}
._f{width:4.721760px;}
._e{width:6.054240px;}
._10{width:7.118880px;}
._13{width:8.136960px;}
._b{width:9.948480px;}
._c{width:11.672640px;}
._d{width:12.900960px;}
._12{width:14.089920px;}
._17{width:16.450560px;}
._22{width:17.864640px;}
._23{width:19.244640px;}
._8{width:20.649600px;}
._21{width:22.178880px;}
._18{width:23.768640px;}
._19{width:25.587840px;}
._32{width:27.144000px;}
._1c{width:28.161120px;}
._1a{width:29.218560px;}
._4{width:30.357120px;}
._5{width:31.721760px;}
._26{width:33.180480px;}
._31{width:34.242240px;}
._25{width:35.444160px;}
._28{width:37.172160px;}
._27{width:39.530880px;}
._16{width:41.556960px;}
._14{width:43.050240px;}
._15{width:44.669760px;}
._1b{width:46.317600px;}
._2a{width:47.389920px;}
._29{width:48.614400px;}
._3d{width:49.869120px;}
._3c{width:50.955360px;}
._37{width:52.001280px;}
._38{width:53.399520px;}
._2b{width:55.038720px;}
._2e{width:57.746880px;}
._2f{width:58.856160px;}
._30{width:60.488640px;}
._39{width:62.076960px;}
._33{width:64.834560px;}
._34{width:66.178560px;}
._7{width:67.496640px;}
._6{width:68.949120px;}
._20{width:71.887680px;}
._1f{width:73.054560px;}
._1d{width:75.104640px;}
._1e{width:76.509120px;}
._3f{width:93.260160px;}
._3e{width:94.711680px;}
._9{width:105.284160px;}
._a{width:106.603200px;}
._36{width:136.794240px;}
._35{width:228.965760px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs3{font-size:38.880000px;}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:3.600000px;}
.y77{bottom:3.630000px;}
.y7a{bottom:20.520000px;}
.y74{bottom:20.880000px;}
.y6d{bottom:21.600000px;}
.y2{bottom:24.480000px;}
.y1{bottom:65.520000px;}
.yf4{bottom:102.600000px;}
.ye3{bottom:102.960000px;}
.y39{bottom:104.400000px;}
.y8b{bottom:104.760000px;}
.yb5{bottom:106.920000px;}
.y68{bottom:113.436000px;}
.y8a{bottom:118.836000px;}
.y38{bottom:119.916000px;}
.ye2{bottom:120.276000px;}
.yb4{bottom:124.236000px;}
.y67{bottom:130.716000px;}
.yf3{bottom:133.596000px;}
.y37{bottom:135.756000px;}
.ye1{bottom:137.556000px;}
.yb3{bottom:141.156000px;}
.y66{bottom:147.996000px;}
.ye0{bottom:154.830000px;}
.yb2{bottom:158.430000px;}
.yf2{bottom:164.910000px;}
.y65{bottom:165.270000px;}
.y36{bottom:170.310000px;}
.ydf{bottom:172.110000px;}
.yb1{bottom:175.710000px;}
.yf1{bottom:181.830000px;}
.y64{bottom:182.190000px;}
.y35{bottom:187.590000px;}
.yde{bottom:189.390000px;}
.yb0{bottom:192.990000px;}
.yf0{bottom:196.230000px;}
.y63{bottom:199.470000px;}
.y34{bottom:204.870000px;}
.ydd{bottom:206.670000px;}
.yaf{bottom:210.270000px;}
.yef{bottom:213.510000px;}
.y62{bottom:216.750000px;}
.y33{bottom:222.195000px;}
.ydc{bottom:223.635000px;}
.yae{bottom:227.595000px;}
.yee{bottom:230.835000px;}
.y61{bottom:234.075000px;}
.y32{bottom:239.475000px;}
.ydb{bottom:240.915000px;}
.yad{bottom:244.875000px;}
.yed{bottom:247.755000px;}
.y60{bottom:251.355000px;}
.y31{bottom:256.395000px;}
.yda{bottom:258.195000px;}
.yac{bottom:262.155000px;}
.yec{bottom:264.675000px;}
.y5f{bottom:268.635000px;}
.y30{bottom:273.675000px;}
.yd9{bottom:275.475000px;}
.yeb{bottom:279.075000px;}
.yab{bottom:279.435000px;}
.y5e{bottom:285.915000px;}
.y2f{bottom:290.955000px;}
.yd8{bottom:292.755000px;}
.yea{bottom:295.995000px;}
.yaa{bottom:296.715000px;}
.y5d{bottom:303.195000px;}
.y2e{bottom:308.235000px;}
.yd7{bottom:310.035000px;}
.ye9{bottom:311.475000px;}
.ya9{bottom:313.995000px;}
.y5c{bottom:320.475000px;}
.y2d{bottom:325.545000px;}
.yd6{bottom:327.345000px;}
.y89{bottom:334.545000px;}
.y5b{bottom:337.785000px;}
.y2c{bottom:342.825000px;}
.ye8{bottom:344.265000px;}
.yd5{bottom:344.625000px;}
.ya8{bottom:348.225000px;}
.y88{bottom:348.585000px;}
.y5a{bottom:355.065000px;}
.y2b{bottom:360.105000px;}
.ye7{bottom:361.185000px;}
.yd4{bottom:361.905000px;}
.ya7{bottom:365.505000px;}
.y59{bottom:371.985000px;}
.ye6{bottom:375.585000px;}
.y2a{bottom:377.025000px;}
.yd3{bottom:379.185000px;}
.ya6{bottom:382.785000px;}
.y58{bottom:389.265000px;}
.ye5{bottom:392.505000px;}
.y29{bottom:394.305000px;}
.yd2{bottom:396.465000px;}
.ya5{bottom:400.065000px;}
.y57{bottom:406.545000px;}
.ye4{bottom:409.425000px;}
.y28{bottom:411.945000px;}
.yd1{bottom:413.385000px;}
.ya4{bottom:417.345000px;}
.y56{bottom:423.825000px;}
.y27{bottom:429.270000px;}
.yd0{bottom:430.710000px;}
.ya3{bottom:434.670000px;}
.y55{bottom:441.150000px;}
.y26{bottom:446.550000px;}
.ycf{bottom:447.990000px;}
.ya2{bottom:451.950000px;}
.y54{bottom:458.430000px;}
.y25{bottom:463.470000px;}
.yce{bottom:465.270000px;}
.ya1{bottom:469.230000px;}
.y53{bottom:475.710000px;}
.y24{bottom:480.750000px;}
.ycd{bottom:482.550000px;}
.ya0{bottom:486.510000px;}
.y52{bottom:492.990000px;}
.y23{bottom:498.030000px;}
.ycc{bottom:499.830000px;}
.y9f{bottom:503.790000px;}
.y51{bottom:510.270000px;}
.y22{bottom:515.310000px;}
.ycb{bottom:517.110000px;}
.y9e{bottom:521.070000px;}
.y50{bottom:527.550000px;}
.y21{bottom:532.620000px;}
.yca{bottom:534.420000px;}
.y9d{bottom:538.020000px;}
.y4f{bottom:544.860000px;}
.y20{bottom:549.900000px;}
.yc9{bottom:551.700000px;}
.y87{bottom:553.860000px;}
.y9c{bottom:555.300000px;}
.y6a{bottom:561.780000px;}
.y4e{bottom:562.140000px;}
.y1f{bottom:567.180000px;}
.yc8{bottom:568.980000px;}
.y86{bottom:571.140000px;}
.y9b{bottom:572.580000px;}
.y4d{bottom:579.060000px;}
.y1e{bottom:584.460000px;}
.yc7{bottom:585.900000px;}
.y85{bottom:588.060000px;}
.y9a{bottom:589.860000px;}
.y4c{bottom:596.340000px;}
.y1d{bottom:601.740000px;}
.yc6{bottom:602.460000px;}
.y84{bottom:605.340000px;}
.y99{bottom:607.140000px;}
.y4b{bottom:613.620000px;}
.yc5{bottom:617.220000px;}
.y1c{bottom:619.020000px;}
.y83{bottom:622.620000px;}
.y98{bottom:624.420000px;}
.y4a{bottom:630.900000px;}
.yc4{bottom:634.500000px;}
.y1b{bottom:636.300000px;}
.y82{bottom:639.930000px;}
.y97{bottom:641.730000px;}
.y49{bottom:648.210000px;}
.yc3{bottom:651.810000px;}
.y1a{bottom:653.250000px;}
.y81{bottom:657.210000px;}
.y96{bottom:659.010000px;}
.y48{bottom:665.490000px;}
.yc2{bottom:669.090000px;}
.y19{bottom:670.530000px;}
.y80{bottom:674.490000px;}
.y95{bottom:676.290000px;}
.y47{bottom:682.770000px;}
.yc1{bottom:686.370000px;}
.y18{bottom:687.810000px;}
.y7f{bottom:691.770000px;}
.y94{bottom:693.570000px;}
.y46{bottom:700.050000px;}
.yc0{bottom:703.290000px;}
.y17{bottom:705.090000px;}
.y7e{bottom:709.050000px;}
.y93{bottom:710.850000px;}
.y45{bottom:717.330000px;}
.ybf{bottom:720.570000px;}
.y16{bottom:722.370000px;}
.y7d{bottom:726.330000px;}
.y92{bottom:727.770000px;}
.y44{bottom:734.610000px;}
.ybe{bottom:737.850000px;}
.y15{bottom:739.290000px;}
.y7c{bottom:743.655000px;}
.y91{bottom:745.095000px;}
.y43{bottom:751.935000px;}
.ybd{bottom:755.175000px;}
.y14{bottom:756.615000px;}
.y7b{bottom:760.935000px;}
.y90{bottom:762.375000px;}
.y42{bottom:768.855000px;}
.ybc{bottom:772.455000px;}
.y13{bottom:774.255000px;}
.y79{bottom:775.335000px;}
.y8f{bottom:779.655000px;}
.y41{bottom:786.135000px;}
.ybb{bottom:789.735000px;}
.y12{bottom:791.535000px;}
.y8e{bottom:796.935000px;}
.y40{bottom:803.415000px;}
.yba{bottom:807.015000px;}
.y11{bottom:808.455000px;}
.y78{bottom:810.255000px;}
.y8d{bottom:813.855000px;}
.y3f{bottom:820.695000px;}
.y10{bottom:823.935000px;}
.yb9{bottom:824.295000px;}
.y8c{bottom:827.895000px;}
.y3e{bottom:837.975000px;}
.yf{bottom:839.055000px;}
.yb8{bottom:841.575000px;}
.y76{bottom:845.535000px;}
.ye{bottom:855.285000px;}
.yb7{bottom:858.525000px;}
.y75{bottom:863.565000px;}
.yd{bottom:872.565000px;}
.yb6{bottom:875.445000px;}
.y73{bottom:881.565000px;}
.yc{bottom:889.845000px;}
.yb{bottom:906.765000px;}
.y3d{bottom:907.125000px;}
.y72{bottom:916.845000px;}
.ya{bottom:924.045000px;}
.y3c{bottom:924.405000px;}
.y71{bottom:934.845000px;}
.y9{bottom:941.325000px;}
.y3b{bottom:941.685000px;}
.y70{bottom:952.890000px;}
.y8{bottom:958.650000px;}
.y3a{bottom:959.010000px;}
.y6c{bottom:970.890000px;}
.y7{bottom:975.930000px;}
.y6e{bottom:988.890000px;}
.y6{bottom:993.210000px;}
.y69{bottom:1010.130000px;}
.y5{bottom:1010.490000px;}
.y6b{bottom:1027.410000px;}
.y4{bottom:1027.770000px;}
.y3{bottom:1045.050000px;}
.hd{height:17.280000px;}
.he{height:17.316000px;}
.h14{height:29.678906px;}
.h10{height:34.200000px;}
.hf{height:34.560000px;}
.hc{height:35.280000px;}
.h11{height:46.638281px;}
.h13{height:47.891250px;}
.h5{height:52.299844px;}
.h8{height:53.704687px;}
.hb{height:54.219375px;}
.h7{height:55.147500px;}
.h4{height:59.328281px;}
.h2{height:59.357813px;}
.h9{height:59.758594px;}
.ha{height:59.878594px;}
.h6{height:60.952500px;}
.h12{height:62.163910px;}
.h3{height:70.664062px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.w6{width:126.036000px;}
.w5{width:126.072000px;}
.w3{width:209.265000px;}
.w4{width:379.980000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x17{left:7.560000px;}
.x14{left:17.640000px;}
.x11{left:25.560000px;}
.x1a{left:31.680000px;}
.x18{left:37.080000px;}
.x19{left:40.680000px;}
.x3{left:51.155989px;}
.x13{left:62.310000px;}
.x8{left:68.795989px;}
.x6{left:74.195989px;}
.xd{left:76.715989px;}
.x10{left:88.235989px;}
.x2{left:93.635989px;}
.xf{left:103.391989px;}
.xc{left:119.231989px;}
.x7{left:128.231989px;}
.x1f{left:130.031989px;}
.xa{left:199.184989px;}
.x20{left:209.624989px;}
.x4{left:248.909989px;}
.x12{left:261.510000px;}
.x9{left:279.869989px;}
.x1{left:337.859989px;}
.x1c{left:343.619989px;}
.x5{left:349.019989px;}
.xb{left:363.419989px;}
.x1e{left:369.539989px;}
.x15{left:388.650000px;}
.x16{left:515.445000px;}
.x1b{left:537.404989px;}
.x1d{left:568.004989px;}
.xe{left:581.729989px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v4{vertical-align:-55.040000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls24{letter-spacing:-1.354667pt;}
.ls15{letter-spacing:-1.301333pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls33{letter-spacing:-1.264000pt;}
.ls34{letter-spacing:-0.864000pt;}
.ls3a{letter-spacing:-0.832000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.602667pt;}
.ls32{letter-spacing:-0.483733pt;}
.ls39{letter-spacing:-0.432533pt;}
.ls10{letter-spacing:-0.414933pt;}
.ls1b{letter-spacing:-0.028160pt;}
.lsa{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011520pt;}
.ls6{letter-spacing:0.017920pt;}
.ls1f{letter-spacing:0.028587pt;}
.ls25{letter-spacing:0.088747pt;}
.ls16{letter-spacing:0.124587pt;}
.ls28{letter-spacing:0.145920pt;}
.ls9{letter-spacing:0.281600pt;}
.ls23{letter-spacing:0.304640pt;}
.lsb{letter-spacing:0.368533pt;}
.lsc{letter-spacing:0.414933pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.768000pt;}
.ls27{letter-spacing:1.297920pt;}
.ls2a{letter-spacing:1.728000pt;}
.ls14{letter-spacing:1.920000pt;}
.ls26{letter-spacing:3.200000pt;}
.ls5{letter-spacing:3.306667pt;}
.ls4{letter-spacing:4.480000pt;}
.ls21{letter-spacing:5.760000pt;}
.ls17{letter-spacing:8.320000pt;}
.ls19{letter-spacing:9.600000pt;}
.ls18{letter-spacing:10.880000pt;}
.ls22{letter-spacing:13.546667pt;}
.ls2c{letter-spacing:16.000000pt;}
.ls1e{letter-spacing:17.280000pt;}
.ls1d{letter-spacing:18.560000pt;}
.ls1{letter-spacing:18.570667pt;}
.ls12{letter-spacing:21.120000pt;}
.ls1c{letter-spacing:23.680000pt;}
.ls13{letter-spacing:24.960000pt;}
.ls30{letter-spacing:26.240000pt;}
.ls2e{letter-spacing:27.520000pt;}
.ls2f{letter-spacing:27.626667pt;}
.ls3{letter-spacing:28.800000pt;}
.ls31{letter-spacing:31.360000pt;}
.ls29{letter-spacing:32.640000pt;}
.ls7{letter-spacing:40.320000pt;}
.ls11{letter-spacing:67.200000pt;}
.ls2{letter-spacing:99.210667pt;}
.ls8{letter-spacing:137.600000pt;}
.ls37{letter-spacing:145.065387pt;}
.ls36{letter-spacing:146.345387pt;}
.ls35{letter-spacing:171.945387pt;}
.ls2d{letter-spacing:172.052053pt;}
.ls2b{letter-spacing:173.332053pt;}
.ls38{letter-spacing:1026.858667pt;}
.ws2{word-spacing:-13.854933pt;}
.ws1{word-spacing:-13.808533pt;}
.ws9{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.411840pt;}
.ws7{word-spacing:-13.025067pt;}
.ws11{word-spacing:-13.007467pt;}
.wse{word-spacing:-12.956267pt;}
.wsd{word-spacing:-12.800000pt;}
.ws12{word-spacing:-12.608000pt;}
.ws10{word-spacing:-12.576000pt;}
.wsf{word-spacing:-12.176000pt;}
.ws3{word-spacing:-12.160000pt;}
.wsc{word-spacing:-12.085333pt;}
.ws4{word-spacing:-10.880000pt;}
.ws6{word-spacing:-8.651520pt;}
.wsb{word-spacing:-8.640000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws8{word-spacing:0.000000pt;}
._3b{margin-left:-14.305280pt;}
._3a{margin-left:-11.745280pt;}
._2d{margin-left:-7.628373pt;}
._2c{margin-left:-5.227520pt;}
._24{margin-left:-3.440640pt;}
._2{margin-left:-2.538667pt;}
._0{margin-left:-1.280000pt;}
._1{width:0.985173pt;}
._3{width:2.141013pt;}
._11{width:3.258453pt;}
._f{width:4.197120pt;}
._e{width:5.381547pt;}
._10{width:6.327893pt;}
._13{width:7.232853pt;}
._b{width:8.843093pt;}
._c{width:10.375680pt;}
._d{width:11.467520pt;}
._12{width:12.524373pt;}
._17{width:14.622720pt;}
._22{width:15.879680pt;}
._23{width:17.106347pt;}
._8{width:18.355200pt;}
._21{width:19.714560pt;}
._18{width:21.127680pt;}
._19{width:22.744747pt;}
._32{width:24.128000pt;}
._1c{width:25.032107pt;}
._1a{width:25.972053pt;}
._4{width:26.984107pt;}
._5{width:28.197120pt;}
._26{width:29.493760pt;}
._31{width:30.437547pt;}
._25{width:31.505920pt;}
._28{width:33.041920pt;}
._27{width:35.138560pt;}
._16{width:36.939520pt;}
._14{width:38.266880pt;}
._15{width:39.706453pt;}
._1b{width:41.171200pt;}
._2a{width:42.124373pt;}
._29{width:43.212800pt;}
._3d{width:44.328107pt;}
._3c{width:45.293653pt;}
._37{width:46.223360pt;}
._38{width:47.466240pt;}
._2b{width:48.923307pt;}
._2e{width:51.330560pt;}
._2f{width:52.316587pt;}
._30{width:53.767680pt;}
._39{width:55.179520pt;}
._33{width:57.630720pt;}
._34{width:58.825387pt;}
._7{width:59.997013pt;}
._6{width:61.288107pt;}
._20{width:63.900160pt;}
._1f{width:64.937387pt;}
._1d{width:66.759680pt;}
._1e{width:68.008107pt;}
._3f{width:82.897920pt;}
._3e{width:84.188160pt;}
._9{width:93.585920pt;}
._a{width:94.758400pt;}
._36{width:121.594880pt;}
._35{width:203.525120pt;}
.fs5{font-size:26.880000pt;}
.fs3{font-size:34.560000pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:3.200000pt;}
.y77{bottom:3.226667pt;}
.y7a{bottom:18.240000pt;}
.y74{bottom:18.560000pt;}
.y6d{bottom:19.200000pt;}
.y2{bottom:21.760000pt;}
.y1{bottom:58.240000pt;}
.yf4{bottom:91.200000pt;}
.ye3{bottom:91.520000pt;}
.y39{bottom:92.800000pt;}
.y8b{bottom:93.120000pt;}
.yb5{bottom:95.040000pt;}
.y68{bottom:100.832000pt;}
.y8a{bottom:105.632000pt;}
.y38{bottom:106.592000pt;}
.ye2{bottom:106.912000pt;}
.yb4{bottom:110.432000pt;}
.y67{bottom:116.192000pt;}
.yf3{bottom:118.752000pt;}
.y37{bottom:120.672000pt;}
.ye1{bottom:122.272000pt;}
.yb3{bottom:125.472000pt;}
.y66{bottom:131.552000pt;}
.ye0{bottom:137.626667pt;}
.yb2{bottom:140.826667pt;}
.yf2{bottom:146.586667pt;}
.y65{bottom:146.906667pt;}
.y36{bottom:151.386667pt;}
.ydf{bottom:152.986667pt;}
.yb1{bottom:156.186667pt;}
.yf1{bottom:161.626667pt;}
.y64{bottom:161.946667pt;}
.y35{bottom:166.746667pt;}
.yde{bottom:168.346667pt;}
.yb0{bottom:171.546667pt;}
.yf0{bottom:174.426667pt;}
.y63{bottom:177.306667pt;}
.y34{bottom:182.106667pt;}
.ydd{bottom:183.706667pt;}
.yaf{bottom:186.906667pt;}
.yef{bottom:189.786667pt;}
.y62{bottom:192.666667pt;}
.y33{bottom:197.506667pt;}
.ydc{bottom:198.786667pt;}
.yae{bottom:202.306667pt;}
.yee{bottom:205.186667pt;}
.y61{bottom:208.066667pt;}
.y32{bottom:212.866667pt;}
.ydb{bottom:214.146667pt;}
.yad{bottom:217.666667pt;}
.yed{bottom:220.226667pt;}
.y60{bottom:223.426667pt;}
.y31{bottom:227.906667pt;}
.yda{bottom:229.506667pt;}
.yac{bottom:233.026667pt;}
.yec{bottom:235.266667pt;}
.y5f{bottom:238.786667pt;}
.y30{bottom:243.266667pt;}
.yd9{bottom:244.866667pt;}
.yeb{bottom:248.066667pt;}
.yab{bottom:248.386667pt;}
.y5e{bottom:254.146667pt;}
.y2f{bottom:258.626667pt;}
.yd8{bottom:260.226667pt;}
.yea{bottom:263.106667pt;}
.yaa{bottom:263.746667pt;}
.y5d{bottom:269.506667pt;}
.y2e{bottom:273.986667pt;}
.yd7{bottom:275.586667pt;}
.ye9{bottom:276.866667pt;}
.ya9{bottom:279.106667pt;}
.y5c{bottom:284.866667pt;}
.y2d{bottom:289.373333pt;}
.yd6{bottom:290.973333pt;}
.y89{bottom:297.373333pt;}
.y5b{bottom:300.253333pt;}
.y2c{bottom:304.733333pt;}
.ye8{bottom:306.013333pt;}
.yd5{bottom:306.333333pt;}
.ya8{bottom:309.533333pt;}
.y88{bottom:309.853333pt;}
.y5a{bottom:315.613333pt;}
.y2b{bottom:320.093333pt;}
.ye7{bottom:321.053333pt;}
.yd4{bottom:321.693333pt;}
.ya7{bottom:324.893333pt;}
.y59{bottom:330.653333pt;}
.ye6{bottom:333.853333pt;}
.y2a{bottom:335.133333pt;}
.yd3{bottom:337.053333pt;}
.ya6{bottom:340.253333pt;}
.y58{bottom:346.013333pt;}
.ye5{bottom:348.893333pt;}
.y29{bottom:350.493333pt;}
.yd2{bottom:352.413333pt;}
.ya5{bottom:355.613333pt;}
.y57{bottom:361.373333pt;}
.ye4{bottom:363.933333pt;}
.y28{bottom:366.173333pt;}
.yd1{bottom:367.453333pt;}
.ya4{bottom:370.973333pt;}
.y56{bottom:376.733333pt;}
.y27{bottom:381.573333pt;}
.yd0{bottom:382.853333pt;}
.ya3{bottom:386.373333pt;}
.y55{bottom:392.133333pt;}
.y26{bottom:396.933333pt;}
.ycf{bottom:398.213333pt;}
.ya2{bottom:401.733333pt;}
.y54{bottom:407.493333pt;}
.y25{bottom:411.973333pt;}
.yce{bottom:413.573333pt;}
.ya1{bottom:417.093333pt;}
.y53{bottom:422.853333pt;}
.y24{bottom:427.333333pt;}
.ycd{bottom:428.933333pt;}
.ya0{bottom:432.453333pt;}
.y52{bottom:438.213333pt;}
.y23{bottom:442.693333pt;}
.ycc{bottom:444.293333pt;}
.y9f{bottom:447.813333pt;}
.y51{bottom:453.573333pt;}
.y22{bottom:458.053333pt;}
.ycb{bottom:459.653333pt;}
.y9e{bottom:463.173333pt;}
.y50{bottom:468.933333pt;}
.y21{bottom:473.440000pt;}
.yca{bottom:475.040000pt;}
.y9d{bottom:478.240000pt;}
.y4f{bottom:484.320000pt;}
.y20{bottom:488.800000pt;}
.yc9{bottom:490.400000pt;}
.y87{bottom:492.320000pt;}
.y9c{bottom:493.600000pt;}
.y6a{bottom:499.360000pt;}
.y4e{bottom:499.680000pt;}
.y1f{bottom:504.160000pt;}
.yc8{bottom:505.760000pt;}
.y86{bottom:507.680000pt;}
.y9b{bottom:508.960000pt;}
.y4d{bottom:514.720000pt;}
.y1e{bottom:519.520000pt;}
.yc7{bottom:520.800000pt;}
.y85{bottom:522.720000pt;}
.y9a{bottom:524.320000pt;}
.y4c{bottom:530.080000pt;}
.y1d{bottom:534.880000pt;}
.yc6{bottom:535.520000pt;}
.y84{bottom:538.080000pt;}
.y99{bottom:539.680000pt;}
.y4b{bottom:545.440000pt;}
.yc5{bottom:548.640000pt;}
.y1c{bottom:550.240000pt;}
.y83{bottom:553.440000pt;}
.y98{bottom:555.040000pt;}
.y4a{bottom:560.800000pt;}
.yc4{bottom:564.000000pt;}
.y1b{bottom:565.600000pt;}
.y82{bottom:568.826667pt;}
.y97{bottom:570.426667pt;}
.y49{bottom:576.186667pt;}
.yc3{bottom:579.386667pt;}
.y1a{bottom:580.666667pt;}
.y81{bottom:584.186667pt;}
.y96{bottom:585.786667pt;}
.y48{bottom:591.546667pt;}
.yc2{bottom:594.746667pt;}
.y19{bottom:596.026667pt;}
.y80{bottom:599.546667pt;}
.y95{bottom:601.146667pt;}
.y47{bottom:606.906667pt;}
.yc1{bottom:610.106667pt;}
.y18{bottom:611.386667pt;}
.y7f{bottom:614.906667pt;}
.y94{bottom:616.506667pt;}
.y46{bottom:622.266667pt;}
.yc0{bottom:625.146667pt;}
.y17{bottom:626.746667pt;}
.y7e{bottom:630.266667pt;}
.y93{bottom:631.866667pt;}
.y45{bottom:637.626667pt;}
.ybf{bottom:640.506667pt;}
.y16{bottom:642.106667pt;}
.y7d{bottom:645.626667pt;}
.y92{bottom:646.906667pt;}
.y44{bottom:652.986667pt;}
.ybe{bottom:655.866667pt;}
.y15{bottom:657.146667pt;}
.y7c{bottom:661.026667pt;}
.y91{bottom:662.306667pt;}
.y43{bottom:668.386667pt;}
.ybd{bottom:671.266667pt;}
.y14{bottom:672.546667pt;}
.y7b{bottom:676.386667pt;}
.y90{bottom:677.666667pt;}
.y42{bottom:683.426667pt;}
.ybc{bottom:686.626667pt;}
.y13{bottom:688.226667pt;}
.y79{bottom:689.186667pt;}
.y8f{bottom:693.026667pt;}
.y41{bottom:698.786667pt;}
.ybb{bottom:701.986667pt;}
.y12{bottom:703.586667pt;}
.y8e{bottom:708.386667pt;}
.y40{bottom:714.146667pt;}
.yba{bottom:717.346667pt;}
.y11{bottom:718.626667pt;}
.y78{bottom:720.226667pt;}
.y8d{bottom:723.426667pt;}
.y3f{bottom:729.506667pt;}
.y10{bottom:732.386667pt;}
.yb9{bottom:732.706667pt;}
.y8c{bottom:735.906667pt;}
.y3e{bottom:744.866667pt;}
.yf{bottom:745.826667pt;}
.yb8{bottom:748.066667pt;}
.y76{bottom:751.586667pt;}
.ye{bottom:760.253333pt;}
.yb7{bottom:763.133333pt;}
.y75{bottom:767.613333pt;}
.yd{bottom:775.613333pt;}
.yb6{bottom:778.173333pt;}
.y73{bottom:783.613333pt;}
.yc{bottom:790.973333pt;}
.yb{bottom:806.013333pt;}
.y3d{bottom:806.333333pt;}
.y72{bottom:814.973333pt;}
.ya{bottom:821.373333pt;}
.y3c{bottom:821.693333pt;}
.y71{bottom:830.973333pt;}
.y9{bottom:836.733333pt;}
.y3b{bottom:837.053333pt;}
.y70{bottom:847.013333pt;}
.y8{bottom:852.133333pt;}
.y3a{bottom:852.453333pt;}
.y6c{bottom:863.013333pt;}
.y7{bottom:867.493333pt;}
.y6e{bottom:879.013333pt;}
.y6{bottom:882.853333pt;}
.y69{bottom:897.893333pt;}
.y5{bottom:898.213333pt;}
.y6b{bottom:913.253333pt;}
.y4{bottom:913.573333pt;}
.y3{bottom:928.933333pt;}
.hd{height:15.360000pt;}
.he{height:15.392000pt;}
.h14{height:26.381250pt;}
.h10{height:30.400000pt;}
.hf{height:30.720000pt;}
.hc{height:31.360000pt;}
.h11{height:41.456250pt;}
.h13{height:42.570000pt;}
.h5{height:46.488750pt;}
.h8{height:47.737500pt;}
.hb{height:48.195000pt;}
.h7{height:49.020000pt;}
.h4{height:52.736250pt;}
.h2{height:52.762500pt;}
.h9{height:53.118750pt;}
.ha{height:53.225417pt;}
.h6{height:54.180000pt;}
.h12{height:55.256809pt;}
.h3{height:62.812500pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.w6{width:112.032000pt;}
.w5{width:112.064000pt;}
.w3{width:186.013333pt;}
.w4{width:337.760000pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x17{left:6.720000pt;}
.x14{left:15.680000pt;}
.x11{left:22.720000pt;}
.x1a{left:28.160000pt;}
.x18{left:32.960000pt;}
.x19{left:36.160000pt;}
.x3{left:45.471990pt;}
.x13{left:55.386667pt;}
.x8{left:61.151990pt;}
.x6{left:65.951990pt;}
.xd{left:68.191990pt;}
.x10{left:78.431990pt;}
.x2{left:83.231990pt;}
.xf{left:91.903990pt;}
.xc{left:105.983990pt;}
.x7{left:113.983990pt;}
.x1f{left:115.583990pt;}
.xa{left:177.053324pt;}
.x20{left:186.333324pt;}
.x4{left:221.253324pt;}
.x12{left:232.453333pt;}
.x9{left:248.773324pt;}
.x1{left:300.319990pt;}
.x1c{left:305.439990pt;}
.x5{left:310.239990pt;}
.xb{left:323.039990pt;}
.x1e{left:328.479990pt;}
.x15{left:345.466667pt;}
.x16{left:458.173333pt;}
.x1b{left:477.693324pt;}
.x1d{left:504.893324pt;}
.xe{left:517.093324pt;}
}




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