
    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_5119dd2ee6498d82de649ad5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_546d9599cda374d84c74305f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fc565307c205859a7c141465.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_aa5773f018c4caf478c35b7a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_38f64569ad9acc9e3744bc92.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.675781;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_b5b7f114afe18f3749e5ccfb.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_575d72af3455ed165aac33e4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.689453;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_6aac45d5a100d798af68f8d1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-30.240000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:27.360000px;}
.v1{vertical-align:33.120000px;}
.ls30{letter-spacing:-5.100000px;}
.ls2f{letter-spacing:-5.079600px;}
.ls2c{letter-spacing:-4.601520px;}
.ls24{letter-spacing:-3.600000px;}
.ls23{letter-spacing:-3.585600px;}
.ls21{letter-spacing:-3.240000px;}
.ls36{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.397440px;}
.ls1a{letter-spacing:-0.360000px;}
.ls31{letter-spacing:-0.358560px;}
.lsf{letter-spacing:-0.337680px;}
.lsd{letter-spacing:-0.324000px;}
.ls14{letter-spacing:-0.179280px;}
.ls1e{letter-spacing:-0.106800px;}
.ls1b{letter-spacing:-0.053280px;}
.lsb{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.108000px;}
.ls28{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.174240px;}
.ls3{letter-spacing:0.179280px;}
.ls16{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.239040px;}
.ls37{letter-spacing:0.259800px;}
.ls35{letter-spacing:0.259920px;}
.ls2a{letter-spacing:0.284400px;}
.ls9{letter-spacing:0.298800px;}
.ls2d{letter-spacing:0.324000px;}
.lse{letter-spacing:0.337680px;}
.ls4{letter-spacing:0.358560px;}
.ls5{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.418320px;}
.ls3c{letter-spacing:0.513600px;}
.ls1f{letter-spacing:0.774000px;}
.ls19{letter-spacing:0.900000px;}
.ls18{letter-spacing:0.924000px;}
.ls12{letter-spacing:1.126080px;}
.ls7{letter-spacing:1.302000px;}
.ls15{letter-spacing:1.673280px;}
.ls11{letter-spacing:1.722240px;}
.ls25{letter-spacing:1.792800px;}
.ls8{letter-spacing:1.972080px;}
.ls2b{letter-spacing:2.569680px;}
.ls29{letter-spacing:3.047760px;}
.ls32{letter-spacing:3.585600px;}
.ls34{letter-spacing:4.500000px;}
.ls33{letter-spacing:5.220000px;}
.ls27{letter-spacing:6.513840px;}
.ls1d{letter-spacing:10.260000px;}
.ls1c{letter-spacing:10.980000px;}
.ls38{letter-spacing:13.140000px;}
.ls17{letter-spacing:13.860000px;}
.ls2e{letter-spacing:15.776640px;}
.ls3b{letter-spacing:16.626720px;}
.ls3a{letter-spacing:46.002720px;}
.ls39{letter-spacing:46.146720px;}
.ls6{letter-spacing:73.620000px;}
.lsc{letter-spacing:226.260000px;}
.ls0{letter-spacing:600.840000px;}
.ls20{letter-spacing:1299.960000px;}
.ls22{letter-spacing:2037.960000px;}
.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;}
}
.ws11{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.864000px;}
.ws7{word-spacing:-15.300000px;}
.ws0{word-spacing:-15.298560px;}
.ws10{word-spacing:-15.199800px;}
.ws5{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.580000px;}
.ws1{word-spacing:-12.397680px;}
.ws2{word-spacing:-11.722320px;}
.wsc{word-spacing:-11.354400px;}
.wsd{word-spacing:-11.340000px;}
.ws4{word-spacing:-10.440000px;}
.wse{word-spacing:-9.860400px;}
.wsf{word-spacing:-9.840000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._32{margin-left:-2037.781800px;}
._31{margin-left:-1812.357240px;}
._33{margin-left:-6.699120px;}
._34{margin-left:-4.050000px;}
._1e{margin-left:-2.583360px;}
._0{margin-left:-1.015920px;}
._2{width:1.195200px;}
._1{width:2.695920px;}
._4{width:3.812688px;}
._e{width:5.671224px;}
._13{width:6.872400px;}
._14{width:8.139312px;}
._1f{width:9.674904px;}
._10{width:11.115360px;}
._6{width:12.609360px;}
._d{width:13.858344px;}
._11{width:16.732800px;}
._15{width:18.047520px;}
._19{width:19.953864px;}
._35{width:21.035520px;}
._12{width:22.051440px;}
._f{width:23.186880px;}
._18{width:24.645024px;}
._20{width:25.935840px;}
._2e{width:26.992584px;}
._c{width:28.016952px;}
._b{width:29.333496px;}
._2a{width:30.366744px;}
._22{width:31.613040px;}
._23{width:32.868000px;}
._24{width:33.883920px;}
._25{width:34.899840px;}
._16{width:36.190656px;}
._2d{width:37.840800px;}
._2c{width:38.963520px;}
._2f{width:40.338000px;}
._28{width:42.190560px;}
._36{width:47.562480px;}
._7{width:49.558968px;}
._21{width:51.154560px;}
._8{width:56.413440px;}
._30{width:58.384080px;}
._29{width:60.477120px;}
._2b{width:61.552800px;}
._27{width:62.807760px;}
._26{width:63.943200px;}
._17{width:71.030736px;}
._a{width:73.159464px;}
._5{width:83.544480px;}
._37{width:189.336000px;}
._38{width:199.440000px;}
._1c{width:225.338160px;}
._9{width:279.013464px;}
._1a{width:600.745440px;}
._1b{width:685.740000px;}
._3{width:1073.740560px;}
._1d{width:1179.084000px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(46,116,182);}
.fc0{color:rgb(46,116,181);}
.fs7{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fsa{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs9{font-size:60.000000px;}
.fs2{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yab{bottom:11.700000px;}
.yb2{bottom:12.060000px;}
.yb9{bottom:12.240000px;}
.yc3{bottom:12.270000px;}
.yb7{bottom:12.285000px;}
.ycc{bottom:12.414000px;}
.ybb{bottom:12.420000px;}
.yb4{bottom:34.740000px;}
.yb5{bottom:35.460000px;}
.yaa{bottom:36.360000px;}
.yb0{bottom:37.800000px;}
.yc0{bottom:38.340000px;}
.yc1{bottom:39.600000px;}
.y31{bottom:45.031500px;}
.y29{bottom:54.166500px;}
.y14{bottom:54.540000px;}
.yaf{bottom:63.720000px;}
.ya8{bottom:68.016000px;}
.y2{bottom:68.076000px;}
.y30{bottom:70.771500px;}
.y28{bottom:80.086500px;}
.y13{bottom:80.280000px;}
.yae{bottom:89.640000px;}
.yed{bottom:90.396000px;}
.y2f{bottom:96.511500px;}
.y75{bottom:98.136000px;}
.y83{bottom:100.656000px;}
.y27{bottom:105.826500px;}
.y12{bottom:106.200000px;}
.yad{bottom:115.380000px;}
.yec{bottom:116.136000px;}
.y57{bottom:118.836000px;}
.y2a{bottom:121.723500px;}
.y2e{bottom:122.251500px;}
.ycd{bottom:123.336000px;}
.y74{bottom:123.876000px;}
.y82{bottom:126.576000px;}
.y26{bottom:131.746500px;}
.y15{bottom:133.963500px;}
.yeb{bottom:142.056000px;}
.y56{bottom:144.576000px;}
.ya6{bottom:147.276000px;}
.y2d{bottom:147.991500px;}
.y73{bottom:149.796000px;}
.y81{bottom:152.490000px;}
.y25{bottom:157.666500px;}
.y11{bottom:158.040000px;}
.yea{bottom:167.970000px;}
.y55{bottom:170.490000px;}
.ya5{bottom:173.190000px;}
.y2c{bottom:173.731500px;}
.y72{bottom:175.710000px;}
.ycb{bottom:176.430000px;}
.y80{bottom:177.870000px;}
.y8f{bottom:178.230000px;}
.y24{bottom:183.631500px;}
.y10{bottom:183.810000px;}
.ye9{bottom:193.890000px;}
.y54{bottom:196.410000px;}
.ya4{bottom:198.930000px;}
.y2b{bottom:199.471500px;}
.y71{bottom:201.630000px;}
.yca{bottom:203.115000px;}
.y7f{bottom:204.150000px;}
.y23{bottom:209.371500px;}
.yf{bottom:209.730000px;}
.ye8{bottom:219.630000px;}
.y53{bottom:222.330000px;}
.ya3{bottom:224.850000px;}
.y70{bottom:227.370000px;}
.yc9{bottom:229.755000px;}
.y7e{bottom:230.070000px;}
.y22{bottom:235.291500px;}
.ye{bottom:235.650000px;}
.ye7{bottom:245.550000px;}
.y52{bottom:248.070000px;}
.ya2{bottom:250.770000px;}
.y6f{bottom:253.290000px;}
.yf4{bottom:253.470000px;}
.y7d{bottom:255.810000px;}
.yc8{bottom:256.395000px;}
.y21{bottom:261.211500px;}
.yd{bottom:261.570000px;}
.ye6{bottom:271.470000px;}
.y51{bottom:273.990000px;}
.ya1{bottom:276.510000px;}
.yf3{bottom:277.950000px;}
.y6e{bottom:279.210000px;}
.y7c{bottom:281.730000px;}
.yc7{bottom:283.035000px;}
.y20{bottom:287.131500px;}
.yc{bottom:287.310000px;}
.ye5{bottom:297.255000px;}
.y50{bottom:299.955000px;}
.ya0{bottom:302.475000px;}
.y6d{bottom:305.175000px;}
.y7b{bottom:307.695000px;}
.yc6{bottom:309.675000px;}
.yf2{bottom:315.075000px;}
.yb{bottom:321.510000px;}
.ye4{bottom:323.175000px;}
.y4f{bottom:325.875000px;}
.y9f{bottom:328.395000px;}
.y6c{bottom:330.915000px;}
.yf1{bottom:333.075000px;}
.y7a{bottom:333.615000px;}
.yc5{bottom:336.315000px;}
.y1f{bottom:338.791500px;}
.ye3{bottom:349.095000px;}
.yf0{bottom:350.895000px;}
.y4e{bottom:351.615000px;}
.y9e{bottom:354.315000px;}
.y6b{bottom:356.835000px;}
.y79{bottom:359.355000px;}
.yc4{bottom:362.955000px;}
.y1e{bottom:364.711500px;}
.yef{bottom:368.715000px;}
.ye2{bottom:375.735000px;}
.y4d{bottom:377.535000px;}
.y9d{bottom:380.055000px;}
.ya{bottom:381.135000px;}
.y6a{bottom:382.755000px;}
.y78{bottom:385.275000px;}
.yee{bottom:386.535000px;}
.yc2{bottom:389.595000px;}
.y1d{bottom:390.451500px;}
.y4c{bottom:403.455000px;}
.y9c{bottom:405.975000px;}
.y69{bottom:408.675000px;}
.y77{bottom:411.195000px;}
.ybf{bottom:416.085000px;}
.y1c{bottom:416.401500px;}
.y4b{bottom:429.375000px;}
.y9b{bottom:431.895000px;}
.y8c{bottom:434.415000px;}
.y68{bottom:435.315000px;}
.y76{bottom:437.115000px;}
.y1b{bottom:442.321500px;}
.y4a{bottom:455.115000px;}
.ye1{bottom:456.015000px;}
.y9a{bottom:457.815000px;}
.y8b{bottom:460.335000px;}
.y67{bottom:462.855000px;}
.y1a{bottom:468.241500px;}
.ybe{bottom:468.645000px;}
.y49{bottom:481.035000px;}
.y99{bottom:483.555000px;}
.y8a{bottom:486.255000px;}
.y66{bottom:488.775000px;}
.y19{bottom:493.981500px;}
.ybd{bottom:495.285000px;}
.y48{bottom:506.955000px;}
.y98{bottom:509.475000px;}
.y89{bottom:511.995000px;}
.y65{bottom:514.695000px;}
.y18{bottom:519.901500px;}
.ybc{bottom:521.925000px;}
.y47{bottom:532.695000px;}
.yd3{bottom:534.705000px;}
.y97{bottom:535.395000px;}
.ye0{bottom:536.115000px;}
.y88{bottom:537.915000px;}
.y64{bottom:540.615000px;}
.y17{bottom:545.821500px;}
.yba{bottom:548.565000px;}
.y46{bottom:558.645000px;}
.y96{bottom:561.345000px;}
.y87{bottom:563.865000px;}
.y63{bottom:566.385000px;}
.y16{bottom:572.461500px;}
.yb8{bottom:575.205000px;}
.y45{bottom:584.565000px;}
.yd2{bottom:586.365000px;}
.y95{bottom:587.085000px;}
.y86{bottom:589.785000px;}
.y8e{bottom:591.945000px;}
.y62{bottom:592.305000px;}
.yb6{bottom:601.845000px;}
.y44{bottom:610.485000px;}
.yd1{bottom:612.330000px;}
.y94{bottom:613.005000px;}
.y85{bottom:615.165000px;}
.ydf{bottom:615.525000px;}
.y61{bottom:618.225000px;}
.ya9{bottom:628.530000px;}
.y43{bottom:636.225000px;}
.yd0{bottom:638.250000px;}
.y93{bottom:638.925000px;}
.yde{bottom:641.445000px;}
.y84{bottom:642.345000px;}
.y60{bottom:644.145000px;}
.y42{bottom:662.145000px;}
.ycf{bottom:664.170000px;}
.y92{bottom:665.565000px;}
.ydd{bottom:667.365000px;}
.y5f{bottom:669.885000px;}
.yac{bottom:677.670000px;}
.y41{bottom:688.065000px;}
.yce{bottom:689.910000px;}
.ydc{bottom:693.285000px;}
.y91{bottom:694.005000px;}
.y5e{bottom:695.805000px;}
.y40{bottom:713.985000px;}
.ydb{bottom:719.025000px;}
.y5d{bottom:721.725000px;}
.yb3{bottom:728.610000px;}
.yd6{bottom:730.050000px;}
.y3f{bottom:739.725000px;}
.yda{bottom:744.945000px;}
.y5c{bottom:747.645000px;}
.yb1{bottom:755.250000px;}
.yd5{bottom:756.690000px;}
.y9{bottom:760.965000px;}
.y3e{bottom:766.365000px;}
.yd9{bottom:770.865000px;}
.y5b{bottom:773.385000px;}
.yd4{bottom:783.330000px;}
.y8{bottom:793.725000px;}
.y3d{bottom:794.985000px;}
.yd8{bottom:796.785000px;}
.y5a{bottom:799.305000px;}
.y7{bottom:819.690000px;}
.y3c{bottom:822.570000px;}
.yd7{bottom:823.470000px;}
.y59{bottom:825.270000px;}
.ya7{bottom:839.340000px;}
.y3b{bottom:849.210000px;}
.y58{bottom:851.010000px;}
.y6{bottom:866.490000px;}
.y3a{bottom:876.930000px;}
.y39{bottom:902.850000px;}
.y5{bottom:928.230000px;}
.y38{bottom:928.770000px;}
.y90{bottom:954.150000px;}
.y37{bottom:954.510000px;}
.y4{bottom:969.630000px;}
.y36{bottom:980.430000px;}
.y8d{bottom:1005.990000px;}
.y35{bottom:1006.350000px;}
.y3{bottom:1020.750000px;}
.y34{bottom:1032.270000px;}
.y33{bottom:1058.010000px;}
.y32{bottom:1083.960000px;}
.y1{bottom:1109.520000px;}
.h1a{height:25.740000px;}
.h19{height:25.776000px;}
.h16{height:25.920000px;}
.h1d{height:25.956000px;}
.h7{height:38.158594px;}
.h6{height:39.397500px;}
.hd{height:41.726953px;}
.ha{height:42.086250px;}
.h18{height:48.240000px;}
.h17{height:50.220000px;}
.h15{height:51.660000px;}
.h1b{height:51.840000px;}
.h1c{height:52.998047px;}
.h13{height:55.824609px;}
.hf{height:58.621992px;}
.hb{height:58.651172px;}
.h2{height:60.226875px;}
.h1e{height:61.423863px;}
.h1f{height:65.010937px;}
.h10{height:65.518594px;}
.h1{height:65.884219px;}
.h8{height:66.757500px;}
.h5{height:81.736875px;}
.h3{height:84.898125px;}
.h4{height:96.508125px;}
.h14{height:129.240000px;}
.h12{height:178.380000px;}
.he{height:212.962500px;}
.h9{height:329.250000px;}
.hc{height:587.767500px;}
.h11{height:918.000000px;}
.h0{height:1188.000000px;}
.w12{width:41.760000px;}
.w10{width:43.560000px;}
.w7{width:83.736000px;}
.w8{width:83.880000px;}
.w6{width:84.060000px;}
.wa{width:84.816000px;}
.w11{width:84.996000px;}
.w9{width:85.500000px;}
.w15{width:85.536000px;}
.w13{width:87.120000px;}
.w16{width:90.540000px;}
.wd{width:91.260000px;}
.we{width:129.456000px;}
.wf{width:129.600000px;}
.w5{width:214.230000px;}
.wb{width:221.610000px;}
.wc{width:221.760000px;}
.w3{width:236.233500px;}
.w1{width:243.073500px;}
.w2{width:484.995000px;}
.w14{width:640.005000px;}
.w0{width:918.000000px;}
.w4{width:1188.000000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x5{left:10.834500px;}
.xb{left:35.460000px;}
.x9{left:43.200000px;}
.x7{left:93.961500px;}
.x4{left:99.541500px;}
.x1d{left:106.416000px;}
.x1{left:108.036000px;}
.x2{left:134.136000px;}
.x1b{left:162.030000px;}
.xd{left:250.410000px;}
.x18{left:267.510000px;}
.x1c{left:270.030000px;}
.xe{left:335.370000px;}
.x6{left:338.115000px;}
.x3{left:350.355000px;}
.xf{left:419.835000px;}
.x8{left:469.875000px;}
.x19{left:496.875000px;}
.x10{left:504.435000px;}
.x1a{left:523.905000px;}
.x11{left:590.655000px;}
.x12{left:676.185000px;}
.xa{left:695.805000px;}
.x14{left:768.345000px;}
.x16{left:812.805000px;}
.x13{left:898.530000px;}
.x15{left:990.690000px;}
.x17{left:1033.170000px;}
@media print{
.v3{vertical-align:-26.880000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:24.320000pt;}
.v1{vertical-align:29.440000pt;}
.ls30{letter-spacing:-4.533333pt;}
.ls2f{letter-spacing:-4.515200pt;}
.ls2c{letter-spacing:-4.090240pt;}
.ls24{letter-spacing:-3.200000pt;}
.ls23{letter-spacing:-3.187200pt;}
.ls21{letter-spacing:-2.880000pt;}
.ls36{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.353280pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls31{letter-spacing:-0.318720pt;}
.lsf{letter-spacing:-0.300160pt;}
.lsd{letter-spacing:-0.288000pt;}
.ls14{letter-spacing:-0.159360pt;}
.ls1e{letter-spacing:-0.094933pt;}
.ls1b{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.096000pt;}
.ls28{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.154880pt;}
.ls3{letter-spacing:0.159360pt;}
.ls16{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.212480pt;}
.ls37{letter-spacing:0.230933pt;}
.ls35{letter-spacing:0.231040pt;}
.ls2a{letter-spacing:0.252800pt;}
.ls9{letter-spacing:0.265600pt;}
.ls2d{letter-spacing:0.288000pt;}
.lse{letter-spacing:0.300160pt;}
.ls4{letter-spacing:0.318720pt;}
.ls5{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.371840pt;}
.ls3c{letter-spacing:0.456533pt;}
.ls1f{letter-spacing:0.688000pt;}
.ls19{letter-spacing:0.800000pt;}
.ls18{letter-spacing:0.821333pt;}
.ls12{letter-spacing:1.000960pt;}
.ls7{letter-spacing:1.157333pt;}
.ls15{letter-spacing:1.487360pt;}
.ls11{letter-spacing:1.530880pt;}
.ls25{letter-spacing:1.593600pt;}
.ls8{letter-spacing:1.752960pt;}
.ls2b{letter-spacing:2.284160pt;}
.ls29{letter-spacing:2.709120pt;}
.ls32{letter-spacing:3.187200pt;}
.ls34{letter-spacing:4.000000pt;}
.ls33{letter-spacing:4.640000pt;}
.ls27{letter-spacing:5.790080pt;}
.ls1d{letter-spacing:9.120000pt;}
.ls1c{letter-spacing:9.760000pt;}
.ls38{letter-spacing:11.680000pt;}
.ls17{letter-spacing:12.320000pt;}
.ls2e{letter-spacing:14.023680pt;}
.ls3b{letter-spacing:14.779307pt;}
.ls3a{letter-spacing:40.891307pt;}
.ls39{letter-spacing:41.019307pt;}
.ls6{letter-spacing:65.440000pt;}
.lsc{letter-spacing:201.120000pt;}
.ls0{letter-spacing:534.080000pt;}
.ls20{letter-spacing:1155.520000pt;}
.ls22{letter-spacing:1811.520000pt;}
.ws11{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.101333pt;}
.ws7{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.598720pt;}
.ws10{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.185067pt;}
.ws9{word-spacing:-12.960000pt;}
.ws1{word-spacing:-11.020160pt;}
.ws2{word-spacing:-10.419840pt;}
.wsc{word-spacing:-10.092800pt;}
.wsd{word-spacing:-10.080000pt;}
.ws4{word-spacing:-9.280000pt;}
.wse{word-spacing:-8.764800pt;}
.wsf{word-spacing:-8.746667pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._32{margin-left:-1811.361600pt;}
._31{margin-left:-1610.984213pt;}
._33{margin-left:-5.954773pt;}
._34{margin-left:-3.600000pt;}
._1e{margin-left:-2.296320pt;}
._0{margin-left:-0.903040pt;}
._2{width:1.062400pt;}
._1{width:2.396373pt;}
._4{width:3.389056pt;}
._e{width:5.041088pt;}
._13{width:6.108800pt;}
._14{width:7.234944pt;}
._1f{width:8.599915pt;}
._10{width:9.880320pt;}
._6{width:11.208320pt;}
._d{width:12.318528pt;}
._11{width:14.873600pt;}
._15{width:16.042240pt;}
._19{width:17.736768pt;}
._35{width:18.698240pt;}
._12{width:19.601280pt;}
._f{width:20.610560pt;}
._18{width:21.906688pt;}
._20{width:23.054080pt;}
._2e{width:23.993408pt;}
._c{width:24.903957pt;}
._b{width:26.074219pt;}
._2a{width:26.992661pt;}
._22{width:28.100480pt;}
._23{width:29.216000pt;}
._24{width:30.119040pt;}
._25{width:31.022080pt;}
._16{width:32.169472pt;}
._2d{width:33.636267pt;}
._2c{width:34.634240pt;}
._2f{width:35.856000pt;}
._28{width:37.502720pt;}
._36{width:42.277760pt;}
._7{width:44.052416pt;}
._21{width:45.470720pt;}
._8{width:50.145280pt;}
._30{width:51.896960pt;}
._29{width:53.757440pt;}
._2b{width:54.713600pt;}
._27{width:55.829120pt;}
._26{width:56.838400pt;}
._17{width:63.138432pt;}
._a{width:65.030635pt;}
._5{width:74.261760pt;}
._37{width:168.298667pt;}
._38{width:177.280000pt;}
._1c{width:200.300587pt;}
._9{width:248.011968pt;}
._1a{width:533.995947pt;}
._1b{width:609.546667pt;}
._3{width:954.436053pt;}
._1d{width:1048.074667pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs9{font-size:53.333333pt;}
.fs2{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:10.400000pt;}
.yb2{bottom:10.720000pt;}
.yb9{bottom:10.880000pt;}
.yc3{bottom:10.906667pt;}
.yb7{bottom:10.920000pt;}
.ycc{bottom:11.034667pt;}
.ybb{bottom:11.040000pt;}
.yb4{bottom:30.880000pt;}
.yb5{bottom:31.520000pt;}
.yaa{bottom:32.320000pt;}
.yb0{bottom:33.600000pt;}
.yc0{bottom:34.080000pt;}
.yc1{bottom:35.200000pt;}
.y31{bottom:40.028000pt;}
.y29{bottom:48.148000pt;}
.y14{bottom:48.480000pt;}
.yaf{bottom:56.640000pt;}
.ya8{bottom:60.458667pt;}
.y2{bottom:60.512000pt;}
.y30{bottom:62.908000pt;}
.y28{bottom:71.188000pt;}
.y13{bottom:71.360000pt;}
.yae{bottom:79.680000pt;}
.yed{bottom:80.352000pt;}
.y2f{bottom:85.788000pt;}
.y75{bottom:87.232000pt;}
.y83{bottom:89.472000pt;}
.y27{bottom:94.068000pt;}
.y12{bottom:94.400000pt;}
.yad{bottom:102.560000pt;}
.yec{bottom:103.232000pt;}
.y57{bottom:105.632000pt;}
.y2a{bottom:108.198667pt;}
.y2e{bottom:108.668000pt;}
.ycd{bottom:109.632000pt;}
.y74{bottom:110.112000pt;}
.y82{bottom:112.512000pt;}
.y26{bottom:117.108000pt;}
.y15{bottom:119.078667pt;}
.yeb{bottom:126.272000pt;}
.y56{bottom:128.512000pt;}
.ya6{bottom:130.912000pt;}
.y2d{bottom:131.548000pt;}
.y73{bottom:133.152000pt;}
.y81{bottom:135.546667pt;}
.y25{bottom:140.148000pt;}
.y11{bottom:140.480000pt;}
.yea{bottom:149.306667pt;}
.y55{bottom:151.546667pt;}
.ya5{bottom:153.946667pt;}
.y2c{bottom:154.428000pt;}
.y72{bottom:156.186667pt;}
.ycb{bottom:156.826667pt;}
.y80{bottom:158.106667pt;}
.y8f{bottom:158.426667pt;}
.y24{bottom:163.228000pt;}
.y10{bottom:163.386667pt;}
.ye9{bottom:172.346667pt;}
.y54{bottom:174.586667pt;}
.ya4{bottom:176.826667pt;}
.y2b{bottom:177.308000pt;}
.y71{bottom:179.226667pt;}
.yca{bottom:180.546667pt;}
.y7f{bottom:181.466667pt;}
.y23{bottom:186.108000pt;}
.yf{bottom:186.426667pt;}
.ye8{bottom:195.226667pt;}
.y53{bottom:197.626667pt;}
.ya3{bottom:199.866667pt;}
.y70{bottom:202.106667pt;}
.yc9{bottom:204.226667pt;}
.y7e{bottom:204.506667pt;}
.y22{bottom:209.148000pt;}
.ye{bottom:209.466667pt;}
.ye7{bottom:218.266667pt;}
.y52{bottom:220.506667pt;}
.ya2{bottom:222.906667pt;}
.y6f{bottom:225.146667pt;}
.yf4{bottom:225.306667pt;}
.y7d{bottom:227.386667pt;}
.yc8{bottom:227.906667pt;}
.y21{bottom:232.188000pt;}
.yd{bottom:232.506667pt;}
.ye6{bottom:241.306667pt;}
.y51{bottom:243.546667pt;}
.ya1{bottom:245.786667pt;}
.yf3{bottom:247.066667pt;}
.y6e{bottom:248.186667pt;}
.y7c{bottom:250.426667pt;}
.yc7{bottom:251.586667pt;}
.y20{bottom:255.228000pt;}
.yc{bottom:255.386667pt;}
.ye5{bottom:264.226667pt;}
.y50{bottom:266.626667pt;}
.ya0{bottom:268.866667pt;}
.y6d{bottom:271.266667pt;}
.y7b{bottom:273.506667pt;}
.yc6{bottom:275.266667pt;}
.yf2{bottom:280.066667pt;}
.yb{bottom:285.786667pt;}
.ye4{bottom:287.266667pt;}
.y4f{bottom:289.666667pt;}
.y9f{bottom:291.906667pt;}
.y6c{bottom:294.146667pt;}
.yf1{bottom:296.066667pt;}
.y7a{bottom:296.546667pt;}
.yc5{bottom:298.946667pt;}
.y1f{bottom:301.148000pt;}
.ye3{bottom:310.306667pt;}
.yf0{bottom:311.906667pt;}
.y4e{bottom:312.546667pt;}
.y9e{bottom:314.946667pt;}
.y6b{bottom:317.186667pt;}
.y79{bottom:319.426667pt;}
.yc4{bottom:322.626667pt;}
.y1e{bottom:324.188000pt;}
.yef{bottom:327.746667pt;}
.ye2{bottom:333.986667pt;}
.y4d{bottom:335.586667pt;}
.y9d{bottom:337.826667pt;}
.ya{bottom:338.786667pt;}
.y6a{bottom:340.226667pt;}
.y78{bottom:342.466667pt;}
.yee{bottom:343.586667pt;}
.yc2{bottom:346.306667pt;}
.y1d{bottom:347.068000pt;}
.y4c{bottom:358.626667pt;}
.y9c{bottom:360.866667pt;}
.y69{bottom:363.266667pt;}
.y77{bottom:365.506667pt;}
.ybf{bottom:369.853333pt;}
.y1c{bottom:370.134667pt;}
.y4b{bottom:381.666667pt;}
.y9b{bottom:383.906667pt;}
.y8c{bottom:386.146667pt;}
.y68{bottom:386.946667pt;}
.y76{bottom:388.546667pt;}
.y1b{bottom:393.174667pt;}
.y4a{bottom:404.546667pt;}
.ye1{bottom:405.346667pt;}
.y9a{bottom:406.946667pt;}
.y8b{bottom:409.186667pt;}
.y67{bottom:411.426667pt;}
.y1a{bottom:416.214667pt;}
.ybe{bottom:416.573333pt;}
.y49{bottom:427.586667pt;}
.y99{bottom:429.826667pt;}
.y8a{bottom:432.226667pt;}
.y66{bottom:434.466667pt;}
.y19{bottom:439.094667pt;}
.ybd{bottom:440.253333pt;}
.y48{bottom:450.626667pt;}
.y98{bottom:452.866667pt;}
.y89{bottom:455.106667pt;}
.y65{bottom:457.506667pt;}
.y18{bottom:462.134667pt;}
.ybc{bottom:463.933333pt;}
.y47{bottom:473.506667pt;}
.yd3{bottom:475.293333pt;}
.y97{bottom:475.906667pt;}
.ye0{bottom:476.546667pt;}
.y88{bottom:478.146667pt;}
.y64{bottom:480.546667pt;}
.y17{bottom:485.174667pt;}
.yba{bottom:487.613333pt;}
.y46{bottom:496.573333pt;}
.y96{bottom:498.973333pt;}
.y87{bottom:501.213333pt;}
.y63{bottom:503.453333pt;}
.y16{bottom:508.854667pt;}
.yb8{bottom:511.293333pt;}
.y45{bottom:519.613333pt;}
.yd2{bottom:521.213333pt;}
.y95{bottom:521.853333pt;}
.y86{bottom:524.253333pt;}
.y8e{bottom:526.173333pt;}
.y62{bottom:526.493333pt;}
.yb6{bottom:534.973333pt;}
.y44{bottom:542.653333pt;}
.yd1{bottom:544.293333pt;}
.y94{bottom:544.893333pt;}
.y85{bottom:546.813333pt;}
.ydf{bottom:547.133333pt;}
.y61{bottom:549.533333pt;}
.ya9{bottom:558.693333pt;}
.y43{bottom:565.533333pt;}
.yd0{bottom:567.333333pt;}
.y93{bottom:567.933333pt;}
.yde{bottom:570.173333pt;}
.y84{bottom:570.973333pt;}
.y60{bottom:572.573333pt;}
.y42{bottom:588.573333pt;}
.ycf{bottom:590.373333pt;}
.y92{bottom:591.613333pt;}
.ydd{bottom:593.213333pt;}
.y5f{bottom:595.453333pt;}
.yac{bottom:602.373333pt;}
.y41{bottom:611.613333pt;}
.yce{bottom:613.253333pt;}
.ydc{bottom:616.253333pt;}
.y91{bottom:616.893333pt;}
.y5e{bottom:618.493333pt;}
.y40{bottom:634.653333pt;}
.ydb{bottom:639.133333pt;}
.y5d{bottom:641.533333pt;}
.yb3{bottom:647.653333pt;}
.yd6{bottom:648.933333pt;}
.y3f{bottom:657.533333pt;}
.yda{bottom:662.173333pt;}
.y5c{bottom:664.573333pt;}
.yb1{bottom:671.333333pt;}
.yd5{bottom:672.613333pt;}
.y9{bottom:676.413333pt;}
.y3e{bottom:681.213333pt;}
.yd9{bottom:685.213333pt;}
.y5b{bottom:687.453333pt;}
.yd4{bottom:696.293333pt;}
.y8{bottom:705.533333pt;}
.y3d{bottom:706.653333pt;}
.yd8{bottom:708.253333pt;}
.y5a{bottom:710.493333pt;}
.y7{bottom:728.613333pt;}
.y3c{bottom:731.173333pt;}
.yd7{bottom:731.973333pt;}
.y59{bottom:733.573333pt;}
.ya7{bottom:746.080000pt;}
.y3b{bottom:754.853333pt;}
.y58{bottom:756.453333pt;}
.y6{bottom:770.213333pt;}
.y3a{bottom:779.493333pt;}
.y39{bottom:802.533333pt;}
.y5{bottom:825.093333pt;}
.y38{bottom:825.573333pt;}
.y90{bottom:848.133333pt;}
.y37{bottom:848.453333pt;}
.y4{bottom:861.893333pt;}
.y36{bottom:871.493333pt;}
.y8d{bottom:894.213333pt;}
.y35{bottom:894.533333pt;}
.y3{bottom:907.333333pt;}
.y34{bottom:917.573333pt;}
.y33{bottom:940.453333pt;}
.y32{bottom:963.520000pt;}
.y1{bottom:986.240000pt;}
.h1a{height:22.880000pt;}
.h19{height:22.912000pt;}
.h16{height:23.040000pt;}
.h1d{height:23.072000pt;}
.h7{height:33.918750pt;}
.h6{height:35.020000pt;}
.hd{height:37.090625pt;}
.ha{height:37.410000pt;}
.h18{height:42.880000pt;}
.h17{height:44.640000pt;}
.h15{height:45.920000pt;}
.h1b{height:46.080000pt;}
.h1c{height:47.109375pt;}
.h13{height:49.621875pt;}
.hf{height:52.108438pt;}
.hb{height:52.134375pt;}
.h2{height:53.535000pt;}
.h1e{height:54.598989pt;}
.h1f{height:57.787500pt;}
.h10{height:58.238750pt;}
.h1{height:58.563750pt;}
.h8{height:59.340000pt;}
.h5{height:72.655000pt;}
.h3{height:75.465000pt;}
.h4{height:85.785000pt;}
.h14{height:114.880000pt;}
.h12{height:158.560000pt;}
.he{height:189.300000pt;}
.h9{height:292.666667pt;}
.hc{height:522.460000pt;}
.h11{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w12{width:37.120000pt;}
.w10{width:38.720000pt;}
.w7{width:74.432000pt;}
.w8{width:74.560000pt;}
.w6{width:74.720000pt;}
.wa{width:75.392000pt;}
.w11{width:75.552000pt;}
.w9{width:76.000000pt;}
.w15{width:76.032000pt;}
.w13{width:77.440000pt;}
.w16{width:80.480000pt;}
.wd{width:81.120000pt;}
.we{width:115.072000pt;}
.wf{width:115.200000pt;}
.w5{width:190.426667pt;}
.wb{width:196.986667pt;}
.wc{width:197.120000pt;}
.w3{width:209.985333pt;}
.w1{width:216.065333pt;}
.w2{width:431.106667pt;}
.w14{width:568.893333pt;}
.w0{width:816.000000pt;}
.w4{width:1056.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x5{left:9.630667pt;}
.xb{left:31.520000pt;}
.x9{left:38.400000pt;}
.x7{left:83.521333pt;}
.x4{left:88.481333pt;}
.x1d{left:94.592000pt;}
.x1{left:96.032000pt;}
.x2{left:119.232000pt;}
.x1b{left:144.026667pt;}
.xd{left:222.586667pt;}
.x18{left:237.786667pt;}
.x1c{left:240.026667pt;}
.xe{left:298.106667pt;}
.x6{left:300.546667pt;}
.x3{left:311.426667pt;}
.xf{left:373.186667pt;}
.x8{left:417.666667pt;}
.x19{left:441.666667pt;}
.x10{left:448.386667pt;}
.x1a{left:465.693333pt;}
.x11{left:525.026667pt;}
.x12{left:601.053333pt;}
.xa{left:618.493333pt;}
.x14{left:682.973333pt;}
.x16{left:722.493333pt;}
.x13{left:798.693333pt;}
.x15{left:880.613333pt;}
.x17{left:918.373333pt;}
}




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