
    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_54b916a5e4bd3b0ecedd278a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_6b263405d33fdde069c8dfdc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_0253b5313a02c62af45d9148.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_6332919600b53fbc6df3eca7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6b9602d4471bf19ea88bfedf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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:-24.480000px;}
.v4{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.600000px;}
.v1{vertical-align:24.480000px;}
.ls12{letter-spacing:-1.440000px;}
.ls4{letter-spacing:-1.422000px;}
.ls6{letter-spacing:-0.972000px;}
.ls2{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.507000px;}
.ls3{letter-spacing:-0.498000px;}
.lsa{letter-spacing:-0.486600px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.020160px;}
.ls10{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.200160px;}
.ls5{letter-spacing:0.466800px;}
.ls0{letter-spacing:0.498240px;}
.lsc{letter-spacing:0.507000px;}
.ls7{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.900000px;}
.lse{letter-spacing:13.265280px;}
.lsb{letter-spacing:81.250560px;}
.ls8{letter-spacing:82.690560px;}
.lsf{letter-spacing:188.945280px;}
.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;}
}
.ws6{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.627000px;}
.wsa{word-spacing:-15.586800px;}
.ws5{word-spacing:-15.140160px;}
.ws2{word-spacing:-15.120000px;}
.ws4{word-spacing:-14.633400px;}
.ws9{word-spacing:-14.148000px;}
.ws8{word-spacing:-13.680000px;}
.ws0{word-spacing:-13.182000px;}
.ws1{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._16{margin-left:-5.616000px;}
._14{margin-left:-4.034880px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._a{width:3.507840px;}
._c{width:5.220960px;}
._b{width:6.410880px;}
._f{width:7.862400px;}
._12{width:9.192960px;}
._13{width:10.298880px;}
._d{width:12.156480px;}
._e{width:13.608000px;}
._9{width:16.741920px;}
._15{width:18.136320px;}
._11{width:19.621440px;}
._10{width:20.744640px;}
._17{width:22.740480px;}
._2e{width:23.855040px;}
._36{width:25.208160px;}
._21{width:26.369280px;}
._20{width:27.699840px;}
._35{width:29.292960px;}
._23{width:30.300480px;}
._22{width:31.752000px;}
._1c{width:35.804160px;}
._26{width:38.495040px;}
._19{width:40.299360px;}
._18{width:42.215040px;}
._2f{width:43.917120px;}
._2d{width:46.396800px;}
._39{width:47.652960px;}
._2c{width:48.686400px;}
._2a{width:50.198400px;}
._2b{width:51.468480px;}
._34{width:52.980480px;}
._3f{width:55.049280px;}
._3e{width:56.068320px;}
._25{width:57.456000px;}
._24{width:59.218560px;}
._1e{width:63.383040px;}
._1d{width:65.862720px;}
._1a{width:73.967040px;}
._29{width:86.693760px;}
._27{width:87.937920px;}
._28{width:88.966080px;}
._37{width:115.162560px;}
._38{width:116.303040px;}
._33{width:120.331200px;}
._3b{width:125.029440px;}
._3a{width:126.040320px;}
._1f{width:127.068480px;}
._30{width:146.425440px;}
._31{width:148.104000px;}
._1b{width:170.372160px;}
._8{width:240.584640px;}
._3d{width:344.753280px;}
._3c{width:345.764160px;}
._5{width:393.960000px;}
._32{width:486.017280px;}
._7{width:769.956000px;}
._4{width:833.340000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:38.880000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y38{bottom:3.240000px;}
.y108{bottom:5.760000px;}
.y119{bottom:6.120000px;}
.y160{bottom:17.640000px;}
.y14f{bottom:18.000000px;}
.y37{bottom:20.514000px;}
.y117{bottom:25.554000px;}
.y10b{bottom:25.560000px;}
.y114{bottom:25.920000px;}
.y15f{bottom:37.440000px;}
.y36{bottom:37.794000px;}
.y16e{bottom:37.800000px;}
.ye{bottom:43.560000px;}
.y116{bottom:45.354000px;}
.y10a{bottom:45.360000px;}
.y110{bottom:45.390000px;}
.y113{bottom:45.720000px;}
.y35{bottom:55.074000px;}
.y10f{bottom:65.190000px;}
.yc{bottom:68.400000px;}
.y15d{bottom:69.480000px;}
.y16d{bottom:69.510000px;}
.y34{bottom:72.039000px;}
.y10e{bottom:84.990000px;}
.y15c{bottom:89.280000px;}
.y16c{bottom:89.310000px;}
.y33{bottom:89.319000px;}
.ya{bottom:94.716000px;}
.y10d{bottom:105.150000px;}
.y32{bottom:106.599000px;}
.y15b{bottom:121.005000px;}
.y16b{bottom:121.350000px;}
.y31{bottom:123.879000px;}
.y1a{bottom:130.356000px;}
.y189{bottom:135.396000px;}
.y135{bottom:135.756000px;}
.y115{bottom:140.076000px;}
.y16a{bottom:141.150000px;}
.y30{bottom:141.159000px;}
.y15a{bottom:141.165000px;}
.y9e{bottom:144.396000px;}
.y1cb{bottom:145.116000px;}
.y1a5{bottom:145.836000px;}
.y134{bottom:147.636000px;}
.y14c{bottom:149.796000px;}
.yc9{bottom:150.510000px;}
.y133{bottom:153.030000px;}
.yf8{bottom:154.830000px;}
.y188{bottom:155.190000px;}
.y6d{bottom:156.270000px;}
.y2f{bottom:158.439000px;}
.y9d{bottom:164.190000px;}
.y132{bottom:164.910000px;}
.y1a4{bottom:165.630000px;}
.y172{bottom:170.310000px;}
.y169{bottom:172.830000px;}
.y159{bottom:172.845000px;}
.yf7{bottom:174.630000px;}
.y187{bottom:174.990000px;}
.y2e{bottom:175.719000px;}
.y6c{bottom:176.070000px;}
.yc8{bottom:179.310000px;}
.y171{bottom:182.190000px;}
.y9c{bottom:183.990000px;}
.y1a3{bottom:185.430000px;}
.y1ca{bottom:186.150000px;}
.y14b{bottom:187.590000px;}
.y168{bottom:192.630000px;}
.y158{bottom:192.645000px;}
.y2d{bottom:193.029000px;}
.yf6{bottom:194.430000px;}
.y186{bottom:194.790000px;}
.y6b{bottom:196.230000px;}
.yc7{bottom:199.155000px;}
.y112{bottom:200.235000px;}
.y9b{bottom:203.835000px;}
.y1c9{bottom:205.995000px;}
.y1a2{bottom:206.715000px;}
.y131{bottom:209.955000px;}
.y2c{bottom:210.309000px;}
.yf5{bottom:214.275000px;}
.y185{bottom:214.635000px;}
.y6a{bottom:216.075000px;}
.yc6{bottom:218.955000px;}
.y170{bottom:219.675000px;}
.y9a{bottom:223.635000px;}
.y157{bottom:224.325000px;}
.y167{bottom:224.715000px;}
.y14a{bottom:225.795000px;}
.y2b{bottom:227.589000px;}
.y1a1{bottom:227.955000px;}
.y130{bottom:229.755000px;}
.yf4{bottom:234.435000px;}
.y184{bottom:234.795000px;}
.y69{bottom:235.875000px;}
.y16f{bottom:236.955000px;}
.yc5{bottom:238.755000px;}
.y99{bottom:243.435000px;}
.y156{bottom:244.515000px;}
.y2a{bottom:244.869000px;}
.y149{bottom:245.595000px;}
.y12f{bottom:247.035000px;}
.y1a0{bottom:247.755000px;}
.yf3{bottom:254.235000px;}
.y183{bottom:254.595000px;}
.y162{bottom:255.315000px;}
.y68{bottom:255.675000px;}
.yc4{bottom:258.555000px;}
.y111{bottom:260.715000px;}
.y29{bottom:261.789000px;}
.y98{bottom:263.235000px;}
.y148{bottom:265.395000px;}
.y12e{bottom:266.835000px;}
.y19f{bottom:267.555000px;}
.yf2{bottom:274.035000px;}
.y182{bottom:274.395000px;}
.y67{bottom:275.475000px;}
.y155{bottom:276.195000px;}
.yc3{bottom:278.355000px;}
.y28{bottom:279.069000px;}
.y10c{bottom:281.235000px;}
.y97{bottom:283.395000px;}
.y147{bottom:285.195000px;}
.y1c8{bottom:286.635000px;}
.y19e{bottom:288.795000px;}
.yf1{bottom:293.835000px;}
.y181{bottom:294.195000px;}
.y66{bottom:295.275000px;}
.y154{bottom:295.995000px;}
.y27{bottom:296.349000px;}
.yc2{bottom:298.155000px;}
.y96{bottom:303.195000px;}
.y146{bottom:304.995000px;}
.y1c7{bottom:307.875000px;}
.y19d{bottom:310.035000px;}
.yf0{bottom:313.635000px;}
.y180{bottom:313.995000px;}
.y65{bottom:315.075000px;}
.y15e{bottom:315.795000px;}
.yc1{bottom:317.955000px;}
.y26{bottom:322.674000px;}
.y95{bottom:322.995000px;}
.y145{bottom:324.825000px;}
.y1c6{bottom:327.705000px;}
.y153{bottom:328.035000px;}
.y166{bottom:328.065000px;}
.y19c{bottom:330.225000px;}
.yef{bottom:333.465000px;}
.y17f{bottom:333.825000px;}
.y64{bottom:334.905000px;}
.yc0{bottom:337.785000px;}
.y25{bottom:339.954000px;}
.y94{bottom:342.825000px;}
.y144{bottom:344.625000px;}
.y152{bottom:347.835000px;}
.y165{bottom:347.865000px;}
.y1c5{bottom:348.945000px;}
.y19b{bottom:350.025000px;}
.yee{bottom:353.265000px;}
.y17e{bottom:353.625000px;}
.y63{bottom:354.705000px;}
.y24{bottom:357.234000px;}
.ybf{bottom:357.945000px;}
.y93{bottom:362.625000px;}
.y143{bottom:364.425000px;}
.y151{bottom:367.635000px;}
.y1e5{bottom:367.665000px;}
.y1c4{bottom:369.105000px;}
.y19a{bottom:369.825000px;}
.yed{bottom:373.065000px;}
.y17d{bottom:373.425000px;}
.y62{bottom:374.505000px;}
.y23{bottom:374.514000px;}
.ybe{bottom:377.745000px;}
.y164{bottom:379.545000px;}
.y92{bottom:382.425000px;}
.y142{bottom:384.225000px;}
.y1e4{bottom:387.465000px;}
.y1c3{bottom:388.905000px;}
.y199{bottom:391.065000px;}
.y22{bottom:391.794000px;}
.yec{bottom:392.865000px;}
.y17c{bottom:393.225000px;}
.y61{bottom:394.665000px;}
.ybd{bottom:397.545000px;}
.y163{bottom:399.705000px;}
.y109{bottom:401.145000px;}
.y91{bottom:402.225000px;}
.y141{bottom:404.025000px;}
.y1e3{bottom:407.265000px;}
.y21{bottom:409.074000px;}
.y1c2{bottom:410.145000px;}
.y198{bottom:410.865000px;}
.yeb{bottom:412.665000px;}
.y17b{bottom:413.025000px;}
.y60{bottom:414.465000px;}
.ybc{bottom:417.345000px;}
.y90{bottom:422.025000px;}
.y140{bottom:424.185000px;}
.y20{bottom:426.354000px;}
.y1e2{bottom:428.505000px;}
.y1c1{bottom:429.945000px;}
.y197{bottom:430.665000px;}
.yea{bottom:432.465000px;}
.y17a{bottom:433.185000px;}
.y5f{bottom:434.265000px;}
.ybb{bottom:437.145000px;}
.y8f{bottom:441.825000px;}
.y1f{bottom:443.634000px;}
.y13f{bottom:443.985000px;}
.y1e1{bottom:448.305000px;}
.y1c0{bottom:449.790000px;}
.y196{bottom:451.950000px;}
.ye9{bottom:452.670000px;}
.y179{bottom:453.030000px;}
.y5e{bottom:454.110000px;}
.yba{bottom:456.990000px;}
.y1e{bottom:460.944000px;}
.y107{bottom:461.310000px;}
.y8e{bottom:461.670000px;}
.y13e{bottom:463.830000px;}
.y1e0{bottom:469.590000px;}
.y1bf{bottom:471.030000px;}
.y195{bottom:471.750000px;}
.ye8{bottom:472.470000px;}
.y178{bottom:472.830000px;}
.y5d{bottom:473.910000px;}
.yb9{bottom:476.790000px;}
.y1d{bottom:477.864000px;}
.y8d{bottom:481.830000px;}
.y13d{bottom:483.630000px;}
.y106{bottom:485.070000px;}
.y1df{bottom:489.390000px;}
.y1be{bottom:490.830000px;}
.y194{bottom:491.550000px;}
.ye7{bottom:492.270000px;}
.y177{bottom:492.630000px;}
.y5c{bottom:493.710000px;}
.y1c{bottom:495.144000px;}
.yb8{bottom:496.590000px;}
.y8c{bottom:501.630000px;}
.y13c{bottom:503.430000px;}
.y12d{bottom:504.870000px;}
.y105{bottom:509.550000px;}
.y1de{bottom:510.630000px;}
.y193{bottom:511.350000px;}
.ye6{bottom:512.070000px;}
.y1b{bottom:512.424000px;}
.y176{bottom:512.430000px;}
.y5b{bottom:513.510000px;}
.yb7{bottom:516.390000px;}
.y8b{bottom:521.430000px;}
.y13b{bottom:523.230000px;}
.y12c{bottom:524.670000px;}
.y1dd{bottom:530.430000px;}
.ye5{bottom:531.870000px;}
.y175{bottom:532.230000px;}
.y192{bottom:532.590000px;}
.y5a{bottom:533.310000px;}
.yb6{bottom:536.190000px;}
.y8a{bottom:541.230000px;}
.y13a{bottom:543.030000px;}
.y12b{bottom:544.470000px;}
.y104{bottom:547.350000px;}
.y1dc{bottom:550.230000px;}
.ye4{bottom:551.670000px;}
.y174{bottom:552.030000px;}
.y191{bottom:552.390000px;}
.y59{bottom:553.110000px;}
.yb5{bottom:556.350000px;}
.y89{bottom:561.030000px;}
.y139{bottom:562.830000px;}
.y12a{bottom:564.270000px;}
.y103{bottom:567.150000px;}
.y1db{bottom:570.030000px;}
.ye3{bottom:571.470000px;}
.y58{bottom:572.910000px;}
.y190{bottom:573.630000px;}
.yb4{bottom:576.180000px;}
.y173{bottom:577.980000px;}
.y88{bottom:580.860000px;}
.y138{bottom:582.660000px;}
.y129{bottom:584.100000px;}
.y102{bottom:586.980000px;}
.ye2{bottom:591.300000px;}
.y1bd{bottom:592.740000px;}
.y57{bottom:593.100000px;}
.y18f{bottom:593.460000px;}
.yb3{bottom:595.980000px;}
.y87{bottom:600.660000px;}
.y137{bottom:602.460000px;}
.y128{bottom:604.260000px;}
.y101{bottom:606.780000px;}
.ye1{bottom:611.100000px;}
.y1bc{bottom:612.540000px;}
.y56{bottom:612.900000px;}
.y18e{bottom:614.700000px;}
.yb2{bottom:615.780000px;}
.y86{bottom:620.460000px;}
.y126{bottom:624.060000px;}
.y100{bottom:626.580000px;}
.y127{bottom:629.460000px;}
.ye0{bottom:630.900000px;}
.y1da{bottom:632.340000px;}
.y55{bottom:632.700000px;}
.y1bb{bottom:633.780000px;}
.yb1{bottom:635.580000px;}
.y18d{bottom:635.940000px;}
.y136{bottom:637.380000px;}
.y85{bottom:640.260000px;}
.yff{bottom:646.380000px;}
.y125{bottom:649.260000px;}
.ydf{bottom:651.060000px;}
.y1d9{bottom:652.140000px;}
.y54{bottom:652.500000px;}
.y1ba{bottom:653.580000px;}
.yb0{bottom:655.380000px;}
.y18c{bottom:656.100000px;}
.y84{bottom:660.060000px;}
.yfe{bottom:666.180000px;}
.yde{bottom:670.860000px;}
.y19{bottom:671.220000px;}
.y53{bottom:672.300000px;}
.y161{bottom:673.380000px;}
.yaf{bottom:675.180000px;}
.y18b{bottom:675.900000px;}
.y83{bottom:680.220000px;}
.yfd{bottom:686.340000px;}
.y52{bottom:692.100000px;}
.ydd{bottom:692.460000px;}
.y1d8{bottom:693.540000px;}
.y18{bottom:693.900000px;}
.y1b9{bottom:694.620000px;}
.yae{bottom:694.980000px;}
.y18a{bottom:695.700000px;}
.y82{bottom:700.020000px;}
.yfc{bottom:706.170000px;}
.y150{bottom:709.770000px;}
.y51{bottom:711.930000px;}
.y1d7{bottom:713.370000px;}
.yad{bottom:714.810000px;}
.y17{bottom:720.210000px;}
.ydc{bottom:721.290000px;}
.y81{bottom:721.650000px;}
.yfb{bottom:725.970000px;}
.y50{bottom:731.730000px;}
.yac{bottom:734.610000px;}
.y16{bottom:741.090000px;}
.yfa{bottom:745.770000px;}
.y4f{bottom:751.530000px;}
.y1b8{bottom:754.410000px;}
.yab{bottom:754.770000px;}
.y80{bottom:756.570000px;}
.y15{bottom:758.370000px;}
.ydb{bottom:760.890000px;}
.yf9{bottom:765.570000px;}
.y4e{bottom:771.330000px;}
.yaa{bottom:774.570000px;}
.y1b7{bottom:775.650000px;}
.y14{bottom:777.450000px;}
.yda{bottom:781.050000px;}
.y7f{bottom:785.370000px;}
.y4d{bottom:791.490000px;}
.ya9{bottom:794.370000px;}
.y1b6{bottom:795.450000px;}
.yd9{bottom:800.850000px;}
.y13{bottom:805.170000px;}
.y4c{bottom:811.290000px;}
.ya8{bottom:814.170000px;}
.y1b5{bottom:816.690000px;}
.yd8{bottom:820.650000px;}
.y7e{bottom:824.970000px;}
.y4b{bottom:831.135000px;}
.y12{bottom:832.575000px;}
.ya7{bottom:834.015000px;}
.y1b4{bottom:836.535000px;}
.yd7{bottom:840.495000px;}
.y7d{bottom:844.815000px;}
.y4a{bottom:850.935000px;}
.ya6{bottom:853.815000px;}
.y1b3{bottom:856.335000px;}
.y1d6{bottom:857.775000px;}
.y11{bottom:860.295000px;}
.y7c{bottom:864.615000px;}
.y49{bottom:870.735000px;}
.ya5{bottom:873.615000px;}
.y1b2{bottom:877.575000px;}
.yd6{bottom:880.095000px;}
.y7b{bottom:884.415000px;}
.y10{bottom:888.015000px;}
.y48{bottom:890.535000px;}
.ya4{bottom:893.415000px;}
.y1b1{bottom:897.375000px;}
.y1d5{bottom:898.815000px;}
.yd5{bottom:899.895000px;}
.y124{bottom:902.775000px;}
.y7a{bottom:904.575000px;}
.y47{bottom:910.335000px;}
.ya3{bottom:913.215000px;}
.yf{bottom:915.375000px;}
.y1b0{bottom:918.615000px;}
.yd4{bottom:919.695000px;}
.y1d4{bottom:920.055000px;}
.y123{bottom:922.935000px;}
.y79{bottom:924.375000px;}
.y46{bottom:930.135000px;}
.ya2{bottom:933.015000px;}
.y1af{bottom:938.415000px;}
.yd3{bottom:939.495000px;}
.y1d3{bottom:939.855000px;}
.y9{bottom:941.295000px;}
.y122{bottom:942.735000px;}
.y78{bottom:944.175000px;}
.y45{bottom:949.935000px;}
.ya1{bottom:953.205000px;}
.y1ae{bottom:958.245000px;}
.y8{bottom:958.605000px;}
.yd2{bottom:959.325000px;}
.y1d2{bottom:959.685000px;}
.y121{bottom:962.565000px;}
.y77{bottom:964.005000px;}
.y44{bottom:969.765000px;}
.y7{bottom:972.645000px;}
.ya0{bottom:973.005000px;}
.y1ad{bottom:978.045000px;}
.yd1{bottom:979.125000px;}
.y1d1{bottom:979.485000px;}
.y120{bottom:982.365000px;}
.y76{bottom:983.805000px;}
.y43{bottom:989.925000px;}
.y9f{bottom:994.605000px;}
.yd0{bottom:999.285000px;}
.y1d0{bottom:1000.725000px;}
.y11f{bottom:1002.165000px;}
.y75{bottom:1003.605000px;}
.y42{bottom:1009.725000px;}
.ycf{bottom:1019.085000px;}
.y1ac{bottom:1019.445000px;}
.y1cf{bottom:1020.525000px;}
.y11e{bottom:1021.965000px;}
.y74{bottom:1023.405000px;}
.y6{bottom:1027.365000px;}
.y41{bottom:1029.525000px;}
.yce{bottom:1038.885000px;}
.y1ab{bottom:1039.245000px;}
.y1ce{bottom:1040.325000px;}
.y11d{bottom:1041.765000px;}
.y73{bottom:1043.205000px;}
.y40{bottom:1049.325000px;}
.y5{bottom:1052.205000px;}
.ycd{bottom:1058.685000px;}
.y1aa{bottom:1060.485000px;}
.y11c{bottom:1061.565000px;}
.y1cd{bottom:1061.925000px;}
.y72{bottom:1063.005000px;}
.y4{bottom:1072.725000px;}
.ycc{bottom:1078.530000px;}
.y1a9{bottom:1080.330000px;}
.y11a{bottom:1081.410000px;}
.y1cc{bottom:1081.770000px;}
.y71{bottom:1082.850000px;}
.y3f{bottom:1084.290000px;}
.y11b{bottom:1086.810000px;}
.y3{bottom:1094.010000px;}
.y14e{bottom:1095.810000px;}
.y118{bottom:1096.170000px;}
.ycb{bottom:1098.330000px;}
.y1a8{bottom:1101.570000px;}
.y70{bottom:1103.010000px;}
.y3e{bottom:1112.370000px;}
.y2{bottom:1114.530000px;}
.yca{bottom:1118.130000px;}
.y1a7{bottom:1121.370000px;}
.y6f{bottom:1122.810000px;}
.y1{bottom:1131.450000px;}
.y3d{bottom:1137.210000px;}
.y1a6{bottom:1141.170000px;}
.y14d{bottom:1142.250000px;}
.y6e{bottom:1142.610000px;}
.y3c{bottom:1166.370000px;}
.y3b{bottom:1180.410000px;}
.y3a{bottom:1201.290000px;}
.y39{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.hd{height:17.280000px;}
.he{height:19.800000px;}
.h14{height:31.716000px;}
.h12{height:32.040000px;}
.hb{height:34.855313px;}
.h5{height:39.997969px;}
.h7{height:49.055625px;}
.h2{height:53.717344px;}
.h4{height:54.219375px;}
.h16{height:56.455312px;}
.ha{height:59.012578px;}
.h17{height:59.383125px;}
.hf{height:59.436000px;}
.h11{height:59.760000px;}
.h3{height:63.949219px;}
.h9{height:85.691953px;}
.h10{height:119.196000px;}
.h13{height:381.705000px;}
.h15{height:413.745000px;}
.hc{height:535.470000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:169.275000px;}
.wa{width:333.510000px;}
.wb{width:333.870000px;}
.w7{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w6{width:341.430000px;}
.w5{width:679.965000px;}
.w1{width:892.500000px;}
.w9{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1e{left:5.760000px;}
.x9{left:8.640000px;}
.x7{left:106.235987px;}
.x1c{left:111.275987px;}
.x12{left:117.035987px;}
.xd{left:127.115987px;}
.x20{left:133.271987px;}
.x21{left:160.274987px;}
.xb{left:161.354987px;}
.xf{left:180.794987px;}
.x15{left:190.514973px;}
.x16{left:195.554987px;}
.x18{left:202.754973px;}
.x19{left:207.794987px;}
.x1a{left:216.794987px;}
.x1d{left:241.304987px;}
.x17{left:248.504987px;}
.x2{left:254.264987px;}
.x6{left:274.064987px;}
.x13{left:277.304987px;}
.xc{left:288.464987px;}
.xa{left:304.350000px;}
.x1b{left:322.349987px;}
.xe{left:329.549987px;}
.x11{left:339.984000px;}
.x5{left:362.669987px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x8{left:446.579987px;}
.x10{left:447.660000px;}
.x1f{left:448.740000px;}
.x14{left:616.935000px;}
.x1{left:786.929987px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v4{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.200000pt;}
.v1{vertical-align:21.760000pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls4{letter-spacing:-1.264000pt;}
.ls6{letter-spacing:-0.864000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.450667pt;}
.ls3{letter-spacing:-0.442667pt;}
.lsa{letter-spacing:-0.432533pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.017920pt;}
.ls10{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.177920pt;}
.ls5{letter-spacing:0.414933pt;}
.ls0{letter-spacing:0.442880pt;}
.lsc{letter-spacing:0.450667pt;}
.ls7{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.800000pt;}
.lse{letter-spacing:11.791360pt;}
.lsb{letter-spacing:72.222720pt;}
.ls8{letter-spacing:73.502720pt;}
.lsf{letter-spacing:167.951360pt;}
.ws6{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.890667pt;}
.wsa{word-spacing:-13.854933pt;}
.ws5{word-spacing:-13.457920pt;}
.ws2{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.007467pt;}
.ws9{word-spacing:-12.576000pt;}
.ws8{word-spacing:-12.160000pt;}
.ws0{word-spacing:-11.717333pt;}
.ws1{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._16{margin-left:-4.992000pt;}
._14{margin-left:-3.586560pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._a{width:3.118080pt;}
._c{width:4.640853pt;}
._b{width:5.698560pt;}
._f{width:6.988800pt;}
._12{width:8.171520pt;}
._13{width:9.154560pt;}
._d{width:10.805760pt;}
._e{width:12.096000pt;}
._9{width:14.881707pt;}
._15{width:16.121173pt;}
._11{width:17.441280pt;}
._10{width:18.439680pt;}
._17{width:20.213760pt;}
._2e{width:21.204480pt;}
._36{width:22.407253pt;}
._21{width:23.439360pt;}
._20{width:24.622080pt;}
._35{width:26.038187pt;}
._23{width:26.933760pt;}
._22{width:28.224000pt;}
._1c{width:31.825920pt;}
._26{width:34.217813pt;}
._19{width:35.821653pt;}
._18{width:37.524480pt;}
._2f{width:39.037440pt;}
._2d{width:41.241600pt;}
._39{width:42.358187pt;}
._2c{width:43.276800pt;}
._2a{width:44.620800pt;}
._2b{width:45.749760pt;}
._34{width:47.093760pt;}
._3f{width:48.932693pt;}
._3e{width:49.838507pt;}
._25{width:51.072000pt;}
._24{width:52.638720pt;}
._1e{width:56.340480pt;}
._1d{width:58.544640pt;}
._1a{width:65.748480pt;}
._29{width:77.061120pt;}
._27{width:78.167040pt;}
._28{width:79.080960pt;}
._37{width:102.366720pt;}
._38{width:103.380480pt;}
._33{width:106.961067pt;}
._3b{width:111.137280pt;}
._3a{width:112.035840pt;}
._1f{width:112.949760pt;}
._30{width:130.155947pt;}
._31{width:131.648000pt;}
._1b{width:151.441920pt;}
._8{width:213.853013pt;}
._3d{width:306.447360pt;}
._3c{width:307.345920pt;}
._5{width:350.186667pt;}
._32{width:432.015360pt;}
._7{width:684.405333pt;}
._4{width:740.746667pt;}
._3{width:1414.378667pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y38{bottom:2.880000pt;}
.y108{bottom:5.120000pt;}
.y119{bottom:5.440000pt;}
.y160{bottom:15.680000pt;}
.y14f{bottom:16.000000pt;}
.y37{bottom:18.234667pt;}
.y117{bottom:22.714667pt;}
.y10b{bottom:22.720000pt;}
.y114{bottom:23.040000pt;}
.y15f{bottom:33.280000pt;}
.y36{bottom:33.594667pt;}
.y16e{bottom:33.600000pt;}
.ye{bottom:38.720000pt;}
.y116{bottom:40.314667pt;}
.y10a{bottom:40.320000pt;}
.y110{bottom:40.346667pt;}
.y113{bottom:40.640000pt;}
.y35{bottom:48.954667pt;}
.y10f{bottom:57.946667pt;}
.yc{bottom:60.800000pt;}
.y15d{bottom:61.760000pt;}
.y16d{bottom:61.786667pt;}
.y34{bottom:64.034667pt;}
.y10e{bottom:75.546667pt;}
.y15c{bottom:79.360000pt;}
.y16c{bottom:79.386667pt;}
.y33{bottom:79.394667pt;}
.ya{bottom:84.192000pt;}
.y10d{bottom:93.466667pt;}
.y32{bottom:94.754667pt;}
.y15b{bottom:107.560000pt;}
.y16b{bottom:107.866667pt;}
.y31{bottom:110.114667pt;}
.y1a{bottom:115.872000pt;}
.y189{bottom:120.352000pt;}
.y135{bottom:120.672000pt;}
.y115{bottom:124.512000pt;}
.y16a{bottom:125.466667pt;}
.y30{bottom:125.474667pt;}
.y15a{bottom:125.480000pt;}
.y9e{bottom:128.352000pt;}
.y1cb{bottom:128.992000pt;}
.y1a5{bottom:129.632000pt;}
.y134{bottom:131.232000pt;}
.y14c{bottom:133.152000pt;}
.yc9{bottom:133.786667pt;}
.y133{bottom:136.026667pt;}
.yf8{bottom:137.626667pt;}
.y188{bottom:137.946667pt;}
.y6d{bottom:138.906667pt;}
.y2f{bottom:140.834667pt;}
.y9d{bottom:145.946667pt;}
.y132{bottom:146.586667pt;}
.y1a4{bottom:147.226667pt;}
.y172{bottom:151.386667pt;}
.y169{bottom:153.626667pt;}
.y159{bottom:153.640000pt;}
.yf7{bottom:155.226667pt;}
.y187{bottom:155.546667pt;}
.y2e{bottom:156.194667pt;}
.y6c{bottom:156.506667pt;}
.yc8{bottom:159.386667pt;}
.y171{bottom:161.946667pt;}
.y9c{bottom:163.546667pt;}
.y1a3{bottom:164.826667pt;}
.y1ca{bottom:165.466667pt;}
.y14b{bottom:166.746667pt;}
.y168{bottom:171.226667pt;}
.y158{bottom:171.240000pt;}
.y2d{bottom:171.581333pt;}
.yf6{bottom:172.826667pt;}
.y186{bottom:173.146667pt;}
.y6b{bottom:174.426667pt;}
.yc7{bottom:177.026667pt;}
.y112{bottom:177.986667pt;}
.y9b{bottom:181.186667pt;}
.y1c9{bottom:183.106667pt;}
.y1a2{bottom:183.746667pt;}
.y131{bottom:186.626667pt;}
.y2c{bottom:186.941333pt;}
.yf5{bottom:190.466667pt;}
.y185{bottom:190.786667pt;}
.y6a{bottom:192.066667pt;}
.yc6{bottom:194.626667pt;}
.y170{bottom:195.266667pt;}
.y9a{bottom:198.786667pt;}
.y157{bottom:199.400000pt;}
.y167{bottom:199.746667pt;}
.y14a{bottom:200.706667pt;}
.y2b{bottom:202.301333pt;}
.y1a1{bottom:202.626667pt;}
.y130{bottom:204.226667pt;}
.yf4{bottom:208.386667pt;}
.y184{bottom:208.706667pt;}
.y69{bottom:209.666667pt;}
.y16f{bottom:210.626667pt;}
.yc5{bottom:212.226667pt;}
.y99{bottom:216.386667pt;}
.y156{bottom:217.346667pt;}
.y2a{bottom:217.661333pt;}
.y149{bottom:218.306667pt;}
.y12f{bottom:219.586667pt;}
.y1a0{bottom:220.226667pt;}
.yf3{bottom:225.986667pt;}
.y183{bottom:226.306667pt;}
.y162{bottom:226.946667pt;}
.y68{bottom:227.266667pt;}
.yc4{bottom:229.826667pt;}
.y111{bottom:231.746667pt;}
.y29{bottom:232.701333pt;}
.y98{bottom:233.986667pt;}
.y148{bottom:235.906667pt;}
.y12e{bottom:237.186667pt;}
.y19f{bottom:237.826667pt;}
.yf2{bottom:243.586667pt;}
.y182{bottom:243.906667pt;}
.y67{bottom:244.866667pt;}
.y155{bottom:245.506667pt;}
.yc3{bottom:247.426667pt;}
.y28{bottom:248.061333pt;}
.y10c{bottom:249.986667pt;}
.y97{bottom:251.906667pt;}
.y147{bottom:253.506667pt;}
.y1c8{bottom:254.786667pt;}
.y19e{bottom:256.706667pt;}
.yf1{bottom:261.186667pt;}
.y181{bottom:261.506667pt;}
.y66{bottom:262.466667pt;}
.y154{bottom:263.106667pt;}
.y27{bottom:263.421333pt;}
.yc2{bottom:265.026667pt;}
.y96{bottom:269.506667pt;}
.y146{bottom:271.106667pt;}
.y1c7{bottom:273.666667pt;}
.y19d{bottom:275.586667pt;}
.yf0{bottom:278.786667pt;}
.y180{bottom:279.106667pt;}
.y65{bottom:280.066667pt;}
.y15e{bottom:280.706667pt;}
.yc1{bottom:282.626667pt;}
.y26{bottom:286.821333pt;}
.y95{bottom:287.106667pt;}
.y145{bottom:288.733333pt;}
.y1c6{bottom:291.293333pt;}
.y153{bottom:291.586667pt;}
.y166{bottom:291.613333pt;}
.y19c{bottom:293.533333pt;}
.yef{bottom:296.413333pt;}
.y17f{bottom:296.733333pt;}
.y64{bottom:297.693333pt;}
.yc0{bottom:300.253333pt;}
.y25{bottom:302.181333pt;}
.y94{bottom:304.733333pt;}
.y144{bottom:306.333333pt;}
.y152{bottom:309.186667pt;}
.y165{bottom:309.213333pt;}
.y1c5{bottom:310.173333pt;}
.y19b{bottom:311.133333pt;}
.yee{bottom:314.013333pt;}
.y17e{bottom:314.333333pt;}
.y63{bottom:315.293333pt;}
.y24{bottom:317.541333pt;}
.ybf{bottom:318.173333pt;}
.y93{bottom:322.333333pt;}
.y143{bottom:323.933333pt;}
.y151{bottom:326.786667pt;}
.y1e5{bottom:326.813333pt;}
.y1c4{bottom:328.093333pt;}
.y19a{bottom:328.733333pt;}
.yed{bottom:331.613333pt;}
.y17d{bottom:331.933333pt;}
.y62{bottom:332.893333pt;}
.y23{bottom:332.901333pt;}
.ybe{bottom:335.773333pt;}
.y164{bottom:337.373333pt;}
.y92{bottom:339.933333pt;}
.y142{bottom:341.533333pt;}
.y1e4{bottom:344.413333pt;}
.y1c3{bottom:345.693333pt;}
.y199{bottom:347.613333pt;}
.y22{bottom:348.261333pt;}
.yec{bottom:349.213333pt;}
.y17c{bottom:349.533333pt;}
.y61{bottom:350.813333pt;}
.ybd{bottom:353.373333pt;}
.y163{bottom:355.293333pt;}
.y109{bottom:356.573333pt;}
.y91{bottom:357.533333pt;}
.y141{bottom:359.133333pt;}
.y1e3{bottom:362.013333pt;}
.y21{bottom:363.621333pt;}
.y1c2{bottom:364.573333pt;}
.y198{bottom:365.213333pt;}
.yeb{bottom:366.813333pt;}
.y17b{bottom:367.133333pt;}
.y60{bottom:368.413333pt;}
.ybc{bottom:370.973333pt;}
.y90{bottom:375.133333pt;}
.y140{bottom:377.053333pt;}
.y20{bottom:378.981333pt;}
.y1e2{bottom:380.893333pt;}
.y1c1{bottom:382.173333pt;}
.y197{bottom:382.813333pt;}
.yea{bottom:384.413333pt;}
.y17a{bottom:385.053333pt;}
.y5f{bottom:386.013333pt;}
.ybb{bottom:388.573333pt;}
.y8f{bottom:392.733333pt;}
.y1f{bottom:394.341333pt;}
.y13f{bottom:394.653333pt;}
.y1e1{bottom:398.493333pt;}
.y1c0{bottom:399.813333pt;}
.y196{bottom:401.733333pt;}
.ye9{bottom:402.373333pt;}
.y179{bottom:402.693333pt;}
.y5e{bottom:403.653333pt;}
.yba{bottom:406.213333pt;}
.y1e{bottom:409.728000pt;}
.y107{bottom:410.053333pt;}
.y8e{bottom:410.373333pt;}
.y13e{bottom:412.293333pt;}
.y1e0{bottom:417.413333pt;}
.y1bf{bottom:418.693333pt;}
.y195{bottom:419.333333pt;}
.ye8{bottom:419.973333pt;}
.y178{bottom:420.293333pt;}
.y5d{bottom:421.253333pt;}
.yb9{bottom:423.813333pt;}
.y1d{bottom:424.768000pt;}
.y8d{bottom:428.293333pt;}
.y13d{bottom:429.893333pt;}
.y106{bottom:431.173333pt;}
.y1df{bottom:435.013333pt;}
.y1be{bottom:436.293333pt;}
.y194{bottom:436.933333pt;}
.ye7{bottom:437.573333pt;}
.y177{bottom:437.893333pt;}
.y5c{bottom:438.853333pt;}
.y1c{bottom:440.128000pt;}
.yb8{bottom:441.413333pt;}
.y8c{bottom:445.893333pt;}
.y13c{bottom:447.493333pt;}
.y12d{bottom:448.773333pt;}
.y105{bottom:452.933333pt;}
.y1de{bottom:453.893333pt;}
.y193{bottom:454.533333pt;}
.ye6{bottom:455.173333pt;}
.y1b{bottom:455.488000pt;}
.y176{bottom:455.493333pt;}
.y5b{bottom:456.453333pt;}
.yb7{bottom:459.013333pt;}
.y8b{bottom:463.493333pt;}
.y13b{bottom:465.093333pt;}
.y12c{bottom:466.373333pt;}
.y1dd{bottom:471.493333pt;}
.ye5{bottom:472.773333pt;}
.y175{bottom:473.093333pt;}
.y192{bottom:473.413333pt;}
.y5a{bottom:474.053333pt;}
.yb6{bottom:476.613333pt;}
.y8a{bottom:481.093333pt;}
.y13a{bottom:482.693333pt;}
.y12b{bottom:483.973333pt;}
.y104{bottom:486.533333pt;}
.y1dc{bottom:489.093333pt;}
.ye4{bottom:490.373333pt;}
.y174{bottom:490.693333pt;}
.y191{bottom:491.013333pt;}
.y59{bottom:491.653333pt;}
.yb5{bottom:494.533333pt;}
.y89{bottom:498.693333pt;}
.y139{bottom:500.293333pt;}
.y12a{bottom:501.573333pt;}
.y103{bottom:504.133333pt;}
.y1db{bottom:506.693333pt;}
.ye3{bottom:507.973333pt;}
.y58{bottom:509.253333pt;}
.y190{bottom:509.893333pt;}
.yb4{bottom:512.160000pt;}
.y173{bottom:513.760000pt;}
.y88{bottom:516.320000pt;}
.y138{bottom:517.920000pt;}
.y129{bottom:519.200000pt;}
.y102{bottom:521.760000pt;}
.ye2{bottom:525.600000pt;}
.y1bd{bottom:526.880000pt;}
.y57{bottom:527.200000pt;}
.y18f{bottom:527.520000pt;}
.yb3{bottom:529.760000pt;}
.y87{bottom:533.920000pt;}
.y137{bottom:535.520000pt;}
.y128{bottom:537.120000pt;}
.y101{bottom:539.360000pt;}
.ye1{bottom:543.200000pt;}
.y1bc{bottom:544.480000pt;}
.y56{bottom:544.800000pt;}
.y18e{bottom:546.400000pt;}
.yb2{bottom:547.360000pt;}
.y86{bottom:551.520000pt;}
.y126{bottom:554.720000pt;}
.y100{bottom:556.960000pt;}
.y127{bottom:559.520000pt;}
.ye0{bottom:560.800000pt;}
.y1da{bottom:562.080000pt;}
.y55{bottom:562.400000pt;}
.y1bb{bottom:563.360000pt;}
.yb1{bottom:564.960000pt;}
.y18d{bottom:565.280000pt;}
.y136{bottom:566.560000pt;}
.y85{bottom:569.120000pt;}
.yff{bottom:574.560000pt;}
.y125{bottom:577.120000pt;}
.ydf{bottom:578.720000pt;}
.y1d9{bottom:579.680000pt;}
.y54{bottom:580.000000pt;}
.y1ba{bottom:580.960000pt;}
.yb0{bottom:582.560000pt;}
.y18c{bottom:583.200000pt;}
.y84{bottom:586.720000pt;}
.yfe{bottom:592.160000pt;}
.yde{bottom:596.320000pt;}
.y19{bottom:596.640000pt;}
.y53{bottom:597.600000pt;}
.y161{bottom:598.560000pt;}
.yaf{bottom:600.160000pt;}
.y18b{bottom:600.800000pt;}
.y83{bottom:604.640000pt;}
.yfd{bottom:610.080000pt;}
.y52{bottom:615.200000pt;}
.ydd{bottom:615.520000pt;}
.y1d8{bottom:616.480000pt;}
.y18{bottom:616.800000pt;}
.y1b9{bottom:617.440000pt;}
.yae{bottom:617.760000pt;}
.y18a{bottom:618.400000pt;}
.y82{bottom:622.240000pt;}
.yfc{bottom:627.706667pt;}
.y150{bottom:630.906667pt;}
.y51{bottom:632.826667pt;}
.y1d7{bottom:634.106667pt;}
.yad{bottom:635.386667pt;}
.y17{bottom:640.186667pt;}
.ydc{bottom:641.146667pt;}
.y81{bottom:641.466667pt;}
.yfb{bottom:645.306667pt;}
.y50{bottom:650.426667pt;}
.yac{bottom:652.986667pt;}
.y16{bottom:658.746667pt;}
.yfa{bottom:662.906667pt;}
.y4f{bottom:668.026667pt;}
.y1b8{bottom:670.586667pt;}
.yab{bottom:670.906667pt;}
.y80{bottom:672.506667pt;}
.y15{bottom:674.106667pt;}
.ydb{bottom:676.346667pt;}
.yf9{bottom:680.506667pt;}
.y4e{bottom:685.626667pt;}
.yaa{bottom:688.506667pt;}
.y1b7{bottom:689.466667pt;}
.y14{bottom:691.066667pt;}
.yda{bottom:694.266667pt;}
.y7f{bottom:698.106667pt;}
.y4d{bottom:703.546667pt;}
.ya9{bottom:706.106667pt;}
.y1b6{bottom:707.066667pt;}
.yd9{bottom:711.866667pt;}
.y13{bottom:715.706667pt;}
.y4c{bottom:721.146667pt;}
.ya8{bottom:723.706667pt;}
.y1b5{bottom:725.946667pt;}
.yd8{bottom:729.466667pt;}
.y7e{bottom:733.306667pt;}
.y4b{bottom:738.786667pt;}
.y12{bottom:740.066667pt;}
.ya7{bottom:741.346667pt;}
.y1b4{bottom:743.586667pt;}
.yd7{bottom:747.106667pt;}
.y7d{bottom:750.946667pt;}
.y4a{bottom:756.386667pt;}
.ya6{bottom:758.946667pt;}
.y1b3{bottom:761.186667pt;}
.y1d6{bottom:762.466667pt;}
.y11{bottom:764.706667pt;}
.y7c{bottom:768.546667pt;}
.y49{bottom:773.986667pt;}
.ya5{bottom:776.546667pt;}
.y1b2{bottom:780.066667pt;}
.yd6{bottom:782.306667pt;}
.y7b{bottom:786.146667pt;}
.y10{bottom:789.346667pt;}
.y48{bottom:791.586667pt;}
.ya4{bottom:794.146667pt;}
.y1b1{bottom:797.666667pt;}
.y1d5{bottom:798.946667pt;}
.yd5{bottom:799.906667pt;}
.y124{bottom:802.466667pt;}
.y7a{bottom:804.066667pt;}
.y47{bottom:809.186667pt;}
.ya3{bottom:811.746667pt;}
.yf{bottom:813.666667pt;}
.y1b0{bottom:816.546667pt;}
.yd4{bottom:817.506667pt;}
.y1d4{bottom:817.826667pt;}
.y123{bottom:820.386667pt;}
.y79{bottom:821.666667pt;}
.y46{bottom:826.786667pt;}
.ya2{bottom:829.346667pt;}
.y1af{bottom:834.146667pt;}
.yd3{bottom:835.106667pt;}
.y1d3{bottom:835.426667pt;}
.y9{bottom:836.706667pt;}
.y122{bottom:837.986667pt;}
.y78{bottom:839.266667pt;}
.y45{bottom:844.386667pt;}
.ya1{bottom:847.293333pt;}
.y1ae{bottom:851.773333pt;}
.y8{bottom:852.093333pt;}
.yd2{bottom:852.733333pt;}
.y1d2{bottom:853.053333pt;}
.y121{bottom:855.613333pt;}
.y77{bottom:856.893333pt;}
.y44{bottom:862.013333pt;}
.y7{bottom:864.573333pt;}
.ya0{bottom:864.893333pt;}
.y1ad{bottom:869.373333pt;}
.yd1{bottom:870.333333pt;}
.y1d1{bottom:870.653333pt;}
.y120{bottom:873.213333pt;}
.y76{bottom:874.493333pt;}
.y43{bottom:879.933333pt;}
.y9f{bottom:884.093333pt;}
.yd0{bottom:888.253333pt;}
.y1d0{bottom:889.533333pt;}
.y11f{bottom:890.813333pt;}
.y75{bottom:892.093333pt;}
.y42{bottom:897.533333pt;}
.ycf{bottom:905.853333pt;}
.y1ac{bottom:906.173333pt;}
.y1cf{bottom:907.133333pt;}
.y11e{bottom:908.413333pt;}
.y74{bottom:909.693333pt;}
.y6{bottom:913.213333pt;}
.y41{bottom:915.133333pt;}
.yce{bottom:923.453333pt;}
.y1ab{bottom:923.773333pt;}
.y1ce{bottom:924.733333pt;}
.y11d{bottom:926.013333pt;}
.y73{bottom:927.293333pt;}
.y40{bottom:932.733333pt;}
.y5{bottom:935.293333pt;}
.ycd{bottom:941.053333pt;}
.y1aa{bottom:942.653333pt;}
.y11c{bottom:943.613333pt;}
.y1cd{bottom:943.933333pt;}
.y72{bottom:944.893333pt;}
.y4{bottom:953.533333pt;}
.ycc{bottom:958.693333pt;}
.y1a9{bottom:960.293333pt;}
.y11a{bottom:961.253333pt;}
.y1cc{bottom:961.573333pt;}
.y71{bottom:962.533333pt;}
.y3f{bottom:963.813333pt;}
.y11b{bottom:966.053333pt;}
.y3{bottom:972.453333pt;}
.y14e{bottom:974.053333pt;}
.y118{bottom:974.373333pt;}
.ycb{bottom:976.293333pt;}
.y1a8{bottom:979.173333pt;}
.y70{bottom:980.453333pt;}
.y3e{bottom:988.773333pt;}
.y2{bottom:990.693333pt;}
.yca{bottom:993.893333pt;}
.y1a7{bottom:996.773333pt;}
.y6f{bottom:998.053333pt;}
.y1{bottom:1005.733333pt;}
.y3d{bottom:1010.853333pt;}
.y1a6{bottom:1014.373333pt;}
.y14d{bottom:1015.333333pt;}
.y6e{bottom:1015.653333pt;}
.y3c{bottom:1036.773333pt;}
.y3b{bottom:1049.253333pt;}
.y3a{bottom:1067.813333pt;}
.y39{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.hd{height:15.360000pt;}
.he{height:17.600000pt;}
.h14{height:28.192000pt;}
.h12{height:28.480000pt;}
.hb{height:30.982500pt;}
.h5{height:35.553750pt;}
.h7{height:43.605000pt;}
.h2{height:47.748750pt;}
.h4{height:48.195000pt;}
.h16{height:50.182500pt;}
.ha{height:52.455625pt;}
.h17{height:52.785000pt;}
.hf{height:52.832000pt;}
.h11{height:53.120000pt;}
.h3{height:56.843750pt;}
.h9{height:76.170625pt;}
.h10{height:105.952000pt;}
.h13{height:339.293333pt;}
.h15{height:367.773333pt;}
.hc{height:475.973333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:150.466667pt;}
.wa{width:296.453333pt;}
.wb{width:296.773333pt;}
.w7{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w6{width:303.493333pt;}
.w5{width:604.413333pt;}
.w1{width:793.333333pt;}
.w9{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1e{left:5.120000pt;}
.x9{left:7.680000pt;}
.x7{left:94.431988pt;}
.x1c{left:98.911988pt;}
.x12{left:104.031988pt;}
.xd{left:112.991988pt;}
.x20{left:118.463988pt;}
.x21{left:142.466655pt;}
.xb{left:143.426655pt;}
.xf{left:160.706655pt;}
.x15{left:169.346643pt;}
.x16{left:173.826655pt;}
.x18{left:180.226643pt;}
.x19{left:184.706655pt;}
.x1a{left:192.706655pt;}
.x1d{left:214.493322pt;}
.x17{left:220.893322pt;}
.x2{left:226.013322pt;}
.x6{left:243.613322pt;}
.x13{left:246.493322pt;}
.xc{left:256.413322pt;}
.xa{left:270.533333pt;}
.x1b{left:286.533322pt;}
.xe{left:292.933322pt;}
.x11{left:302.208000pt;}
.x5{left:322.373322pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x8{left:396.959988pt;}
.x10{left:397.920000pt;}
.x1f{left:398.880000pt;}
.x14{left:548.386667pt;}
.x1{left:699.493322pt;}
}




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