
    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_b55bdb573ee6db91f3ef6c39.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8dd5ef0b771d5cdfa5a91cbf.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c093761ffb8ee35099f5dc5a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6cc31816d2634adb2419025e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0487c0130904abb38014dba8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_dadbbf7952709dd6c18fc7d3.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6e4f36861ee5b69a8b6ff4e9.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0f9ca77c73105d3805600ac6.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls4{letter-spacing:-1.176000px;}
.ls25{letter-spacing:-0.774000px;}
.ls10{letter-spacing:-0.529800px;}
.ls1a{letter-spacing:-0.513600px;}
.ls1f{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.357000px;}
.lse{letter-spacing:-0.291000px;}
.ls1b{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.208200px;}
.ls9{letter-spacing:-0.206400px;}
.ls19{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018720px;}
.ls5{letter-spacing:0.037440px;}
.ls14{letter-spacing:0.053280px;}
.ls1e{letter-spacing:0.106800px;}
.lsc{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.190200px;}
.ls16{letter-spacing:0.206400px;}
.ls11{letter-spacing:0.213000px;}
.ls12{letter-spacing:0.265200px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.460200px;}
.ls15{letter-spacing:0.513600px;}
.ls6{letter-spacing:0.540000px;}
.ls13{letter-spacing:0.666000px;}
.lsa{letter-spacing:7.866720px;}
.ls1c{letter-spacing:10.026720px;}
.lsb{letter-spacing:11.466720px;}
.ls17{letter-spacing:15.066720px;}
.ls23{letter-spacing:16.506720px;}
.ls20{letter-spacing:19.386720px;}
.ls2{letter-spacing:31.626720px;}
.ls24{letter-spacing:41.850720px;}
.ls1d{letter-spacing:46.026720px;}
.ls22{letter-spacing:78.570720px;}
.ls21{letter-spacing:108.090720px;}
.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;}
}
.ws2{word-spacing:-24.300000px;}
.ws3{word-spacing:-23.977440px;}
.ws4{word-spacing:-23.958720px;}
.ws1{word-spacing:-16.560000px;}
.wse{word-spacing:-15.606000px;}
.ws12{word-spacing:-15.400200px;}
.ws0{word-spacing:-15.384000px;}
.ws10{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.235440px;}
.ws11{word-spacing:-15.146400px;}
.ws17{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.993280px;}
.wsc{word-spacing:-14.970240px;}
.ws7{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.733600px;}
.ws15{word-spacing:-14.680200px;}
.wsb{word-spacing:-14.679240px;}
.wsa{word-spacing:-14.613240px;}
.ws16{word-spacing:-14.580000px;}
.ws14{word-spacing:-14.426400px;}
.ws5{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._1{margin-left:-2540.748240px;}
._3{margin-left:-1452.631680px;}
._5{margin-left:-1446.549120px;}
._4{margin-left:-941.270400px;}
._6{margin-left:-580.129920px;}
._1c{margin-left:-15.312480px;}
._2b{margin-left:-4.868160px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._12{width:2.254320px;}
._f{width:3.705840px;}
._10{width:4.845600px;}
._11{width:6.691200px;}
._14{width:7.736880px;}
._13{width:8.781840px;}
._c{width:9.940560px;}
._b{width:11.299680px;}
._d{width:12.913200px;}
._18{width:13.922400px;}
._17{width:16.444080px;}
._16{width:17.773680px;}
._15{width:18.884160px;}
._20{width:19.970640px;}
._1b{width:21.934800px;}
._19{width:22.947840px;}
._1a{width:24.202560px;}
._25{width:25.935840px;}
._2a{width:27.115200px;}
._24{width:30.956400px;}
._21{width:32.220000px;}
._29{width:37.541520px;}
._28{width:38.923920px;}
._22{width:40.039200px;}
._23{width:41.114880px;}
._27{width:43.206480px;}
._7{width:52.476480px;}
._8{width:53.526720px;}
._e{width:56.895600px;}
._26{width:64.002960px;}
._a{width:95.831520px;}
._9{width:96.913200px;}
._1d{width:106.552080px;}
._1e{width:151.083360px;}
._1f{width:165.116880px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:3.240000px;}
.ycf{bottom:3.285000px;}
.y65{bottom:5.760000px;}
.y61{bottom:5.805000px;}
.y7b{bottom:5.940000px;}
.y107{bottom:6.300000px;}
.yf7{bottom:7.920000px;}
.yfd{bottom:7.965000px;}
.y100{bottom:8.100000px;}
.y161{bottom:10.620000px;}
.yf3{bottom:11.340000px;}
.ye0{bottom:15.660000px;}
.yfb{bottom:15.840000px;}
.y97{bottom:16.020000px;}
.y64{bottom:25.560000px;}
.yfa{bottom:25.740000px;}
.y160{bottom:30.600000px;}
.y15d{bottom:34.740000px;}
.y10e{bottom:35.460000px;}
.y109{bottom:35.640000px;}
.y10c{bottom:35.670000px;}
.y70{bottom:45.360000px;}
.y63{bottom:45.540000px;}
.y10b{bottom:45.570000px;}
.y15f{bottom:50.400000px;}
.y6{bottom:60.156000px;}
.y88{bottom:65.160000px;}
.y6f{bottom:65.340000px;}
.ye3{bottom:65.385000px;}
.y15e{bottom:70.194000px;}
.y15c{bottom:84.096000px;}
.y6e{bottom:85.140000px;}
.ye2{bottom:85.185000px;}
.y147{bottom:93.636000px;}
.y33{bottom:93.996000px;}
.y105{bottom:98.316000px;}
.y15b{bottom:102.636000px;}
.y95{bottom:102.996000px;}
.y120{bottom:103.176000px;}
.y7d{bottom:104.940000px;}
.y6b{bottom:105.696000px;}
.y146{bottom:113.436000px;}
.y32{bottom:113.976000px;}
.y104{bottom:118.116000px;}
.yd7{bottom:121.176000px;}
.y15a{bottom:122.436000px;}
.y94{bottom:122.796000px;}
.y11f{bottom:122.976000px;}
.y87{bottom:124.740000px;}
.y6a{bottom:125.496000px;}
.yc2{bottom:129.960000px;}
.yb7{bottom:129.990000px;}
.y145{bottom:133.236000px;}
.y31{bottom:133.776000px;}
.yca{bottom:135.936000px;}
.y103{bottom:137.916000px;}
.y159{bottom:142.236000px;}
.y93{bottom:142.596000px;}
.y11e{bottom:142.776000px;}
.y69{bottom:145.296000px;}
.yc1{bottom:147.240000px;}
.yb6{bottom:147.270000px;}
.y144{bottom:153.030000px;}
.y30{bottom:153.570000px;}
.yd6{bottom:153.930000px;}
.y102{bottom:157.890000px;}
.y158{bottom:162.030000px;}
.y92{bottom:162.570000px;}
.y68{bottom:165.090000px;}
.y9a{bottom:165.960000px;}
.ycc{bottom:165.999000px;}
.yd5{bottom:171.930000px;}
.y101{bottom:172.650000px;}
.y2f{bottom:173.370000px;}
.y143{bottom:181.830000px;}
.y91{bottom:182.370000px;}
.y11d{bottom:182.550000px;}
.y99{bottom:183.240000px;}
.ycb{bottom:183.279000px;}
.y67{bottom:185.070000px;}
.yd4{bottom:189.930000px;}
.y2e{bottom:193.170000px;}
.y142{bottom:201.810000px;}
.ya8{bottom:202.005000px;}
.y90{bottom:202.170000px;}
.y11c{bottom:202.350000px;}
.y66{bottom:204.870000px;}
.yd3{bottom:207.930000px;}
.yff{bottom:212.970000px;}
.y2d{bottom:213.150000px;}
.ya7{bottom:219.285000px;}
.y62{bottom:219.630000px;}
.y141{bottom:221.610000px;}
.y11b{bottom:222.150000px;}
.yd2{bottom:225.930000px;}
.y8f{bottom:230.970000px;}
.y2c{bottom:232.950000px;}
.yfe{bottom:237.990000px;}
.y140{bottom:241.410000px;}
.y11a{bottom:241.950000px;}
.yd1{bottom:243.930000px;}
.y8e{bottom:250.770000px;}
.y2b{bottom:252.750000px;}
.y13f{bottom:261.210000px;}
.y119{bottom:261.750000px;}
.yd0{bottom:261.930000px;}
.y8d{bottom:270.750000px;}
.y2a{bottom:272.550000px;}
.yfc{bottom:278.490000px;}
.y60{bottom:279.930000px;}
.y13e{bottom:281.010000px;}
.y118{bottom:281.775000px;}
.y8c{bottom:290.595000px;}
.y29{bottom:292.395000px;}
.yce{bottom:297.975000px;}
.y13d{bottom:301.035000px;}
.y117{bottom:301.575000px;}
.yf9{bottom:303.375000px;}
.y5f{bottom:306.255000px;}
.y8b{bottom:310.395000px;}
.y28{bottom:312.375000px;}
.ycd{bottom:315.975000px;}
.y13c{bottom:320.835000px;}
.y116{bottom:321.375000px;}
.y5e{bottom:326.055000px;}
.y27{bottom:332.175000px;}
.yc0{bottom:333.975000px;}
.y8a{bottom:339.195000px;}
.y157{bottom:340.635000px;}
.y115{bottom:341.175000px;}
.yf8{bottom:343.875000px;}
.y5d{bottom:346.035000px;}
.y13b{bottom:349.635000px;}
.y26{bottom:351.975000px;}
.y89{bottom:358.995000px;}
.y156{bottom:360.435000px;}
.y114{bottom:360.975000px;}
.y5c{bottom:365.835000px;}
.yf6{bottom:368.895000px;}
.y13a{bottom:369.435000px;}
.yc9{bottom:369.975000px;}
.y25{bottom:371.775000px;}
.y86{bottom:373.935000px;}
.y155{bottom:380.235000px;}
.y113{bottom:380.955000px;}
.y5b{bottom:385.635000px;}
.yc8{bottom:387.975000px;}
.y139{bottom:389.235000px;}
.y24{bottom:391.575000px;}
.yf5{bottom:393.915000px;}
.y154{bottom:400.215000px;}
.y112{bottom:400.755000px;}
.y5a{bottom:405.435000px;}
.yc7{bottom:405.975000px;}
.y138{bottom:409.215000px;}
.y23{bottom:411.555000px;}
.y153{bottom:420.015000px;}
.y111{bottom:420.555000px;}
.yc6{bottom:423.975000px;}
.y59{bottom:425.235000px;}
.y137{bottom:429.015000px;}
.y22{bottom:431.355000px;}
.yf4{bottom:434.235000px;}
.y152{bottom:439.815000px;}
.y110{bottom:440.355000px;}
.yc5{bottom:441.975000px;}
.y58{bottom:445.215000px;}
.y136{bottom:448.815000px;}
.y21{bottom:451.155000px;}
.y151{bottom:459.615000px;}
.yc4{bottom:459.975000px;}
.y10f{bottom:460.155000px;}
.y57{bottom:465.015000px;}
.yf2{bottom:465.915000px;}
.y135{bottom:468.615000px;}
.y20{bottom:470.955000px;}
.y10d{bottom:475.095000px;}
.yc3{bottom:477.975000px;}
.y56{bottom:484.815000px;}
.y134{bottom:488.415000px;}
.y1f{bottom:490.755000px;}
.yb5{bottom:495.975000px;}
.yf1{bottom:497.775000px;}
.y55{bottom:504.615000px;}
.y133{bottom:508.395000px;}
.y1e{bottom:510.735000px;}
.y85{bottom:513.435000px;}
.ybf{bottom:513.975000px;}
.yf0{bottom:524.055000px;}
.y54{bottom:524.415000px;}
.y132{bottom:528.195000px;}
.ybe{bottom:531.975000px;}
.y1d{bottom:532.695000px;}
.y10a{bottom:535.215000px;}
.y84{bottom:539.895000px;}
.yef{bottom:543.855000px;}
.y53{bottom:544.395000px;}
.y131{bottom:547.995000px;}
.ybd{bottom:549.975000px;}
.y1c{bottom:552.495000px;}
.y83{bottom:559.695000px;}
.yee{bottom:563.835000px;}
.y52{bottom:564.195000px;}
.y150{bottom:567.825000px;}
.ybc{bottom:568.005000px;}
.y130{bottom:576.825000px;}
.y82{bottom:579.525000px;}
.y1b{bottom:581.505000px;}
.yed{bottom:583.665000px;}
.y51{bottom:584.025000px;}
.ybb{bottom:586.005000px;}
.y14f{bottom:587.625000px;}
.y108{bottom:595.545000px;}
.y12f{bottom:596.625000px;}
.y81{bottom:599.325000px;}
.y1a{bottom:601.305000px;}
.yec{bottom:603.465000px;}
.y50{bottom:603.825000px;}
.yba{bottom:604.005000px;}
.y12e{bottom:616.605000px;}
.y80{bottom:619.125000px;}
.y19{bottom:621.105000px;}
.yb9{bottom:622.005000px;}
.yeb{bottom:623.265000px;}
.y4f{bottom:623.625000px;}
.y12d{bottom:636.405000px;}
.y7f{bottom:639.105000px;}
.yb8{bottom:640.005000px;}
.y18{bottom:640.905000px;}
.yea{bottom:643.065000px;}
.y4e{bottom:643.605000px;}
.y106{bottom:655.845000px;}
.y12c{bottom:656.205000px;}
.ya6{bottom:658.005000px;}
.y7e{bottom:658.905000px;}
.y17{bottom:660.705000px;}
.y4d{bottom:663.405000px;}
.ye9{bottom:672.045000px;}
.y7c{bottom:673.665000px;}
.yb4{bottom:676.005000px;}
.y16{bottom:680.685000px;}
.y4c{bottom:683.205000px;}
.ye8{bottom:691.845000px;}
.yb3{bottom:694.005000px;}
.y12b{bottom:695.805000px;}
.y15{bottom:700.485000px;}
.y4b{bottom:703.005000px;}
.ye7{bottom:711.645000px;}
.yb2{bottom:712.005000px;}
.y14e{bottom:715.785000px;}
.y14{bottom:720.285000px;}
.y4a{bottom:722.805000px;}
.y12a{bottom:724.785000px;}
.yb1{bottom:730.005000px;}
.ye6{bottom:731.445000px;}
.y14d{bottom:735.585000px;}
.y13{bottom:740.085000px;}
.y49{bottom:742.785000px;}
.y129{bottom:744.585000px;}
.yb0{bottom:748.005000px;}
.ye5{bottom:751.245000px;}
.y12{bottom:759.885000px;}
.y48{bottom:762.585000px;}
.y128{bottom:764.385000px;}
.yaf{bottom:766.005000px;}
.ye4{bottom:771.225000px;}
.y11{bottom:779.865000px;}
.y47{bottom:782.385000px;}
.yae{bottom:784.005000px;}
.y127{bottom:784.185000px;}
.ye1{bottom:785.985000px;}
.y7a{bottom:793.365000px;}
.y10{bottom:799.665000px;}
.yad{bottom:802.005000px;}
.y46{bottom:802.185000px;}
.y126{bottom:803.985000px;}
.yf{bottom:819.465000px;}
.y79{bottom:819.825000px;}
.yac{bottom:820.005000px;}
.y45{bottom:821.985000px;}
.y125{bottom:823.965000px;}
.yab{bottom:838.005000px;}
.y78{bottom:839.625000px;}
.ye{bottom:841.605000px;}
.y44{bottom:841.965000px;}
.y14c{bottom:843.765000px;}
.y124{bottom:852.810000px;}
.yaa{bottom:856.050000px;}
.y77{bottom:859.470000px;}
.y43{bottom:861.810000px;}
.y14b{bottom:863.610000px;}
.yd{bottom:866.670000px;}
.y123{bottom:872.610000px;}
.ya9{bottom:874.050000px;}
.y76{bottom:879.450000px;}
.y42{bottom:881.610000px;}
.yc{bottom:881.790000px;}
.y14a{bottom:883.410000px;}
.ydf{bottom:885.930000px;}
.y98{bottom:892.050000px;}
.y122{bottom:892.410000px;}
.y75{bottom:899.250000px;}
.y41{bottom:901.410000px;}
.yb{bottom:903.030000px;}
.y149{bottom:903.210000px;}
.ya5{bottom:910.050000px;}
.y121{bottom:912.210000px;}
.y74{bottom:919.050000px;}
.y40{bottom:921.210000px;}
.ya{bottom:926.610000px;}
.ya4{bottom:928.050000px;}
.yde{bottom:932.190000px;}
.y73{bottom:938.850000px;}
.y3f{bottom:941.190000px;}
.ya3{bottom:946.050000px;}
.ydd{bottom:951.990000px;}
.y9{bottom:958.290000px;}
.y72{bottom:958.650000px;}
.y3e{bottom:960.990000px;}
.ya2{bottom:964.050000px;}
.ydc{bottom:971.790000px;}
.y71{bottom:978.630000px;}
.y3d{bottom:980.790000px;}
.ya1{bottom:982.050000px;}
.y8{bottom:989.970000px;}
.ydb{bottom:991.590000px;}
.y6d{bottom:993.390000px;}
.ya0{bottom:1000.050000px;}
.y3c{bottom:1000.590000px;}
.yda{bottom:1011.390000px;}
.y9f{bottom:1018.050000px;}
.y3b{bottom:1020.390000px;}
.y7{bottom:1021.830000px;}
.yd9{bottom:1031.370000px;}
.y9e{bottom:1036.050000px;}
.y3a{bottom:1040.370000px;}
.yd8{bottom:1051.170000px;}
.y9d{bottom:1054.050000px;}
.y5{bottom:1060.170000px;}
.y148{bottom:1070.970000px;}
.y9b{bottom:1072.050000px;}
.y39{bottom:1079.970000px;}
.y96{bottom:1090.050000px;}
.y4{bottom:1090.950000px;}
.y6c{bottom:1093.290000px;}
.y38{bottom:1099.770000px;}
.y37{bottom:1119.570000px;}
.y3{bottom:1121.730000px;}
.y36{bottom:1139.580000px;}
.y2{bottom:1152.720000px;}
.y35{bottom:1170.000000px;}
.y1{bottom:1186.560000px;}
.y34{bottom:1193.220000px;}
.h29{height:2.826563px;}
.h16{height:17.280000px;}
.h18{height:17.316000px;}
.hf{height:19.800000px;}
.hd{height:19.836000px;}
.h11{height:19.980000px;}
.h24{height:20.880000px;}
.h20{height:24.120000px;}
.h23{height:24.156000px;}
.h21{height:24.300000px;}
.h1f{height:30.960000px;}
.h8{height:38.158594px;}
.h1c{height:39.600000px;}
.h22{height:39.780000px;}
.h1d{height:42.164648px;}
.h14{height:42.876000px;}
.h9{height:58.621992px;}
.ha{height:58.651172px;}
.h26{height:59.400000px;}
.he{height:59.580000px;}
.h25{height:59.616000px;}
.h6{height:60.226875px;}
.h27{height:61.423863px;}
.hb{height:62.211094px;}
.h5{height:65.010937px;}
.h7{height:66.757500px;}
.hc{height:67.824844px;}
.h4{height:70.664062px;}
.h3{height:72.562500px;}
.h28{height:84.240000px;}
.h2{height:96.508125px;}
.h10{height:99.180000px;}
.h1e{height:99.216000px;}
.h12{height:118.980000px;}
.h13{height:138.780000px;}
.h1a{height:161.280000px;}
.h19{height:161.310000px;}
.h15{height:197.280000px;}
.h1b{height:197.310000px;}
.h17{height:233.310000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:52.560000px;}
.wf{width:61.920000px;}
.w11{width:65.880000px;}
.w19{width:66.816000px;}
.w18{width:73.440000px;}
.w1d{width:73.620000px;}
.w1c{width:84.456000px;}
.w10{width:93.636000px;}
.w16{width:96.156000px;}
.w12{width:96.696000px;}
.w1a{width:107.100000px;}
.w14{width:111.636000px;}
.w5{width:115.920000px;}
.w15{width:124.020000px;}
.wd{width:128.196000px;}
.w6{width:129.996000px;}
.wb{width:133.416000px;}
.w1e{width:136.656000px;}
.w8{width:148.176000px;}
.w4{width:149.616000px;}
.wc{width:160.770000px;}
.w3{width:166.710000px;}
.w7{width:169.230000px;}
.w9{width:179.850000px;}
.w13{width:203.610000px;}
.w1f{width:210.810000px;}
.wa{width:254.370000px;}
.w1b{width:308.010000px;}
.w17{width:471.705000px;}
.w20{width:580.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x11{left:22.860000px;}
.x25{left:45.900000px;}
.x1{left:54.179987px;}
.x1e{left:70.199987px;}
.x23{left:74.339987px;}
.x2{left:75.599987px;}
.x1a{left:85.860000px;}
.x24{left:101.375987px;}
.x15{left:108.035987px;}
.x1f{left:144.036000px;}
.x3{left:164.370000px;}
.xe{left:168.510000px;}
.xb{left:171.570000px;}
.x16{left:177.690000px;}
.x26{left:190.650000px;}
.x8{left:197.130000px;}
.x27{left:256.710000px;}
.xf{left:297.615000px;}
.x5{left:331.815000px;}
.x10{left:350.895000px;}
.x9{left:367.275000px;}
.x17{left:382.035000px;}
.x12{left:413.535000px;}
.xc{left:426.675000px;}
.x20{left:452.775000px;}
.x6{left:482.145000px;}
.x18{left:494.565000px;}
.x13{left:508.065000px;}
.xa{left:516.165000px;}
.x21{left:537.945000px;}
.x1b{left:558.465000px;}
.xd{left:560.805000px;}
.x7{left:598.785000px;}
.x22{left:612.285000px;}
.x19{left:619.305000px;}
.x14{left:627.945000px;}
.x1c{left:632.625000px;}
.x1d{left:700.170000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-1.045333pt;}
.ls25{letter-spacing:-0.688000pt;}
.ls10{letter-spacing:-0.470933pt;}
.ls1a{letter-spacing:-0.456533pt;}
.ls1f{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.317333pt;}
.lse{letter-spacing:-0.258667pt;}
.ls1b{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.185067pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls19{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016640pt;}
.ls5{letter-spacing:0.033280pt;}
.ls14{letter-spacing:0.047360pt;}
.ls1e{letter-spacing:0.094933pt;}
.lsc{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.169067pt;}
.ls16{letter-spacing:0.183467pt;}
.ls11{letter-spacing:0.189333pt;}
.ls12{letter-spacing:0.235733pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.409067pt;}
.ls15{letter-spacing:0.456533pt;}
.ls6{letter-spacing:0.480000pt;}
.ls13{letter-spacing:0.592000pt;}
.lsa{letter-spacing:6.992640pt;}
.ls1c{letter-spacing:8.912640pt;}
.lsb{letter-spacing:10.192640pt;}
.ls17{letter-spacing:13.392640pt;}
.ls23{letter-spacing:14.672640pt;}
.ls20{letter-spacing:17.232640pt;}
.ls2{letter-spacing:28.112640pt;}
.ls24{letter-spacing:37.200640pt;}
.ls1d{letter-spacing:40.912640pt;}
.ls22{letter-spacing:69.840640pt;}
.ls21{letter-spacing:96.080640pt;}
.ws2{word-spacing:-21.600000pt;}
.ws3{word-spacing:-21.313280pt;}
.ws4{word-spacing:-21.296640pt;}
.ws1{word-spacing:-14.720000pt;}
.wse{word-spacing:-13.872000pt;}
.ws12{word-spacing:-13.689067pt;}
.ws0{word-spacing:-13.674667pt;}
.ws10{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.542613pt;}
.ws11{word-spacing:-13.463467pt;}
.ws17{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.327360pt;}
.wsc{word-spacing:-13.306880pt;}
.ws7{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.096533pt;}
.ws15{word-spacing:-13.049067pt;}
.wsb{word-spacing:-13.048213pt;}
.wsa{word-spacing:-12.989547pt;}
.ws16{word-spacing:-12.960000pt;}
.ws14{word-spacing:-12.823467pt;}
.ws5{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._1{margin-left:-2258.442880pt;}
._3{margin-left:-1291.228160pt;}
._5{margin-left:-1285.821440pt;}
._4{margin-left:-836.684800pt;}
._6{margin-left:-515.671040pt;}
._1c{margin-left:-13.611093pt;}
._2b{margin-left:-4.327253pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._12{width:2.003840pt;}
._f{width:3.294080pt;}
._10{width:4.307200pt;}
._11{width:5.947733pt;}
._14{width:6.877227pt;}
._13{width:7.806080pt;}
._c{width:8.836053pt;}
._b{width:10.044160pt;}
._d{width:11.478400pt;}
._18{width:12.375467pt;}
._17{width:14.616960pt;}
._16{width:15.798827pt;}
._15{width:16.785920pt;}
._20{width:17.751680pt;}
._1b{width:19.497600pt;}
._19{width:20.398080pt;}
._1a{width:21.513387pt;}
._25{width:23.054080pt;}
._2a{width:24.102400pt;}
._24{width:27.516800pt;}
._21{width:28.640000pt;}
._29{width:33.370240pt;}
._28{width:34.599040pt;}
._22{width:35.590400pt;}
._23{width:36.546560pt;}
._27{width:38.405760pt;}
._7{width:46.645760pt;}
._8{width:47.579307pt;}
._e{width:50.573867pt;}
._26{width:56.891520pt;}
._a{width:85.183573pt;}
._9{width:86.145067pt;}
._1d{width:94.712960pt;}
._1e{width:134.296320pt;}
._1f{width:146.770560pt;}
.fs7{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:2.880000pt;}
.ycf{bottom:2.920000pt;}
.y65{bottom:5.120000pt;}
.y61{bottom:5.160000pt;}
.y7b{bottom:5.280000pt;}
.y107{bottom:5.600000pt;}
.yf7{bottom:7.040000pt;}
.yfd{bottom:7.080000pt;}
.y100{bottom:7.200000pt;}
.y161{bottom:9.440000pt;}
.yf3{bottom:10.080000pt;}
.ye0{bottom:13.920000pt;}
.yfb{bottom:14.080000pt;}
.y97{bottom:14.240000pt;}
.y64{bottom:22.720000pt;}
.yfa{bottom:22.880000pt;}
.y160{bottom:27.200000pt;}
.y15d{bottom:30.880000pt;}
.y10e{bottom:31.520000pt;}
.y109{bottom:31.680000pt;}
.y10c{bottom:31.706667pt;}
.y70{bottom:40.320000pt;}
.y63{bottom:40.480000pt;}
.y10b{bottom:40.506667pt;}
.y15f{bottom:44.800000pt;}
.y6{bottom:53.472000pt;}
.y88{bottom:57.920000pt;}
.y6f{bottom:58.080000pt;}
.ye3{bottom:58.120000pt;}
.y15e{bottom:62.394667pt;}
.y15c{bottom:74.752000pt;}
.y6e{bottom:75.680000pt;}
.ye2{bottom:75.720000pt;}
.y147{bottom:83.232000pt;}
.y33{bottom:83.552000pt;}
.y105{bottom:87.392000pt;}
.y15b{bottom:91.232000pt;}
.y95{bottom:91.552000pt;}
.y120{bottom:91.712000pt;}
.y7d{bottom:93.280000pt;}
.y6b{bottom:93.952000pt;}
.y146{bottom:100.832000pt;}
.y32{bottom:101.312000pt;}
.y104{bottom:104.992000pt;}
.yd7{bottom:107.712000pt;}
.y15a{bottom:108.832000pt;}
.y94{bottom:109.152000pt;}
.y11f{bottom:109.312000pt;}
.y87{bottom:110.880000pt;}
.y6a{bottom:111.552000pt;}
.yc2{bottom:115.520000pt;}
.yb7{bottom:115.546667pt;}
.y145{bottom:118.432000pt;}
.y31{bottom:118.912000pt;}
.yca{bottom:120.832000pt;}
.y103{bottom:122.592000pt;}
.y159{bottom:126.432000pt;}
.y93{bottom:126.752000pt;}
.y11e{bottom:126.912000pt;}
.y69{bottom:129.152000pt;}
.yc1{bottom:130.880000pt;}
.yb6{bottom:130.906667pt;}
.y144{bottom:136.026667pt;}
.y30{bottom:136.506667pt;}
.yd6{bottom:136.826667pt;}
.y102{bottom:140.346667pt;}
.y158{bottom:144.026667pt;}
.y92{bottom:144.506667pt;}
.y68{bottom:146.746667pt;}
.y9a{bottom:147.520000pt;}
.ycc{bottom:147.554667pt;}
.yd5{bottom:152.826667pt;}
.y101{bottom:153.466667pt;}
.y2f{bottom:154.106667pt;}
.y143{bottom:161.626667pt;}
.y91{bottom:162.106667pt;}
.y11d{bottom:162.266667pt;}
.y99{bottom:162.880000pt;}
.ycb{bottom:162.914667pt;}
.y67{bottom:164.506667pt;}
.yd4{bottom:168.826667pt;}
.y2e{bottom:171.706667pt;}
.y142{bottom:179.386667pt;}
.ya8{bottom:179.560000pt;}
.y90{bottom:179.706667pt;}
.y11c{bottom:179.866667pt;}
.y66{bottom:182.106667pt;}
.yd3{bottom:184.826667pt;}
.yff{bottom:189.306667pt;}
.y2d{bottom:189.466667pt;}
.ya7{bottom:194.920000pt;}
.y62{bottom:195.226667pt;}
.y141{bottom:196.986667pt;}
.y11b{bottom:197.466667pt;}
.yd2{bottom:200.826667pt;}
.y8f{bottom:205.306667pt;}
.y2c{bottom:207.066667pt;}
.yfe{bottom:211.546667pt;}
.y140{bottom:214.586667pt;}
.y11a{bottom:215.066667pt;}
.yd1{bottom:216.826667pt;}
.y8e{bottom:222.906667pt;}
.y2b{bottom:224.666667pt;}
.y13f{bottom:232.186667pt;}
.y119{bottom:232.666667pt;}
.yd0{bottom:232.826667pt;}
.y8d{bottom:240.666667pt;}
.y2a{bottom:242.266667pt;}
.yfc{bottom:247.546667pt;}
.y60{bottom:248.826667pt;}
.y13e{bottom:249.786667pt;}
.y118{bottom:250.466667pt;}
.y8c{bottom:258.306667pt;}
.y29{bottom:259.906667pt;}
.yce{bottom:264.866667pt;}
.y13d{bottom:267.586667pt;}
.y117{bottom:268.066667pt;}
.yf9{bottom:269.666667pt;}
.y5f{bottom:272.226667pt;}
.y8b{bottom:275.906667pt;}
.y28{bottom:277.666667pt;}
.ycd{bottom:280.866667pt;}
.y13c{bottom:285.186667pt;}
.y116{bottom:285.666667pt;}
.y5e{bottom:289.826667pt;}
.y27{bottom:295.266667pt;}
.yc0{bottom:296.866667pt;}
.y8a{bottom:301.506667pt;}
.y157{bottom:302.786667pt;}
.y115{bottom:303.266667pt;}
.yf8{bottom:305.666667pt;}
.y5d{bottom:307.586667pt;}
.y13b{bottom:310.786667pt;}
.y26{bottom:312.866667pt;}
.y89{bottom:319.106667pt;}
.y156{bottom:320.386667pt;}
.y114{bottom:320.866667pt;}
.y5c{bottom:325.186667pt;}
.yf6{bottom:327.906667pt;}
.y13a{bottom:328.386667pt;}
.yc9{bottom:328.866667pt;}
.y25{bottom:330.466667pt;}
.y86{bottom:332.386667pt;}
.y155{bottom:337.986667pt;}
.y113{bottom:338.626667pt;}
.y5b{bottom:342.786667pt;}
.yc8{bottom:344.866667pt;}
.y139{bottom:345.986667pt;}
.y24{bottom:348.066667pt;}
.yf5{bottom:350.146667pt;}
.y154{bottom:355.746667pt;}
.y112{bottom:356.226667pt;}
.y5a{bottom:360.386667pt;}
.yc7{bottom:360.866667pt;}
.y138{bottom:363.746667pt;}
.y23{bottom:365.826667pt;}
.y153{bottom:373.346667pt;}
.y111{bottom:373.826667pt;}
.yc6{bottom:376.866667pt;}
.y59{bottom:377.986667pt;}
.y137{bottom:381.346667pt;}
.y22{bottom:383.426667pt;}
.yf4{bottom:385.986667pt;}
.y152{bottom:390.946667pt;}
.y110{bottom:391.426667pt;}
.yc5{bottom:392.866667pt;}
.y58{bottom:395.746667pt;}
.y136{bottom:398.946667pt;}
.y21{bottom:401.026667pt;}
.y151{bottom:408.546667pt;}
.yc4{bottom:408.866667pt;}
.y10f{bottom:409.026667pt;}
.y57{bottom:413.346667pt;}
.yf2{bottom:414.146667pt;}
.y135{bottom:416.546667pt;}
.y20{bottom:418.626667pt;}
.y10d{bottom:422.306667pt;}
.yc3{bottom:424.866667pt;}
.y56{bottom:430.946667pt;}
.y134{bottom:434.146667pt;}
.y1f{bottom:436.226667pt;}
.yb5{bottom:440.866667pt;}
.yf1{bottom:442.466667pt;}
.y55{bottom:448.546667pt;}
.y133{bottom:451.906667pt;}
.y1e{bottom:453.986667pt;}
.y85{bottom:456.386667pt;}
.ybf{bottom:456.866667pt;}
.yf0{bottom:465.826667pt;}
.y54{bottom:466.146667pt;}
.y132{bottom:469.506667pt;}
.ybe{bottom:472.866667pt;}
.y1d{bottom:473.506667pt;}
.y10a{bottom:475.746667pt;}
.y84{bottom:479.906667pt;}
.yef{bottom:483.426667pt;}
.y53{bottom:483.906667pt;}
.y131{bottom:487.106667pt;}
.ybd{bottom:488.866667pt;}
.y1c{bottom:491.106667pt;}
.y83{bottom:497.506667pt;}
.yee{bottom:501.186667pt;}
.y52{bottom:501.506667pt;}
.y150{bottom:504.733333pt;}
.ybc{bottom:504.893333pt;}
.y130{bottom:512.733333pt;}
.y82{bottom:515.133333pt;}
.y1b{bottom:516.893333pt;}
.yed{bottom:518.813333pt;}
.y51{bottom:519.133333pt;}
.ybb{bottom:520.893333pt;}
.y14f{bottom:522.333333pt;}
.y108{bottom:529.373333pt;}
.y12f{bottom:530.333333pt;}
.y81{bottom:532.733333pt;}
.y1a{bottom:534.493333pt;}
.yec{bottom:536.413333pt;}
.y50{bottom:536.733333pt;}
.yba{bottom:536.893333pt;}
.y12e{bottom:548.093333pt;}
.y80{bottom:550.333333pt;}
.y19{bottom:552.093333pt;}
.yb9{bottom:552.893333pt;}
.yeb{bottom:554.013333pt;}
.y4f{bottom:554.333333pt;}
.y12d{bottom:565.693333pt;}
.y7f{bottom:568.093333pt;}
.yb8{bottom:568.893333pt;}
.y18{bottom:569.693333pt;}
.yea{bottom:571.613333pt;}
.y4e{bottom:572.093333pt;}
.y106{bottom:582.973333pt;}
.y12c{bottom:583.293333pt;}
.ya6{bottom:584.893333pt;}
.y7e{bottom:585.693333pt;}
.y17{bottom:587.293333pt;}
.y4d{bottom:589.693333pt;}
.ye9{bottom:597.373333pt;}
.y7c{bottom:598.813333pt;}
.yb4{bottom:600.893333pt;}
.y16{bottom:605.053333pt;}
.y4c{bottom:607.293333pt;}
.ye8{bottom:614.973333pt;}
.yb3{bottom:616.893333pt;}
.y12b{bottom:618.493333pt;}
.y15{bottom:622.653333pt;}
.y4b{bottom:624.893333pt;}
.ye7{bottom:632.573333pt;}
.yb2{bottom:632.893333pt;}
.y14e{bottom:636.253333pt;}
.y14{bottom:640.253333pt;}
.y4a{bottom:642.493333pt;}
.y12a{bottom:644.253333pt;}
.yb1{bottom:648.893333pt;}
.ye6{bottom:650.173333pt;}
.y14d{bottom:653.853333pt;}
.y13{bottom:657.853333pt;}
.y49{bottom:660.253333pt;}
.y129{bottom:661.853333pt;}
.yb0{bottom:664.893333pt;}
.ye5{bottom:667.773333pt;}
.y12{bottom:675.453333pt;}
.y48{bottom:677.853333pt;}
.y128{bottom:679.453333pt;}
.yaf{bottom:680.893333pt;}
.ye4{bottom:685.533333pt;}
.y11{bottom:693.213333pt;}
.y47{bottom:695.453333pt;}
.yae{bottom:696.893333pt;}
.y127{bottom:697.053333pt;}
.ye1{bottom:698.653333pt;}
.y7a{bottom:705.213333pt;}
.y10{bottom:710.813333pt;}
.yad{bottom:712.893333pt;}
.y46{bottom:713.053333pt;}
.y126{bottom:714.653333pt;}
.yf{bottom:728.413333pt;}
.y79{bottom:728.733333pt;}
.yac{bottom:728.893333pt;}
.y45{bottom:730.653333pt;}
.y125{bottom:732.413333pt;}
.yab{bottom:744.893333pt;}
.y78{bottom:746.333333pt;}
.ye{bottom:748.093333pt;}
.y44{bottom:748.413333pt;}
.y14c{bottom:750.013333pt;}
.y124{bottom:758.053333pt;}
.yaa{bottom:760.933333pt;}
.y77{bottom:763.973333pt;}
.y43{bottom:766.053333pt;}
.y14b{bottom:767.653333pt;}
.yd{bottom:770.373333pt;}
.y123{bottom:775.653333pt;}
.ya9{bottom:776.933333pt;}
.y76{bottom:781.733333pt;}
.y42{bottom:783.653333pt;}
.yc{bottom:783.813333pt;}
.y14a{bottom:785.253333pt;}
.ydf{bottom:787.493333pt;}
.y98{bottom:792.933333pt;}
.y122{bottom:793.253333pt;}
.y75{bottom:799.333333pt;}
.y41{bottom:801.253333pt;}
.yb{bottom:802.693333pt;}
.y149{bottom:802.853333pt;}
.ya5{bottom:808.933333pt;}
.y121{bottom:810.853333pt;}
.y74{bottom:816.933333pt;}
.y40{bottom:818.853333pt;}
.ya{bottom:823.653333pt;}
.ya4{bottom:824.933333pt;}
.yde{bottom:828.613333pt;}
.y73{bottom:834.533333pt;}
.y3f{bottom:836.613333pt;}
.ya3{bottom:840.933333pt;}
.ydd{bottom:846.213333pt;}
.y9{bottom:851.813333pt;}
.y72{bottom:852.133333pt;}
.y3e{bottom:854.213333pt;}
.ya2{bottom:856.933333pt;}
.ydc{bottom:863.813333pt;}
.y71{bottom:869.893333pt;}
.y3d{bottom:871.813333pt;}
.ya1{bottom:872.933333pt;}
.y8{bottom:879.973333pt;}
.ydb{bottom:881.413333pt;}
.y6d{bottom:883.013333pt;}
.ya0{bottom:888.933333pt;}
.y3c{bottom:889.413333pt;}
.yda{bottom:899.013333pt;}
.y9f{bottom:904.933333pt;}
.y3b{bottom:907.013333pt;}
.y7{bottom:908.293333pt;}
.yd9{bottom:916.773333pt;}
.y9e{bottom:920.933333pt;}
.y3a{bottom:924.773333pt;}
.yd8{bottom:934.373333pt;}
.y9d{bottom:936.933333pt;}
.y5{bottom:942.373333pt;}
.y148{bottom:951.973333pt;}
.y9b{bottom:952.933333pt;}
.y39{bottom:959.973333pt;}
.y96{bottom:968.933333pt;}
.y4{bottom:969.733333pt;}
.y6c{bottom:971.813333pt;}
.y38{bottom:977.573333pt;}
.y37{bottom:995.173333pt;}
.y3{bottom:997.093333pt;}
.y36{bottom:1012.960000pt;}
.y2{bottom:1024.640000pt;}
.y35{bottom:1040.000000pt;}
.y1{bottom:1054.720000pt;}
.y34{bottom:1060.640000pt;}
.h29{height:2.512500pt;}
.h16{height:15.360000pt;}
.h18{height:15.392000pt;}
.hf{height:17.600000pt;}
.hd{height:17.632000pt;}
.h11{height:17.760000pt;}
.h24{height:18.560000pt;}
.h20{height:21.440000pt;}
.h23{height:21.472000pt;}
.h21{height:21.600000pt;}
.h1f{height:27.520000pt;}
.h8{height:33.918750pt;}
.h1c{height:35.200000pt;}
.h22{height:35.360000pt;}
.h1d{height:37.479688pt;}
.h14{height:38.112000pt;}
.h9{height:52.108438pt;}
.ha{height:52.134375pt;}
.h26{height:52.800000pt;}
.he{height:52.960000pt;}
.h25{height:52.992000pt;}
.h6{height:53.535000pt;}
.h27{height:54.598989pt;}
.hb{height:55.298750pt;}
.h5{height:57.787500pt;}
.h7{height:59.340000pt;}
.hc{height:60.288750pt;}
.h4{height:62.812500pt;}
.h3{height:64.500000pt;}
.h28{height:74.880000pt;}
.h2{height:85.785000pt;}
.h10{height:88.160000pt;}
.h1e{height:88.192000pt;}
.h12{height:105.760000pt;}
.h13{height:123.360000pt;}
.h1a{height:143.360000pt;}
.h19{height:143.386667pt;}
.h15{height:175.360000pt;}
.h1b{height:175.386667pt;}
.h17{height:207.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:46.720000pt;}
.wf{width:55.040000pt;}
.w11{width:58.560000pt;}
.w19{width:59.392000pt;}
.w18{width:65.280000pt;}
.w1d{width:65.440000pt;}
.w1c{width:75.072000pt;}
.w10{width:83.232000pt;}
.w16{width:85.472000pt;}
.w12{width:85.952000pt;}
.w1a{width:95.200000pt;}
.w14{width:99.232000pt;}
.w5{width:103.040000pt;}
.w15{width:110.240000pt;}
.wd{width:113.952000pt;}
.w6{width:115.552000pt;}
.wb{width:118.592000pt;}
.w1e{width:121.472000pt;}
.w8{width:131.712000pt;}
.w4{width:132.992000pt;}
.wc{width:142.906667pt;}
.w3{width:148.186667pt;}
.w7{width:150.426667pt;}
.w9{width:159.866667pt;}
.w13{width:180.986667pt;}
.w1f{width:187.386667pt;}
.wa{width:226.106667pt;}
.w1b{width:273.786667pt;}
.w17{width:419.293333pt;}
.w20{width:516.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x11{left:20.320000pt;}
.x25{left:40.800000pt;}
.x1{left:48.159988pt;}
.x1e{left:62.399988pt;}
.x23{left:66.079988pt;}
.x2{left:67.199988pt;}
.x1a{left:76.320000pt;}
.x24{left:90.111988pt;}
.x15{left:96.031988pt;}
.x1f{left:128.032000pt;}
.x3{left:146.106667pt;}
.xe{left:149.786667pt;}
.xb{left:152.506667pt;}
.x16{left:157.946667pt;}
.x26{left:169.466667pt;}
.x8{left:175.226667pt;}
.x27{left:228.186667pt;}
.xf{left:264.546667pt;}
.x5{left:294.946667pt;}
.x10{left:311.906667pt;}
.x9{left:326.466667pt;}
.x17{left:339.586667pt;}
.x12{left:367.586667pt;}
.xc{left:379.266667pt;}
.x20{left:402.466667pt;}
.x6{left:428.573333pt;}
.x18{left:439.613333pt;}
.x13{left:451.613333pt;}
.xa{left:458.813333pt;}
.x21{left:478.173333pt;}
.x1b{left:496.413333pt;}
.xd{left:498.493333pt;}
.x7{left:532.253333pt;}
.x22{left:544.253333pt;}
.x19{left:550.493333pt;}
.x14{left:558.173333pt;}
.x1c{left:562.333333pt;}
.x1d{left:622.373333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  