
    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_e36af8cf60537de19d527719.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_6b3f4ec3c79a9207a47a3904.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_6110b95af8acbdfba1379476.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.761230;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_1181b29d47c38a29732005b1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.808105;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_cf8e3511ac7e6b58ab9e57fd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.871094;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_f573cc6253ac6fc071034bb3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls30{letter-spacing:-5.613696px;}
.ls31{letter-spacing:-5.258880px;}
.ls29{letter-spacing:-0.342144px;}
.lsc{letter-spacing:-0.310464px;}
.ls22{letter-spacing:-0.297792px;}
.ls34{letter-spacing:-0.285120px;}
.ls11{letter-spacing:-0.266112px;}
.ls35{letter-spacing:-0.259776px;}
.ls2e{letter-spacing:-0.253440px;}
.lsf{letter-spacing:-0.234432px;}
.ls10{letter-spacing:-0.221760px;}
.ls14{letter-spacing:-0.215424px;}
.lse{letter-spacing:-0.209088px;}
.ls21{letter-spacing:-0.202752px;}
.ls7{letter-spacing:-0.196416px;}
.ls6{letter-spacing:-0.190080px;}
.ls28{letter-spacing:-0.183744px;}
.ls18{letter-spacing:-0.177408px;}
.ls12{letter-spacing:-0.171072px;}
.ls8{letter-spacing:-0.164736px;}
.lsb{letter-spacing:-0.158400px;}
.ls15{letter-spacing:-0.152064px;}
.ls16{letter-spacing:-0.145728px;}
.ls24{letter-spacing:-0.139392px;}
.ls4{letter-spacing:-0.133056px;}
.ls2c{letter-spacing:-0.126720px;}
.ls13{letter-spacing:-0.120384px;}
.ls23{letter-spacing:-0.101376px;}
.ls19{letter-spacing:-0.095040px;}
.ls2f{letter-spacing:-0.076032px;}
.ls20{letter-spacing:-0.063360px;}
.ls17{letter-spacing:-0.050688px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.112752px;}
.ls2{letter-spacing:0.115200px;}
.ls3f{letter-spacing:0.275040px;}
.ls9{letter-spacing:0.283968px;}
.lsa{letter-spacing:0.417600px;}
.ls37{letter-spacing:0.838080px;}
.ls1f{letter-spacing:0.842400px;}
.ls42{letter-spacing:0.887040px;}
.ls38{letter-spacing:0.908640px;}
.ls2d{letter-spacing:1.515600px;}
.ls3a{letter-spacing:1.562400px;}
.ls3d{letter-spacing:2.155680px;}
.ls39{letter-spacing:2.258208px;}
.ls2a{letter-spacing:2.440800px;}
.ls3b{letter-spacing:2.803104px;}
.ls26{letter-spacing:3.314880px;}
.ls2b{letter-spacing:3.717360px;}
.ls3e{letter-spacing:4.774896px;}
.ls41{letter-spacing:4.900320px;}
.ls1a{letter-spacing:5.307840px;}
.ls3c{letter-spacing:5.555520px;}
.ls27{letter-spacing:6.200640px;}
.ls1c{letter-spacing:6.204960px;}
.ls36{letter-spacing:7.848000px;}
.ls1b{letter-spacing:8.462880px;}
.ls1d{letter-spacing:11.047392px;}
.ls1e{letter-spacing:11.047680px;}
.ls32{letter-spacing:13.750560px;}
.ls40{letter-spacing:16.973280px;}
.ls3{letter-spacing:19.921536px;}
.ls33{letter-spacing:21.009744px;}
.ls25{letter-spacing:23.145120px;}
.ls1{letter-spacing:1191.114144px;}
.ls0{letter-spacing:2005.099920px;}
.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;}
}
.ws1{word-spacing:-14.319360px;}
.ws8{word-spacing:-14.268672px;}
.ws14{word-spacing:-14.256000px;}
.wsb{word-spacing:-14.224320px;}
.ws18{word-spacing:-14.217984px;}
.wsc{word-spacing:-14.198976px;}
.ws17{word-spacing:-14.192640px;}
.ws5{word-spacing:-14.186304px;}
.ws13{word-spacing:-14.179968px;}
.wsd{word-spacing:-14.173632px;}
.ws12{word-spacing:-14.167296px;}
.ws2{word-spacing:-14.154624px;}
.ws6{word-spacing:-14.148288px;}
.wsa{word-spacing:-14.141952px;}
.ws0{word-spacing:-14.129280px;}
.ws19{word-spacing:-14.122944px;}
.ws10{word-spacing:-14.116608px;}
.wse{word-spacing:-14.110272px;}
.ws7{word-spacing:-14.103936px;}
.ws4{word-spacing:-14.097600px;}
.ws16{word-spacing:-14.084928px;}
.ws11{word-spacing:-14.065920px;}
.ws1a{word-spacing:-14.059584px;}
.ws15{word-spacing:-14.053248px;}
.wsf{word-spacing:-8.705664px;}
.ws3{word-spacing:-0.154512px;}
.ws9{word-spacing:0.000000px;}
._1d{margin-left:-4.417776px;}
._4{margin-left:-3.358080px;}
._10{margin-left:-2.154240px;}
._0{margin-left:-1.013760px;}
._2{width:1.013760px;}
._d{width:2.027520px;}
._3{width:3.041280px;}
._a{width:4.435200px;}
._c{width:5.754816px;}
._6{width:6.969600px;}
._7{width:8.019936px;}
._b{width:9.847584px;}
._e{width:10.871136px;}
._5{width:12.798720px;}
._18{width:13.886784px;}
._12{width:15.168384px;}
._13{width:16.853760px;}
._9{width:17.867520px;}
._8{width:19.261440px;}
._f{width:20.772720px;}
._14{width:22.112640px;}
._11{width:23.253120px;}
._1c{width:24.686208px;}
._1b{width:25.787520px;}
._2b{width:26.864640px;}
._1e{width:28.258560px;}
._31{width:29.272320px;}
._15{width:31.575168px;}
._2c{width:32.693760px;}
._1a{width:36.346464px;}
._19{width:37.572480px;}
._24{width:41.374080px;}
._25{width:42.678864px;}
._27{width:55.186560px;}
._28{width:56.372832px;}
._2a{width:57.439296px;}
._29{width:79.073280px;}
._2d{width:86.613120px;}
._2e{width:87.688224px;}
._16{width:96.497280px;}
._30{width:128.611872px;}
._2f{width:129.634560px;}
._20{width:138.821760px;}
._1f{width:139.898880px;}
._23{width:159.603840px;}
._26{width:166.979664px;}
._21{width:176.964480px;}
._22{width:178.041600px;}
._17{width:189.330624px;}
._1{width:2478.560832px;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(237,0,0);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs0{font-size:63.360000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y70{bottom:4.500000px;}
.y94{bottom:4.560000px;}
.y7e{bottom:4.620000px;}
.ya2{bottom:4.680000px;}
.y76{bottom:4.740000px;}
.y9a{bottom:4.800000px;}
.y84{bottom:4.860000px;}
.yba{bottom:4.920000px;}
.yc2{bottom:4.980000px;}
.y74{bottom:5.040000px;}
.y98{bottom:5.100000px;}
.y82{bottom:5.160000px;}
.y92{bottom:5.220000px;}
.y7c{bottom:5.280000px;}
.ya0{bottom:5.340000px;}
.ybd{bottom:5.460000px;}
.y90{bottom:5.520000px;}
.y7a{bottom:5.580000px;}
.y9e{bottom:5.640000px;}
.y72{bottom:5.700000px;}
.y96{bottom:5.760000px;}
.y80{bottom:5.820000px;}
.ya4{bottom:5.880000px;}
.yc0{bottom:5.940000px;}
.y78{bottom:6.240000px;}
.y9c{bottom:6.300000px;}
.yf0{bottom:7.560000px;}
.yf6{bottom:11.940000px;}
.yec{bottom:13.080000px;}
.ye9{bottom:22.680000px;}
.ye2{bottom:24.000000px;}
.y8f{bottom:24.960000px;}
.ye0{bottom:26.340000px;}
.yef{bottom:27.000000px;}
.yf3{bottom:31.020000px;}
.yeb{bottom:32.520000px;}
.ye6{bottom:37.920000px;}
.ye8{bottom:41.760000px;}
.ye1{bottom:43.440000px;}
.y8e{bottom:44.040000px;}
.ydf{bottom:45.780000px;}
.yee{bottom:46.080000px;}
.yf5{bottom:48.960000px;}
.yf2{bottom:50.460000px;}
.yea{bottom:51.600000px;}
.ydd{bottom:54.600000px;}
.ye5{bottom:57.000000px;}
.y2{bottom:58.320000px;}
.ye4{bottom:76.080000px;}
.ybe{bottom:96.000000px;}
.yfe{bottom:100.800000px;}
.y6e{bottom:105.480000px;}
.y36{bottom:114.120000px;}
.ybc{bottom:115.500000px;}
.yfd{bottom:119.880000px;}
.y6d{bottom:124.920000px;}
.y35{bottom:133.560000px;}
.ybb{bottom:135.000000px;}
.yfc{bottom:138.960000px;}
.y6c{bottom:144.000000px;}
.y34{bottom:152.640000px;}
.yb9{bottom:156.000000px;}
.yfb{bottom:158.400000px;}
.y6b{bottom:163.440000px;}
.y33{bottom:172.080000px;}
.yb8{bottom:175.500000px;}
.yfa{bottom:177.480000px;}
.y6a{bottom:182.520000px;}
.y32{bottom:191.160000px;}
.yb7{bottom:195.000000px;}
.yf9{bottom:196.920000px;}
.y69{bottom:201.600000px;}
.y31{bottom:210.240000px;}
.yb6{bottom:216.000000px;}
.y68{bottom:221.040000px;}
.y30{bottom:229.680000px;}
.yf8{bottom:235.080000px;}
.yb5{bottom:235.500000px;}
.y67{bottom:240.120000px;}
.y2f{bottom:248.760000px;}
.yf7{bottom:254.520000px;}
.y66{bottom:259.560000px;}
.yb4{bottom:260.640000px;}
.y2e{bottom:268.200000px;}
.yf1{bottom:268.500000px;}
.yf4{bottom:270.000000px;}
.y65{bottom:278.640000px;}
.yb3{bottom:279.720000px;}
.y2d{bottom:287.280000px;}
.y64{bottom:297.720000px;}
.yb2{bottom:299.160000px;}
.y2c{bottom:306.360000px;}
.y63{bottom:317.160000px;}
.yb1{bottom:318.240000px;}
.y2b{bottom:325.800000px;}
.yed{bottom:333.000000px;}
.y62{bottom:336.240000px;}
.yb0{bottom:337.680000px;}
.y2a{bottom:344.880000px;}
.y61{bottom:355.680000px;}
.yaf{bottom:356.760000px;}
.y29{bottom:364.320000px;}
.y60{bottom:374.760000px;}
.yae{bottom:376.200000px;}
.y28{bottom:383.400000px;}
.ye3{bottom:393.000000px;}
.y5f{bottom:394.200000px;}
.yad{bottom:395.280000px;}
.y27{bottom:402.840000px;}
.y5e{bottom:413.280000px;}
.yac{bottom:414.360000px;}
.y26{bottom:421.920000px;}
.y5d{bottom:432.360000px;}
.yab{bottom:433.800000px;}
.y25{bottom:441.000000px;}
.y5c{bottom:451.800000px;}
.yaa{bottom:452.880000px;}
.ye7{bottom:459.000000px;}
.y24{bottom:460.440000px;}
.y5b{bottom:470.880000px;}
.ya9{bottom:472.320000px;}
.y23{bottom:479.520000px;}
.y5a{bottom:490.320000px;}
.ya8{bottom:491.400000px;}
.y22{bottom:498.960000px;}
.y59{bottom:509.400000px;}
.ya7{bottom:510.480000px;}
.ydc{bottom:516.000000px;}
.y21{bottom:518.040000px;}
.y58{bottom:528.480000px;}
.ya6{bottom:529.920000px;}
.y20{bottom:537.120000px;}
.ya5{bottom:544.500000px;}
.y57{bottom:547.920000px;}
.y1f{bottom:556.560000px;}
.ya3{bottom:564.000000px;}
.y56{bottom:567.000000px;}
.yde{bottom:574.500000px;}
.y1e{bottom:575.640000px;}
.ya1{bottom:585.000000px;}
.y55{bottom:586.440000px;}
.y1d{bottom:595.080000px;}
.y9f{bottom:604.500000px;}
.y54{bottom:605.520000px;}
.y1c{bottom:614.160000px;}
.y9d{bottom:624.000000px;}
.y53{bottom:624.600000px;}
.y1b{bottom:633.240000px;}
.ydb{bottom:634.500000px;}
.y9b{bottom:643.500000px;}
.y52{bottom:644.040000px;}
.y99{bottom:645.000000px;}
.y1a{bottom:652.680000px;}
.yda{bottom:660.240000px;}
.y51{bottom:663.120000px;}
.y97{bottom:664.500000px;}
.y19{bottom:671.760000px;}
.yd9{bottom:679.320000px;}
.y50{bottom:682.560000px;}
.y95{bottom:684.000000px;}
.y18{bottom:691.200000px;}
.yd8{bottom:698.760000px;}
.y4f{bottom:701.640000px;}
.y93{bottom:705.000000px;}
.y17{bottom:710.280000px;}
.yd7{bottom:717.840000px;}
.y4e{bottom:720.720000px;}
.y91{bottom:724.500000px;}
.y16{bottom:729.360000px;}
.yd6{bottom:736.920000px;}
.y4d{bottom:740.160000px;}
.y8d{bottom:744.000000px;}
.y15{bottom:748.800000px;}
.yd5{bottom:756.360000px;}
.y4c{bottom:759.240000px;}
.y14{bottom:767.880000px;}
.yd4{bottom:775.440000px;}
.y4b{bottom:778.680000px;}
.y13{bottom:787.320000px;}
.yd3{bottom:794.880000px;}
.y4a{bottom:797.760000px;}
.y12{bottom:806.400000px;}
.y8c{bottom:807.840000px;}
.yd2{bottom:813.960000px;}
.y49{bottom:816.840000px;}
.y11{bottom:825.480000px;}
.y8b{bottom:827.280000px;}
.yd1{bottom:833.400000px;}
.y48{bottom:836.280000px;}
.y10{bottom:844.920000px;}
.y8a{bottom:846.360000px;}
.yd0{bottom:852.480000px;}
.y47{bottom:855.360000px;}
.y89{bottom:865.800000px;}
.yf{bottom:869.400000px;}
.ycf{bottom:871.560000px;}
.y46{bottom:874.800000px;}
.y88{bottom:884.880000px;}
.ye{bottom:888.840000px;}
.yce{bottom:891.000000px;}
.y45{bottom:893.880000px;}
.y87{bottom:903.960000px;}
.yd{bottom:907.920000px;}
.ycd{bottom:910.080000px;}
.y44{bottom:912.960000px;}
.yc{bottom:921.600000px;}
.y86{bottom:923.400000px;}
.ycc{bottom:929.520000px;}
.y43{bottom:932.400000px;}
.y85{bottom:937.500000px;}
.yb{bottom:941.040000px;}
.ycb{bottom:948.600000px;}
.y42{bottom:951.480000px;}
.y83{bottom:958.500000px;}
.ya{bottom:960.120000px;}
.yca{bottom:967.680000px;}
.y41{bottom:970.920000px;}
.y81{bottom:978.000000px;}
.y9{bottom:979.560000px;}
.yc9{bottom:987.120000px;}
.y40{bottom:990.000000px;}
.y7f{bottom:997.500000px;}
.y8{bottom:999.720000px;}
.yc8{bottom:1006.200000px;}
.y3f{bottom:1009.440000px;}
.y7d{bottom:1018.500000px;}
.y7{bottom:1024.920000px;}
.yc7{bottom:1025.640000px;}
.y3e{bottom:1028.520000px;}
.y7b{bottom:1038.000000px;}
.yc6{bottom:1044.720000px;}
.y3d{bottom:1047.600000px;}
.y6{bottom:1049.760000px;}
.y79{bottom:1057.500000px;}
.yc5{bottom:1063.800000px;}
.y3c{bottom:1067.040000px;}
.y5{bottom:1068.840000px;}
.y77{bottom:1077.000000px;}
.y75{bottom:1078.500000px;}
.yc4{bottom:1083.240000px;}
.y3b{bottom:1086.120000px;}
.y4{bottom:1087.920000px;}
.y73{bottom:1098.000000px;}
.yc3{bottom:1102.320000px;}
.y3{bottom:1103.040000px;}
.y3a{bottom:1105.560000px;}
.y71{bottom:1117.500000px;}
.y39{bottom:1124.640000px;}
.yc1{bottom:1137.000000px;}
.y6f{bottom:1138.500000px;}
.y38{bottom:1143.720000px;}
.ybf{bottom:1156.500000px;}
.y37{bottom:1163.160000px;}
.y1{bottom:1193.760000px;}
.h7{height:19.500000px;}
.h8{height:21.000000px;}
.h5{height:30.653438px;}
.h6{height:43.900313px;}
.h3{height:46.004063px;}
.h2{height:52.253438px;}
.he{height:57.000000px;}
.hc{height:58.500000px;}
.h9{height:60.000000px;}
.hb{height:61.500000px;}
.h4{height:61.987500px;}
.h11{height:64.500000px;}
.h10{height:66.000000px;}
.hf{height:67.500000px;}
.ha{height:120.000000px;}
.hd{height:123.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:93.000000px;}
.wa{width:103.500000px;}
.w7{width:114.000000px;}
.w6{width:127.500000px;}
.w8{width:142.500000px;}
.w2{width:144.000000px;}
.w9{width:156.000000px;}
.w4{width:210.000000px;}
.w3{width:225.000000px;}
.wb{width:267.000000px;}
.wc{width:352.500000px;}
.we{width:355.500000px;}
.wd{width:367.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xd{left:8.099856px;}
.x13{left:14.976720px;}
.x11{left:16.082532px;}
.x12{left:24.065208px;}
.x1{left:62.009748px;}
.x14{left:75.228120px;}
.xc{left:84.959856px;}
.x5{left:95.778072px;}
.x1d{left:102.075360px;}
.x4{left:106.184700px;}
.x15{left:177.000000px;}
.x3{left:181.064592px;}
.x1a{left:189.000000px;}
.x6{left:209.176020px;}
.xe{left:229.500000px;}
.xa{left:252.821772px;}
.x16{left:270.000000px;}
.x1e{left:319.276320px;}
.x17{left:397.500000px;}
.x2{left:442.885680px;}
.x1c{left:453.000000px;}
.xf{left:454.500000px;}
.x1b{left:456.000000px;}
.x18{left:510.000000px;}
.x10{left:598.500000px;}
.xb{left:604.402560px;}
.x19{left:652.500000px;}
.x8{left:658.346040px;}
.x7{left:719.892720px;}
.x9{left:804.284640px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls30{letter-spacing:-4.989952pt;}
.ls31{letter-spacing:-4.674560pt;}
.ls29{letter-spacing:-0.304128pt;}
.lsc{letter-spacing:-0.275968pt;}
.ls22{letter-spacing:-0.264704pt;}
.ls34{letter-spacing:-0.253440pt;}
.ls11{letter-spacing:-0.236544pt;}
.ls35{letter-spacing:-0.230912pt;}
.ls2e{letter-spacing:-0.225280pt;}
.lsf{letter-spacing:-0.208384pt;}
.ls10{letter-spacing:-0.197120pt;}
.ls14{letter-spacing:-0.191488pt;}
.lse{letter-spacing:-0.185856pt;}
.ls21{letter-spacing:-0.180224pt;}
.ls7{letter-spacing:-0.174592pt;}
.ls6{letter-spacing:-0.168960pt;}
.ls28{letter-spacing:-0.163328pt;}
.ls18{letter-spacing:-0.157696pt;}
.ls12{letter-spacing:-0.152064pt;}
.ls8{letter-spacing:-0.146432pt;}
.lsb{letter-spacing:-0.140800pt;}
.ls15{letter-spacing:-0.135168pt;}
.ls16{letter-spacing:-0.129536pt;}
.ls24{letter-spacing:-0.123904pt;}
.ls4{letter-spacing:-0.118272pt;}
.ls2c{letter-spacing:-0.112640pt;}
.ls13{letter-spacing:-0.107008pt;}
.ls23{letter-spacing:-0.090112pt;}
.ls19{letter-spacing:-0.084480pt;}
.ls2f{letter-spacing:-0.067584pt;}
.ls20{letter-spacing:-0.056320pt;}
.ls17{letter-spacing:-0.045056pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.100224pt;}
.ls2{letter-spacing:0.102400pt;}
.ls3f{letter-spacing:0.244480pt;}
.ls9{letter-spacing:0.252416pt;}
.lsa{letter-spacing:0.371200pt;}
.ls37{letter-spacing:0.744960pt;}
.ls1f{letter-spacing:0.748800pt;}
.ls42{letter-spacing:0.788480pt;}
.ls38{letter-spacing:0.807680pt;}
.ls2d{letter-spacing:1.347200pt;}
.ls3a{letter-spacing:1.388800pt;}
.ls3d{letter-spacing:1.916160pt;}
.ls39{letter-spacing:2.007296pt;}
.ls2a{letter-spacing:2.169600pt;}
.ls3b{letter-spacing:2.491648pt;}
.ls26{letter-spacing:2.946560pt;}
.ls2b{letter-spacing:3.304320pt;}
.ls3e{letter-spacing:4.244352pt;}
.ls41{letter-spacing:4.355840pt;}
.ls1a{letter-spacing:4.718080pt;}
.ls3c{letter-spacing:4.938240pt;}
.ls27{letter-spacing:5.511680pt;}
.ls1c{letter-spacing:5.515520pt;}
.ls36{letter-spacing:6.976000pt;}
.ls1b{letter-spacing:7.522560pt;}
.ls1d{letter-spacing:9.819904pt;}
.ls1e{letter-spacing:9.820160pt;}
.ls32{letter-spacing:12.222720pt;}
.ls40{letter-spacing:15.087360pt;}
.ls3{letter-spacing:17.708032pt;}
.ls33{letter-spacing:18.675328pt;}
.ls25{letter-spacing:20.573440pt;}
.ls1{letter-spacing:1058.768128pt;}
.ls0{letter-spacing:1782.311040pt;}
.ws1{word-spacing:-12.728320pt;}
.ws8{word-spacing:-12.683264pt;}
.ws14{word-spacing:-12.672000pt;}
.wsb{word-spacing:-12.643840pt;}
.ws18{word-spacing:-12.638208pt;}
.wsc{word-spacing:-12.621312pt;}
.ws17{word-spacing:-12.615680pt;}
.ws5{word-spacing:-12.610048pt;}
.ws13{word-spacing:-12.604416pt;}
.wsd{word-spacing:-12.598784pt;}
.ws12{word-spacing:-12.593152pt;}
.ws2{word-spacing:-12.581888pt;}
.ws6{word-spacing:-12.576256pt;}
.wsa{word-spacing:-12.570624pt;}
.ws0{word-spacing:-12.559360pt;}
.ws19{word-spacing:-12.553728pt;}
.ws10{word-spacing:-12.548096pt;}
.wse{word-spacing:-12.542464pt;}
.ws7{word-spacing:-12.536832pt;}
.ws4{word-spacing:-12.531200pt;}
.ws16{word-spacing:-12.519936pt;}
.ws11{word-spacing:-12.503040pt;}
.ws1a{word-spacing:-12.497408pt;}
.ws15{word-spacing:-12.491776pt;}
.wsf{word-spacing:-7.738368pt;}
.ws3{word-spacing:-0.137344pt;}
.ws9{word-spacing:0.000000pt;}
._1d{margin-left:-3.926912pt;}
._4{margin-left:-2.984960pt;}
._10{margin-left:-1.914880pt;}
._0{margin-left:-0.901120pt;}
._2{width:0.901120pt;}
._d{width:1.802240pt;}
._3{width:2.703360pt;}
._a{width:3.942400pt;}
._c{width:5.115392pt;}
._6{width:6.195200pt;}
._7{width:7.128832pt;}
._b{width:8.753408pt;}
._e{width:9.663232pt;}
._5{width:11.376640pt;}
._18{width:12.343808pt;}
._12{width:13.483008pt;}
._13{width:14.981120pt;}
._9{width:15.882240pt;}
._8{width:17.121280pt;}
._f{width:18.464640pt;}
._14{width:19.655680pt;}
._11{width:20.669440pt;}
._1c{width:21.943296pt;}
._1b{width:22.922240pt;}
._2b{width:23.879680pt;}
._1e{width:25.118720pt;}
._31{width:26.019840pt;}
._15{width:28.066816pt;}
._2c{width:29.061120pt;}
._1a{width:32.307968pt;}
._19{width:33.397760pt;}
._24{width:36.776960pt;}
._25{width:37.936768pt;}
._27{width:49.054720pt;}
._28{width:50.109184pt;}
._2a{width:51.057152pt;}
._29{width:70.287360pt;}
._2d{width:76.989440pt;}
._2e{width:77.945088pt;}
._16{width:85.775360pt;}
._30{width:114.321664pt;}
._2f{width:115.230720pt;}
._20{width:123.397120pt;}
._1f{width:124.354560pt;}
._23{width:141.870080pt;}
._26{width:148.426368pt;}
._21{width:157.301760pt;}
._22{width:158.259200pt;}
._17{width:168.293888pt;}
._1{width:2203.165184pt;}
.fs2{font-size:37.120000pt;}
.fs0{font-size:56.320000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:4.000000pt;}
.y94{bottom:4.053333pt;}
.y7e{bottom:4.106667pt;}
.ya2{bottom:4.160000pt;}
.y76{bottom:4.213333pt;}
.y9a{bottom:4.266667pt;}
.y84{bottom:4.320000pt;}
.yba{bottom:4.373333pt;}
.yc2{bottom:4.426667pt;}
.y74{bottom:4.480000pt;}
.y98{bottom:4.533333pt;}
.y82{bottom:4.586667pt;}
.y92{bottom:4.640000pt;}
.y7c{bottom:4.693333pt;}
.ya0{bottom:4.746667pt;}
.ybd{bottom:4.853333pt;}
.y90{bottom:4.906667pt;}
.y7a{bottom:4.960000pt;}
.y9e{bottom:5.013333pt;}
.y72{bottom:5.066667pt;}
.y96{bottom:5.120000pt;}
.y80{bottom:5.173333pt;}
.ya4{bottom:5.226667pt;}
.yc0{bottom:5.280000pt;}
.y78{bottom:5.546667pt;}
.y9c{bottom:5.600000pt;}
.yf0{bottom:6.720000pt;}
.yf6{bottom:10.613333pt;}
.yec{bottom:11.626667pt;}
.ye9{bottom:20.160000pt;}
.ye2{bottom:21.333333pt;}
.y8f{bottom:22.186667pt;}
.ye0{bottom:23.413333pt;}
.yef{bottom:24.000000pt;}
.yf3{bottom:27.573333pt;}
.yeb{bottom:28.906667pt;}
.ye6{bottom:33.706667pt;}
.ye8{bottom:37.120000pt;}
.ye1{bottom:38.613333pt;}
.y8e{bottom:39.146667pt;}
.ydf{bottom:40.693333pt;}
.yee{bottom:40.960000pt;}
.yf5{bottom:43.520000pt;}
.yf2{bottom:44.853333pt;}
.yea{bottom:45.866667pt;}
.ydd{bottom:48.533333pt;}
.ye5{bottom:50.666667pt;}
.y2{bottom:51.840000pt;}
.ye4{bottom:67.626667pt;}
.ybe{bottom:85.333333pt;}
.yfe{bottom:89.600000pt;}
.y6e{bottom:93.760000pt;}
.y36{bottom:101.440000pt;}
.ybc{bottom:102.666667pt;}
.yfd{bottom:106.560000pt;}
.y6d{bottom:111.040000pt;}
.y35{bottom:118.720000pt;}
.ybb{bottom:120.000000pt;}
.yfc{bottom:123.520000pt;}
.y6c{bottom:128.000000pt;}
.y34{bottom:135.680000pt;}
.yb9{bottom:138.666667pt;}
.yfb{bottom:140.800000pt;}
.y6b{bottom:145.280000pt;}
.y33{bottom:152.960000pt;}
.yb8{bottom:156.000000pt;}
.yfa{bottom:157.760000pt;}
.y6a{bottom:162.240000pt;}
.y32{bottom:169.920000pt;}
.yb7{bottom:173.333333pt;}
.yf9{bottom:175.040000pt;}
.y69{bottom:179.200000pt;}
.y31{bottom:186.880000pt;}
.yb6{bottom:192.000000pt;}
.y68{bottom:196.480000pt;}
.y30{bottom:204.160000pt;}
.yf8{bottom:208.960000pt;}
.yb5{bottom:209.333333pt;}
.y67{bottom:213.440000pt;}
.y2f{bottom:221.120000pt;}
.yf7{bottom:226.240000pt;}
.y66{bottom:230.720000pt;}
.yb4{bottom:231.680000pt;}
.y2e{bottom:238.400000pt;}
.yf1{bottom:238.666667pt;}
.yf4{bottom:240.000000pt;}
.y65{bottom:247.680000pt;}
.yb3{bottom:248.640000pt;}
.y2d{bottom:255.360000pt;}
.y64{bottom:264.640000pt;}
.yb2{bottom:265.920000pt;}
.y2c{bottom:272.320000pt;}
.y63{bottom:281.920000pt;}
.yb1{bottom:282.880000pt;}
.y2b{bottom:289.600000pt;}
.yed{bottom:296.000000pt;}
.y62{bottom:298.880000pt;}
.yb0{bottom:300.160000pt;}
.y2a{bottom:306.560000pt;}
.y61{bottom:316.160000pt;}
.yaf{bottom:317.120000pt;}
.y29{bottom:323.840000pt;}
.y60{bottom:333.120000pt;}
.yae{bottom:334.400000pt;}
.y28{bottom:340.800000pt;}
.ye3{bottom:349.333333pt;}
.y5f{bottom:350.400000pt;}
.yad{bottom:351.360000pt;}
.y27{bottom:358.080000pt;}
.y5e{bottom:367.360000pt;}
.yac{bottom:368.320000pt;}
.y26{bottom:375.040000pt;}
.y5d{bottom:384.320000pt;}
.yab{bottom:385.600000pt;}
.y25{bottom:392.000000pt;}
.y5c{bottom:401.600000pt;}
.yaa{bottom:402.560000pt;}
.ye7{bottom:408.000000pt;}
.y24{bottom:409.280000pt;}
.y5b{bottom:418.560000pt;}
.ya9{bottom:419.840000pt;}
.y23{bottom:426.240000pt;}
.y5a{bottom:435.840000pt;}
.ya8{bottom:436.800000pt;}
.y22{bottom:443.520000pt;}
.y59{bottom:452.800000pt;}
.ya7{bottom:453.760000pt;}
.ydc{bottom:458.666667pt;}
.y21{bottom:460.480000pt;}
.y58{bottom:469.760000pt;}
.ya6{bottom:471.040000pt;}
.y20{bottom:477.440000pt;}
.ya5{bottom:484.000000pt;}
.y57{bottom:487.040000pt;}
.y1f{bottom:494.720000pt;}
.ya3{bottom:501.333333pt;}
.y56{bottom:504.000000pt;}
.yde{bottom:510.666667pt;}
.y1e{bottom:511.680000pt;}
.ya1{bottom:520.000000pt;}
.y55{bottom:521.280000pt;}
.y1d{bottom:528.960000pt;}
.y9f{bottom:537.333333pt;}
.y54{bottom:538.240000pt;}
.y1c{bottom:545.920000pt;}
.y9d{bottom:554.666667pt;}
.y53{bottom:555.200000pt;}
.y1b{bottom:562.880000pt;}
.ydb{bottom:564.000000pt;}
.y9b{bottom:572.000000pt;}
.y52{bottom:572.480000pt;}
.y99{bottom:573.333333pt;}
.y1a{bottom:580.160000pt;}
.yda{bottom:586.880000pt;}
.y51{bottom:589.440000pt;}
.y97{bottom:590.666667pt;}
.y19{bottom:597.120000pt;}
.yd9{bottom:603.840000pt;}
.y50{bottom:606.720000pt;}
.y95{bottom:608.000000pt;}
.y18{bottom:614.400000pt;}
.yd8{bottom:621.120000pt;}
.y4f{bottom:623.680000pt;}
.y93{bottom:626.666667pt;}
.y17{bottom:631.360000pt;}
.yd7{bottom:638.080000pt;}
.y4e{bottom:640.640000pt;}
.y91{bottom:644.000000pt;}
.y16{bottom:648.320000pt;}
.yd6{bottom:655.040000pt;}
.y4d{bottom:657.920000pt;}
.y8d{bottom:661.333333pt;}
.y15{bottom:665.600000pt;}
.yd5{bottom:672.320000pt;}
.y4c{bottom:674.880000pt;}
.y14{bottom:682.560000pt;}
.yd4{bottom:689.280000pt;}
.y4b{bottom:692.160000pt;}
.y13{bottom:699.840000pt;}
.yd3{bottom:706.560000pt;}
.y4a{bottom:709.120000pt;}
.y12{bottom:716.800000pt;}
.y8c{bottom:718.080000pt;}
.yd2{bottom:723.520000pt;}
.y49{bottom:726.080000pt;}
.y11{bottom:733.760000pt;}
.y8b{bottom:735.360000pt;}
.yd1{bottom:740.800000pt;}
.y48{bottom:743.360000pt;}
.y10{bottom:751.040000pt;}
.y8a{bottom:752.320000pt;}
.yd0{bottom:757.760000pt;}
.y47{bottom:760.320000pt;}
.y89{bottom:769.600000pt;}
.yf{bottom:772.800000pt;}
.ycf{bottom:774.720000pt;}
.y46{bottom:777.600000pt;}
.y88{bottom:786.560000pt;}
.ye{bottom:790.080000pt;}
.yce{bottom:792.000000pt;}
.y45{bottom:794.560000pt;}
.y87{bottom:803.520000pt;}
.yd{bottom:807.040000pt;}
.ycd{bottom:808.960000pt;}
.y44{bottom:811.520000pt;}
.yc{bottom:819.200000pt;}
.y86{bottom:820.800000pt;}
.ycc{bottom:826.240000pt;}
.y43{bottom:828.800000pt;}
.y85{bottom:833.333333pt;}
.yb{bottom:836.480000pt;}
.ycb{bottom:843.200000pt;}
.y42{bottom:845.760000pt;}
.y83{bottom:852.000000pt;}
.ya{bottom:853.440000pt;}
.yca{bottom:860.160000pt;}
.y41{bottom:863.040000pt;}
.y81{bottom:869.333333pt;}
.y9{bottom:870.720000pt;}
.yc9{bottom:877.440000pt;}
.y40{bottom:880.000000pt;}
.y7f{bottom:886.666667pt;}
.y8{bottom:888.640000pt;}
.yc8{bottom:894.400000pt;}
.y3f{bottom:897.280000pt;}
.y7d{bottom:905.333333pt;}
.y7{bottom:911.040000pt;}
.yc7{bottom:911.680000pt;}
.y3e{bottom:914.240000pt;}
.y7b{bottom:922.666667pt;}
.yc6{bottom:928.640000pt;}
.y3d{bottom:931.200000pt;}
.y6{bottom:933.120000pt;}
.y79{bottom:940.000000pt;}
.yc5{bottom:945.600000pt;}
.y3c{bottom:948.480000pt;}
.y5{bottom:950.080000pt;}
.y77{bottom:957.333333pt;}
.y75{bottom:958.666667pt;}
.yc4{bottom:962.880000pt;}
.y3b{bottom:965.440000pt;}
.y4{bottom:967.040000pt;}
.y73{bottom:976.000000pt;}
.yc3{bottom:979.840000pt;}
.y3{bottom:980.480000pt;}
.y3a{bottom:982.720000pt;}
.y71{bottom:993.333333pt;}
.y39{bottom:999.680000pt;}
.yc1{bottom:1010.666667pt;}
.y6f{bottom:1012.000000pt;}
.y38{bottom:1016.640000pt;}
.ybf{bottom:1028.000000pt;}
.y37{bottom:1033.920000pt;}
.y1{bottom:1061.120000pt;}
.h7{height:17.333333pt;}
.h8{height:18.666667pt;}
.h5{height:27.247500pt;}
.h6{height:39.022500pt;}
.h3{height:40.892500pt;}
.h2{height:46.447500pt;}
.he{height:50.666667pt;}
.hc{height:52.000000pt;}
.h9{height:53.333333pt;}
.hb{height:54.666667pt;}
.h4{height:55.100000pt;}
.h11{height:57.333333pt;}
.h10{height:58.666667pt;}
.hf{height:60.000000pt;}
.ha{height:106.666667pt;}
.hd{height:109.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:82.666667pt;}
.wa{width:92.000000pt;}
.w7{width:101.333333pt;}
.w6{width:113.333333pt;}
.w8{width:126.666667pt;}
.w2{width:128.000000pt;}
.w9{width:138.666667pt;}
.w4{width:186.666667pt;}
.w3{width:200.000000pt;}
.wb{width:237.333333pt;}
.wc{width:313.333333pt;}
.we{width:316.000000pt;}
.wd{width:326.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xd{left:7.199872pt;}
.x13{left:13.312640pt;}
.x11{left:14.295584pt;}
.x12{left:21.391296pt;}
.x1{left:55.119776pt;}
.x14{left:66.869440pt;}
.xc{left:75.519872pt;}
.x5{left:85.136064pt;}
.x1d{left:90.733653pt;}
.x4{left:94.386400pt;}
.x15{left:157.333333pt;}
.x3{left:160.946304pt;}
.x1a{left:168.000000pt;}
.x6{left:185.934240pt;}
.xe{left:204.000000pt;}
.xa{left:224.730464pt;}
.x16{left:240.000000pt;}
.x1e{left:283.801173pt;}
.x17{left:353.333333pt;}
.x2{left:393.676160pt;}
.x1c{left:402.666667pt;}
.xf{left:404.000000pt;}
.x1b{left:405.333333pt;}
.x18{left:453.333333pt;}
.x10{left:532.000000pt;}
.xb{left:537.246720pt;}
.x19{left:580.000000pt;}
.x8{left:585.196480pt;}
.x7{left:639.904640pt;}
.x9{left:714.919680pt;}
}




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