
    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_48721a4b65fdd225559c31f3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_cc654df92358affecaad16dd.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_01a1fab80393d5a733244b50.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172363;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_07d6beed3abb0786f4602737.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0440ba6c03d26f8adc1639eb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_723f637601a68ad254486edc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7356fca06f3ceccc882332d3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_23c7968e48112b8018d5d216.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ebaa2b4fc5593e2811d5659e.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bd5f99e225aa864ed5fd7a94.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.774000px;}
.ls13{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.432000px;}
.ls17{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.206400px;}
.ls3{letter-spacing:-0.175800px;}
.ls7{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.028080px;}
.ls11{letter-spacing:0.106560px;}
.ls9{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.206400px;}
.ls12{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.341400px;}
.ls8{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.900000px;}
.ls15{letter-spacing:3.780000px;}
.ls18{letter-spacing:18.828000px;}
.lsf{letter-spacing:18.900000px;}
.ls16{letter-spacing:19.548000px;}
.lsc{letter-spacing:64.026720px;}
.lse{letter-spacing:113.904000px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws1{word-spacing:-23.940000px;}
.ws0{word-spacing:-21.641760px;}
.ws2{word-spacing:-21.060000px;}
.wse{word-spacing:-18.000000px;}
.wsc{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.146400px;}
.wsa{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.833200px;}
.ws11{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.166000px;}
.ws12{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.518000px;}
.ws3{word-spacing:-13.505760px;}
.ws5{word-spacing:-13.500000px;}
.ws13{word-spacing:-13.140000px;}
.ws4{word-spacing:0.000000px;}
._a{margin-left:-3.888000px;}
._b{margin-left:-2.691120px;}
._1{margin-left:-1.432080px;}
._0{width:1.233120px;}
._2{width:2.747760px;}
._9{width:4.050000px;}
._d{width:5.616000px;}
._6{width:7.614000px;}
._c{width:9.454320px;}
._4{width:10.530000px;}
._5{width:11.726880px;}
._12{width:13.565520px;}
._11{width:16.613280px;}
._3{width:18.486000px;}
._14{width:19.565760px;}
._e{width:20.579280px;}
._f{width:21.730800px;}
._10{width:23.239440px;}
._8{width:25.218000px;}
._7{width:26.460000px;}
._13{width:28.445760px;}
._16{width:29.880000px;}
._18{width:36.991440px;}
._15{width:38.328000px;}
._1b{width:72.972000px;}
._1c{width:75.168000px;}
._1a{width:82.764960px;}
._19{width:83.970000px;}
._17{width:2059.860000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(127,127,127);}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye8{bottom:3.600000px;}
.ye6{bottom:4.140000px;}
.yed{bottom:4.320000px;}
.yf1{bottom:6.120000px;}
.yd{bottom:16.380000px;}
.ye5{bottom:22.140000px;}
.yec{bottom:22.320000px;}
.ye4{bottom:40.140000px;}
.yeb{bottom:40.365000px;}
.yc{bottom:52.605000px;}
.y2{bottom:56.880000px;}
.yea{bottom:58.185000px;}
.y1{bottom:86.616000px;}
.yb{bottom:88.785000px;}
.ya{bottom:112.905000px;}
.y9{bottom:137.025000px;}
.y8{bottom:161.145000px;}
.y7{bottom:185.445000px;}
.y6{bottom:209.565000px;}
.y78{bottom:228.450000px;}
.yc1{bottom:233.310000px;}
.y99{bottom:236.370000px;}
.y4c{bottom:242.850000px;}
.y77{bottom:246.450000px;}
.y112{bottom:248.970000px;}
.yc0{bottom:251.310000px;}
.y98{bottom:254.370000px;}
.y4b{bottom:260.850000px;}
.y76{bottom:264.450000px;}
.y111{bottom:265.530000px;}
.ybf{bottom:269.670000px;}
.y97{bottom:272.370000px;}
.yee{bottom:275.970000px;}
.y4a{bottom:279.030000px;}
.y110{bottom:282.090000px;}
.y75{bottom:282.450000px;}
.ybe{bottom:287.850000px;}
.y96{bottom:290.370000px;}
.y49{bottom:297.030000px;}
.y74{bottom:300.450000px;}
.ybd{bottom:306.210000px;}
.y95{bottom:308.370000px;}
.ye9{bottom:312.150000px;}
.y48{bottom:315.030000px;}
.y10f{bottom:317.730000px;}
.y73{bottom:318.450000px;}
.ybc{bottom:324.030000px;}
.y94{bottom:326.370000px;}
.y47{bottom:332.850000px;}
.y72{bottom:336.450000px;}
.y24{bottom:339.555000px;}
.ybb{bottom:342.030000px;}
.y93{bottom:344.370000px;}
.y46{bottom:350.895000px;}
.y71{bottom:354.495000px;}
.y23{bottom:357.915000px;}
.yba{bottom:360.075000px;}
.y92{bottom:363.495000px;}
.y10e{bottom:367.095000px;}
.y45{bottom:368.895000px;}
.yda{bottom:372.315000px;}
.y70{bottom:372.495000px;}
.yb9{bottom:378.435000px;}
.y22{bottom:378.975000px;}
.y91{bottom:381.675000px;}
.y10d{bottom:385.095000px;}
.ye7{bottom:385.635000px;}
.y44{bottom:386.895000px;}
.y6f{bottom:390.495000px;}
.yd9{bottom:390.675000px;}
.yb8{bottom:396.255000px;}
.y90{bottom:396.615000px;}
.y21{bottom:400.035000px;}
.y10c{bottom:403.095000px;}
.ye3{bottom:404.355000px;}
.y43{bottom:405.075000px;}
.y6e{bottom:408.495000px;}
.yd8{bottom:408.675000px;}
.yb7{bottom:414.255000px;}
.y20{bottom:421.095000px;}
.y42{bottom:423.075000px;}
.y6d{bottom:426.495000px;}
.yd7{bottom:426.675000px;}
.yb6{bottom:432.615000px;}
.y10b{bottom:439.275000px;}
.y41{bottom:441.075000px;}
.y1f{bottom:442.335000px;}
.y6c{bottom:444.495000px;}
.yb5{bottom:450.435000px;}
.y10a{bottom:457.275000px;}
.y40{bottom:459.075000px;}
.y6b{bottom:462.495000px;}
.y1e{bottom:463.395000px;}
.yb4{bottom:468.435000px;}
.ye2{bottom:472.575000px;}
.y109{bottom:475.275000px;}
.y3f{bottom:477.075000px;}
.y6a{bottom:480.495000px;}
.y1d{bottom:484.455000px;}
.yb3{bottom:486.435000px;}
.y108{bottom:493.095000px;}
.y3e{bottom:494.895000px;}
.y69{bottom:498.495000px;}
.y132{bottom:499.575000px;}
.yb2{bottom:504.795000px;}
.y1c{bottom:505.515000px;}
.ye1{bottom:507.495000px;}
.y107{bottom:511.455000px;}
.y3d{bottom:513.255000px;}
.y131{bottom:516.135000px;}
.y68{bottom:516.495000px;}
.yd6{bottom:516.675000px;}
.yb1{bottom:522.615000px;}
.ye0{bottom:525.495000px;}
.y1b{bottom:526.755000px;}
.y106{bottom:529.455000px;}
.y3c{bottom:531.255000px;}
.y130{bottom:532.515000px;}
.y67{bottom:534.495000px;}
.yd5{bottom:534.675000px;}
.yb0{bottom:540.615000px;}
.ydf{bottom:543.495000px;}
.y105{bottom:547.455000px;}
.y1a{bottom:547.815000px;}
.y12f{bottom:549.075000px;}
.y3b{bottom:549.255000px;}
.yd4{bottom:552.675000px;}
.y66{bottom:553.575000px;}
.yaf{bottom:558.975000px;}
.yde{bottom:561.495000px;}
.y104{bottom:565.275000px;}
.y12e{bottom:565.635000px;}
.y3a{bottom:567.075000px;}
.y19{bottom:568.875000px;}
.yd3{bottom:570.675000px;}
.y65{bottom:571.575000px;}
.yae{bottom:576.975000px;}
.ydd{bottom:580.395000px;}
.y12d{bottom:582.015000px;}
.y103{bottom:583.275000px;}
.y39{bottom:585.075000px;}
.y8f{bottom:587.775000px;}
.yd2{bottom:588.675000px;}
.y64{bottom:589.395000px;}
.y18{bottom:589.935000px;}
.yad{bottom:594.795000px;}
.ydc{bottom:595.515000px;}
.y12c{bottom:598.575000px;}
.y102{bottom:601.275000px;}
.y38{bottom:603.075000px;}
.y8e{bottom:605.955000px;}
.yd1{bottom:606.495000px;}
.y63{bottom:607.395000px;}
.y17{bottom:611.205000px;}
.yac{bottom:612.825000px;}
.y12b{bottom:615.165000px;}
.y101{bottom:619.305000px;}
.y37{bottom:621.105000px;}
.y8d{bottom:624.345000px;}
.yd0{bottom:624.885000px;}
.y62{bottom:625.425000px;}
.yab{bottom:630.825000px;}
.y12a{bottom:631.545000px;}
.y16{bottom:632.265000px;}
.y100{bottom:637.305000px;}
.y36{bottom:639.105000px;}
.y8c{bottom:642.345000px;}
.ycf{bottom:642.885000px;}
.y61{bottom:643.605000px;}
.y129{bottom:648.105000px;}
.yaa{bottom:648.825000px;}
.y15{bottom:654.945000px;}
.yff{bottom:655.125000px;}
.y8b{bottom:660.165000px;}
.yce{bottom:660.705000px;}
.y60{bottom:661.605000px;}
.y128{bottom:664.665000px;}
.ya9{bottom:666.825000px;}
.yfe{bottom:673.125000px;}
.y35{bottom:678.165000px;}
.y5f{bottom:679.605000px;}
.y14{bottom:680.685000px;}
.y127{bottom:681.045000px;}
.ya8{bottom:685.005000px;}
.yfd{bottom:691.125000px;}
.y5e{bottom:697.605000px;}
.y8a{bottom:699.225000px;}
.ycd{bottom:699.945000px;}
.ya7{bottom:703.005000px;}
.y13{bottom:705.165000px;}
.yfc{bottom:709.125000px;}
.y126{bottom:714.165000px;}
.y5d{bottom:715.605000px;}
.y89{bottom:719.205000px;}
.ycc{bottom:720.825000px;}
.ya6{bottom:721.005000px;}
.yfb{bottom:727.125000px;}
.y12{bottom:729.285000px;}
.y125{bottom:730.545000px;}
.y5c{bottom:733.605000px;}
.y34{bottom:735.405000px;}
.y88{bottom:738.465000px;}
.ya5{bottom:739.005000px;}
.y124{bottom:747.105000px;}
.y5b{bottom:751.425000px;}
.y11{bottom:753.405000px;}
.y87{bottom:756.465000px;}
.ycb{bottom:757.005000px;}
.ya4{bottom:757.185000px;}
.y123{bottom:763.665000px;}
.yfa{bottom:766.185000px;}
.y5a{bottom:769.425000px;}
.y33{bottom:771.585000px;}
.y86{bottom:774.465000px;}
.yca{bottom:775.005000px;}
.ya3{bottom:775.185000px;}
.y10{bottom:777.525000px;}
.y122{bottom:780.045000px;}
.yf9{bottom:787.065000px;}
.y59{bottom:787.425000px;}
.y32{bottom:787.785000px;}
.y85{bottom:792.465000px;}
.yc9{bottom:793.005000px;}
.ya2{bottom:793.185000px;}
.y121{bottom:796.605000px;}
.yf{bottom:801.645000px;}
.y31{bottom:803.805000px;}
.y58{bottom:805.425000px;}
.y84{bottom:810.465000px;}
.yc8{bottom:811.005000px;}
.ya1{bottom:811.365000px;}
.y120{bottom:813.165000px;}
.y30{bottom:820.005000px;}
.y57{bottom:823.425000px;}
.ye{bottom:825.945000px;}
.y83{bottom:828.465000px;}
.yc7{bottom:829.185000px;}
.ya0{bottom:829.365000px;}
.y11f{bottom:829.545000px;}
.y2f{bottom:836.025000px;}
.yf8{bottom:841.245000px;}
.y56{bottom:841.425000px;}
.y5{bottom:845.565000px;}
.y11e{bottom:846.105000px;}
.y82{bottom:846.465000px;}
.yc6{bottom:847.185000px;}
.y9f{bottom:847.365000px;}
.y2e{bottom:852.225000px;}
.yf7{bottom:859.245000px;}
.y11d{bottom:862.665000px;}
.y81{bottom:864.465000px;}
.yc5{bottom:865.185000px;}
.y9e{bottom:865.365000px;}
.y2d{bottom:868.245000px;}
.yf6{bottom:877.290000px;}
.y11c{bottom:879.090000px;}
.y55{bottom:880.530000px;}
.y80{bottom:882.510000px;}
.y9d{bottom:883.230000px;}
.y2c{bottom:884.490000px;}
.yf5{bottom:895.290000px;}
.y11b{bottom:895.650000px;}
.y2b{bottom:900.510000px;}
.y9c{bottom:901.230000px;}
.y11a{bottom:912.210000px;}
.yf4{bottom:913.290000px;}
.y2a{bottom:916.530000px;}
.y7f{bottom:918.510000px;}
.yc4{bottom:919.050000px;}
.y9b{bottom:919.230000px;}
.y54{bottom:919.410000px;}
.y119{bottom:928.590000px;}
.yf3{bottom:931.110000px;}
.y29{bottom:932.730000px;}
.y7e{bottom:936.510000px;}
.yc3{bottom:937.050000px;}
.y9a{bottom:937.230000px;}
.y53{bottom:937.410000px;}
.y118{bottom:945.150000px;}
.y28{bottom:948.750000px;}
.yf2{bottom:949.470000px;}
.y7d{bottom:954.510000px;}
.yc2{bottom:955.050000px;}
.y52{bottom:955.410000px;}
.y117{bottom:961.710000px;}
.yf0{bottom:965.670000px;}
.y7c{bottom:972.510000px;}
.y51{bottom:973.230000px;}
.y116{bottom:978.090000px;}
.yef{bottom:987.090000px;}
.ydb{bottom:990.330000px;}
.y7b{bottom:990.510000px;}
.y50{bottom:991.230000px;}
.y115{bottom:994.650000px;}
.y27{bottom:994.830000px;}
.y7a{bottom:1008.510000px;}
.y4f{bottom:1009.230000px;}
.y114{bottom:1011.210000px;}
.y26{bottom:1021.650000px;}
.y79{bottom:1026.510000px;}
.y4e{bottom:1027.230000px;}
.y113{bottom:1027.590000px;}
.y4{bottom:1086.810000px;}
.y3{bottom:1134.510000px;}
.y25{bottom:1195.020000px;}
.y4d{bottom:1196.460000px;}
.h14{height:16.380000px;}
.h17{height:21.420000px;}
.h16{height:36.180000px;}
.he{height:41.726953px;}
.hc{height:52.998047px;}
.h13{height:54.180000px;}
.hb{height:54.421875px;}
.h18{height:55.503491px;}
.ha{height:58.651172px;}
.h3{height:59.439023px;}
.h10{height:60.226875px;}
.h9{height:60.679688px;}
.h11{height:61.423863px;}
.hf{height:62.184375px;}
.h15{height:72.216000px;}
.hd{height:72.562500px;}
.h12{height:74.953125px;}
.h7{height:82.676953px;}
.h8{height:83.787539px;}
.h5{height:84.898125px;}
.h4{height:93.983203px;}
.h2{height:95.245664px;}
.h6{height:236.550000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w7{width:126.936000px;}
.w8{width:372.855000px;}
.w6{width:499.785000px;}
.w3{width:732.930000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.w5{width:892.799987px;}
.w4{width:892.800000px;}
.x0{left:0.000000px;}
.x13{left:5.940000px;}
.x6{left:7.920000px;}
.x5{left:77.040000px;}
.x4{left:84.959987px;}
.x2{left:128.555987px;}
.xb{left:185.969987px;}
.x7{left:187.049987px;}
.x8{left:192.089987px;}
.x15{left:193.889987px;}
.x12{left:196.950000px;}
.x16{left:212.609987px;}
.xe{left:214.049987px;}
.xa{left:229.709987px;}
.xf{left:241.049987px;}
.x11{left:246.449987px;}
.x10{left:274.934987px;}
.x3{left:297.074987px;}
.x14{left:323.895000px;}
.x1{left:388.154987px;}
.x9{left:418.574987px;}
.xc{left:699.089987px;}
.xd{left:705.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.688000pt;}
.ls13{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.384000pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.183467pt;}
.ls3{letter-spacing:-0.156267pt;}
.ls7{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.024960pt;}
.ls11{letter-spacing:0.094720pt;}
.ls9{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.183467pt;}
.ls12{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.303467pt;}
.ls8{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.800000pt;}
.ls15{letter-spacing:3.360000pt;}
.ls18{letter-spacing:16.736000pt;}
.lsf{letter-spacing:16.800000pt;}
.ls16{letter-spacing:17.376000pt;}
.lsc{letter-spacing:56.912640pt;}
.lse{letter-spacing:101.248000pt;}
.wsd{word-spacing:-53.120000pt;}
.ws1{word-spacing:-21.280000pt;}
.ws0{word-spacing:-19.237120pt;}
.ws2{word-spacing:-18.720000pt;}
.wse{word-spacing:-16.000000pt;}
.wsc{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.463467pt;}
.wsa{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.185067pt;}
.ws11{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.592000pt;}
.ws12{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.016000pt;}
.ws3{word-spacing:-12.005120pt;}
.ws5{word-spacing:-12.000000pt;}
.ws13{word-spacing:-11.680000pt;}
.ws4{word-spacing:0.000000pt;}
._a{margin-left:-3.456000pt;}
._b{margin-left:-2.392107pt;}
._1{margin-left:-1.272960pt;}
._0{width:1.096107pt;}
._2{width:2.442453pt;}
._9{width:3.600000pt;}
._d{width:4.992000pt;}
._6{width:6.768000pt;}
._c{width:8.403840pt;}
._4{width:9.360000pt;}
._5{width:10.423893pt;}
._12{width:12.058240pt;}
._11{width:14.767360pt;}
._3{width:16.432000pt;}
._14{width:17.391787pt;}
._e{width:18.292693pt;}
._f{width:19.316267pt;}
._10{width:20.657280pt;}
._8{width:22.416000pt;}
._7{width:23.520000pt;}
._13{width:25.285120pt;}
._16{width:26.560000pt;}
._18{width:32.881280pt;}
._15{width:34.069333pt;}
._1b{width:64.864000pt;}
._1c{width:66.816000pt;}
._1a{width:73.568853pt;}
._19{width:74.640000pt;}
._17{width:1830.986667pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye8{bottom:3.200000pt;}
.ye6{bottom:3.680000pt;}
.yed{bottom:3.840000pt;}
.yf1{bottom:5.440000pt;}
.yd{bottom:14.560000pt;}
.ye5{bottom:19.680000pt;}
.yec{bottom:19.840000pt;}
.ye4{bottom:35.680000pt;}
.yeb{bottom:35.880000pt;}
.yc{bottom:46.760000pt;}
.y2{bottom:50.560000pt;}
.yea{bottom:51.720000pt;}
.y1{bottom:76.992000pt;}
.yb{bottom:78.920000pt;}
.ya{bottom:100.360000pt;}
.y9{bottom:121.800000pt;}
.y8{bottom:143.240000pt;}
.y7{bottom:164.840000pt;}
.y6{bottom:186.280000pt;}
.y78{bottom:203.066667pt;}
.yc1{bottom:207.386667pt;}
.y99{bottom:210.106667pt;}
.y4c{bottom:215.866667pt;}
.y77{bottom:219.066667pt;}
.y112{bottom:221.306667pt;}
.yc0{bottom:223.386667pt;}
.y98{bottom:226.106667pt;}
.y4b{bottom:231.866667pt;}
.y76{bottom:235.066667pt;}
.y111{bottom:236.026667pt;}
.ybf{bottom:239.706667pt;}
.y97{bottom:242.106667pt;}
.yee{bottom:245.306667pt;}
.y4a{bottom:248.026667pt;}
.y110{bottom:250.746667pt;}
.y75{bottom:251.066667pt;}
.ybe{bottom:255.866667pt;}
.y96{bottom:258.106667pt;}
.y49{bottom:264.026667pt;}
.y74{bottom:267.066667pt;}
.ybd{bottom:272.186667pt;}
.y95{bottom:274.106667pt;}
.ye9{bottom:277.466667pt;}
.y48{bottom:280.026667pt;}
.y10f{bottom:282.426667pt;}
.y73{bottom:283.066667pt;}
.ybc{bottom:288.026667pt;}
.y94{bottom:290.106667pt;}
.y47{bottom:295.866667pt;}
.y72{bottom:299.066667pt;}
.y24{bottom:301.826667pt;}
.ybb{bottom:304.026667pt;}
.y93{bottom:306.106667pt;}
.y46{bottom:311.906667pt;}
.y71{bottom:315.106667pt;}
.y23{bottom:318.146667pt;}
.yba{bottom:320.066667pt;}
.y92{bottom:323.106667pt;}
.y10e{bottom:326.306667pt;}
.y45{bottom:327.906667pt;}
.yda{bottom:330.946667pt;}
.y70{bottom:331.106667pt;}
.yb9{bottom:336.386667pt;}
.y22{bottom:336.866667pt;}
.y91{bottom:339.266667pt;}
.y10d{bottom:342.306667pt;}
.ye7{bottom:342.786667pt;}
.y44{bottom:343.906667pt;}
.y6f{bottom:347.106667pt;}
.yd9{bottom:347.266667pt;}
.yb8{bottom:352.226667pt;}
.y90{bottom:352.546667pt;}
.y21{bottom:355.586667pt;}
.y10c{bottom:358.306667pt;}
.ye3{bottom:359.426667pt;}
.y43{bottom:360.066667pt;}
.y6e{bottom:363.106667pt;}
.yd8{bottom:363.266667pt;}
.yb7{bottom:368.226667pt;}
.y20{bottom:374.306667pt;}
.y42{bottom:376.066667pt;}
.y6d{bottom:379.106667pt;}
.yd7{bottom:379.266667pt;}
.yb6{bottom:384.546667pt;}
.y10b{bottom:390.466667pt;}
.y41{bottom:392.066667pt;}
.y1f{bottom:393.186667pt;}
.y6c{bottom:395.106667pt;}
.yb5{bottom:400.386667pt;}
.y10a{bottom:406.466667pt;}
.y40{bottom:408.066667pt;}
.y6b{bottom:411.106667pt;}
.y1e{bottom:411.906667pt;}
.yb4{bottom:416.386667pt;}
.ye2{bottom:420.066667pt;}
.y109{bottom:422.466667pt;}
.y3f{bottom:424.066667pt;}
.y6a{bottom:427.106667pt;}
.y1d{bottom:430.626667pt;}
.yb3{bottom:432.386667pt;}
.y108{bottom:438.306667pt;}
.y3e{bottom:439.906667pt;}
.y69{bottom:443.106667pt;}
.y132{bottom:444.066667pt;}
.yb2{bottom:448.706667pt;}
.y1c{bottom:449.346667pt;}
.ye1{bottom:451.106667pt;}
.y107{bottom:454.626667pt;}
.y3d{bottom:456.226667pt;}
.y131{bottom:458.786667pt;}
.y68{bottom:459.106667pt;}
.yd6{bottom:459.266667pt;}
.yb1{bottom:464.546667pt;}
.ye0{bottom:467.106667pt;}
.y1b{bottom:468.226667pt;}
.y106{bottom:470.626667pt;}
.y3c{bottom:472.226667pt;}
.y130{bottom:473.346667pt;}
.y67{bottom:475.106667pt;}
.yd5{bottom:475.266667pt;}
.yb0{bottom:480.546667pt;}
.ydf{bottom:483.106667pt;}
.y105{bottom:486.626667pt;}
.y1a{bottom:486.946667pt;}
.y12f{bottom:488.066667pt;}
.y3b{bottom:488.226667pt;}
.yd4{bottom:491.266667pt;}
.y66{bottom:492.066667pt;}
.yaf{bottom:496.866667pt;}
.yde{bottom:499.106667pt;}
.y104{bottom:502.466667pt;}
.y12e{bottom:502.786667pt;}
.y3a{bottom:504.066667pt;}
.y19{bottom:505.666667pt;}
.yd3{bottom:507.266667pt;}
.y65{bottom:508.066667pt;}
.yae{bottom:512.866667pt;}
.ydd{bottom:515.906667pt;}
.y12d{bottom:517.346667pt;}
.y103{bottom:518.466667pt;}
.y39{bottom:520.066667pt;}
.y8f{bottom:522.466667pt;}
.yd2{bottom:523.266667pt;}
.y64{bottom:523.906667pt;}
.y18{bottom:524.386667pt;}
.yad{bottom:528.706667pt;}
.ydc{bottom:529.346667pt;}
.y12c{bottom:532.066667pt;}
.y102{bottom:534.466667pt;}
.y38{bottom:536.066667pt;}
.y8e{bottom:538.626667pt;}
.yd1{bottom:539.106667pt;}
.y63{bottom:539.906667pt;}
.y17{bottom:543.293333pt;}
.yac{bottom:544.733333pt;}
.y12b{bottom:546.813333pt;}
.y101{bottom:550.493333pt;}
.y37{bottom:552.093333pt;}
.y8d{bottom:554.973333pt;}
.yd0{bottom:555.453333pt;}
.y62{bottom:555.933333pt;}
.yab{bottom:560.733333pt;}
.y12a{bottom:561.373333pt;}
.y16{bottom:562.013333pt;}
.y100{bottom:566.493333pt;}
.y36{bottom:568.093333pt;}
.y8c{bottom:570.973333pt;}
.ycf{bottom:571.453333pt;}
.y61{bottom:572.093333pt;}
.y129{bottom:576.093333pt;}
.yaa{bottom:576.733333pt;}
.y15{bottom:582.173333pt;}
.yff{bottom:582.333333pt;}
.y8b{bottom:586.813333pt;}
.yce{bottom:587.293333pt;}
.y60{bottom:588.093333pt;}
.y128{bottom:590.813333pt;}
.ya9{bottom:592.733333pt;}
.yfe{bottom:598.333333pt;}
.y35{bottom:602.813333pt;}
.y5f{bottom:604.093333pt;}
.y14{bottom:605.053333pt;}
.y127{bottom:605.373333pt;}
.ya8{bottom:608.893333pt;}
.yfd{bottom:614.333333pt;}
.y5e{bottom:620.093333pt;}
.y8a{bottom:621.533333pt;}
.ycd{bottom:622.173333pt;}
.ya7{bottom:624.893333pt;}
.y13{bottom:626.813333pt;}
.yfc{bottom:630.333333pt;}
.y126{bottom:634.813333pt;}
.y5d{bottom:636.093333pt;}
.y89{bottom:639.293333pt;}
.ycc{bottom:640.733333pt;}
.ya6{bottom:640.893333pt;}
.yfb{bottom:646.333333pt;}
.y12{bottom:648.253333pt;}
.y125{bottom:649.373333pt;}
.y5c{bottom:652.093333pt;}
.y34{bottom:653.693333pt;}
.y88{bottom:656.413333pt;}
.ya5{bottom:656.893333pt;}
.y124{bottom:664.093333pt;}
.y5b{bottom:667.933333pt;}
.y11{bottom:669.693333pt;}
.y87{bottom:672.413333pt;}
.ycb{bottom:672.893333pt;}
.ya4{bottom:673.053333pt;}
.y123{bottom:678.813333pt;}
.yfa{bottom:681.053333pt;}
.y5a{bottom:683.933333pt;}
.y33{bottom:685.853333pt;}
.y86{bottom:688.413333pt;}
.yca{bottom:688.893333pt;}
.ya3{bottom:689.053333pt;}
.y10{bottom:691.133333pt;}
.y122{bottom:693.373333pt;}
.yf9{bottom:699.613333pt;}
.y59{bottom:699.933333pt;}
.y32{bottom:700.253333pt;}
.y85{bottom:704.413333pt;}
.yc9{bottom:704.893333pt;}
.ya2{bottom:705.053333pt;}
.y121{bottom:708.093333pt;}
.yf{bottom:712.573333pt;}
.y31{bottom:714.493333pt;}
.y58{bottom:715.933333pt;}
.y84{bottom:720.413333pt;}
.yc8{bottom:720.893333pt;}
.ya1{bottom:721.213333pt;}
.y120{bottom:722.813333pt;}
.y30{bottom:728.893333pt;}
.y57{bottom:731.933333pt;}
.ye{bottom:734.173333pt;}
.y83{bottom:736.413333pt;}
.yc7{bottom:737.053333pt;}
.ya0{bottom:737.213333pt;}
.y11f{bottom:737.373333pt;}
.y2f{bottom:743.133333pt;}
.yf8{bottom:747.773333pt;}
.y56{bottom:747.933333pt;}
.y5{bottom:751.613333pt;}
.y11e{bottom:752.093333pt;}
.y82{bottom:752.413333pt;}
.yc6{bottom:753.053333pt;}
.y9f{bottom:753.213333pt;}
.y2e{bottom:757.533333pt;}
.yf7{bottom:763.773333pt;}
.y11d{bottom:766.813333pt;}
.y81{bottom:768.413333pt;}
.yc5{bottom:769.053333pt;}
.y9e{bottom:769.213333pt;}
.y2d{bottom:771.773333pt;}
.yf6{bottom:779.813333pt;}
.y11c{bottom:781.413333pt;}
.y55{bottom:782.693333pt;}
.y80{bottom:784.453333pt;}
.y9d{bottom:785.093333pt;}
.y2c{bottom:786.213333pt;}
.yf5{bottom:795.813333pt;}
.y11b{bottom:796.133333pt;}
.y2b{bottom:800.453333pt;}
.y9c{bottom:801.093333pt;}
.y11a{bottom:810.853333pt;}
.yf4{bottom:811.813333pt;}
.y2a{bottom:814.693333pt;}
.y7f{bottom:816.453333pt;}
.yc4{bottom:816.933333pt;}
.y9b{bottom:817.093333pt;}
.y54{bottom:817.253333pt;}
.y119{bottom:825.413333pt;}
.yf3{bottom:827.653333pt;}
.y29{bottom:829.093333pt;}
.y7e{bottom:832.453333pt;}
.yc3{bottom:832.933333pt;}
.y9a{bottom:833.093333pt;}
.y53{bottom:833.253333pt;}
.y118{bottom:840.133333pt;}
.y28{bottom:843.333333pt;}
.yf2{bottom:843.973333pt;}
.y7d{bottom:848.453333pt;}
.yc2{bottom:848.933333pt;}
.y52{bottom:849.253333pt;}
.y117{bottom:854.853333pt;}
.yf0{bottom:858.373333pt;}
.y7c{bottom:864.453333pt;}
.y51{bottom:865.093333pt;}
.y116{bottom:869.413333pt;}
.yef{bottom:877.413333pt;}
.ydb{bottom:880.293333pt;}
.y7b{bottom:880.453333pt;}
.y50{bottom:881.093333pt;}
.y115{bottom:884.133333pt;}
.y27{bottom:884.293333pt;}
.y7a{bottom:896.453333pt;}
.y4f{bottom:897.093333pt;}
.y114{bottom:898.853333pt;}
.y26{bottom:908.133333pt;}
.y79{bottom:912.453333pt;}
.y4e{bottom:913.093333pt;}
.y113{bottom:913.413333pt;}
.y4{bottom:966.053333pt;}
.y3{bottom:1008.453333pt;}
.y25{bottom:1062.240000pt;}
.y4d{bottom:1063.520000pt;}
.h14{height:14.560000pt;}
.h17{height:19.040000pt;}
.h16{height:32.160000pt;}
.he{height:37.090625pt;}
.hc{height:47.109375pt;}
.h13{height:48.160000pt;}
.hb{height:48.375000pt;}
.h18{height:49.336436pt;}
.ha{height:52.134375pt;}
.h3{height:52.834688pt;}
.h10{height:53.535000pt;}
.h9{height:53.937500pt;}
.h11{height:54.598989pt;}
.hf{height:55.275000pt;}
.h15{height:64.192000pt;}
.hd{height:64.500000pt;}
.h12{height:66.625000pt;}
.h7{height:73.490625pt;}
.h8{height:74.477812pt;}
.h5{height:75.465000pt;}
.h4{height:83.540625pt;}
.h2{height:84.662813pt;}
.h6{height:210.266667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w7{width:112.832000pt;}
.w8{width:331.426667pt;}
.w6{width:444.253333pt;}
.w3{width:651.493333pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.w5{width:793.599988pt;}
.w4{width:793.600000pt;}
.x0{left:0.000000pt;}
.x13{left:5.280000pt;}
.x6{left:7.040000pt;}
.x5{left:68.480000pt;}
.x4{left:75.519988pt;}
.x2{left:114.271988pt;}
.xb{left:165.306655pt;}
.x7{left:166.266655pt;}
.x8{left:170.746655pt;}
.x15{left:172.346655pt;}
.x12{left:175.066667pt;}
.x16{left:188.986655pt;}
.xe{left:190.266655pt;}
.xa{left:204.186655pt;}
.xf{left:214.266655pt;}
.x11{left:219.066655pt;}
.x10{left:244.386655pt;}
.x3{left:264.066655pt;}
.x14{left:287.906667pt;}
.x1{left:345.026655pt;}
.x9{left:372.066655pt;}
.xc{left:621.413322pt;}
.xd{left:627.333322pt;}
}




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