
    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_81ec61f1c31672b5cc0e61d8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_bd7f11d944e6d4f5f669c4e0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c33b28efabff0249fe218807.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8791bf6024846c8c37f09860.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4439e34deb1af6a4432ecef1.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_f1c873aff25cf8b23b8dd679.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.982422;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_a9ac6e90ce77231b473ce70e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.982422;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4af40b55c3887608bd8bfa53.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.786133;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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-0.774000px;}
.ls6{letter-spacing:-0.460200px;}
.ls15{letter-spacing:-0.413400px;}
.ls3{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.259800px;}
.lsf{letter-spacing:-0.253200px;}
.ls2{letter-spacing:-0.206400px;}
.ls9{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.ls7{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.106560px;}
.ls5{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.206400px;}
.lse{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.306600px;}
.ls4{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.666000px;}
.ls14{letter-spacing:16.506720px;}
.ls13{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-19.440000px;}
.ws1{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.606000px;}
.ws7{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.246600px;}
.ws10{word-spacing:-15.199800px;}
.ws5{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws3{word-spacing:-14.733600px;}
.wsa{word-spacing:-14.686800px;}
.wsf{word-spacing:-14.580000px;}
.wsb{word-spacing:-0.266160px;}
.wse{word-spacing:-0.166320px;}
.wsc{word-spacing:-0.059760px;}
.ws4{word-spacing:0.000000px;}
.wsd{word-spacing:0.200040px;}
._3{margin-left:-529.548480px;}
._6{margin-left:-3.645360px;}
._8{margin-left:-2.622960px;}
._2{margin-left:-1.059840px;}
._0{width:1.157760px;}
._1{width:2.950080px;}
._b{width:4.003920px;}
._d{width:5.705040px;}
._c{width:6.872400px;}
._12{width:7.896240px;}
._11{width:8.904240px;}
._1f{width:10.337040px;}
._7{width:12.172080px;}
._13{width:13.271280px;}
._19{width:16.493760px;}
._a{width:17.547120px;}
._9{width:18.585360px;}
._14{width:20.378160px;}
._1a{width:25.099200px;}
._16{width:26.533440px;}
._17{width:32.128560px;}
._1c{width:33.883920px;}
._1e{width:36.752400px;}
._1b{width:41.832000px;}
._5{width:44.193120px;}
._4{width:46.060560px;}
._1d{width:47.627280px;}
._10{width:48.801600px;}
._22{width:49.862160px;}
._23{width:69.373440px;}
._e{width:70.614000px;}
._20{width:73.602000px;}
._21{width:141.093360px;}
._18{width:184.299840px;}
._15{width:206.829360px;}
._f{width:231.966000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(21,96,130);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:2.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:95.760000px;}
.fs6{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.yca{bottom:3.060000px;}
.ycf{bottom:3.240000px;}
.y7{bottom:5.220000px;}
.yd4{bottom:5.580000px;}
.yd2{bottom:5.625000px;}
.y7a{bottom:5.760000px;}
.y93{bottom:5.790000px;}
.y23{bottom:5.940000px;}
.y3d{bottom:10.800000px;}
.y6{bottom:14.220000px;}
.y78{bottom:15.660000px;}
.y91{bottom:15.690000px;}
.y88{bottom:15.705000px;}
.y7f{bottom:15.840000px;}
.ya2{bottom:15.870000px;}
.yce{bottom:23.040000px;}
.ycd{bottom:25.380000px;}
.yd1{bottom:25.425000px;}
.y79{bottom:25.560000px;}
.y8f{bottom:25.590000px;}
.y86{bottom:25.605000px;}
.y22{bottom:25.740000px;}
.ya0{bottom:25.770000px;}
.y9b{bottom:25.785000px;}
.y7c{bottom:35.460000px;}
.y90{bottom:35.490000px;}
.y7e{bottom:35.640000px;}
.ya1{bottom:35.670000px;}
.y87{bottom:35.685000px;}
.ycc{bottom:45.180000px;}
.y8d{bottom:45.360000px;}
.y96{bottom:45.390000px;}
.y21{bottom:45.540000px;}
.y92{bottom:45.570000px;}
.y89{bottom:45.585000px;}
.y5{bottom:45.720000px;}
.y9{bottom:60.480000px;}
.y20{bottom:65.340000px;}
.y3c{bottom:72.900000px;}
.y4{bottom:77.400000px;}
.y1f{bottom:85.140000px;}
.y94{bottom:87.300000px;}
.y71{bottom:89.280000px;}
.yb1{bottom:92.340000px;}
.ye1{bottom:92.520000px;}
.yec{bottom:98.280000px;}
.y1e{bottom:105.120000px;}
.y112{bottom:105.480000px;}
.y70{bottom:109.080000px;}
.y3{bottom:109.110000px;}
.ye0{bottom:112.500000px;}
.yeb{bottom:118.080000px;}
.yb0{bottom:121.140000px;}
.y1d{bottom:124.920000px;}
.y111{bottom:125.280000px;}
.ydf{bottom:132.300000px;}
.y6f{bottom:138.060000px;}
.yaf{bottom:141.120000px;}
.y2{bottom:142.230000px;}
.y1c{bottom:144.720000px;}
.y110{bottom:145.080000px;}
.y8e{bottom:147.600000px;}
.yde{bottom:152.130000px;}
.y3a{bottom:153.750000px;}
.y6e{bottom:157.890000px;}
.yae{bottom:160.950000px;}
.y1b{bottom:164.550000px;}
.y10f{bottom:165.090000px;}
.ydd{bottom:171.930000px;}
.y39{bottom:173.550000px;}
.y6d{bottom:177.690000px;}
.yad{bottom:180.750000px;}
.y1a{bottom:184.350000px;}
.y10e{bottom:184.890000px;}
.ydc{bottom:191.730000px;}
.y38{bottom:193.350000px;}
.y6c{bottom:197.490000px;}
.yac{bottom:200.550000px;}
.y19{bottom:204.330000px;}
.y10d{bottom:204.690000px;}
.yea{bottom:206.490000px;}
.y8c{bottom:207.930000px;}
.y37{bottom:213.330000px;}
.y6b{bottom:217.290000px;}
.yab{bottom:220.350000px;}
.ydb{bottom:220.710000px;}
.y18{bottom:224.130000px;}
.y10c{bottom:224.490000px;}
.ye9{bottom:226.290000px;}
.yaa{bottom:240.330000px;}
.yda{bottom:240.510000px;}
.y36{bottom:242.130000px;}
.y17{bottom:243.930000px;}
.y10b{bottom:244.290000px;}
.y6a{bottom:246.270000px;}
.ya9{bottom:260.130000px;}
.yd9{bottom:260.310000px;}
.y35{bottom:261.930000px;}
.y16{bottom:263.730000px;}
.y10a{bottom:264.270000px;}
.y69{bottom:266.070000px;}
.y8b{bottom:268.050000px;}
.ya8{bottom:279.930000px;}
.yd8{bottom:280.110000px;}
.y34{bottom:281.730000px;}
.y29{bottom:283.425000px;}
.y15{bottom:283.530000px;}
.y109{bottom:284.070000px;}
.y68{bottom:285.870000px;}
.ya7{bottom:294.690000px;}
.yd7{bottom:299.910000px;}
.y33{bottom:301.530000px;}
.y28{bottom:303.405000px;}
.y14{bottom:303.510000px;}
.y108{bottom:303.870000px;}
.y67{bottom:305.670000px;}
.yd6{bottom:319.890000px;}
.y32{bottom:321.510000px;}
.y27{bottom:323.205000px;}
.y13{bottom:323.310000px;}
.y107{bottom:323.670000px;}
.y66{bottom:325.470000px;}
.y8a{bottom:328.350000px;}
.ye8{bottom:334.470000px;}
.yd5{bottom:339.690000px;}
.y31{bottom:341.310000px;}
.y26{bottom:343.005000px;}
.y12{bottom:343.110000px;}
.y106{bottom:343.470000px;}
.y65{bottom:345.450000px;}
.ye7{bottom:354.450000px;}
.yd3{bottom:354.630000px;}
.y25{bottom:362.805000px;}
.y11{bottom:362.910000px;}
.y105{bottom:363.450000px;}
.y64{bottom:365.250000px;}
.y30{bottom:370.110000px;}
.ye6{bottom:374.250000px;}
.ya6{bottom:374.790000px;}
.y104{bottom:383.250000px;}
.y63{bottom:385.050000px;}
.y85{bottom:388.650000px;}
.y2f{bottom:389.910000px;}
.ye5{bottom:394.050000px;}
.yd0{bottom:394.950000px;}
.y103{bottom:403.095000px;}
.y62{bottom:404.895000px;}
.y2e{bottom:409.755000px;}
.ye4{bottom:413.895000px;}
.y102{bottom:422.895000px;}
.y2d{bottom:429.735000px;}
.y61{bottom:433.695000px;}
.ya5{bottom:435.135000px;}
.ycb{bottom:435.315000px;}
.y101{bottom:442.695000px;}
.y84{bottom:448.995000px;}
.y2c{bottom:449.535000px;}
.y12e{bottom:449.895000px;}
.y60{bottom:453.675000px;}
.y100{bottom:462.675000px;}
.y2b{bottom:469.335000px;}
.y12d{bottom:469.695000px;}
.y5f{bottom:473.475000px;}
.yff{bottom:482.475000px;}
.y2a{bottom:489.135000px;}
.y83{bottom:489.315000px;}
.y12c{bottom:489.675000px;}
.y5e{bottom:493.275000px;}
.yc9{bottom:495.615000px;}
.yfe{bottom:502.275000px;}
.y10{bottom:503.895000px;}
.y24{bottom:504.000000px;}
.y12b{bottom:509.475000px;}
.y5d{bottom:513.075000px;}
.ya4{bottom:515.235000px;}
.yfd{bottom:522.075000px;}
.y12a{bottom:529.275000px;}
.y5c{bottom:532.875000px;}
.yc8{bottom:541.875000px;}
.y129{bottom:549.075000px;}
.y82{bottom:549.615000px;}
.y5b{bottom:552.855000px;}
.yc7{bottom:561.855000px;}
.y128{bottom:568.875000px;}
.y5a{bottom:572.655000px;}
.ya3{bottom:575.535000px;}
.yc6{bottom:581.655000px;}
.y127{bottom:588.855000px;}
.y59{bottom:592.455000px;}
.yc5{bottom:601.455000px;}
.y126{bottom:608.655000px;}
.y81{bottom:609.915000px;}
.y58{bottom:612.255000px;}
.yc4{bottom:621.255000px;}
.y125{bottom:628.455000px;}
.y57{bottom:632.055000px;}
.y9f{bottom:635.655000px;}
.yfc{bottom:641.055000px;}
.y124{bottom:648.255000px;}
.yc3{bottom:650.085000px;}
.y80{bottom:650.265000px;}
.y56{bottom:652.065000px;}
.yfb{bottom:661.065000px;}
.y123{bottom:668.085000px;}
.yc2{bottom:670.065000px;}
.y55{bottom:671.865000px;}
.yfa{bottom:680.865000px;}
.y122{bottom:688.065000px;}
.yc1{bottom:689.865000px;}
.y54{bottom:691.665000px;}
.y9e{bottom:695.985000px;}
.ye3{bottom:700.665000px;}
.y121{bottom:707.865000px;}
.yc0{bottom:709.665000px;}
.y7d{bottom:710.565000px;}
.y53{bottom:720.465000px;}
.y120{bottom:727.665000px;}
.ybf{bottom:729.465000px;}
.y52{bottom:740.265000px;}
.y11f{bottom:747.465000px;}
.ybe{bottom:749.265000px;}
.y9d{bottom:756.285000px;}
.y51{bottom:760.245000px;}
.y11e{bottom:767.265000px;}
.y7b{bottom:770.865000px;}
.ybd{bottom:778.245000px;}
.y50{bottom:780.045000px;}
.y11d{bottom:787.245000px;}
.ybc{bottom:798.045000px;}
.y4f{bottom:799.845000px;}
.y11c{bottom:807.045000px;}
.y9c{bottom:816.585000px;}
.ybb{bottom:817.845000px;}
.y4e{bottom:819.645000px;}
.y11b{bottom:826.845000px;}
.yba{bottom:837.645000px;}
.yf9{bottom:839.445000px;}
.y11a{bottom:846.645000px;}
.y4d{bottom:848.445000px;}
.y77{bottom:850.965000px;}
.yb9{bottom:857.445000px;}
.yf8{bottom:859.245000px;}
.y119{bottom:866.445000px;}
.y4c{bottom:868.245000px;}
.y9a{bottom:876.705000px;}
.yb8{bottom:877.245000px;}
.yf7{bottom:879.225000px;}
.y118{bottom:886.245000px;}
.yf{bottom:887.505000px;}
.y4b{bottom:888.225000px;}
.y76{bottom:897.225000px;}
.yf6{bottom:899.070000px;}
.y117{bottom:906.270000px;}
.ye{bottom:907.350000px;}
.y4a{bottom:908.070000px;}
.y75{bottom:917.070000px;}
.yf5{bottom:918.870000px;}
.y116{bottom:926.070000px;}
.yd{bottom:927.690000px;}
.y49{bottom:927.870000px;}
.y74{bottom:936.870000px;}
.y99{bottom:937.050000px;}
.yf4{bottom:938.670000px;}
.y115{bottom:945.870000px;}
.y48{bottom:947.670000px;}
.yc{bottom:948.930000px;}
.y73{bottom:956.670000px;}
.yf3{bottom:958.470000px;}
.y114{bottom:965.670000px;}
.y47{bottom:967.470000px;}
.yb{bottom:972.330000px;}
.y72{bottom:976.470000px;}
.yf2{bottom:978.450000px;}
.y113{bottom:985.470000px;}
.ye2{bottom:987.450000px;}
.y46{bottom:996.450000px;}
.y98{bottom:997.350000px;}
.yf1{bottom:998.250000px;}
.ya{bottom:1004.190000px;}
.yb7{bottom:1005.450000px;}
.y45{bottom:1016.250000px;}
.yb6{bottom:1025.250000px;}
.yf0{bottom:1027.050000px;}
.y8{bottom:1030.110000px;}
.y44{bottom:1036.050000px;}
.yb5{bottom:1045.050000px;}
.y1{bottom:1046.130000px;}
.yef{bottom:1046.850000px;}
.y43{bottom:1055.850000px;}
.y97{bottom:1057.650000px;}
.yb4{bottom:1064.850000px;}
.y42{bottom:1075.650000px;}
.yb3{bottom:1084.650000px;}
.y41{bottom:1095.630000px;}
.yb2{bottom:1104.630000px;}
.yee{bottom:1115.430000px;}
.y95{bottom:1117.950000px;}
.y40{bottom:1124.430000px;}
.yed{bottom:1135.230000px;}
.y3f{bottom:1144.230000px;}
.y3e{bottom:1164.060000px;}
.y3b{bottom:1192.140000px;}
.h5{height:2.010938px;}
.h19{height:39.420000px;}
.h18{height:39.456000px;}
.h10{height:39.600000px;}
.h13{height:39.636000px;}
.h8{height:41.726953px;}
.hb{height:42.164648px;}
.h17{height:43.156758px;}
.h1a{height:43.506914px;}
.h6{height:46.251562px;}
.hd{height:48.127500px;}
.h4{height:48.774375px;}
.h9{height:52.918594px;}
.h3{height:57.256875px;}
.h15{height:59.400000px;}
.h16{height:59.436000px;}
.h12{height:59.580000px;}
.h14{height:59.616000px;}
.h7{height:67.565039px;}
.h11{height:79.380000px;}
.hf{height:111.043828px;}
.h2{height:162.750000px;}
.he{height:268.770000px;}
.hc{height:376.920000px;}
.ha{height:376.950000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:39.780000px;}
.w9{width:41.436000px;}
.wb{width:100.980000px;}
.wc{width:115.776000px;}
.w3{width:147.456000px;}
.w11{width:147.600000px;}
.we{width:147.960000px;}
.wa{width:153.030000px;}
.w6{width:175.500000px;}
.w7{width:175.530000px;}
.wf{width:198.390000px;}
.w10{width:214.995000px;}
.wd{width:318.315000px;}
.w5{width:607.650000px;}
.w2{width:633.930000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:6.840000px;}
.x2{left:8.100000px;}
.x1c{left:9.360000px;}
.x11{left:14.580000px;}
.x1e{left:18.900000px;}
.x1d{left:20.700000px;}
.x19{left:22.860000px;}
.x1b{left:28.830000px;}
.xa{left:31.860000px;}
.x13{left:34.065000px;}
.x18{left:40.500000px;}
.x1{left:54.000000px;}
.x14{left:63.585000px;}
.x16{left:73.830000px;}
.xb{left:80.280000px;}
.x1a{left:81.945000px;}
.x10{left:86.436000px;}
.x7{left:90.690000px;}
.x1f{left:108.035987px;}
.xc{left:122.436000px;}
.x4{left:139.350000px;}
.x12{left:235.290000px;}
.xd{left:276.195000px;}
.x8{left:331.994987px;}
.xe{left:378.075000px;}
.x5{left:384.734987px;}
.x15{left:434.595000px;}
.xf{left:494.565000px;}
.x17{left:650.490000px;}
.x6{left:661.500000px;}
.x3{left:687.930000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.688000pt;}
.ls6{letter-spacing:-0.409067pt;}
.ls15{letter-spacing:-0.367467pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.230933pt;}
.lsf{letter-spacing:-0.225067pt;}
.ls2{letter-spacing:-0.183467pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.ls7{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.094720pt;}
.ls5{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.183467pt;}
.lse{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.272533pt;}
.ls4{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.592000pt;}
.ls14{letter-spacing:14.672640pt;}
.ls13{letter-spacing:40.912640pt;}
.ws0{word-spacing:-17.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.872000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.552533pt;}
.ws10{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws3{word-spacing:-13.096533pt;}
.wsa{word-spacing:-13.054933pt;}
.wsf{word-spacing:-12.960000pt;}
.wsb{word-spacing:-0.236587pt;}
.wse{word-spacing:-0.147840pt;}
.wsc{word-spacing:-0.053120pt;}
.ws4{word-spacing:0.000000pt;}
.wsd{word-spacing:0.177813pt;}
._3{margin-left:-470.709760pt;}
._6{margin-left:-3.240320pt;}
._8{margin-left:-2.331520pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.029120pt;}
._1{width:2.622293pt;}
._b{width:3.559040pt;}
._d{width:5.071147pt;}
._c{width:6.108800pt;}
._12{width:7.018880pt;}
._11{width:7.914880pt;}
._1f{width:9.188480pt;}
._7{width:10.819627pt;}
._13{width:11.796693pt;}
._19{width:14.661120pt;}
._a{width:15.597440pt;}
._9{width:16.520320pt;}
._14{width:18.113920pt;}
._1a{width:22.310400pt;}
._16{width:23.585280pt;}
._17{width:28.558720pt;}
._1c{width:30.119040pt;}
._1e{width:32.668800pt;}
._1b{width:37.184000pt;}
._5{width:39.282773pt;}
._4{width:40.942720pt;}
._1d{width:42.335360pt;}
._10{width:43.379200pt;}
._22{width:44.321920pt;}
._23{width:61.665280pt;}
._e{width:62.768000pt;}
._20{width:65.424000pt;}
._21{width:125.416320pt;}
._18{width:163.822080pt;}
._15{width:183.848320pt;}
._f{width:206.192000pt;}
.fs2{font-size:2.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:85.120000pt;}
.fs6{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.yca{bottom:2.720000pt;}
.ycf{bottom:2.880000pt;}
.y7{bottom:4.640000pt;}
.yd4{bottom:4.960000pt;}
.yd2{bottom:5.000000pt;}
.y7a{bottom:5.120000pt;}
.y93{bottom:5.146667pt;}
.y23{bottom:5.280000pt;}
.y3d{bottom:9.600000pt;}
.y6{bottom:12.640000pt;}
.y78{bottom:13.920000pt;}
.y91{bottom:13.946667pt;}
.y88{bottom:13.960000pt;}
.y7f{bottom:14.080000pt;}
.ya2{bottom:14.106667pt;}
.yce{bottom:20.480000pt;}
.ycd{bottom:22.560000pt;}
.yd1{bottom:22.600000pt;}
.y79{bottom:22.720000pt;}
.y8f{bottom:22.746667pt;}
.y86{bottom:22.760000pt;}
.y22{bottom:22.880000pt;}
.ya0{bottom:22.906667pt;}
.y9b{bottom:22.920000pt;}
.y7c{bottom:31.520000pt;}
.y90{bottom:31.546667pt;}
.y7e{bottom:31.680000pt;}
.ya1{bottom:31.706667pt;}
.y87{bottom:31.720000pt;}
.ycc{bottom:40.160000pt;}
.y8d{bottom:40.320000pt;}
.y96{bottom:40.346667pt;}
.y21{bottom:40.480000pt;}
.y92{bottom:40.506667pt;}
.y89{bottom:40.520000pt;}
.y5{bottom:40.640000pt;}
.y9{bottom:53.760000pt;}
.y20{bottom:58.080000pt;}
.y3c{bottom:64.800000pt;}
.y4{bottom:68.800000pt;}
.y1f{bottom:75.680000pt;}
.y94{bottom:77.600000pt;}
.y71{bottom:79.360000pt;}
.yb1{bottom:82.080000pt;}
.ye1{bottom:82.240000pt;}
.yec{bottom:87.360000pt;}
.y1e{bottom:93.440000pt;}
.y112{bottom:93.760000pt;}
.y70{bottom:96.960000pt;}
.y3{bottom:96.986667pt;}
.ye0{bottom:100.000000pt;}
.yeb{bottom:104.960000pt;}
.yb0{bottom:107.680000pt;}
.y1d{bottom:111.040000pt;}
.y111{bottom:111.360000pt;}
.ydf{bottom:117.600000pt;}
.y6f{bottom:122.720000pt;}
.yaf{bottom:125.440000pt;}
.y2{bottom:126.426667pt;}
.y1c{bottom:128.640000pt;}
.y110{bottom:128.960000pt;}
.y8e{bottom:131.200000pt;}
.yde{bottom:135.226667pt;}
.y3a{bottom:136.666667pt;}
.y6e{bottom:140.346667pt;}
.yae{bottom:143.066667pt;}
.y1b{bottom:146.266667pt;}
.y10f{bottom:146.746667pt;}
.ydd{bottom:152.826667pt;}
.y39{bottom:154.266667pt;}
.y6d{bottom:157.946667pt;}
.yad{bottom:160.666667pt;}
.y1a{bottom:163.866667pt;}
.y10e{bottom:164.346667pt;}
.ydc{bottom:170.426667pt;}
.y38{bottom:171.866667pt;}
.y6c{bottom:175.546667pt;}
.yac{bottom:178.266667pt;}
.y19{bottom:181.626667pt;}
.y10d{bottom:181.946667pt;}
.yea{bottom:183.546667pt;}
.y8c{bottom:184.826667pt;}
.y37{bottom:189.626667pt;}
.y6b{bottom:193.146667pt;}
.yab{bottom:195.866667pt;}
.ydb{bottom:196.186667pt;}
.y18{bottom:199.226667pt;}
.y10c{bottom:199.546667pt;}
.ye9{bottom:201.146667pt;}
.yaa{bottom:213.626667pt;}
.yda{bottom:213.786667pt;}
.y36{bottom:215.226667pt;}
.y17{bottom:216.826667pt;}
.y10b{bottom:217.146667pt;}
.y6a{bottom:218.906667pt;}
.ya9{bottom:231.226667pt;}
.yd9{bottom:231.386667pt;}
.y35{bottom:232.826667pt;}
.y16{bottom:234.426667pt;}
.y10a{bottom:234.906667pt;}
.y69{bottom:236.506667pt;}
.y8b{bottom:238.266667pt;}
.ya8{bottom:248.826667pt;}
.yd8{bottom:248.986667pt;}
.y34{bottom:250.426667pt;}
.y29{bottom:251.933333pt;}
.y15{bottom:252.026667pt;}
.y109{bottom:252.506667pt;}
.y68{bottom:254.106667pt;}
.ya7{bottom:261.946667pt;}
.yd7{bottom:266.586667pt;}
.y33{bottom:268.026667pt;}
.y28{bottom:269.693333pt;}
.y14{bottom:269.786667pt;}
.y108{bottom:270.106667pt;}
.y67{bottom:271.706667pt;}
.yd6{bottom:284.346667pt;}
.y32{bottom:285.786667pt;}
.y27{bottom:287.293333pt;}
.y13{bottom:287.386667pt;}
.y107{bottom:287.706667pt;}
.y66{bottom:289.306667pt;}
.y8a{bottom:291.866667pt;}
.ye8{bottom:297.306667pt;}
.yd5{bottom:301.946667pt;}
.y31{bottom:303.386667pt;}
.y26{bottom:304.893333pt;}
.y12{bottom:304.986667pt;}
.y106{bottom:305.306667pt;}
.y65{bottom:307.066667pt;}
.ye7{bottom:315.066667pt;}
.yd3{bottom:315.226667pt;}
.y25{bottom:322.493333pt;}
.y11{bottom:322.586667pt;}
.y105{bottom:323.066667pt;}
.y64{bottom:324.666667pt;}
.y30{bottom:328.986667pt;}
.ye6{bottom:332.666667pt;}
.ya6{bottom:333.146667pt;}
.y104{bottom:340.666667pt;}
.y63{bottom:342.266667pt;}
.y85{bottom:345.466667pt;}
.y2f{bottom:346.586667pt;}
.ye5{bottom:350.266667pt;}
.yd0{bottom:351.066667pt;}
.y103{bottom:358.306667pt;}
.y62{bottom:359.906667pt;}
.y2e{bottom:364.226667pt;}
.ye4{bottom:367.906667pt;}
.y102{bottom:375.906667pt;}
.y2d{bottom:381.986667pt;}
.y61{bottom:385.506667pt;}
.ya5{bottom:386.786667pt;}
.ycb{bottom:386.946667pt;}
.y101{bottom:393.506667pt;}
.y84{bottom:399.106667pt;}
.y2c{bottom:399.586667pt;}
.y12e{bottom:399.906667pt;}
.y60{bottom:403.266667pt;}
.y100{bottom:411.266667pt;}
.y2b{bottom:417.186667pt;}
.y12d{bottom:417.506667pt;}
.y5f{bottom:420.866667pt;}
.yff{bottom:428.866667pt;}
.y2a{bottom:434.786667pt;}
.y83{bottom:434.946667pt;}
.y12c{bottom:435.266667pt;}
.y5e{bottom:438.466667pt;}
.yc9{bottom:440.546667pt;}
.yfe{bottom:446.466667pt;}
.y10{bottom:447.906667pt;}
.y24{bottom:448.000000pt;}
.y12b{bottom:452.866667pt;}
.y5d{bottom:456.066667pt;}
.ya4{bottom:457.986667pt;}
.yfd{bottom:464.066667pt;}
.y12a{bottom:470.466667pt;}
.y5c{bottom:473.666667pt;}
.yc8{bottom:481.666667pt;}
.y129{bottom:488.066667pt;}
.y82{bottom:488.546667pt;}
.y5b{bottom:491.426667pt;}
.yc7{bottom:499.426667pt;}
.y128{bottom:505.666667pt;}
.y5a{bottom:509.026667pt;}
.ya3{bottom:511.586667pt;}
.yc6{bottom:517.026667pt;}
.y127{bottom:523.426667pt;}
.y59{bottom:526.626667pt;}
.yc5{bottom:534.626667pt;}
.y126{bottom:541.026667pt;}
.y81{bottom:542.146667pt;}
.y58{bottom:544.226667pt;}
.yc4{bottom:552.226667pt;}
.y125{bottom:558.626667pt;}
.y57{bottom:561.826667pt;}
.y9f{bottom:565.026667pt;}
.yfc{bottom:569.826667pt;}
.y124{bottom:576.226667pt;}
.yc3{bottom:577.853333pt;}
.y80{bottom:578.013333pt;}
.y56{bottom:579.613333pt;}
.yfb{bottom:587.613333pt;}
.y123{bottom:593.853333pt;}
.yc2{bottom:595.613333pt;}
.y55{bottom:597.213333pt;}
.yfa{bottom:605.213333pt;}
.y122{bottom:611.613333pt;}
.yc1{bottom:613.213333pt;}
.y54{bottom:614.813333pt;}
.y9e{bottom:618.653333pt;}
.ye3{bottom:622.813333pt;}
.y121{bottom:629.213333pt;}
.yc0{bottom:630.813333pt;}
.y7d{bottom:631.613333pt;}
.y53{bottom:640.413333pt;}
.y120{bottom:646.813333pt;}
.ybf{bottom:648.413333pt;}
.y52{bottom:658.013333pt;}
.y11f{bottom:664.413333pt;}
.ybe{bottom:666.013333pt;}
.y9d{bottom:672.253333pt;}
.y51{bottom:675.773333pt;}
.y11e{bottom:682.013333pt;}
.y7b{bottom:685.213333pt;}
.ybd{bottom:691.773333pt;}
.y50{bottom:693.373333pt;}
.y11d{bottom:699.773333pt;}
.ybc{bottom:709.373333pt;}
.y4f{bottom:710.973333pt;}
.y11c{bottom:717.373333pt;}
.y9c{bottom:725.853333pt;}
.ybb{bottom:726.973333pt;}
.y4e{bottom:728.573333pt;}
.y11b{bottom:734.973333pt;}
.yba{bottom:744.573333pt;}
.yf9{bottom:746.173333pt;}
.y11a{bottom:752.573333pt;}
.y4d{bottom:754.173333pt;}
.y77{bottom:756.413333pt;}
.yb9{bottom:762.173333pt;}
.yf8{bottom:763.773333pt;}
.y119{bottom:770.173333pt;}
.y4c{bottom:771.773333pt;}
.y9a{bottom:779.293333pt;}
.yb8{bottom:779.773333pt;}
.yf7{bottom:781.533333pt;}
.y118{bottom:787.773333pt;}
.yf{bottom:788.893333pt;}
.y4b{bottom:789.533333pt;}
.y76{bottom:797.533333pt;}
.yf6{bottom:799.173333pt;}
.y117{bottom:805.573333pt;}
.ye{bottom:806.533333pt;}
.y4a{bottom:807.173333pt;}
.y75{bottom:815.173333pt;}
.yf5{bottom:816.773333pt;}
.y116{bottom:823.173333pt;}
.yd{bottom:824.613333pt;}
.y49{bottom:824.773333pt;}
.y74{bottom:832.773333pt;}
.y99{bottom:832.933333pt;}
.yf4{bottom:834.373333pt;}
.y115{bottom:840.773333pt;}
.y48{bottom:842.373333pt;}
.yc{bottom:843.493333pt;}
.y73{bottom:850.373333pt;}
.yf3{bottom:851.973333pt;}
.y114{bottom:858.373333pt;}
.y47{bottom:859.973333pt;}
.yb{bottom:864.293333pt;}
.y72{bottom:867.973333pt;}
.yf2{bottom:869.733333pt;}
.y113{bottom:875.973333pt;}
.ye2{bottom:877.733333pt;}
.y46{bottom:885.733333pt;}
.y98{bottom:886.533333pt;}
.yf1{bottom:887.333333pt;}
.ya{bottom:892.613333pt;}
.yb7{bottom:893.733333pt;}
.y45{bottom:903.333333pt;}
.yb6{bottom:911.333333pt;}
.yf0{bottom:912.933333pt;}
.y8{bottom:915.653333pt;}
.y44{bottom:920.933333pt;}
.yb5{bottom:928.933333pt;}
.y1{bottom:929.893333pt;}
.yef{bottom:930.533333pt;}
.y43{bottom:938.533333pt;}
.y97{bottom:940.133333pt;}
.yb4{bottom:946.533333pt;}
.y42{bottom:956.133333pt;}
.yb3{bottom:964.133333pt;}
.y41{bottom:973.893333pt;}
.yb2{bottom:981.893333pt;}
.yee{bottom:991.493333pt;}
.y95{bottom:993.733333pt;}
.y40{bottom:999.493333pt;}
.yed{bottom:1009.093333pt;}
.y3f{bottom:1017.093333pt;}
.y3e{bottom:1034.720000pt;}
.y3b{bottom:1059.680000pt;}
.h5{height:1.787500pt;}
.h19{height:35.040000pt;}
.h18{height:35.072000pt;}
.h10{height:35.200000pt;}
.h13{height:35.232000pt;}
.h8{height:37.090625pt;}
.hb{height:37.479688pt;}
.h17{height:38.361562pt;}
.h1a{height:38.672812pt;}
.h6{height:41.112500pt;}
.hd{height:42.780000pt;}
.h4{height:43.355000pt;}
.h9{height:47.038750pt;}
.h3{height:50.895000pt;}
.h15{height:52.800000pt;}
.h16{height:52.832000pt;}
.h12{height:52.960000pt;}
.h14{height:52.992000pt;}
.h7{height:60.057813pt;}
.h11{height:70.560000pt;}
.hf{height:98.705625pt;}
.h2{height:144.666667pt;}
.he{height:238.906667pt;}
.hc{height:335.040000pt;}
.ha{height:335.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:35.360000pt;}
.w9{width:36.832000pt;}
.wb{width:89.760000pt;}
.wc{width:102.912000pt;}
.w3{width:131.072000pt;}
.w11{width:131.200000pt;}
.we{width:131.520000pt;}
.wa{width:136.026667pt;}
.w6{width:156.000000pt;}
.w7{width:156.026667pt;}
.wf{width:176.346667pt;}
.w10{width:191.106667pt;}
.wd{width:282.946667pt;}
.w5{width:540.133333pt;}
.w2{width:563.493333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.080000pt;}
.x2{left:7.200000pt;}
.x1c{left:8.320000pt;}
.x11{left:12.960000pt;}
.x1e{left:16.800000pt;}
.x1d{left:18.400000pt;}
.x19{left:20.320000pt;}
.x1b{left:25.626667pt;}
.xa{left:28.320000pt;}
.x13{left:30.280000pt;}
.x18{left:36.000000pt;}
.x1{left:48.000000pt;}
.x14{left:56.520000pt;}
.x16{left:65.626667pt;}
.xb{left:71.360000pt;}
.x1a{left:72.840000pt;}
.x10{left:76.832000pt;}
.x7{left:80.613333pt;}
.x1f{left:96.031988pt;}
.xc{left:108.832000pt;}
.x4{left:123.866667pt;}
.x12{left:209.146667pt;}
.xd{left:245.506667pt;}
.x8{left:295.106655pt;}
.xe{left:336.066667pt;}
.x5{left:341.986655pt;}
.x15{left:386.306667pt;}
.xf{left:439.613333pt;}
.x17{left:578.213333pt;}
.x6{left:588.000000pt;}
.x3{left:611.493333pt;}
}




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