
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_63e3b16ed8884c469a5ceb12.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_dfdcdc3f3871d362fc12cb25.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959473;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_561721a85cde0e0f1e97ce04.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927734;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_3c3e4aa929556cc3e6820117.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.927734;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_ce0b0ed1221904f34e05b7c0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5e5bf9b3fc7e9889bf974ba0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.959473;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_90d256438de252f906691b4b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.729412;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_be41b9cb1e81715254576af7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.899902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2b7d4a6694ff8438e2f8f36b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.870605;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);}
.v4{vertical-align:-40.320000px;}
.v3{vertical-align:-28.200000px;}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls6{letter-spacing:-0.864000px;}
.ls12{letter-spacing:-0.265200px;}
.lsa{letter-spacing:-0.205800px;}
.ls5{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.032400px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.005040px;}
.lsd{letter-spacing:0.012960px;}
.lsb{letter-spacing:0.052560px;}
.ls3{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.090000px;}
.ls11{letter-spacing:0.212400px;}
.ls8{letter-spacing:0.239040px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.397440px;}
.ls1{letter-spacing:0.480000px;}
.ls9{letter-spacing:0.624000px;}
.ls13{letter-spacing:2.718720px;}
.ls14{letter-spacing:15.678720px;}
.ls2{letter-spacing:17.280000px;}
.ls7{letter-spacing:1431.096000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(118,113,113),0 0.015em rgb(118,113,113),0.015em 0 rgb(118,113,113),0 -0.015em  rgb(118,113,113);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(118,113,113);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-72.000000px;}
.wsd{word-spacing:-59.760000px;}
.wse{word-spacing:-46.080720px;}
.ws1{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.136000px;}
.ws7{word-spacing:-16.527000px;}
.wsb{word-spacing:-15.152400px;}
.wsa{word-spacing:-15.030000px;}
.ws9{word-spacing:-14.945040px;}
.ws8{word-spacing:-14.907600px;}
.wsc{word-spacing:-14.674800px;}
.ws6{word-spacing:0.000000px;}
._9{margin-left:-4.320000px;}
._a{margin-left:-3.168000px;}
._11{margin-left:-2.076000px;}
._0{margin-left:-1.026000px;}
._3{width:1.020000px;}
._1{width:2.436000px;}
._2{width:3.672000px;}
._7{width:5.472000px;}
._8{width:6.552000px;}
._6{width:8.352000px;}
._b{width:9.552000px;}
._f{width:11.484000px;}
._e{width:12.600000px;}
._1b{width:13.968000px;}
._1a{width:15.624000px;}
._c{width:16.776000px;}
._13{width:19.656000px;}
._d{width:21.384000px;}
._14{width:23.328000px;}
._19{width:25.692000px;}
._18{width:26.784000px;}
._1f{width:42.948000px;}
._1e{width:44.280000px;}
._1d{width:84.024000px;}
._1c{width:85.320000px;}
._17{width:88.022400px;}
._15{width:91.608000px;}
._12{width:194.376000px;}
._16{width:237.067920px;}
._5{width:470.916000px;}
._10{width:1261.794240px;}
._4{width:1433.832000px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc1{color:rgb(118,113,113);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y34{bottom:1.800000px;}
.yd0{bottom:3.240000px;}
.yd4{bottom:3.420000px;}
.y74{bottom:3.960000px;}
.y9f{bottom:3.990000px;}
.yd6{bottom:4.680000px;}
.yd2{bottom:5.760000px;}
.y36{bottom:8.100000px;}
.yd8{bottom:10.260000px;}
.yd1{bottom:10.290000px;}
.yd5{bottom:10.440000px;}
.y89{bottom:20.880000px;}
.y9c{bottom:21.600000px;}
.y88{bottom:37.800000px;}
.y32{bottom:51.840000px;}
.y8{bottom:57.600000px;}
.y35{bottom:67.680000px;}
.y33{bottom:74.700000px;}
.y7{bottom:76.860000px;}
.y6{bottom:91.980000px;}
.y5{bottom:107.280000px;}
.y4{bottom:122.400000px;}
.y31{bottom:122.580000px;}
.y3{bottom:137.520000px;}
.y5f{bottom:140.580000px;}
.y85{bottom:141.660000px;}
.yea{bottom:147.060000px;}
.yb8{bottom:148.140000px;}
.y84{bottom:162.030000px;}
.yb7{bottom:168.510000px;}
.y5e{bottom:169.770000px;}
.ye9{bottom:176.250000px;}
.y2e{bottom:182.730000px;}
.y10c{bottom:184.530000px;}
.yb6{bottom:188.670000px;}
.y83{bottom:191.190000px;}
.y5d{bottom:199.110000px;}
.y10b{bottom:204.870000px;}
.ye8{bottom:205.590000px;}
.yb5{bottom:209.010000px;}
.y2d{bottom:211.890000px;}
.y82{bottom:220.530000px;}
.y10a{bottom:225.030000px;}
.y5c{bottom:228.270000px;}
.yb4{bottom:229.170000px;}
.y2c{bottom:232.230000px;}
.ye7{bottom:234.750000px;}
.y81{bottom:236.910000px;}
.yb3{bottom:249.510000px;}
.y2b{bottom:252.570000px;}
.y109{bottom:254.190000px;}
.y80{bottom:254.550000px;}
.y5b{bottom:257.610000px;}
.ye6{bottom:264.090000px;}
.y7f{bottom:272.190000px;}
.y2a{bottom:272.730000px;}
.y108{bottom:274.530000px;}
.yb2{bottom:278.670000px;}
.y5a{bottom:286.770000px;}
.y7e{bottom:289.830000px;}
.y29{bottom:293.070000px;}
.ye5{bottom:293.250000px;}
.y107{bottom:294.870000px;}
.yb1{bottom:299.010000px;}
.y7d{bottom:307.470000px;}
.y28{bottom:313.230000px;}
.y59{bottom:316.110000px;}
.yb0{bottom:319.170000px;}
.ye4{bottom:322.590000px;}
.y106{bottom:324.030000px;}
.y7c{bottom:324.930000px;}
.y27{bottom:333.570000px;}
.yaf{bottom:339.510000px;}
.y7b{bottom:342.570000px;}
.y105{bottom:344.370000px;}
.y58{bottom:345.270000px;}
.ye3{bottom:351.750000px;}
.y26{bottom:353.730000px;}
.yae{bottom:359.670000px;}
.y7a{bottom:360.210000px;}
.y104{bottom:364.530000px;}
.y25{bottom:374.070000px;}
.y57{bottom:374.610000px;}
.y79{bottom:377.850000px;}
.ye2{bottom:381.090000px;}
.yad{bottom:388.830000px;}
.y103{bottom:393.690000px;}
.y24{bottom:394.230000px;}
.y78{bottom:395.490000px;}
.ye1{bottom:401.475000px;}
.y56{bottom:403.815000px;}
.y77{bottom:413.175000px;}
.y102{bottom:414.075000px;}
.y23{bottom:414.615000px;}
.yac{bottom:418.215000px;}
.ye0{bottom:430.635000px;}
.y76{bottom:430.815000px;}
.y55{bottom:433.155000px;}
.yab{bottom:434.595000px;}
.y101{bottom:443.235000px;}
.y22{bottom:444.675000px;}
.y75{bottom:448.455000px;}
.ydf{bottom:450.975000px;}
.yaa{bottom:452.235000px;}
.y54{bottom:462.315000px;}
.y100{bottom:463.575000px;}
.y73{bottom:466.095000px;}
.ya9{bottom:469.875000px;}
.yde{bottom:471.135000px;}
.y21{bottom:476.355000px;}
.yff{bottom:483.915000px;}
.ya8{bottom:487.515000px;}
.ydd{bottom:491.475000px;}
.y53{bottom:491.655000px;}
.y72{bottom:497.235000px;}
.ya7{bottom:504.975000px;}
.y20{bottom:505.695000px;}
.yfe{bottom:513.075000px;}
.y52{bottom:520.815000px;}
.ydc{bottom:521.535000px;}
.ya6{bottom:522.615000px;}
.y1f{bottom:526.035000px;}
.y71{bottom:526.575000px;}
.ya5{bottom:540.255000px;}
.y51{bottom:541.155000px;}
.yfd{bottom:542.235000px;}
.y1e{bottom:546.195000px;}
.ydb{bottom:553.215000px;}
.y70{bottom:555.735000px;}
.ya4{bottom:557.895000px;}
.y50{bottom:561.495000px;}
.yfc{bottom:562.575000px;}
.y1d{bottom:566.535000px;}
.yda{bottom:569.595000px;}
.ya3{bottom:575.535000px;}
.y6f{bottom:576.075000px;}
.y4f{bottom:581.655000px;}
.yfb{bottom:582.915000px;}
.yd9{bottom:587.235000px;}
.ya2{bottom:593.175000px;}
.y1c{bottom:595.695000px;}
.y6e{bottom:596.415000px;}
.yd7{bottom:604.875000px;}
.ya1{bottom:610.815000px;}
.y4e{bottom:611.715000px;}
.yfa{bottom:612.075000px;}
.yd3{bottom:624.315000px;}
.y1b{bottom:624.855000px;}
.y6d{bottom:625.575000px;}
.ya0{bottom:628.455000px;}
.yf9{bottom:632.415000px;}
.ycf{bottom:642.675000px;}
.y4d{bottom:643.575000px;}
.y1a{bottom:645.195000px;}
.y6c{bottom:645.915000px;}
.y9e{bottom:646.095000px;}
.yf8{bottom:661.605000px;}
.ycd{bottom:662.145000px;}
.y9b{bottom:663.765000px;}
.y6b{bottom:666.105000px;}
.y4c{bottom:672.765000px;}
.y19{bottom:674.385000px;}
.yce{bottom:679.785000px;}
.y9d{bottom:681.405000px;}
.yf7{bottom:681.945000px;}
.y4b{bottom:693.105000px;}
.y6a{bottom:695.265000px;}
.y18{bottom:703.725000px;}
.ycc{bottom:711.105000px;}
.y9a{bottom:712.545000px;}
.y4a{bottom:713.445000px;}
.y69{bottom:715.605000px;}
.y17{bottom:724.065000px;}
.yf6{bottom:731.445000px;}
.y99{bottom:732.885000px;}
.y49{bottom:733.605000px;}
.y68{bottom:735.945000px;}
.ycb{bottom:740.265000px;}
.y16{bottom:744.225000px;}
.y67{bottom:756.105000px;}
.yf5{bottom:761.325000px;}
.y98{bottom:762.045000px;}
.y48{bottom:762.765000px;}
.y15{bottom:764.565000px;}
.yca{bottom:769.605000px;}
.y66{bottom:776.445000px;}
.y47{bottom:783.105000px;}
.y14{bottom:784.725000px;}
.yc9{bottom:789.945000px;}
.y97{bottom:791.385000px;}
.yf4{bottom:793.185000px;}
.y65{bottom:796.605000px;}
.y46{bottom:803.445000px;}
.y13{bottom:805.065000px;}
.yc8{bottom:810.105000px;}
.y96{bottom:811.725000px;}
.y64{bottom:816.945000px;}
.yf3{bottom:822.345000px;}
.y45{bottom:823.605000px;}
.y12{bottom:825.225000px;}
.yc7{bottom:830.445000px;}
.y95{bottom:831.885000px;}
.yf2{bottom:842.685000px;}
.y44{bottom:843.945000px;}
.y11{bottom:845.565000px;}
.y63{bottom:846.105000px;}
.yc6{bottom:850.605000px;}
.y94{bottom:852.225000px;}
.yf1{bottom:863.025000px;}
.y43{bottom:864.105000px;}
.y93{bottom:872.385000px;}
.y62{bottom:875.265000px;}
.y10{bottom:875.445000px;}
.yc5{bottom:879.765000px;}
.yf0{bottom:883.185000px;}
.y42{bottom:884.445000px;}
.y92{bottom:892.725000px;}
.y61{bottom:895.605000px;}
.yc4{bottom:900.150000px;}
.y41{bottom:904.650000px;}
.yf{bottom:907.350000px;}
.y91{bottom:912.930000px;}
.yef{bottom:913.290000px;}
.y110{bottom:918.150000px;}
.y60{bottom:920.130000px;}
.yc3{bottom:920.490000px;}
.y40{bottom:924.990000px;}
.ye{bottom:936.510000px;}
.yc2{bottom:940.650000px;}
.y90{bottom:942.090000px;}
.y3f{bottom:945.150000px;}
.y10f{bottom:951.810000px;}
.yd{bottom:957.030000px;}
.yc1{bottom:960.990000px;}
.y8f{bottom:971.430000px;}
.y3e{bottom:974.310000px;}
.yc0{bottom:981.150000px;}
.y8e{bottom:987.810000px;}
.y3d{bottom:994.650000px;}
.yc{bottom:997.530000px;}
.ybf{bottom:1001.490000px;}
.y8d{bottom:1005.450000px;}
.y3c{bottom:1014.990000px;}
.y10e{bottom:1021.650000px;}
.y8c{bottom:1023.090000px;}
.yee{bottom:1023.810000px;}
.yb{bottom:1024.530000px;}
.ybe{bottom:1030.650000px;}
.y3b{bottom:1035.150000px;}
.y8b{bottom:1040.550000px;}
.y10d{bottom:1050.810000px;}
.ybd{bottom:1050.990000px;}
.ya{bottom:1051.530000px;}
.yed{bottom:1053.150000px;}
.y3a{bottom:1055.490000px;}
.y8a{bottom:1058.190000px;}
.ybc{bottom:1071.150000px;}
.y39{bottom:1075.650000px;}
.y87{bottom:1075.830000px;}
.yec{bottom:1082.310000px;}
.y9{bottom:1085.730000px;}
.ybb{bottom:1091.490000px;}
.y2{bottom:1101.390000px;}
.y38{bottom:1105.710000px;}
.yeb{bottom:1111.650000px;}
.yba{bottom:1120.650000px;}
.y37{bottom:1138.290000px;}
.y86{bottom:1140.810000px;}
.yb9{bottom:1140.990000px;}
.y30{bottom:1178.820000px;}
.y1{bottom:1194.120000px;}
.y2f{bottom:1196.280000px;}
.h13{height:16.740000px;}
.h10{height:16.920000px;}
.h12{height:16.956000px;}
.h1b{height:17.640000px;}
.h1c{height:18.720000px;}
.h18{height:18.756000px;}
.hd{height:22.500000px;}
.hf{height:24.120000px;}
.h15{height:34.380000px;}
.h17{height:34.560000px;}
.h1a{height:35.194219px;}
.h3{height:36.571289px;}
.h11{height:40.472227px;}
.h16{height:41.451328px;}
.hb{height:41.610234px;}
.hc{height:47.796328px;}
.h8{height:48.761719px;}
.h4{height:50.132812px;}
.h19{height:50.364141px;}
.h14{height:50.760000px;}
.h7{height:53.332031px;}
.h9{height:57.051211px;}
.h1d{height:58.655391px;}
.ha{height:59.439023px;}
.h5{height:64.853086px;}
.h2{height:65.884219px;}
.h6{height:66.676641px;}
.he{height:67.375547px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.536000px;}
.w13{width:50.940000px;}
.w14{width:50.976000px;}
.w15{width:51.156000px;}
.we{width:71.100000px;}
.w5{width:73.260000px;}
.w10{width:77.940000px;}
.wa{width:81.360000px;}
.w11{width:81.576000px;}
.w1c{width:82.440000px;}
.w18{width:82.656000px;}
.w19{width:85.860000px;}
.w1b{width:98.280000px;}
.w1a{width:98.316000px;}
.wb{width:119.376000px;}
.w8{width:126.900000px;}
.w12{width:135.900000px;}
.wd{width:137.160000px;}
.wc{width:138.276000px;}
.w16{width:144.000000px;}
.w9{width:199.650000px;}
.w6{width:211.890000px;}
.w7{width:286.275000px;}
.wf{width:309.495000px;}
.w17{width:533.985000px;}
.w4{width:677.340000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.xd{left:10.800000px;}
.x2e{left:41.580000px;}
.x2f{left:54.894000px;}
.x2c{left:61.194000px;}
.x2d{left:74.514000px;}
.x30{left:94.314000px;}
.x3{left:106.415987px;}
.x5{left:126.035987px;}
.x4{left:134.855987px;}
.x34{left:148.895987px;}
.x17{left:163.289987px;}
.x12{left:167.249987px;}
.x1d{left:178.950000px;}
.xb{left:180.209987px;}
.x14{left:181.290000px;}
.x26{left:197.489987px;}
.xe{left:228.449987px;}
.x21{left:230.610000px;}
.x8{left:236.549987px;}
.x1b{left:252.029987px;}
.x1c{left:272.774987px;}
.x6{left:278.714987px;}
.x22{left:282.315000px;}
.x11{left:290.234987px;}
.xf{left:292.394987px;}
.x18{left:307.515000px;}
.x23{left:333.975000px;}
.x27{left:335.415000px;}
.x32{left:359.174987px;}
.x7{left:371.234987px;}
.x24{left:385.635000px;}
.xa{left:390.134987px;}
.x15{left:393.915000px;}
.x31{left:396.074987px;}
.x33{left:397.694987px;}
.x9{left:409.394987px;}
.x28{left:421.995000px;}
.x25{left:437.295000px;}
.x1{left:446.504987px;}
.x1e{left:489.165000px;}
.x19{left:509.865000px;}
.x29{left:521.205000px;}
.x1f{left:567.825000px;}
.x2a{left:620.205000px;}
.x1a{left:648.870000px;}
.x20{left:650.130000px;}
.x10{left:679.649987px;}
.x16{left:680.910000px;}
.x2b{left:703.590000px;}
.x2{left:786.749987px;}
.xc{left:789.090000px;}
@media print{
.v4{vertical-align:-35.840000pt;}
.v3{vertical-align:-25.066667pt;}
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls6{letter-spacing:-0.768000pt;}
.ls12{letter-spacing:-0.235733pt;}
.lsa{letter-spacing:-0.182933pt;}
.ls5{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.028800pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.004480pt;}
.lsd{letter-spacing:0.011520pt;}
.lsb{letter-spacing:0.046720pt;}
.ls3{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.080000pt;}
.ls11{letter-spacing:0.188800pt;}
.ls8{letter-spacing:0.212480pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.353280pt;}
.ls1{letter-spacing:0.426667pt;}
.ls9{letter-spacing:0.554667pt;}
.ls13{letter-spacing:2.416640pt;}
.ls14{letter-spacing:13.936640pt;}
.ls2{letter-spacing:15.360000pt;}
.ls7{letter-spacing:1272.085333pt;}
.ws0{word-spacing:-64.000000pt;}
.wsd{word-spacing:-53.120000pt;}
.wse{word-spacing:-40.960640pt;}
.ws1{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.232000pt;}
.ws7{word-spacing:-14.690667pt;}
.wsb{word-spacing:-13.468800pt;}
.wsa{word-spacing:-13.360000pt;}
.ws9{word-spacing:-13.284480pt;}
.ws8{word-spacing:-13.251200pt;}
.wsc{word-spacing:-13.044267pt;}
.ws6{word-spacing:0.000000pt;}
._9{margin-left:-3.840000pt;}
._a{margin-left:-2.816000pt;}
._11{margin-left:-1.845333pt;}
._0{margin-left:-0.912000pt;}
._3{width:0.906667pt;}
._1{width:2.165333pt;}
._2{width:3.264000pt;}
._7{width:4.864000pt;}
._8{width:5.824000pt;}
._6{width:7.424000pt;}
._b{width:8.490667pt;}
._f{width:10.208000pt;}
._e{width:11.200000pt;}
._1b{width:12.416000pt;}
._1a{width:13.888000pt;}
._c{width:14.912000pt;}
._13{width:17.472000pt;}
._d{width:19.008000pt;}
._14{width:20.736000pt;}
._19{width:22.837333pt;}
._18{width:23.808000pt;}
._1f{width:38.176000pt;}
._1e{width:39.360000pt;}
._1d{width:74.688000pt;}
._1c{width:75.840000pt;}
._17{width:78.242133pt;}
._15{width:81.429333pt;}
._12{width:172.778667pt;}
._16{width:210.727040pt;}
._5{width:418.592000pt;}
._10{width:1121.594880pt;}
._4{width:1274.517333pt;}
.fs6{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:1.600000pt;}
.yd0{bottom:2.880000pt;}
.yd4{bottom:3.040000pt;}
.y74{bottom:3.520000pt;}
.y9f{bottom:3.546667pt;}
.yd6{bottom:4.160000pt;}
.yd2{bottom:5.120000pt;}
.y36{bottom:7.200000pt;}
.yd8{bottom:9.120000pt;}
.yd1{bottom:9.146667pt;}
.yd5{bottom:9.280000pt;}
.y89{bottom:18.560000pt;}
.y9c{bottom:19.200000pt;}
.y88{bottom:33.600000pt;}
.y32{bottom:46.080000pt;}
.y8{bottom:51.200000pt;}
.y35{bottom:60.160000pt;}
.y33{bottom:66.400000pt;}
.y7{bottom:68.320000pt;}
.y6{bottom:81.760000pt;}
.y5{bottom:95.360000pt;}
.y4{bottom:108.800000pt;}
.y31{bottom:108.960000pt;}
.y3{bottom:122.240000pt;}
.y5f{bottom:124.960000pt;}
.y85{bottom:125.920000pt;}
.yea{bottom:130.720000pt;}
.yb8{bottom:131.680000pt;}
.y84{bottom:144.026667pt;}
.yb7{bottom:149.786667pt;}
.y5e{bottom:150.906667pt;}
.ye9{bottom:156.666667pt;}
.y2e{bottom:162.426667pt;}
.y10c{bottom:164.026667pt;}
.yb6{bottom:167.706667pt;}
.y83{bottom:169.946667pt;}
.y5d{bottom:176.986667pt;}
.y10b{bottom:182.106667pt;}
.ye8{bottom:182.746667pt;}
.yb5{bottom:185.786667pt;}
.y2d{bottom:188.346667pt;}
.y82{bottom:196.026667pt;}
.y10a{bottom:200.026667pt;}
.y5c{bottom:202.906667pt;}
.yb4{bottom:203.706667pt;}
.y2c{bottom:206.426667pt;}
.ye7{bottom:208.666667pt;}
.y81{bottom:210.586667pt;}
.yb3{bottom:221.786667pt;}
.y2b{bottom:224.506667pt;}
.y109{bottom:225.946667pt;}
.y80{bottom:226.266667pt;}
.y5b{bottom:228.986667pt;}
.ye6{bottom:234.746667pt;}
.y7f{bottom:241.946667pt;}
.y2a{bottom:242.426667pt;}
.y108{bottom:244.026667pt;}
.yb2{bottom:247.706667pt;}
.y5a{bottom:254.906667pt;}
.y7e{bottom:257.626667pt;}
.y29{bottom:260.506667pt;}
.ye5{bottom:260.666667pt;}
.y107{bottom:262.106667pt;}
.yb1{bottom:265.786667pt;}
.y7d{bottom:273.306667pt;}
.y28{bottom:278.426667pt;}
.y59{bottom:280.986667pt;}
.yb0{bottom:283.706667pt;}
.ye4{bottom:286.746667pt;}
.y106{bottom:288.026667pt;}
.y7c{bottom:288.826667pt;}
.y27{bottom:296.506667pt;}
.yaf{bottom:301.786667pt;}
.y7b{bottom:304.506667pt;}
.y105{bottom:306.106667pt;}
.y58{bottom:306.906667pt;}
.ye3{bottom:312.666667pt;}
.y26{bottom:314.426667pt;}
.yae{bottom:319.706667pt;}
.y7a{bottom:320.186667pt;}
.y104{bottom:324.026667pt;}
.y25{bottom:332.506667pt;}
.y57{bottom:332.986667pt;}
.y79{bottom:335.866667pt;}
.ye2{bottom:338.746667pt;}
.yad{bottom:345.626667pt;}
.y103{bottom:349.946667pt;}
.y24{bottom:350.426667pt;}
.y78{bottom:351.546667pt;}
.ye1{bottom:356.866667pt;}
.y56{bottom:358.946667pt;}
.y77{bottom:367.266667pt;}
.y102{bottom:368.066667pt;}
.y23{bottom:368.546667pt;}
.yac{bottom:371.746667pt;}
.ye0{bottom:382.786667pt;}
.y76{bottom:382.946667pt;}
.y55{bottom:385.026667pt;}
.yab{bottom:386.306667pt;}
.y101{bottom:393.986667pt;}
.y22{bottom:395.266667pt;}
.y75{bottom:398.626667pt;}
.ydf{bottom:400.866667pt;}
.yaa{bottom:401.986667pt;}
.y54{bottom:410.946667pt;}
.y100{bottom:412.066667pt;}
.y73{bottom:414.306667pt;}
.ya9{bottom:417.666667pt;}
.yde{bottom:418.786667pt;}
.y21{bottom:423.426667pt;}
.yff{bottom:430.146667pt;}
.ya8{bottom:433.346667pt;}
.ydd{bottom:436.866667pt;}
.y53{bottom:437.026667pt;}
.y72{bottom:441.986667pt;}
.ya7{bottom:448.866667pt;}
.y20{bottom:449.506667pt;}
.yfe{bottom:456.066667pt;}
.y52{bottom:462.946667pt;}
.ydc{bottom:463.586667pt;}
.ya6{bottom:464.546667pt;}
.y1f{bottom:467.586667pt;}
.y71{bottom:468.066667pt;}
.ya5{bottom:480.226667pt;}
.y51{bottom:481.026667pt;}
.yfd{bottom:481.986667pt;}
.y1e{bottom:485.506667pt;}
.ydb{bottom:491.746667pt;}
.y70{bottom:493.986667pt;}
.ya4{bottom:495.906667pt;}
.y50{bottom:499.106667pt;}
.yfc{bottom:500.066667pt;}
.y1d{bottom:503.586667pt;}
.yda{bottom:506.306667pt;}
.ya3{bottom:511.586667pt;}
.y6f{bottom:512.066667pt;}
.y4f{bottom:517.026667pt;}
.yfb{bottom:518.146667pt;}
.yd9{bottom:521.986667pt;}
.ya2{bottom:527.266667pt;}
.y1c{bottom:529.506667pt;}
.y6e{bottom:530.146667pt;}
.yd7{bottom:537.666667pt;}
.ya1{bottom:542.946667pt;}
.y4e{bottom:543.746667pt;}
.yfa{bottom:544.066667pt;}
.yd3{bottom:554.946667pt;}
.y1b{bottom:555.426667pt;}
.y6d{bottom:556.066667pt;}
.ya0{bottom:558.626667pt;}
.yf9{bottom:562.146667pt;}
.ycf{bottom:571.266667pt;}
.y4d{bottom:572.066667pt;}
.y1a{bottom:573.506667pt;}
.y6c{bottom:574.146667pt;}
.y9e{bottom:574.306667pt;}
.yf8{bottom:588.093333pt;}
.ycd{bottom:588.573333pt;}
.y9b{bottom:590.013333pt;}
.y6b{bottom:592.093333pt;}
.y4c{bottom:598.013333pt;}
.y19{bottom:599.453333pt;}
.yce{bottom:604.253333pt;}
.y9d{bottom:605.693333pt;}
.yf7{bottom:606.173333pt;}
.y4b{bottom:616.093333pt;}
.y6a{bottom:618.013333pt;}
.y18{bottom:625.533333pt;}
.ycc{bottom:632.093333pt;}
.y9a{bottom:633.373333pt;}
.y4a{bottom:634.173333pt;}
.y69{bottom:636.093333pt;}
.y17{bottom:643.613333pt;}
.yf6{bottom:650.173333pt;}
.y99{bottom:651.453333pt;}
.y49{bottom:652.093333pt;}
.y68{bottom:654.173333pt;}
.ycb{bottom:658.013333pt;}
.y16{bottom:661.533333pt;}
.y67{bottom:672.093333pt;}
.yf5{bottom:676.733333pt;}
.y98{bottom:677.373333pt;}
.y48{bottom:678.013333pt;}
.y15{bottom:679.613333pt;}
.yca{bottom:684.093333pt;}
.y66{bottom:690.173333pt;}
.y47{bottom:696.093333pt;}
.y14{bottom:697.533333pt;}
.yc9{bottom:702.173333pt;}
.y97{bottom:703.453333pt;}
.yf4{bottom:705.053333pt;}
.y65{bottom:708.093333pt;}
.y46{bottom:714.173333pt;}
.y13{bottom:715.613333pt;}
.yc8{bottom:720.093333pt;}
.y96{bottom:721.533333pt;}
.y64{bottom:726.173333pt;}
.yf3{bottom:730.973333pt;}
.y45{bottom:732.093333pt;}
.y12{bottom:733.533333pt;}
.yc7{bottom:738.173333pt;}
.y95{bottom:739.453333pt;}
.yf2{bottom:749.053333pt;}
.y44{bottom:750.173333pt;}
.y11{bottom:751.613333pt;}
.y63{bottom:752.093333pt;}
.yc6{bottom:756.093333pt;}
.y94{bottom:757.533333pt;}
.yf1{bottom:767.133333pt;}
.y43{bottom:768.093333pt;}
.y93{bottom:775.453333pt;}
.y62{bottom:778.013333pt;}
.y10{bottom:778.173333pt;}
.yc5{bottom:782.013333pt;}
.yf0{bottom:785.053333pt;}
.y42{bottom:786.173333pt;}
.y92{bottom:793.533333pt;}
.y61{bottom:796.093333pt;}
.yc4{bottom:800.133333pt;}
.y41{bottom:804.133333pt;}
.yf{bottom:806.533333pt;}
.y91{bottom:811.493333pt;}
.yef{bottom:811.813333pt;}
.y110{bottom:816.133333pt;}
.y60{bottom:817.893333pt;}
.yc3{bottom:818.213333pt;}
.y40{bottom:822.213333pt;}
.ye{bottom:832.453333pt;}
.yc2{bottom:836.133333pt;}
.y90{bottom:837.413333pt;}
.y3f{bottom:840.133333pt;}
.y10f{bottom:846.053333pt;}
.yd{bottom:850.693333pt;}
.yc1{bottom:854.213333pt;}
.y8f{bottom:863.493333pt;}
.y3e{bottom:866.053333pt;}
.yc0{bottom:872.133333pt;}
.y8e{bottom:878.053333pt;}
.y3d{bottom:884.133333pt;}
.yc{bottom:886.693333pt;}
.ybf{bottom:890.213333pt;}
.y8d{bottom:893.733333pt;}
.y3c{bottom:902.213333pt;}
.y10e{bottom:908.133333pt;}
.y8c{bottom:909.413333pt;}
.yee{bottom:910.053333pt;}
.yb{bottom:910.693333pt;}
.ybe{bottom:916.133333pt;}
.y3b{bottom:920.133333pt;}
.y8b{bottom:924.933333pt;}
.y10d{bottom:934.053333pt;}
.ybd{bottom:934.213333pt;}
.ya{bottom:934.693333pt;}
.yed{bottom:936.133333pt;}
.y3a{bottom:938.213333pt;}
.y8a{bottom:940.613333pt;}
.ybc{bottom:952.133333pt;}
.y39{bottom:956.133333pt;}
.y87{bottom:956.293333pt;}
.yec{bottom:962.053333pt;}
.y9{bottom:965.093333pt;}
.ybb{bottom:970.213333pt;}
.y2{bottom:979.013333pt;}
.y38{bottom:982.853333pt;}
.yeb{bottom:988.133333pt;}
.yba{bottom:996.133333pt;}
.y37{bottom:1011.813333pt;}
.y86{bottom:1014.053333pt;}
.yb9{bottom:1014.213333pt;}
.y30{bottom:1047.840000pt;}
.y1{bottom:1061.440000pt;}
.y2f{bottom:1063.360000pt;}
.h13{height:14.880000pt;}
.h10{height:15.040000pt;}
.h12{height:15.072000pt;}
.h1b{height:15.680000pt;}
.h1c{height:16.640000pt;}
.h18{height:16.672000pt;}
.hd{height:20.000000pt;}
.hf{height:21.440000pt;}
.h15{height:30.560000pt;}
.h17{height:30.720000pt;}
.h1a{height:31.283750pt;}
.h3{height:32.507812pt;}
.h11{height:35.975313pt;}
.h16{height:36.845625pt;}
.hb{height:36.986875pt;}
.hc{height:42.485625pt;}
.h8{height:43.343750pt;}
.h4{height:44.562500pt;}
.h19{height:44.768125pt;}
.h14{height:45.120000pt;}
.h7{height:47.406250pt;}
.h9{height:50.712187pt;}
.h1d{height:52.138125pt;}
.ha{height:52.834688pt;}
.h5{height:57.647187pt;}
.h2{height:58.563750pt;}
.h6{height:59.268125pt;}
.he{height:59.889375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.032000pt;}
.w13{width:45.280000pt;}
.w14{width:45.312000pt;}
.w15{width:45.472000pt;}
.we{width:63.200000pt;}
.w5{width:65.120000pt;}
.w10{width:69.280000pt;}
.wa{width:72.320000pt;}
.w11{width:72.512000pt;}
.w1c{width:73.280000pt;}
.w18{width:73.472000pt;}
.w19{width:76.320000pt;}
.w1b{width:87.360000pt;}
.w1a{width:87.392000pt;}
.wb{width:106.112000pt;}
.w8{width:112.800000pt;}
.w12{width:120.800000pt;}
.wd{width:121.920000pt;}
.wc{width:122.912000pt;}
.w16{width:128.000000pt;}
.w9{width:177.466667pt;}
.w6{width:188.346667pt;}
.w7{width:254.466667pt;}
.wf{width:275.106667pt;}
.w17{width:474.653333pt;}
.w4{width:602.080000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.xd{left:9.600000pt;}
.x2e{left:36.960000pt;}
.x2f{left:48.794667pt;}
.x2c{left:54.394667pt;}
.x2d{left:66.234667pt;}
.x30{left:83.834667pt;}
.x3{left:94.591988pt;}
.x5{left:112.031988pt;}
.x4{left:119.871988pt;}
.x34{left:132.351988pt;}
.x17{left:145.146655pt;}
.x12{left:148.666655pt;}
.x1d{left:159.066667pt;}
.xb{left:160.186655pt;}
.x14{left:161.146667pt;}
.x26{left:175.546655pt;}
.xe{left:203.066655pt;}
.x21{left:204.986667pt;}
.x8{left:210.266655pt;}
.x1b{left:224.026655pt;}
.x1c{left:242.466655pt;}
.x6{left:247.746655pt;}
.x22{left:250.946667pt;}
.x11{left:257.986655pt;}
.xf{left:259.906655pt;}
.x18{left:273.346667pt;}
.x23{left:296.866667pt;}
.x27{left:298.146667pt;}
.x32{left:319.266655pt;}
.x7{left:329.986655pt;}
.x24{left:342.786667pt;}
.xa{left:346.786655pt;}
.x15{left:350.146667pt;}
.x31{left:352.066655pt;}
.x33{left:353.506655pt;}
.x9{left:363.906655pt;}
.x28{left:375.106667pt;}
.x25{left:388.706667pt;}
.x1{left:396.893322pt;}
.x1e{left:434.813333pt;}
.x19{left:453.213333pt;}
.x29{left:463.293333pt;}
.x1f{left:504.733333pt;}
.x2a{left:551.293333pt;}
.x1a{left:576.773333pt;}
.x20{left:577.893333pt;}
.x10{left:604.133322pt;}
.x16{left:605.253333pt;}
.x2b{left:625.413333pt;}
.x2{left:699.333322pt;}
.xc{left:701.413333pt;}
}




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