
    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_a1a52eb864914b3b8d8b865a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_ee0cf727a9672a8e38aee49d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.052734;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_a8188403e58aca9b00e759e7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.052734;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_9e99ace1b7600cbce600b205.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.981934;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_399689910e84a1b88d097546.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.981934;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_92924846c064dbaf7c5a6f39.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_537e914cd4a351c0e148f933.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_f5b514337682efa9877dfd77.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_782df124457293a731c4f4ba.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.766602;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_54b1caf21a8a60e11107413c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.053223;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_95d7ea9d9a779c6183379ee5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.053223;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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.600000px;}
.v1{vertical-align:28.080000px;}
.ls13{letter-spacing:-2.040000px;}
.ls7{letter-spacing:-1.548000px;}
.ls1e{letter-spacing:-1.512000px;}
.lsc{letter-spacing:-1.026000px;}
.ls14{letter-spacing:-0.978000px;}
.ls26{letter-spacing:-0.708000px;}
.ls22{letter-spacing:-0.612000px;}
.ls18{letter-spacing:-0.526800px;}
.ls27{letter-spacing:-0.457800px;}
.ls1b{letter-spacing:-0.423600px;}
.ls1a{letter-spacing:-0.121200px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.004320px;}
.lsf{letter-spacing:0.060480px;}
.ls10{letter-spacing:0.069120px;}
.ls12{letter-spacing:0.112200px;}
.ls15{letter-spacing:0.120960px;}
.ls1f{letter-spacing:0.492600px;}
.ls21{letter-spacing:0.509760px;}
.ls16{letter-spacing:0.518400px;}
.ls9{letter-spacing:0.540000px;}
.lsb{letter-spacing:0.587400px;}
.ls8{letter-spacing:0.612000px;}
.ls28{letter-spacing:0.648000px;}
.ls20{letter-spacing:0.750720px;}
.ls3{letter-spacing:0.792720px;}
.ls2{letter-spacing:0.803520px;}
.ls1{letter-spacing:0.864000px;}
.ls0{letter-spacing:1.296000px;}
.ls5{letter-spacing:1.451520px;}
.ls1c{letter-spacing:2.160000px;}
.ls23{letter-spacing:2.626560px;}
.lse{letter-spacing:4.786560px;}
.ls1d{letter-spacing:7.931520px;}
.ls25{letter-spacing:11.266560px;}
.ls11{letter-spacing:15.586560px;}
.lsd{letter-spacing:22.066560px;}
.ls4{letter-spacing:37.186560px;}
.ls24{letter-spacing:41.506560px;}
.ls19{letter-spacing:45.826560px;}
.ls17{letter-spacing:202.475520px;}
.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;}
}
.ws0{word-spacing:-50.544000px;}
.ws1{word-spacing:-41.040000px;}
.ws3{word-spacing:-15.744960px;}
.ws4{word-spacing:-15.132960px;}
.wse{word-spacing:-15.120000px;}
.ws10{word-spacing:-14.316480px;}
.wsb{word-spacing:-14.186880px;}
.ws6{word-spacing:-13.668480px;}
.ws2{word-spacing:-13.584960px;}
.wsc{word-spacing:-13.244880px;}
.wsf{word-spacing:-13.210680px;}
.wsa{word-spacing:-13.141680px;}
.wsd{word-spacing:-13.056480px;}
.ws9{word-spacing:-12.690480px;}
.ws7{word-spacing:-12.642480px;}
.ws5{word-spacing:-8.786880px;}
.ws8{word-spacing:0.000000px;}
._6{margin-left:-1449.635520px;}
._2{margin-left:-1331.188560px;}
._4{margin-left:-1003.894080px;}
._7{margin-left:-582.913200px;}
._8{margin-left:-5.225280px;}
._e{margin-left:-4.139760px;}
._3{margin-left:-3.047280px;}
._1{margin-left:-1.255200px;}
._5{width:1.138320px;}
._0{width:2.436000px;}
._a{width:4.062480px;}
._d{width:5.104560px;}
._9{width:6.576240px;}
._b{width:7.681440px;}
._1e{width:8.850960px;}
._c{width:9.990000px;}
._10{width:11.876640px;}
._f{width:15.032400px;}
._15{width:16.506480px;}
._13{width:18.396960px;}
._14{width:19.459680px;}
._16{width:21.028080px;}
._2c{width:23.088480px;}
._18{width:25.620240px;}
._12{width:28.665840px;}
._11{width:30.013920px;}
._1b{width:36.300720px;}
._1c{width:48.312000px;}
._17{width:51.793440px;}
._2b{width:64.104720px;}
._1d{width:66.734400px;}
._22{width:74.252160px;}
._25{width:84.300240px;}
._24{width:85.409760px;}
._23{width:86.411040px;}
._21{width:88.046400px;}
._1a{width:107.014800px;}
._20{width:113.786160px;}
._26{width:138.918480px;}
._27{width:140.207520px;}
._28{width:142.204080px;}
._29{width:158.880960px;}
._2a{width:160.082400px;}
._1f{width:161.843520px;}
._19{width:202.511520px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.040000px;}
.fs6{font-size:47.520000px;}
.fs5{font-size:60.480000px;}
.fs1{font-size:66.960000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.040000px;}
.y0{bottom:0.000000px;}
.y67{bottom:7.020000px;}
.y6b{bottom:7.050000px;}
.y93{bottom:7.065000px;}
.yc6{bottom:7.560000px;}
.yac{bottom:16.740000px;}
.y8e{bottom:28.080000px;}
.y8f{bottom:28.110000px;}
.y92{bottom:28.125000px;}
.yc5{bottom:28.620000px;}
.y9b{bottom:49.140000px;}
.y6{bottom:57.816000px;}
.y65{bottom:88.596000px;}
.y102{bottom:96.156000px;}
.yc3{bottom:97.776000px;}
.y30{bottom:104.796000px;}
.y8b{bottom:106.416000px;}
.y64{bottom:109.656000px;}
.y101{bottom:117.216000px;}
.yc2{bottom:118.836000px;}
.y2f{bottom:125.856000px;}
.ya8{bottom:126.936000px;}
.y8a{bottom:127.476000px;}
.ydf{bottom:128.556000px;}
.y63{bottom:130.752000px;}
.y100{bottom:138.312000px;}
.yc1{bottom:139.932000px;}
.y2e{bottom:146.952000px;}
.ya7{bottom:148.032000px;}
.y89{bottom:148.572000px;}
.yde{bottom:149.652000px;}
.y62{bottom:151.815000px;}
.yff{bottom:159.375000px;}
.yc0{bottom:160.995000px;}
.y2d{bottom:168.015000px;}
.ya6{bottom:169.095000px;}
.y88{bottom:169.635000px;}
.ydd{bottom:170.715000px;}
.y61{bottom:172.875000px;}
.yfe{bottom:180.435000px;}
.ybf{bottom:182.055000px;}
.y2c{bottom:189.075000px;}
.ya5{bottom:190.155000px;}
.y87{bottom:190.695000px;}
.ydc{bottom:191.775000px;}
.y60{bottom:193.935000px;}
.yfd{bottom:201.495000px;}
.ybe{bottom:203.115000px;}
.y2b{bottom:210.135000px;}
.ya4{bottom:211.215000px;}
.y86{bottom:211.755000px;}
.ydb{bottom:212.835000px;}
.y5f{bottom:215.025000px;}
.yfc{bottom:222.585000px;}
.ybd{bottom:224.205000px;}
.y2a{bottom:231.225000px;}
.ya3{bottom:232.305000px;}
.y85{bottom:232.845000px;}
.yda{bottom:233.925000px;}
.y5e{bottom:236.085000px;}
.yfb{bottom:243.645000px;}
.ybc{bottom:245.265000px;}
.y29{bottom:252.285000px;}
.ya2{bottom:253.365000px;}
.y84{bottom:253.905000px;}
.yd9{bottom:254.985000px;}
.y5d{bottom:257.145000px;}
.yfa{bottom:264.705000px;}
.ybb{bottom:266.325000px;}
.y28{bottom:273.345000px;}
.ya1{bottom:274.425000px;}
.y83{bottom:274.965000px;}
.yd8{bottom:275.505000px;}
.y5c{bottom:278.205000px;}
.yf9{bottom:285.765000px;}
.yba{bottom:287.385000px;}
.y27{bottom:294.405000px;}
.ya0{bottom:295.485000px;}
.y82{bottom:296.025000px;}
.yd7{bottom:296.565000px;}
.y5b{bottom:299.310000px;}
.yf8{bottom:306.870000px;}
.yb9{bottom:308.490000px;}
.y26{bottom:315.510000px;}
.y9f{bottom:316.590000px;}
.y81{bottom:317.130000px;}
.yd6{bottom:317.670000px;}
.y5a{bottom:320.370000px;}
.yf7{bottom:327.930000px;}
.yb8{bottom:329.550000px;}
.y25{bottom:336.570000px;}
.y9e{bottom:337.650000px;}
.y80{bottom:338.190000px;}
.yd5{bottom:338.730000px;}
.y59{bottom:341.430000px;}
.yf6{bottom:348.990000px;}
.yb7{bottom:350.610000px;}
.y24{bottom:357.630000px;}
.y9d{bottom:358.710000px;}
.y7f{bottom:359.250000px;}
.yd4{bottom:359.790000px;}
.y58{bottom:362.490000px;}
.yf5{bottom:370.050000px;}
.yb6{bottom:371.670000px;}
.y9c{bottom:373.830000px;}
.y23{bottom:378.690000px;}
.y7e{bottom:380.310000px;}
.yd3{bottom:380.850000px;}
.y57{bottom:383.580000px;}
.yf4{bottom:391.140000px;}
.yb5{bottom:392.760000px;}
.y9a{bottom:396.000000px;}
.y22{bottom:399.780000px;}
.y7d{bottom:401.400000px;}
.yd2{bottom:401.940000px;}
.y56{bottom:404.640000px;}
.yf3{bottom:412.200000px;}
.yb4{bottom:413.820000px;}
.y21{bottom:420.840000px;}
.y7c{bottom:422.460000px;}
.yd1{bottom:423.000000px;}
.y55{bottom:425.700000px;}
.yf2{bottom:433.260000px;}
.yb3{bottom:434.880000px;}
.y20{bottom:441.900000px;}
.y7b{bottom:443.520000px;}
.yd0{bottom:444.060000px;}
.y54{bottom:446.760000px;}
.yf1{bottom:454.320000px;}
.yb2{bottom:455.940000px;}
.y99{bottom:459.180000px;}
.y1f{bottom:462.960000px;}
.y7a{bottom:464.580000px;}
.ycf{bottom:465.120000px;}
.y53{bottom:467.850000px;}
.yf0{bottom:475.410000px;}
.yb1{bottom:477.030000px;}
.y1e{bottom:484.050000px;}
.y79{bottom:485.670000px;}
.yce{bottom:486.210000px;}
.y52{bottom:488.910000px;}
.yef{bottom:496.470000px;}
.yb0{bottom:498.090000px;}
.y98{bottom:501.330000px;}
.y1d{bottom:505.110000px;}
.y78{bottom:506.730000px;}
.ycd{bottom:507.270000px;}
.y51{bottom:509.970000px;}
.yee{bottom:517.530000px;}
.yaf{bottom:519.150000px;}
.y1c{bottom:526.170000px;}
.y77{bottom:527.790000px;}
.ycc{bottom:528.330000px;}
.y50{bottom:531.030000px;}
.yed{bottom:538.590000px;}
.yae{bottom:540.210000px;}
.y97{bottom:543.450000px;}
.y1b{bottom:547.230000px;}
.y76{bottom:548.850000px;}
.ycb{bottom:549.390000px;}
.y4f{bottom:552.135000px;}
.yec{bottom:559.695000px;}
.yad{bottom:561.315000px;}
.y1a{bottom:568.335000px;}
.y75{bottom:569.955000px;}
.yca{bottom:570.495000px;}
.y4e{bottom:573.195000px;}
.yab{bottom:575.895000px;}
.yeb{bottom:580.755000px;}
.y96{bottom:585.615000px;}
.y19{bottom:589.395000px;}
.y74{bottom:591.015000px;}
.y4d{bottom:594.255000px;}
.yea{bottom:601.815000px;}
.yaa{bottom:606.675000px;}
.y73{bottom:612.075000px;}
.y4c{bottom:615.315000px;}
.ye9{bottom:622.875000px;}
.y95{bottom:627.735000px;}
.y18{bottom:633.135000px;}
.y4b{bottom:636.405000px;}
.ye8{bottom:643.965000px;}
.yc9{bottom:648.825000px;}
.ya9{bottom:649.365000px;}
.y72{bottom:654.225000px;}
.y4a{bottom:657.465000px;}
.y17{bottom:663.945000px;}
.ye7{bottom:665.025000px;}
.y94{bottom:669.885000px;}
.y71{bottom:675.285000px;}
.y49{bottom:678.525000px;}
.y16{bottom:685.005000px;}
.ye6{bottom:686.085000px;}
.yc8{bottom:690.945000px;}
.y70{bottom:696.345000px;}
.y48{bottom:699.585000px;}
.y15{bottom:706.065000px;}
.ye5{bottom:707.145000px;}
.y91{bottom:712.005000px;}
.y6f{bottom:717.405000px;}
.y47{bottom:720.690000px;}
.y14{bottom:727.170000px;}
.ye4{bottom:728.250000px;}
.yc4{bottom:733.110000px;}
.y6e{bottom:738.510000px;}
.y46{bottom:741.750000px;}
.y13{bottom:748.230000px;}
.y90{bottom:754.170000px;}
.yc7{bottom:754.710000px;}
.y6d{bottom:759.570000px;}
.y45{bottom:762.810000px;}
.ye3{bottom:767.670000px;}
.y12{bottom:769.290000px;}
.y6c{bottom:774.150000px;}
.y44{bottom:783.870000px;}
.ye2{bottom:787.650000px;}
.y11{bottom:790.350000px;}
.y6a{bottom:796.290000px;}
.y43{bottom:804.960000px;}
.ye1{bottom:807.120000px;}
.y10{bottom:811.440000px;}
.y69{bottom:817.380000px;}
.y42{bottom:826.020000px;}
.ye0{bottom:827.100000px;}
.yf{bottom:832.500000px;}
.y68{bottom:838.440000px;}
.y41{bottom:847.080000px;}
.ye{bottom:853.560000px;}
.y66{bottom:860.040000px;}
.y40{bottom:868.140000px;}
.yd{bottom:874.620000px;}
.y8d{bottom:880.560000px;}
.y3f{bottom:889.230000px;}
.yc{bottom:897.870000px;}
.y8c{bottom:902.190000px;}
.y3e{bottom:910.290000px;}
.yb{bottom:924.330000px;}
.y3d{bottom:930.810000px;}
.ya{bottom:945.390000px;}
.y3c{bottom:951.870000px;}
.y9{bottom:961.590000px;}
.y3b{bottom:972.975000px;}
.y8{bottom:984.855000px;}
.y3a{bottom:994.035000px;}
.y7{bottom:1011.315000px;}
.y39{bottom:1015.095000px;}
.y38{bottom:1036.155000px;}
.y5{bottom:1051.275000px;}
.y37{bottom:1057.245000px;}
.y36{bottom:1078.305000px;}
.y4{bottom:1083.705000px;}
.y35{bottom:1099.365000px;}
.y3{bottom:1115.565000px;}
.y34{bottom:1120.425000px;}
.y33{bottom:1141.530000px;}
.y2{bottom:1148.010000px;}
.y32{bottom:1162.590000px;}
.y1{bottom:1183.110000px;}
.y31{bottom:1193.370000px;}
.hc{height:21.060000px;}
.hd{height:21.096000px;}
.h11{height:30.780000px;}
.h7{height:34.001016px;}
.he{height:42.120000px;}
.hf{height:42.156000px;}
.h12{height:42.660000px;}
.hb{height:48.608438px;}
.h13{height:52.848281px;}
.h8{height:52.890469px;}
.h5{height:53.816484px;}
.h2{height:56.146289px;}
.h3{height:58.557305px;}
.h14{height:59.357813px;}
.h6{height:61.064297px;}
.ha{height:62.163910px;}
.h9{height:62.960625px;}
.h10{height:63.180000px;}
.h4{height:76.384687px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wa{width:47.016000px;}
.w9{width:52.416000px;}
.w1a{width:77.292000px;}
.we{width:77.796000px;}
.wf{width:77.832000px;}
.w5{width:86.472000px;}
.w19{width:89.676000px;}
.w16{width:90.252000px;}
.w11{width:103.752000px;}
.w4{width:104.796000px;}
.w15{width:115.596000px;}
.w17{width:115.632000px;}
.wb{width:125.352000px;}
.wc{width:126.432000px;}
.w18{width:128.592000px;}
.w12{width:129.132000px;}
.w14{width:166.965000px;}
.w13{width:167.505000px;}
.w6{width:175.605000px;}
.wd{width:179.925000px;}
.w7{width:198.285000px;}
.w3{width:225.330000px;}
.w10{width:229.065000px;}
.w8{width:429.015000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x1f{left:17.280000px;}
.x28{left:21.600000px;}
.x1c{left:23.265000px;}
.x25{left:24.300000px;}
.x29{left:28.080000px;}
.x24{left:31.350000px;}
.x27{left:32.970000px;}
.xf{left:35.136000px;}
.x26{left:36.720000px;}
.x22{left:37.830000px;}
.x23{left:40.500000px;}
.x1b{left:44.865000px;}
.x19{left:50.220000px;}
.x1{left:54.035987px;}
.x2{left:55.115987px;}
.x1e{left:57.810000px;}
.x10{left:62.136000px;}
.x21{left:64.290000px;}
.x17{left:74.550000px;}
.x2a{left:81.035987px;}
.x3{left:108.071987px;}
.x2b{left:135.071987px;}
.x4{left:138.311987px;}
.xa{left:183.174000px;}
.x16{left:221.550000px;}
.x11{left:233.970000px;}
.x6{left:279.360000px;}
.x12{left:311.760000px;}
.x7{left:384.150000px;}
.x18{left:388.515000px;}
.x13{left:389.595000px;}
.x8{left:470.625000px;}
.xb{left:483.045000px;}
.x1a{left:504.105000px;}
.xc{left:535.470000px;}
.xd{left:582.480000px;}
.x1d{left:594.360000px;}
.x14{left:618.660000px;}
.x9{left:646.230000px;}
.xe{left:707.835000px;}
.x20{left:709.995000px;}
.x15{left:722.415000px;}
.x2c{left:839.669987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.200000pt;}
.v1{vertical-align:24.960000pt;}
.ls13{letter-spacing:-1.813333pt;}
.ls7{letter-spacing:-1.376000pt;}
.ls1e{letter-spacing:-1.344000pt;}
.lsc{letter-spacing:-0.912000pt;}
.ls14{letter-spacing:-0.869333pt;}
.ls26{letter-spacing:-0.629333pt;}
.ls22{letter-spacing:-0.544000pt;}
.ls18{letter-spacing:-0.468267pt;}
.ls27{letter-spacing:-0.406933pt;}
.ls1b{letter-spacing:-0.376533pt;}
.ls1a{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.003840pt;}
.lsf{letter-spacing:0.053760pt;}
.ls10{letter-spacing:0.061440pt;}
.ls12{letter-spacing:0.099733pt;}
.ls15{letter-spacing:0.107520pt;}
.ls1f{letter-spacing:0.437867pt;}
.ls21{letter-spacing:0.453120pt;}
.ls16{letter-spacing:0.460800pt;}
.ls9{letter-spacing:0.480000pt;}
.lsb{letter-spacing:0.522133pt;}
.ls8{letter-spacing:0.544000pt;}
.ls28{letter-spacing:0.576000pt;}
.ls20{letter-spacing:0.667307pt;}
.ls3{letter-spacing:0.704640pt;}
.ls2{letter-spacing:0.714240pt;}
.ls1{letter-spacing:0.768000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls5{letter-spacing:1.290240pt;}
.ls1c{letter-spacing:1.920000pt;}
.ls23{letter-spacing:2.334720pt;}
.lse{letter-spacing:4.254720pt;}
.ls1d{letter-spacing:7.050240pt;}
.ls25{letter-spacing:10.014720pt;}
.ls11{letter-spacing:13.854720pt;}
.lsd{letter-spacing:19.614720pt;}
.ls4{letter-spacing:33.054720pt;}
.ls24{letter-spacing:36.894720pt;}
.ls19{letter-spacing:40.734720pt;}
.ls17{letter-spacing:179.978240pt;}
.ws0{word-spacing:-44.928000pt;}
.ws1{word-spacing:-36.480000pt;}
.ws3{word-spacing:-13.995520pt;}
.ws4{word-spacing:-13.451520pt;}
.wse{word-spacing:-13.440000pt;}
.ws10{word-spacing:-12.725760pt;}
.wsb{word-spacing:-12.610560pt;}
.ws6{word-spacing:-12.149760pt;}
.ws2{word-spacing:-12.075520pt;}
.wsc{word-spacing:-11.773227pt;}
.wsf{word-spacing:-11.742827pt;}
.wsa{word-spacing:-11.681493pt;}
.wsd{word-spacing:-11.605760pt;}
.ws9{word-spacing:-11.280427pt;}
.ws7{word-spacing:-11.237760pt;}
.ws5{word-spacing:-7.810560pt;}
.ws8{word-spacing:0.000000pt;}
._6{margin-left:-1288.564907pt;}
._2{margin-left:-1183.278720pt;}
._4{margin-left:-892.350293pt;}
._7{margin-left:-518.145067pt;}
._8{margin-left:-4.644693pt;}
._e{margin-left:-3.679787pt;}
._3{margin-left:-2.708693pt;}
._1{margin-left:-1.115733pt;}
._5{width:1.011840pt;}
._0{width:2.165333pt;}
._a{width:3.611093pt;}
._d{width:4.537387pt;}
._9{width:5.845547pt;}
._b{width:6.827947pt;}
._1e{width:7.867520pt;}
._c{width:8.880000pt;}
._10{width:10.557013pt;}
._f{width:13.362133pt;}
._15{width:14.672427pt;}
._13{width:16.352853pt;}
._14{width:17.297493pt;}
._16{width:18.691627pt;}
._2c{width:20.523093pt;}
._18{width:22.773547pt;}
._12{width:25.480747pt;}
._11{width:26.679040pt;}
._1b{width:32.267307pt;}
._1c{width:42.944000pt;}
._17{width:46.038613pt;}
._2b{width:56.981973pt;}
._1d{width:59.319467pt;}
._22{width:66.001920pt;}
._25{width:74.933547pt;}
._24{width:75.919787pt;}
._23{width:76.809813pt;}
._21{width:78.263467pt;}
._1a{width:95.124267pt;}
._20{width:101.143253pt;}
._26{width:123.483093pt;}
._27{width:124.628907pt;}
._28{width:126.403627pt;}
._29{width:141.227520pt;}
._2a{width:142.295467pt;}
._1f{width:143.860907pt;}
._19{width:180.010240pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:36.480000pt;}
.fs6{font-size:42.240000pt;}
.fs5{font-size:53.760000pt;}
.fs1{font-size:59.520000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:84.480000pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:6.240000pt;}
.y6b{bottom:6.266667pt;}
.y93{bottom:6.280000pt;}
.yc6{bottom:6.720000pt;}
.yac{bottom:14.880000pt;}
.y8e{bottom:24.960000pt;}
.y8f{bottom:24.986667pt;}
.y92{bottom:25.000000pt;}
.yc5{bottom:25.440000pt;}
.y9b{bottom:43.680000pt;}
.y6{bottom:51.392000pt;}
.y65{bottom:78.752000pt;}
.y102{bottom:85.472000pt;}
.yc3{bottom:86.912000pt;}
.y30{bottom:93.152000pt;}
.y8b{bottom:94.592000pt;}
.y64{bottom:97.472000pt;}
.y101{bottom:104.192000pt;}
.yc2{bottom:105.632000pt;}
.y2f{bottom:111.872000pt;}
.ya8{bottom:112.832000pt;}
.y8a{bottom:113.312000pt;}
.ydf{bottom:114.272000pt;}
.y63{bottom:116.224000pt;}
.y100{bottom:122.944000pt;}
.yc1{bottom:124.384000pt;}
.y2e{bottom:130.624000pt;}
.ya7{bottom:131.584000pt;}
.y89{bottom:132.064000pt;}
.yde{bottom:133.024000pt;}
.y62{bottom:134.946667pt;}
.yff{bottom:141.666667pt;}
.yc0{bottom:143.106667pt;}
.y2d{bottom:149.346667pt;}
.ya6{bottom:150.306667pt;}
.y88{bottom:150.786667pt;}
.ydd{bottom:151.746667pt;}
.y61{bottom:153.666667pt;}
.yfe{bottom:160.386667pt;}
.ybf{bottom:161.826667pt;}
.y2c{bottom:168.066667pt;}
.ya5{bottom:169.026667pt;}
.y87{bottom:169.506667pt;}
.ydc{bottom:170.466667pt;}
.y60{bottom:172.386667pt;}
.yfd{bottom:179.106667pt;}
.ybe{bottom:180.546667pt;}
.y2b{bottom:186.786667pt;}
.ya4{bottom:187.746667pt;}
.y86{bottom:188.226667pt;}
.ydb{bottom:189.186667pt;}
.y5f{bottom:191.133333pt;}
.yfc{bottom:197.853333pt;}
.ybd{bottom:199.293333pt;}
.y2a{bottom:205.533333pt;}
.ya3{bottom:206.493333pt;}
.y85{bottom:206.973333pt;}
.yda{bottom:207.933333pt;}
.y5e{bottom:209.853333pt;}
.yfb{bottom:216.573333pt;}
.ybc{bottom:218.013333pt;}
.y29{bottom:224.253333pt;}
.ya2{bottom:225.213333pt;}
.y84{bottom:225.693333pt;}
.yd9{bottom:226.653333pt;}
.y5d{bottom:228.573333pt;}
.yfa{bottom:235.293333pt;}
.ybb{bottom:236.733333pt;}
.y28{bottom:242.973333pt;}
.ya1{bottom:243.933333pt;}
.y83{bottom:244.413333pt;}
.yd8{bottom:244.893333pt;}
.y5c{bottom:247.293333pt;}
.yf9{bottom:254.013333pt;}
.yba{bottom:255.453333pt;}
.y27{bottom:261.693333pt;}
.ya0{bottom:262.653333pt;}
.y82{bottom:263.133333pt;}
.yd7{bottom:263.613333pt;}
.y5b{bottom:266.053333pt;}
.yf8{bottom:272.773333pt;}
.yb9{bottom:274.213333pt;}
.y26{bottom:280.453333pt;}
.y9f{bottom:281.413333pt;}
.y81{bottom:281.893333pt;}
.yd6{bottom:282.373333pt;}
.y5a{bottom:284.773333pt;}
.yf7{bottom:291.493333pt;}
.yb8{bottom:292.933333pt;}
.y25{bottom:299.173333pt;}
.y9e{bottom:300.133333pt;}
.y80{bottom:300.613333pt;}
.yd5{bottom:301.093333pt;}
.y59{bottom:303.493333pt;}
.yf6{bottom:310.213333pt;}
.yb7{bottom:311.653333pt;}
.y24{bottom:317.893333pt;}
.y9d{bottom:318.853333pt;}
.y7f{bottom:319.333333pt;}
.yd4{bottom:319.813333pt;}
.y58{bottom:322.213333pt;}
.yf5{bottom:328.933333pt;}
.yb6{bottom:330.373333pt;}
.y9c{bottom:332.293333pt;}
.y23{bottom:336.613333pt;}
.y7e{bottom:338.053333pt;}
.yd3{bottom:338.533333pt;}
.y57{bottom:340.960000pt;}
.yf4{bottom:347.680000pt;}
.yb5{bottom:349.120000pt;}
.y9a{bottom:352.000000pt;}
.y22{bottom:355.360000pt;}
.y7d{bottom:356.800000pt;}
.yd2{bottom:357.280000pt;}
.y56{bottom:359.680000pt;}
.yf3{bottom:366.400000pt;}
.yb4{bottom:367.840000pt;}
.y21{bottom:374.080000pt;}
.y7c{bottom:375.520000pt;}
.yd1{bottom:376.000000pt;}
.y55{bottom:378.400000pt;}
.yf2{bottom:385.120000pt;}
.yb3{bottom:386.560000pt;}
.y20{bottom:392.800000pt;}
.y7b{bottom:394.240000pt;}
.yd0{bottom:394.720000pt;}
.y54{bottom:397.120000pt;}
.yf1{bottom:403.840000pt;}
.yb2{bottom:405.280000pt;}
.y99{bottom:408.160000pt;}
.y1f{bottom:411.520000pt;}
.y7a{bottom:412.960000pt;}
.ycf{bottom:413.440000pt;}
.y53{bottom:415.866667pt;}
.yf0{bottom:422.586667pt;}
.yb1{bottom:424.026667pt;}
.y1e{bottom:430.266667pt;}
.y79{bottom:431.706667pt;}
.yce{bottom:432.186667pt;}
.y52{bottom:434.586667pt;}
.yef{bottom:441.306667pt;}
.yb0{bottom:442.746667pt;}
.y98{bottom:445.626667pt;}
.y1d{bottom:448.986667pt;}
.y78{bottom:450.426667pt;}
.ycd{bottom:450.906667pt;}
.y51{bottom:453.306667pt;}
.yee{bottom:460.026667pt;}
.yaf{bottom:461.466667pt;}
.y1c{bottom:467.706667pt;}
.y77{bottom:469.146667pt;}
.ycc{bottom:469.626667pt;}
.y50{bottom:472.026667pt;}
.yed{bottom:478.746667pt;}
.yae{bottom:480.186667pt;}
.y97{bottom:483.066667pt;}
.y1b{bottom:486.426667pt;}
.y76{bottom:487.866667pt;}
.ycb{bottom:488.346667pt;}
.y4f{bottom:490.786667pt;}
.yec{bottom:497.506667pt;}
.yad{bottom:498.946667pt;}
.y1a{bottom:505.186667pt;}
.y75{bottom:506.626667pt;}
.yca{bottom:507.106667pt;}
.y4e{bottom:509.506667pt;}
.yab{bottom:511.906667pt;}
.yeb{bottom:516.226667pt;}
.y96{bottom:520.546667pt;}
.y19{bottom:523.906667pt;}
.y74{bottom:525.346667pt;}
.y4d{bottom:528.226667pt;}
.yea{bottom:534.946667pt;}
.yaa{bottom:539.266667pt;}
.y73{bottom:544.066667pt;}
.y4c{bottom:546.946667pt;}
.ye9{bottom:553.666667pt;}
.y95{bottom:557.986667pt;}
.y18{bottom:562.786667pt;}
.y4b{bottom:565.693333pt;}
.ye8{bottom:572.413333pt;}
.yc9{bottom:576.733333pt;}
.ya9{bottom:577.213333pt;}
.y72{bottom:581.533333pt;}
.y4a{bottom:584.413333pt;}
.y17{bottom:590.173333pt;}
.ye7{bottom:591.133333pt;}
.y94{bottom:595.453333pt;}
.y71{bottom:600.253333pt;}
.y49{bottom:603.133333pt;}
.y16{bottom:608.893333pt;}
.ye6{bottom:609.853333pt;}
.yc8{bottom:614.173333pt;}
.y70{bottom:618.973333pt;}
.y48{bottom:621.853333pt;}
.y15{bottom:627.613333pt;}
.ye5{bottom:628.573333pt;}
.y91{bottom:632.893333pt;}
.y6f{bottom:637.693333pt;}
.y47{bottom:640.613333pt;}
.y14{bottom:646.373333pt;}
.ye4{bottom:647.333333pt;}
.yc4{bottom:651.653333pt;}
.y6e{bottom:656.453333pt;}
.y46{bottom:659.333333pt;}
.y13{bottom:665.093333pt;}
.y90{bottom:670.373333pt;}
.yc7{bottom:670.853333pt;}
.y6d{bottom:675.173333pt;}
.y45{bottom:678.053333pt;}
.ye3{bottom:682.373333pt;}
.y12{bottom:683.813333pt;}
.y6c{bottom:688.133333pt;}
.y44{bottom:696.773333pt;}
.ye2{bottom:700.133333pt;}
.y11{bottom:702.533333pt;}
.y6a{bottom:707.813333pt;}
.y43{bottom:715.520000pt;}
.ye1{bottom:717.440000pt;}
.y10{bottom:721.280000pt;}
.y69{bottom:726.560000pt;}
.y42{bottom:734.240000pt;}
.ye0{bottom:735.200000pt;}
.yf{bottom:740.000000pt;}
.y68{bottom:745.280000pt;}
.y41{bottom:752.960000pt;}
.ye{bottom:758.720000pt;}
.y66{bottom:764.480000pt;}
.y40{bottom:771.680000pt;}
.yd{bottom:777.440000pt;}
.y8d{bottom:782.720000pt;}
.y3f{bottom:790.426667pt;}
.yc{bottom:798.106667pt;}
.y8c{bottom:801.946667pt;}
.y3e{bottom:809.146667pt;}
.yb{bottom:821.626667pt;}
.y3d{bottom:827.386667pt;}
.ya{bottom:840.346667pt;}
.y3c{bottom:846.106667pt;}
.y9{bottom:854.746667pt;}
.y3b{bottom:864.866667pt;}
.y8{bottom:875.426667pt;}
.y3a{bottom:883.586667pt;}
.y7{bottom:898.946667pt;}
.y39{bottom:902.306667pt;}
.y38{bottom:921.026667pt;}
.y5{bottom:934.466667pt;}
.y37{bottom:939.773333pt;}
.y36{bottom:958.493333pt;}
.y4{bottom:963.293333pt;}
.y35{bottom:977.213333pt;}
.y3{bottom:991.613333pt;}
.y34{bottom:995.933333pt;}
.y33{bottom:1014.693333pt;}
.y2{bottom:1020.453333pt;}
.y32{bottom:1033.413333pt;}
.y1{bottom:1051.653333pt;}
.y31{bottom:1060.773333pt;}
.hc{height:18.720000pt;}
.hd{height:18.752000pt;}
.h11{height:27.360000pt;}
.h7{height:30.223125pt;}
.he{height:37.440000pt;}
.hf{height:37.472000pt;}
.h12{height:37.920000pt;}
.hb{height:43.207500pt;}
.h13{height:46.976250pt;}
.h8{height:47.013750pt;}
.h5{height:47.836875pt;}
.h2{height:49.907812pt;}
.h3{height:52.050938pt;}
.h14{height:52.762500pt;}
.h6{height:54.279375pt;}
.ha{height:55.256809pt;}
.h9{height:55.965000pt;}
.h10{height:56.160000pt;}
.h4{height:67.897500pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wa{width:41.792000pt;}
.w9{width:46.592000pt;}
.w1a{width:68.704000pt;}
.we{width:69.152000pt;}
.wf{width:69.184000pt;}
.w5{width:76.864000pt;}
.w19{width:79.712000pt;}
.w16{width:80.224000pt;}
.w11{width:92.224000pt;}
.w4{width:93.152000pt;}
.w15{width:102.752000pt;}
.w17{width:102.784000pt;}
.wb{width:111.424000pt;}
.wc{width:112.384000pt;}
.w18{width:114.304000pt;}
.w12{width:114.784000pt;}
.w14{width:148.413333pt;}
.w13{width:148.893333pt;}
.w6{width:156.093333pt;}
.wd{width:159.933333pt;}
.w7{width:176.253333pt;}
.w3{width:200.293333pt;}
.w10{width:203.613333pt;}
.w8{width:381.346667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x1f{left:15.360000pt;}
.x28{left:19.200000pt;}
.x1c{left:20.680000pt;}
.x25{left:21.600000pt;}
.x29{left:24.960000pt;}
.x24{left:27.866667pt;}
.x27{left:29.306667pt;}
.xf{left:31.232000pt;}
.x26{left:32.640000pt;}
.x22{left:33.626667pt;}
.x23{left:36.000000pt;}
.x1b{left:39.880000pt;}
.x19{left:44.640000pt;}
.x1{left:48.031988pt;}
.x2{left:48.991988pt;}
.x1e{left:51.386667pt;}
.x10{left:55.232000pt;}
.x21{left:57.146667pt;}
.x17{left:66.266667pt;}
.x2a{left:72.031988pt;}
.x3{left:96.063988pt;}
.x2b{left:120.063988pt;}
.x4{left:122.943988pt;}
.xa{left:162.821333pt;}
.x16{left:196.933333pt;}
.x11{left:207.973333pt;}
.x6{left:248.320000pt;}
.x12{left:277.120000pt;}
.x7{left:341.466667pt;}
.x18{left:345.346667pt;}
.x13{left:346.306667pt;}
.x8{left:418.333333pt;}
.xb{left:429.373333pt;}
.x1a{left:448.093333pt;}
.xc{left:475.973333pt;}
.xd{left:517.760000pt;}
.x1d{left:528.320000pt;}
.x14{left:549.920000pt;}
.x9{left:574.426667pt;}
.xe{left:629.186667pt;}
.x20{left:631.106667pt;}
.x15{left:642.146667pt;}
.x2c{left:746.373322pt;}
}




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