
    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_fd92a9a7dce45826dbc838e8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.272949;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_1565a08001c9f81a336841ea.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.291992;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_53ddd66a6b8c211776ff36e9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_e5902042502acfeb09a26aeb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_9ceef2c23ffec34006898bc8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_4331916e52aa39e4f709d747.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_6086cda0c027a87e2f6b35b0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.274414;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_abdffeacac9ea3c9a416ca19.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-82.080000px;}
.v1{vertical-align:-72.000000px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.148033px;}
.ls3{letter-spacing:0.288000px;}
.ls7{letter-spacing:63.842691px;}
.ls2{letter-spacing:88.006204px;}
.ls6{letter-spacing:196.027809px;}
.ls5{letter-spacing:304.049413px;}
.ls0{letter-spacing:1467.802164px;}
.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;}
}
.ws4{word-spacing:-60.480000px;}
.ws1{word-spacing:-20.304000px;}
.ws2{word-spacing:-20.016000px;}
.ws3{word-spacing:-18.875520px;}
.ws0{word-spacing:0.000000px;}
._29{margin-left:-9.077121px;}
._26{margin-left:-7.516800px;}
._25{margin-left:-6.094739px;}
._19{margin-left:-5.057267px;}
._6{margin-left:-3.183820px;}
._0{margin-left:-1.324788px;}
._1{width:1.391027px;}
._8{width:2.520000px;}
._9{width:3.672000px;}
._f{width:5.117761px;}
._e{width:6.120000px;}
._c{width:7.200000px;}
._d{width:8.262733px;}
._13{width:9.387439px;}
._14{width:11.345190px;}
._10{width:12.700788px;}
._12{width:14.009765px;}
._11{width:15.409191px;}
._18{width:16.655308px;}
._1a{width:17.705760px;}
._4{width:19.036682px;}
._7{width:20.427709px;}
._5{width:21.585462px;}
._1c{width:22.680000px;}
._1b{width:24.045271px;}
._16{width:25.071873px;}
._15{width:26.256973px;}
._17{width:27.957604px;}
._22{width:29.575604px;}
._a{width:30.792973px;}
._b{width:32.472000px;}
._1d{width:33.750733px;}
._23{width:35.417998px;}
._3{width:37.189201px;}
._2{width:38.881198px;}
._20{width:40.700039px;}
._1f{width:41.734135px;}
._1e{width:42.840000px;}
._24{width:43.925690px;}
._21{width:53.118733px;}
._38{width:87.676980px;}
._39{width:89.085342px;}
._32{width:90.552973px;}
._33{width:91.656000px;}
._36{width:126.000000px;}
._37{width:127.056973px;}
._35{width:178.182733px;}
._34{width:179.668788px;}
._27{width:192.847425px;}
._28{width:194.287113px;}
._3a{width:235.992973px;}
._2b{width:269.120180px;}
._2a{width:270.591820px;}
._2c{width:313.752973px;}
._2d{width:314.933761px;}
._2f{width:431.645761px;}
._2e{width:432.792000px;}
._30{width:549.984973px;}
._31{width:551.116788px;}
._3b{width:1666.373761px;}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:60.480000px;}
.fs0{font-size:66.239400px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs2{font-size:96.479400px;}
.y0{bottom:0.000000px;}
.y5{bottom:57.960000px;}
.y4{bottom:77.760000px;}
.y162{bottom:115.200000px;}
.y64{bottom:118.439850px;}
.yf1{bottom:118.800000px;}
.y99{bottom:123.840000px;}
.y109{bottom:126.000000px;}
.y34{bottom:129.240000px;}
.y161{bottom:136.080000px;}
.yc3{bottom:136.439850px;}
.y12a{bottom:138.240000px;}
.y63{bottom:139.320000px;}
.yf0{bottom:139.680000px;}
.yea{bottom:144.000000px;}
.y137{bottom:145.080000px;}
.y98{bottom:146.160000px;}
.y33{bottom:149.760000px;}
.y108{bottom:151.560000px;}
.y160{bottom:156.600000px;}
.yc2{bottom:158.760000px;}
.y129{bottom:159.120000px;}
.y62{bottom:159.840000px;}
.ye9{bottom:164.520000px;}
.y136{bottom:167.400000px;}
.y97{bottom:168.480000px;}
.y32{bottom:170.640000px;}
.y107{bottom:177.120000px;}
.y15f{bottom:177.480000px;}
.y61{bottom:180.720000px;}
.yef{bottom:181.080000px;}
.ye8{bottom:185.400000px;}
.y168{bottom:186.480000px;}
.y135{bottom:190.080000px;}
.y96{bottom:190.800000px;}
.y31{bottom:191.160000px;}
.yc1{bottom:192.960000px;}
.y15e{bottom:198.000000px;}
.y60{bottom:201.240000px;}
.y6a{bottom:201.600000px;}
.y106{bottom:203.040000px;}
.ye7{bottom:205.920000px;}
.y128{bottom:206.640000px;}
.y30{bottom:212.040000px;}
.y134{bottom:212.400000px;}
.yc0{bottom:215.280000px;}
.y15d{bottom:218.880000px;}
.y167{bottom:221.040000px;}
.y5f{bottom:222.120000px;}
.yec{bottom:222.480000px;}
.y95{bottom:225.360000px;}
.ye6{bottom:226.800000px;}
.y105{bottom:228.600000px;}
.y127{bottom:232.200000px;}
.y2f{bottom:232.560000px;}
.y133{bottom:234.720000px;}
.y15c{bottom:239.400000px;}
.y5e{bottom:242.640000px;}
.yee{bottom:243.000000px;}
.ye5{bottom:247.320000px;}
.y94{bottom:247.680000px;}
.ybf{bottom:249.480000px;}
.y2e{bottom:253.440000px;}
.y104{bottom:254.160000px;}
.y166{bottom:255.240000px;}
.y132{bottom:257.040000px;}
.y126{bottom:258.120000px;}
.y15b{bottom:260.280000px;}
.y78{bottom:261.360000px;}
.y5d{bottom:263.520000px;}
.ye4{bottom:268.560000px;}
.y93{bottom:270.000000px;}
.ybe{bottom:272.160000px;}
.y2d{bottom:273.960000px;}
.y165{bottom:277.560000px;}
.y131{bottom:279.360000px;}
.y103{bottom:279.720000px;}
.y15a{bottom:280.800000px;}
.y77{bottom:283.680000px;}
.y5c{bottom:284.040000px;}
.ye3{bottom:289.080000px;}
.y92{bottom:292.320000px;}
.ybd{bottom:294.480000px;}
.y2c{bottom:294.840000px;}
.y164{bottom:299.880000px;}
.y130{bottom:301.680000px;}
.y5b{bottom:304.920000px;}
.y102{bottom:305.280000px;}
.y76{bottom:306.000000px;}
.y125{bottom:309.240000px;}
.y91{bottom:314.640000px;}
.y2b{bottom:315.360000px;}
.ybc{bottom:316.800000px;}
.y159{bottom:322.200000px;}
.y12f{bottom:324.000000px;}
.y5a{bottom:325.440000px;}
.y75{bottom:328.320000px;}
.ye2{bottom:330.480000px;}
.y101{bottom:331.200000px;}
.y124{bottom:334.800000px;}
.y2a{bottom:336.240000px;}
.y90{bottom:336.960000px;}
.ybb{bottom:339.120000px;}
.y158{bottom:343.080000px;}
.y163{bottom:344.520000px;}
.y59{bottom:346.320000px;}
.y74{bottom:350.640000px;}
.ye1{bottom:351.360000px;}
.y29{bottom:356.760000px;}
.y8f{bottom:359.280000px;}
.y123{bottom:360.360000px;}
.yba{bottom:361.440000px;}
.y157{bottom:363.600000px;}
.y58{bottom:366.840000px;}
.y69{bottom:367.200000px;}
.ye0{bottom:371.880000px;}
.y73{bottom:372.960000px;}
.y28{bottom:377.640000px;}
.y8e{bottom:381.600000px;}
.y100{bottom:382.320000px;}
.yb9{bottom:383.760000px;}
.y156{bottom:384.480000px;}
.y122{bottom:386.280000px;}
.y57{bottom:387.720000px;}
.ydf{bottom:392.760000px;}
.y72{bottom:395.280000px;}
.y27{bottom:398.160000px;}
.y8d{bottom:403.920000px;}
.y155{bottom:405.000000px;}
.yb8{bottom:406.080000px;}
.yff{bottom:407.880000px;}
.y56{bottom:408.240000px;}
.y68{bottom:408.600000px;}
.y121{bottom:411.840000px;}
.y71{bottom:417.600000px;}
.y26{bottom:419.040000px;}
.y154{bottom:425.880000px;}
.y8c{bottom:426.240000px;}
.yde{bottom:426.600000px;}
.y55{bottom:429.120000px;}
.yfe{bottom:433.440000px;}
.y120{bottom:437.400000px;}
.y25{bottom:439.560000px;}
.y70{bottom:439.920000px;}
.yb7{bottom:440.280000px;}
.y153{bottom:446.400000px;}
.y8b{bottom:448.560000px;}
.ydd{bottom:448.920000px;}
.y54{bottom:449.640000px;}
.yfd{bottom:459.360000px;}
.y24{bottom:460.440000px;}
.y6f{bottom:462.240000px;}
.yb6{bottom:462.600000px;}
.y11f{bottom:462.960000px;}
.y152{bottom:467.280000px;}
.y53{bottom:470.520000px;}
.y8a{bottom:470.880000px;}
.ydc{bottom:471.240000px;}
.y23{bottom:480.960000px;}
.y6e{bottom:484.560000px;}
.yb5{bottom:484.920000px;}
.y151{bottom:487.800000px;}
.y11e{bottom:488.520000px;}
.y52{bottom:491.040000px;}
.y89{bottom:493.200000px;}
.ydb{bottom:493.560000px;}
.y22{bottom:501.480000px;}
.y6d{bottom:506.880000px;}
.yb4{bottom:507.240000px;}
.y150{bottom:508.680000px;}
.yfc{bottom:510.480000px;}
.y51{bottom:511.920000px;}
.y11d{bottom:514.440000px;}
.y88{bottom:515.520000px;}
.yda{bottom:515.880000px;}
.y21{bottom:522.360000px;}
.y6c{bottom:529.200000px;}
.yb3{bottom:529.560000px;}
.y50{bottom:532.440000px;}
.yfb{bottom:536.040000px;}
.y87{bottom:537.840000px;}
.yd9{bottom:538.200000px;}
.y11c{bottom:540.000000px;}
.y20{bottom:542.880000px;}
.y14f{bottom:550.080000px;}
.y6b{bottom:551.520000px;}
.yb2{bottom:551.880000px;}
.y4f{bottom:553.320000px;}
.yed{bottom:553.680000px;}
.y86{bottom:560.160000px;}
.yd8{bottom:560.880000px;}
.yfa{bottom:561.960000px;}
.y1f{bottom:563.760000px;}
.y11b{bottom:565.560000px;}
.y14e{bottom:570.600000px;}
.y4e{bottom:573.840000px;}
.yb1{bottom:574.200000px;}
.yd7{bottom:583.200000px;}
.y1e{bottom:584.280000px;}
.yf9{bottom:587.520000px;}
.y11a{bottom:591.120000px;}
.y14d{bottom:591.480000px;}
.y4d{bottom:594.720000px;}
.yb0{bottom:596.880000px;}
.y1d{bottom:605.160000px;}
.yd6{bottom:605.520000px;}
.y14c{bottom:612.000000px;}
.yf8{bottom:613.080000px;}
.y4c{bottom:615.240000px;}
.y12e{bottom:615.600000px;}
.y85{bottom:617.040000px;}
.yaf{bottom:619.200000px;}
.y1c{bottom:625.680000px;}
.yd5{bottom:627.840000px;}
.y14b{bottom:632.880000px;}
.y4b{bottom:636.120000px;}
.y12d{bottom:636.480000px;}
.yf7{bottom:638.640000px;}
.y84{bottom:639.360000px;}
.yae{bottom:641.520000px;}
.y119{bottom:642.600000px;}
.y1b{bottom:646.920000px;}
.yd4{bottom:650.160000px;}
.y14a{bottom:653.400000px;}
.y4a{bottom:656.640000px;}
.y83{bottom:661.680000px;}
.yad{bottom:663.840000px;}
.yf6{bottom:664.200000px;}
.y1a{bottom:667.080000px;}
.y118{bottom:668.160000px;}
.yd3{bottom:672.480000px;}
.y149{bottom:674.280000px;}
.y49{bottom:677.520000px;}
.y82{bottom:684.000000px;}
.yac{bottom:686.160000px;}
.y19{bottom:687.960000px;}
.yf5{bottom:690.120000px;}
.y117{bottom:693.720000px;}
.yd2{bottom:694.800000px;}
.y48{bottom:698.040000px;}
.y81{bottom:706.320000px;}
.y18{bottom:708.480000px;}
.yf4{bottom:715.680000px;}
.yd1{bottom:717.120000px;}
.y47{bottom:718.920000px;}
.yeb{bottom:719.280000px;}
.y80{bottom:728.640000px;}
.y17{bottom:729.360000px;}
.yab{bottom:730.800000px;}
.y148{bottom:736.200000px;}
.y46{bottom:739.440000px;}
.y116{bottom:745.200000px;}
.y16{bottom:749.880000px;}
.yaa{bottom:753.120000px;}
.y147{bottom:757.080000px;}
.y45{bottom:760.320000px;}
.yd0{bottom:761.760000px;}
.y7f{bottom:762.840000px;}
.y15{bottom:770.760000px;}
.ya9{bottom:775.440000px;}
.y146{bottom:777.600000px;}
.y44{bottom:780.840000px;}
.ycf{bottom:784.080000px;}
.y14{bottom:791.640000px;}
.y115{bottom:796.320000px;}
.y7e{bottom:797.400000px;}
.ya8{bottom:797.760000px;}
.y145{bottom:798.480000px;}
.y43{bottom:801.720000px;}
.yce{bottom:806.400000px;}
.y13{bottom:811.440000px;}
.y144{bottom:819.000000px;}
.ya7{bottom:820.080000px;}
.y114{bottom:821.880000px;}
.y42{bottom:822.240000px;}
.y12{bottom:828.720000px;}
.y7d{bottom:831.600000px;}
.y143{bottom:839.880000px;}
.ya6{bottom:842.400000px;}
.y41{bottom:843.120000px;}
.y113{bottom:847.440000px;}
.ycd{bottom:851.040000px;}
.y142{bottom:860.400000px;}
.y40{bottom:863.640000px;}
.y11{bottom:864.360000px;}
.ya5{bottom:864.720000px;}
.y7c{bottom:866.160000px;}
.ycc{bottom:873.360000px;}
.y141{bottom:881.280000px;}
.y3f{bottom:884.520000px;}
.y10{bottom:884.880000px;}
.ya4{bottom:887.040000px;}
.ycb{bottom:895.680000px;}
.y112{bottom:898.920000px;}
.y7b{bottom:900.360000px;}
.y140{bottom:901.800000px;}
.y3e{bottom:905.040000px;}
.yf{bottom:905.760000px;}
.ya3{bottom:909.360000px;}
.yca{bottom:918.000000px;}
.y13f{bottom:922.680000px;}
.y111{bottom:924.480000px;}
.y3d{bottom:925.920000px;}
.ye{bottom:926.280000px;}
.ya2{bottom:931.680000px;}
.y7a{bottom:934.560000px;}
.yc9{bottom:940.320000px;}
.y13e{bottom:943.200000px;}
.y3c{bottom:946.440000px;}
.yd{bottom:947.160000px;}
.y110{bottom:950.040000px;}
.ya1{bottom:954.000000px;}
.yc8{bottom:962.640000px;}
.y13d{bottom:964.080000px;}
.y79{bottom:965.160000px;}
.y3b{bottom:967.320000px;}
.yc{bottom:969.120000px;}
.y10f{bottom:975.600000px;}
.ya0{bottom:976.320000px;}
.y13c{bottom:984.600000px;}
.yc7{bottom:984.960000px;}
.y67{bottom:987.840000px;}
.y3a{bottom:988.200000px;}
.yb{bottom:996.840000px;}
.y9f{bottom:998.640000px;}
.y10e{bottom:1001.520000px;}
.y13b{bottom:1005.480000px;}
.y66{bottom:1008.720000px;}
.y39{bottom:1009.080000px;}
.yc6{bottom:1019.520000px;}
.y9e{bottom:1020.960000px;}
.ya{bottom:1024.560000px;}
.y13a{bottom:1026.000000px;}
.y10d{bottom:1027.080000px;}
.y65{bottom:1029.240000px;}
.yc5{bottom:1041.840000px;}
.y9d{bottom:1043.280000px;}
.y139{bottom:1046.880000px;}
.y38{bottom:1050.120000px;}
.yf3{bottom:1050.480000px;}
.y9{bottom:1051.920000px;}
.y10c{bottom:1052.640000px;}
.y9c{bottom:1065.960000px;}
.y138{bottom:1067.400000px;}
.y37{bottom:1070.640000px;}
.yf2{bottom:1071.000000px;}
.yc4{bottom:1076.040000px;}
.y8{bottom:1078.200000px;}
.y9b{bottom:1088.280000px;}
.y36{bottom:1091.520000px;}
.y7{bottom:1098.720000px;}
.y10b{bottom:1103.760000px;}
.y9a{bottom:1110.600000px;}
.y35{bottom:1112.040000px;}
.y12c{bottom:1112.400000px;}
.y10a{bottom:1129.680000px;}
.y6{bottom:1132.920000px;}
.y12b{bottom:1133.280000px;}
.y3{bottom:1154.160000px;}
.y2{bottom:1174.320000px;}
.y1{bottom:1194.480000px;}
.h5{height:63.078750px;}
.h1{height:67.209704px;}
.h2{height:67.533138px;}
.h3{height:75.093750px;}
.h6{height:84.743437px;}
.h7{height:85.151250px;}
.h4{height:100.624999px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.439850px;}
.x8{left:154.440000px;}
.x4{left:181.440000px;}
.x6{left:208.440000px;}
.x5{left:453.960000px;}
.x3{left:499.320000px;}
.x7{left:748.800000px;}
.x2{left:757.080000px;}
@media print{
.v2{vertical-align:-72.960000pt;}
.v1{vertical-align:-64.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.131585pt;}
.ls3{letter-spacing:0.256000pt;}
.ls7{letter-spacing:56.749059pt;}
.ls2{letter-spacing:78.227737pt;}
.ls6{letter-spacing:174.246941pt;}
.ls5{letter-spacing:270.266145pt;}
.ls0{letter-spacing:1304.713034pt;}
.ws4{word-spacing:-53.760000pt;}
.ws1{word-spacing:-18.048000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws3{word-spacing:-16.778240pt;}
.ws0{word-spacing:0.000000pt;}
._29{margin-left:-8.068552pt;}
._26{margin-left:-6.681600pt;}
._25{margin-left:-5.417545pt;}
._19{margin-left:-4.495348pt;}
._6{margin-left:-2.830062pt;}
._0{margin-left:-1.177589pt;}
._1{width:1.236469pt;}
._8{width:2.240000pt;}
._9{width:3.264000pt;}
._f{width:4.549121pt;}
._e{width:5.440000pt;}
._c{width:6.400000pt;}
._d{width:7.344652pt;}
._13{width:8.344390pt;}
._14{width:10.084613pt;}
._10{width:11.289589pt;}
._12{width:12.453125pt;}
._11{width:13.697058pt;}
._18{width:14.804718pt;}
._1a{width:15.738453pt;}
._4{width:16.921495pt;}
._7{width:18.157964pt;}
._5{width:19.187077pt;}
._1c{width:20.160000pt;}
._1b{width:21.373574pt;}
._16{width:22.286110pt;}
._15{width:23.339531pt;}
._17{width:24.851204pt;}
._22{width:26.289426pt;}
._a{width:27.371531pt;}
._b{width:28.864000pt;}
._1d{width:30.000652pt;}
._23{width:31.482665pt;}
._3{width:33.057068pt;}
._2{width:34.561065pt;}
._20{width:36.177812pt;}
._1f{width:37.097009pt;}
._1e{width:38.080000pt;}
._24{width:39.045058pt;}
._21{width:47.216652pt;}
._38{width:77.935093pt;}
._39{width:79.186970pt;}
._32{width:80.491531pt;}
._33{width:81.472000pt;}
._36{width:112.000000pt;}
._37{width:112.939531pt;}
._35{width:158.384652pt;}
._34{width:159.705589pt;}
._27{width:171.419933pt;}
._28{width:172.699656pt;}
._3a{width:209.771531pt;}
._2b{width:239.217938pt;}
._2a{width:240.526062pt;}
._2c{width:278.891531pt;}
._2d{width:279.941121pt;}
._2f{width:383.685121pt;}
._2e{width:384.704000pt;}
._30{width:488.875531pt;}
._31{width:489.881589pt;}
._3b{width:1481.221121pt;}
.fs3{font-size:53.760000pt;}
.fs0{font-size:58.879467pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs2{font-size:85.759467pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:51.520000pt;}
.y4{bottom:69.120000pt;}
.y162{bottom:102.400000pt;}
.y64{bottom:105.279867pt;}
.yf1{bottom:105.600000pt;}
.y99{bottom:110.080000pt;}
.y109{bottom:112.000000pt;}
.y34{bottom:114.880000pt;}
.y161{bottom:120.960000pt;}
.yc3{bottom:121.279867pt;}
.y12a{bottom:122.880000pt;}
.y63{bottom:123.840000pt;}
.yf0{bottom:124.160000pt;}
.yea{bottom:128.000000pt;}
.y137{bottom:128.960000pt;}
.y98{bottom:129.920000pt;}
.y33{bottom:133.120000pt;}
.y108{bottom:134.720000pt;}
.y160{bottom:139.200000pt;}
.yc2{bottom:141.120000pt;}
.y129{bottom:141.440000pt;}
.y62{bottom:142.080000pt;}
.ye9{bottom:146.240000pt;}
.y136{bottom:148.800000pt;}
.y97{bottom:149.760000pt;}
.y32{bottom:151.680000pt;}
.y107{bottom:157.440000pt;}
.y15f{bottom:157.760000pt;}
.y61{bottom:160.640000pt;}
.yef{bottom:160.960000pt;}
.ye8{bottom:164.800000pt;}
.y168{bottom:165.760000pt;}
.y135{bottom:168.960000pt;}
.y96{bottom:169.600000pt;}
.y31{bottom:169.920000pt;}
.yc1{bottom:171.520000pt;}
.y15e{bottom:176.000000pt;}
.y60{bottom:178.880000pt;}
.y6a{bottom:179.200000pt;}
.y106{bottom:180.480000pt;}
.ye7{bottom:183.040000pt;}
.y128{bottom:183.680000pt;}
.y30{bottom:188.480000pt;}
.y134{bottom:188.800000pt;}
.yc0{bottom:191.360000pt;}
.y15d{bottom:194.560000pt;}
.y167{bottom:196.480000pt;}
.y5f{bottom:197.440000pt;}
.yec{bottom:197.760000pt;}
.y95{bottom:200.320000pt;}
.ye6{bottom:201.600000pt;}
.y105{bottom:203.200000pt;}
.y127{bottom:206.400000pt;}
.y2f{bottom:206.720000pt;}
.y133{bottom:208.640000pt;}
.y15c{bottom:212.800000pt;}
.y5e{bottom:215.680000pt;}
.yee{bottom:216.000000pt;}
.ye5{bottom:219.840000pt;}
.y94{bottom:220.160000pt;}
.ybf{bottom:221.760000pt;}
.y2e{bottom:225.280000pt;}
.y104{bottom:225.920000pt;}
.y166{bottom:226.880000pt;}
.y132{bottom:228.480000pt;}
.y126{bottom:229.440000pt;}
.y15b{bottom:231.360000pt;}
.y78{bottom:232.320000pt;}
.y5d{bottom:234.240000pt;}
.ye4{bottom:238.720000pt;}
.y93{bottom:240.000000pt;}
.ybe{bottom:241.920000pt;}
.y2d{bottom:243.520000pt;}
.y165{bottom:246.720000pt;}
.y131{bottom:248.320000pt;}
.y103{bottom:248.640000pt;}
.y15a{bottom:249.600000pt;}
.y77{bottom:252.160000pt;}
.y5c{bottom:252.480000pt;}
.ye3{bottom:256.960000pt;}
.y92{bottom:259.840000pt;}
.ybd{bottom:261.760000pt;}
.y2c{bottom:262.080000pt;}
.y164{bottom:266.560000pt;}
.y130{bottom:268.160000pt;}
.y5b{bottom:271.040000pt;}
.y102{bottom:271.360000pt;}
.y76{bottom:272.000000pt;}
.y125{bottom:274.880000pt;}
.y91{bottom:279.680000pt;}
.y2b{bottom:280.320000pt;}
.ybc{bottom:281.600000pt;}
.y159{bottom:286.400000pt;}
.y12f{bottom:288.000000pt;}
.y5a{bottom:289.280000pt;}
.y75{bottom:291.840000pt;}
.ye2{bottom:293.760000pt;}
.y101{bottom:294.400000pt;}
.y124{bottom:297.600000pt;}
.y2a{bottom:298.880000pt;}
.y90{bottom:299.520000pt;}
.ybb{bottom:301.440000pt;}
.y158{bottom:304.960000pt;}
.y163{bottom:306.240000pt;}
.y59{bottom:307.840000pt;}
.y74{bottom:311.680000pt;}
.ye1{bottom:312.320000pt;}
.y29{bottom:317.120000pt;}
.y8f{bottom:319.360000pt;}
.y123{bottom:320.320000pt;}
.yba{bottom:321.280000pt;}
.y157{bottom:323.200000pt;}
.y58{bottom:326.080000pt;}
.y69{bottom:326.400000pt;}
.ye0{bottom:330.560000pt;}
.y73{bottom:331.520000pt;}
.y28{bottom:335.680000pt;}
.y8e{bottom:339.200000pt;}
.y100{bottom:339.840000pt;}
.yb9{bottom:341.120000pt;}
.y156{bottom:341.760000pt;}
.y122{bottom:343.360000pt;}
.y57{bottom:344.640000pt;}
.ydf{bottom:349.120000pt;}
.y72{bottom:351.360000pt;}
.y27{bottom:353.920000pt;}
.y8d{bottom:359.040000pt;}
.y155{bottom:360.000000pt;}
.yb8{bottom:360.960000pt;}
.yff{bottom:362.560000pt;}
.y56{bottom:362.880000pt;}
.y68{bottom:363.200000pt;}
.y121{bottom:366.080000pt;}
.y71{bottom:371.200000pt;}
.y26{bottom:372.480000pt;}
.y154{bottom:378.560000pt;}
.y8c{bottom:378.880000pt;}
.yde{bottom:379.200000pt;}
.y55{bottom:381.440000pt;}
.yfe{bottom:385.280000pt;}
.y120{bottom:388.800000pt;}
.y25{bottom:390.720000pt;}
.y70{bottom:391.040000pt;}
.yb7{bottom:391.360000pt;}
.y153{bottom:396.800000pt;}
.y8b{bottom:398.720000pt;}
.ydd{bottom:399.040000pt;}
.y54{bottom:399.680000pt;}
.yfd{bottom:408.320000pt;}
.y24{bottom:409.280000pt;}
.y6f{bottom:410.880000pt;}
.yb6{bottom:411.200000pt;}
.y11f{bottom:411.520000pt;}
.y152{bottom:415.360000pt;}
.y53{bottom:418.240000pt;}
.y8a{bottom:418.560000pt;}
.ydc{bottom:418.880000pt;}
.y23{bottom:427.520000pt;}
.y6e{bottom:430.720000pt;}
.yb5{bottom:431.040000pt;}
.y151{bottom:433.600000pt;}
.y11e{bottom:434.240000pt;}
.y52{bottom:436.480000pt;}
.y89{bottom:438.400000pt;}
.ydb{bottom:438.720000pt;}
.y22{bottom:445.760000pt;}
.y6d{bottom:450.560000pt;}
.yb4{bottom:450.880000pt;}
.y150{bottom:452.160000pt;}
.yfc{bottom:453.760000pt;}
.y51{bottom:455.040000pt;}
.y11d{bottom:457.280000pt;}
.y88{bottom:458.240000pt;}
.yda{bottom:458.560000pt;}
.y21{bottom:464.320000pt;}
.y6c{bottom:470.400000pt;}
.yb3{bottom:470.720000pt;}
.y50{bottom:473.280000pt;}
.yfb{bottom:476.480000pt;}
.y87{bottom:478.080000pt;}
.yd9{bottom:478.400000pt;}
.y11c{bottom:480.000000pt;}
.y20{bottom:482.560000pt;}
.y14f{bottom:488.960000pt;}
.y6b{bottom:490.240000pt;}
.yb2{bottom:490.560000pt;}
.y4f{bottom:491.840000pt;}
.yed{bottom:492.160000pt;}
.y86{bottom:497.920000pt;}
.yd8{bottom:498.560000pt;}
.yfa{bottom:499.520000pt;}
.y1f{bottom:501.120000pt;}
.y11b{bottom:502.720000pt;}
.y14e{bottom:507.200000pt;}
.y4e{bottom:510.080000pt;}
.yb1{bottom:510.400000pt;}
.yd7{bottom:518.400000pt;}
.y1e{bottom:519.360000pt;}
.yf9{bottom:522.240000pt;}
.y11a{bottom:525.440000pt;}
.y14d{bottom:525.760000pt;}
.y4d{bottom:528.640000pt;}
.yb0{bottom:530.560000pt;}
.y1d{bottom:537.920000pt;}
.yd6{bottom:538.240000pt;}
.y14c{bottom:544.000000pt;}
.yf8{bottom:544.960000pt;}
.y4c{bottom:546.880000pt;}
.y12e{bottom:547.200000pt;}
.y85{bottom:548.480000pt;}
.yaf{bottom:550.400000pt;}
.y1c{bottom:556.160000pt;}
.yd5{bottom:558.080000pt;}
.y14b{bottom:562.560000pt;}
.y4b{bottom:565.440000pt;}
.y12d{bottom:565.760000pt;}
.yf7{bottom:567.680000pt;}
.y84{bottom:568.320000pt;}
.yae{bottom:570.240000pt;}
.y119{bottom:571.200000pt;}
.y1b{bottom:575.040000pt;}
.yd4{bottom:577.920000pt;}
.y14a{bottom:580.800000pt;}
.y4a{bottom:583.680000pt;}
.y83{bottom:588.160000pt;}
.yad{bottom:590.080000pt;}
.yf6{bottom:590.400000pt;}
.y1a{bottom:592.960000pt;}
.y118{bottom:593.920000pt;}
.yd3{bottom:597.760000pt;}
.y149{bottom:599.360000pt;}
.y49{bottom:602.240000pt;}
.y82{bottom:608.000000pt;}
.yac{bottom:609.920000pt;}
.y19{bottom:611.520000pt;}
.yf5{bottom:613.440000pt;}
.y117{bottom:616.640000pt;}
.yd2{bottom:617.600000pt;}
.y48{bottom:620.480000pt;}
.y81{bottom:627.840000pt;}
.y18{bottom:629.760000pt;}
.yf4{bottom:636.160000pt;}
.yd1{bottom:637.440000pt;}
.y47{bottom:639.040000pt;}
.yeb{bottom:639.360000pt;}
.y80{bottom:647.680000pt;}
.y17{bottom:648.320000pt;}
.yab{bottom:649.600000pt;}
.y148{bottom:654.400000pt;}
.y46{bottom:657.280000pt;}
.y116{bottom:662.400000pt;}
.y16{bottom:666.560000pt;}
.yaa{bottom:669.440000pt;}
.y147{bottom:672.960000pt;}
.y45{bottom:675.840000pt;}
.yd0{bottom:677.120000pt;}
.y7f{bottom:678.080000pt;}
.y15{bottom:685.120000pt;}
.ya9{bottom:689.280000pt;}
.y146{bottom:691.200000pt;}
.y44{bottom:694.080000pt;}
.ycf{bottom:696.960000pt;}
.y14{bottom:703.680000pt;}
.y115{bottom:707.840000pt;}
.y7e{bottom:708.800000pt;}
.ya8{bottom:709.120000pt;}
.y145{bottom:709.760000pt;}
.y43{bottom:712.640000pt;}
.yce{bottom:716.800000pt;}
.y13{bottom:721.280000pt;}
.y144{bottom:728.000000pt;}
.ya7{bottom:728.960000pt;}
.y114{bottom:730.560000pt;}
.y42{bottom:730.880000pt;}
.y12{bottom:736.640000pt;}
.y7d{bottom:739.200000pt;}
.y143{bottom:746.560000pt;}
.ya6{bottom:748.800000pt;}
.y41{bottom:749.440000pt;}
.y113{bottom:753.280000pt;}
.ycd{bottom:756.480000pt;}
.y142{bottom:764.800000pt;}
.y40{bottom:767.680000pt;}
.y11{bottom:768.320000pt;}
.ya5{bottom:768.640000pt;}
.y7c{bottom:769.920000pt;}
.ycc{bottom:776.320000pt;}
.y141{bottom:783.360000pt;}
.y3f{bottom:786.240000pt;}
.y10{bottom:786.560000pt;}
.ya4{bottom:788.480000pt;}
.ycb{bottom:796.160000pt;}
.y112{bottom:799.040000pt;}
.y7b{bottom:800.320000pt;}
.y140{bottom:801.600000pt;}
.y3e{bottom:804.480000pt;}
.yf{bottom:805.120000pt;}
.ya3{bottom:808.320000pt;}
.yca{bottom:816.000000pt;}
.y13f{bottom:820.160000pt;}
.y111{bottom:821.760000pt;}
.y3d{bottom:823.040000pt;}
.ye{bottom:823.360000pt;}
.ya2{bottom:828.160000pt;}
.y7a{bottom:830.720000pt;}
.yc9{bottom:835.840000pt;}
.y13e{bottom:838.400000pt;}
.y3c{bottom:841.280000pt;}
.yd{bottom:841.920000pt;}
.y110{bottom:844.480000pt;}
.ya1{bottom:848.000000pt;}
.yc8{bottom:855.680000pt;}
.y13d{bottom:856.960000pt;}
.y79{bottom:857.920000pt;}
.y3b{bottom:859.840000pt;}
.yc{bottom:861.440000pt;}
.y10f{bottom:867.200000pt;}
.ya0{bottom:867.840000pt;}
.y13c{bottom:875.200000pt;}
.yc7{bottom:875.520000pt;}
.y67{bottom:878.080000pt;}
.y3a{bottom:878.400000pt;}
.yb{bottom:886.080000pt;}
.y9f{bottom:887.680000pt;}
.y10e{bottom:890.240000pt;}
.y13b{bottom:893.760000pt;}
.y66{bottom:896.640000pt;}
.y39{bottom:896.960000pt;}
.yc6{bottom:906.240000pt;}
.y9e{bottom:907.520000pt;}
.ya{bottom:910.720000pt;}
.y13a{bottom:912.000000pt;}
.y10d{bottom:912.960000pt;}
.y65{bottom:914.880000pt;}
.yc5{bottom:926.080000pt;}
.y9d{bottom:927.360000pt;}
.y139{bottom:930.560000pt;}
.y38{bottom:933.440000pt;}
.yf3{bottom:933.760000pt;}
.y9{bottom:935.040000pt;}
.y10c{bottom:935.680000pt;}
.y9c{bottom:947.520000pt;}
.y138{bottom:948.800000pt;}
.y37{bottom:951.680000pt;}
.yf2{bottom:952.000000pt;}
.yc4{bottom:956.480000pt;}
.y8{bottom:958.400000pt;}
.y9b{bottom:967.360000pt;}
.y36{bottom:970.240000pt;}
.y7{bottom:976.640000pt;}
.y10b{bottom:981.120000pt;}
.y9a{bottom:987.200000pt;}
.y35{bottom:988.480000pt;}
.y12c{bottom:988.800000pt;}
.y10a{bottom:1004.160000pt;}
.y6{bottom:1007.040000pt;}
.y12b{bottom:1007.360000pt;}
.y3{bottom:1025.920000pt;}
.y2{bottom:1043.840000pt;}
.y1{bottom:1061.760000pt;}
.h5{height:56.070000pt;}
.h1{height:59.741959pt;}
.h2{height:60.029456pt;}
.h3{height:66.750000pt;}
.h6{height:75.327500pt;}
.h7{height:75.690000pt;}
.h4{height:89.444444pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.279867pt;}
.x8{left:137.280000pt;}
.x4{left:161.280000pt;}
.x6{left:185.280000pt;}
.x5{left:403.520000pt;}
.x3{left:443.840000pt;}
.x7{left:665.600000pt;}
.x2{left:672.960000pt;}
}




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