
    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_07508073d5617c9a5afe4824.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c56a709e2c090e96ed832377.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_6925e4871dd5f7b20a292dd1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_fbea5709a2b49d3b5ec36445.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_cf5b54b838ee9f69dcdff9c4.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;}
.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:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls20{letter-spacing:-0.960000px;}
.ls11{letter-spacing:-0.786000px;}
.ls1d{letter-spacing:-0.579600px;}
.ls1a{letter-spacing:-0.544800px;}
.ls26{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.ls10{letter-spacing:-0.298200px;}
.ls6{letter-spacing:-0.292200px;}
.ls16{letter-spacing:-0.214800px;}
.ls17{letter-spacing:-0.186600px;}
.ls4{letter-spacing:-0.132600px;}
.ls22{letter-spacing:-0.115800px;}
.ls25{letter-spacing:-0.107400px;}
.ls1c{letter-spacing:-0.078600px;}
.ls7{letter-spacing:-0.058320px;}
.ls21{letter-spacing:-0.001440px;}
.ls2{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.023760px;}
.ls3{letter-spacing:0.038880px;}
.ls9{letter-spacing:0.149760px;}
.ls0{letter-spacing:0.150000px;}
.lsa{letter-spacing:0.174000px;}
.lsc{letter-spacing:0.174240px;}
.ls24{letter-spacing:0.175200px;}
.ls1e{letter-spacing:0.179280px;}
.ls8{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.186600px;}
.ls12{letter-spacing:0.243600px;}
.ls19{letter-spacing:0.249000px;}
.ls14{letter-spacing:0.254880px;}
.ls13{letter-spacing:0.306000px;}
.lsb{letter-spacing:0.393600px;}
.ls1{letter-spacing:0.427680px;}
.ls15{letter-spacing:0.479520px;}
.lsf{letter-spacing:0.493200px;}
.lse{letter-spacing:0.654000px;}
.ls18{letter-spacing:0.894240px;}
.lsd{letter-spacing:1.026000px;}
.ls28{letter-spacing:12.186720px;}
.ls27{letter-spacing:42.570720px;}
.ls23{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.wsa{word-spacing:-13.899360px;}
.wsc{word-spacing:-13.811760px;}
.wsb{word-spacing:-13.749360px;}
.ws11{word-spacing:-13.692360px;}
.ws10{word-spacing:-13.685040px;}
.ws12{word-spacing:-13.680960px;}
.ws7{word-spacing:-13.505760px;}
.ws8{word-spacing:-13.447440px;}
.wsf{word-spacing:-13.427160px;}
.ws13{word-spacing:-13.398360px;}
.wse{word-spacing:-13.319160px;}
.wsd{word-spacing:-13.290960px;}
.ws5{word-spacing:-9.437760px;}
.ws4{word-spacing:-9.145560px;}
.ws6{word-spacing:-8.786880px;}
.ws9{word-spacing:0.000000px;}
._1e{margin-left:-532.918560px;}
._1f{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._17{margin-left:-247.991040px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-222.774000px;}
._22{margin-left:-214.738560px;}
._f{margin-left:-203.010240px;}
._19{margin-left:-201.453120px;}
._18{margin-left:-200.226720px;}
._21{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._27{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._10{margin-left:-159.758400px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._26{margin-left:-145.150080px;}
._c{margin-left:-134.192160px;}
._20{margin-left:-133.011360px;}
._11{margin-left:-115.522560px;}
._25{margin-left:-109.364160px;}
._1d{margin-left:-102.529440px;}
._7{margin-left:-91.124880px;}
._1c{margin-left:-86.399760px;}
._1b{margin-left:-83.520000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._23{margin-left:-53.422560px;}
._14{margin-left:-49.123920px;}
._24{margin-left:-35.389440px;}
._1a{margin-left:-31.530240px;}
._29{margin-left:-3.986880px;}
._28{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._2a{width:1.053360px;}
._2b{width:2.364000px;}
._2f{width:3.764880px;}
._2e{width:5.079600px;}
._34{width:6.178320px;}
._35{width:7.371600px;}
._2d{width:8.426160px;}
._2c{width:9.583200px;}
._31{width:10.838880px;}
._30{width:12.131280px;}
._33{width:14.740320px;}
._32{width:15.976320px;}
._36{width:17.419680px;}
._3a{width:19.496880px;}
._39{width:20.579760px;}
._38{width:22.193280px;}
._37{width:23.425920px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs6{font-size:23.760000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb5{bottom:3.960000px;}
.yf6{bottom:7.920000px;}
.yf4{bottom:8.100000px;}
.ye9{bottom:22.140000px;}
.yf2{bottom:22.320000px;}
.yba{bottom:23.070000px;}
.yb8{bottom:23.400000px;}
.yb7{bottom:41.760000px;}
.yc5{bottom:42.120000px;}
.yb6{bottom:42.480000px;}
.y6{bottom:59.940000px;}
.yb3{bottom:60.840000px;}
.ybe{bottom:80.100000px;}
.y10f{bottom:89.316000px;}
.yb1{bottom:91.656000px;}
.y12b{bottom:93.276000px;}
.yd6{bottom:93.636000px;}
.y32{bottom:96.876000px;}
.y94{bottom:98.316000px;}
.y11f{bottom:104.256000px;}
.ye0{bottom:107.136000px;}
.yb0{bottom:108.756000px;}
.y106{bottom:110.196000px;}
.y12a{bottom:113.256000px;}
.yd5{bottom:114.696000px;}
.y65{bottom:116.316000px;}
.y31{bottom:117.936000px;}
.y93{bottom:119.376000px;}
.y11e{bottom:125.316000px;}
.ydf{bottom:129.636000px;}
.y129{bottom:134.316000px;}
.yd4{bottom:135.756000px;}
.y64{bottom:137.376000px;}
.y30{bottom:138.996000px;}
.y105{bottom:140.256000px;}
.y92{bottom:140.436000px;}
.y11d{bottom:146.376000px;}
.y10e{bottom:149.436000px;}
.y128{bottom:155.370000px;}
.yd3{bottom:156.810000px;}
.y63{bottom:158.430000px;}
.y2f{bottom:160.050000px;}
.y104{bottom:161.310000px;}
.y91{bottom:161.490000px;}
.yde{bottom:162.390000px;}
.y11c{bottom:167.430000px;}
.y127{bottom:176.430000px;}
.yd2{bottom:177.870000px;}
.y62{bottom:179.490000px;}
.y2e{bottom:181.110000px;}
.y103{bottom:182.370000px;}
.y90{bottom:182.550000px;}
.ydd{bottom:183.450000px;}
.y11b{bottom:188.490000px;}
.y126{bottom:197.490000px;}
.yd1{bottom:198.930000px;}
.y61{bottom:200.550000px;}
.y2d{bottom:202.170000px;}
.y102{bottom:203.430000px;}
.y8f{bottom:203.610000px;}
.ydc{bottom:204.510000px;}
.y11a{bottom:209.550000px;}
.y125{bottom:218.550000px;}
.yd0{bottom:219.990000px;}
.y60{bottom:221.610000px;}
.y2c{bottom:223.230000px;}
.y101{bottom:224.490000px;}
.y8e{bottom:224.670000px;}
.ydb{bottom:225.570000px;}
.y119{bottom:230.610000px;}
.y124{bottom:239.610000px;}
.ycf{bottom:241.050000px;}
.y5f{bottom:242.670000px;}
.y2b{bottom:244.290000px;}
.y100{bottom:245.550000px;}
.y8d{bottom:245.730000px;}
.yda{bottom:246.630000px;}
.y118{bottom:251.670000px;}
.y123{bottom:260.670000px;}
.yce{bottom:262.110000px;}
.y10d{bottom:263.730000px;}
.y2a{bottom:265.350000px;}
.yff{bottom:266.610000px;}
.y8c{bottom:266.790000px;}
.yd9{bottom:267.690000px;}
.y5e{bottom:272.730000px;}
.ycd{bottom:277.230000px;}
.y122{bottom:281.730000px;}
.y10c{bottom:284.790000px;}
.y29{bottom:286.410000px;}
.yfe{bottom:287.670000px;}
.y8b{bottom:287.850000px;}
.yd8{bottom:288.750000px;}
.y5d{bottom:293.790000px;}
.ycc{bottom:296.310000px;}
.y121{bottom:302.790000px;}
.y10b{bottom:305.850000px;}
.yd7{bottom:306.030000px;}
.y28{bottom:307.470000px;}
.yfd{bottom:308.730000px;}
.y5c{bottom:314.850000px;}
.ycb{bottom:315.390000px;}
.y8a{bottom:317.910000px;}
.y120{bottom:323.850000px;}
.y10a{bottom:326.910000px;}
.y27{bottom:328.575000px;}
.yfc{bottom:329.835000px;}
.yca{bottom:334.335000px;}
.y5b{bottom:335.955000px;}
.y89{bottom:339.015000px;}
.y117{bottom:344.955000px;}
.yaf{bottom:348.015000px;}
.y26{bottom:349.635000px;}
.yfb{bottom:350.895000px;}
.yc9{bottom:353.415000px;}
.y5a{bottom:357.015000px;}
.y88{bottom:360.075000px;}
.y116{bottom:366.015000px;}
.yae{bottom:369.075000px;}
.y25{bottom:370.695000px;}
.yfa{bottom:371.955000px;}
.yc8{bottom:372.495000px;}
.y59{bottom:378.075000px;}
.y87{bottom:381.135000px;}
.y115{bottom:387.075000px;}
.yf9{bottom:389.055000px;}
.yad{bottom:390.135000px;}
.yc4{bottom:391.575000px;}
.y24{bottom:391.755000px;}
.y58{bottom:399.135000px;}
.y86{bottom:402.195000px;}
.y114{bottom:408.135000px;}
.yc7{bottom:410.655000px;}
.yac{bottom:411.195000px;}
.y23{bottom:412.815000px;}
.y57{bottom:420.195000px;}
.y85{bottom:423.255000px;}
.y113{bottom:429.195000px;}
.yc6{bottom:429.735000px;}
.yab{bottom:432.255000px;}
.y22{bottom:433.875000px;}
.y56{bottom:441.255000px;}
.y84{bottom:444.315000px;}
.yc3{bottom:448.815000px;}
.y112{bottom:450.255000px;}
.yaa{bottom:453.315000px;}
.y21{bottom:454.935000px;}
.y55{bottom:462.315000px;}
.y83{bottom:465.375000px;}
.ybd{bottom:467.895000px;}
.y111{bottom:471.315000px;}
.ya9{bottom:474.375000px;}
.y20{bottom:475.995000px;}
.y54{bottom:483.375000px;}
.y82{bottom:486.435000px;}
.yc2{bottom:486.975000px;}
.y110{bottom:492.375000px;}
.ya8{bottom:495.435000px;}
.y1f{bottom:497.055000px;}
.yc1{bottom:505.875000px;}
.y81{bottom:507.495000px;}
.y53{bottom:513.435000px;}
.ya7{bottom:516.495000px;}
.y1e{bottom:518.115000px;}
.yc0{bottom:524.955000px;}
.y80{bottom:528.555000px;}
.y52{bottom:534.495000px;}
.y109{bottom:537.555000px;}
.y1d{bottom:539.175000px;}
.ybf{bottom:544.035000px;}
.ya6{bottom:546.555000px;}
.y7f{bottom:549.615000px;}
.y51{bottom:555.555000px;}
.y108{bottom:558.615000px;}
.y1c{bottom:560.235000px;}
.ybc{bottom:563.115000px;}
.ya5{bottom:567.615000px;}
.y7e{bottom:570.675000px;}
.y50{bottom:576.615000px;}
.y107{bottom:579.675000px;}
.y1b{bottom:581.295000px;}
.yb9{bottom:582.195000px;}
.ya4{bottom:588.675000px;}
.y7d{bottom:591.735000px;}
.y4f{bottom:597.705000px;}
.ybb{bottom:601.305000px;}
.y1a{bottom:602.385000px;}
.ya3{bottom:609.765000px;}
.y7c{bottom:612.825000px;}
.y4e{bottom:618.765000px;}
.yb2{bottom:620.385000px;}
.y19{bottom:623.445000px;}
.ya2{bottom:630.825000px;}
.y7b{bottom:633.885000px;}
.y4d{bottom:639.825000px;}
.ya1{bottom:651.885000px;}
.y7a{bottom:654.945000px;}
.y18{bottom:655.845000px;}
.y4c{bottom:660.885000px;}
.y17{bottom:672.765000px;}
.ya0{bottom:672.945000px;}
.y79{bottom:676.005000px;}
.yb4{bottom:677.265000px;}
.y4b{bottom:681.945000px;}
.yf8{bottom:683.745000px;}
.y16{bottom:685.185000px;}
.y9f{bottom:694.005000px;}
.y78{bottom:697.065000px;}
.yf7{bottom:698.865000px;}
.y4a{bottom:703.005000px;}
.y15{bottom:706.245000px;}
.y9e{bottom:715.065000px;}
.y49{bottom:724.065000px;}
.y77{bottom:727.125000px;}
.y14{bottom:727.305000px;}
.y9d{bottom:736.125000px;}
.yf5{bottom:736.305000px;}
.y48{bottom:745.125000px;}
.y76{bottom:748.005000px;}
.y13{bottom:748.365000px;}
.y9c{bottom:757.005000px;}
.yf3{bottom:759.345000px;}
.y47{bottom:766.005000px;}
.y75{bottom:769.065000px;}
.y12{bottom:769.425000px;}
.y9b{bottom:778.065000px;}
.yf1{bottom:782.565000px;}
.y46{bottom:787.065000px;}
.y74{bottom:790.125000px;}
.y11{bottom:790.485000px;}
.y9a{bottom:799.125000px;}
.y45{bottom:808.125000px;}
.y73{bottom:811.185000px;}
.y10{bottom:811.545000px;}
.y99{bottom:820.185000px;}
.y44{bottom:829.185000px;}
.y72{bottom:832.245000px;}
.yf{bottom:832.605000px;}
.yf0{bottom:835.665000px;}
.y98{bottom:841.245000px;}
.y43{bottom:850.245000px;}
.y71{bottom:853.305000px;}
.ye{bottom:853.665000px;}
.yef{bottom:856.725000px;}
.y97{bottom:862.350000px;}
.y42{bottom:871.350000px;}
.y70{bottom:874.410000px;}
.yd{bottom:874.770000px;}
.yee{bottom:877.830000px;}
.y96{bottom:883.410000px;}
.y41{bottom:892.410000px;}
.y6f{bottom:895.470000px;}
.yc{bottom:897.990000px;}
.yed{bottom:898.890000px;}
.y95{bottom:904.470000px;}
.y40{bottom:913.470000px;}
.yec{bottom:914.010000px;}
.yb{bottom:924.270000px;}
.y6e{bottom:925.530000px;}
.yeb{bottom:933.090000px;}
.y3f{bottom:934.530000px;}
.ya{bottom:941.010000px;}
.y6d{bottom:946.590000px;}
.yea{bottom:952.170000px;}
.y3e{bottom:955.590000px;}
.y9{bottom:963.330000px;}
.y6c{bottom:967.650000px;}
.ye8{bottom:971.250000px;}
.y3d{bottom:976.650000px;}
.y8{bottom:986.550000px;}
.y6b{bottom:988.710000px;}
.y3c{bottom:997.710000px;}
.y6a{bottom:1009.770000px;}
.ye7{bottom:1015.170000px;}
.y7{bottom:1018.050000px;}
.y3b{bottom:1018.770000px;}
.y69{bottom:1030.830000px;}
.ye6{bottom:1036.230000px;}
.y3a{bottom:1039.830000px;}
.y68{bottom:1051.890000px;}
.ye5{bottom:1057.290000px;}
.y5{bottom:1058.190000px;}
.y39{bottom:1060.890000px;}
.y67{bottom:1072.950000px;}
.ye4{bottom:1078.350000px;}
.y38{bottom:1081.950000px;}
.y4{bottom:1090.410000px;}
.y66{bottom:1094.010000px;}
.ye3{bottom:1099.410000px;}
.y37{bottom:1103.010000px;}
.ye2{bottom:1114.530000px;}
.y3{bottom:1122.630000px;}
.y36{bottom:1124.070000px;}
.ye1{bottom:1137.060000px;}
.y35{bottom:1145.160000px;}
.y2{bottom:1154.700000px;}
.y34{bottom:1173.060000px;}
.y1{bottom:1188.720000px;}
.y33{bottom:1193.220000px;}
.hb{height:18.180000px;}
.h12{height:18.216000px;}
.he{height:18.360000px;}
.hf{height:18.396000px;}
.h14{height:21.600000px;}
.h15{height:21.780000px;}
.h16{height:21.816000px;}
.h1a{height:22.320000px;}
.h19{height:22.500000px;}
.h9{height:24.328477px;}
.h13{height:25.380000px;}
.h17{height:36.540000px;}
.h18{height:36.720000px;}
.hd{height:37.476000px;}
.h7{height:38.671172px;}
.hc{height:55.980000px;}
.h11{height:56.520000px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.ha{height:75.060000px;}
.h2{height:86.255508px;}
.h10{height:94.500000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:45.720000px;}
.w15{width:70.596000px;}
.w14{width:94.500000px;}
.w13{width:98.676000px;}
.wc{width:110.376000px;}
.w16{width:115.380000px;}
.w4{width:128.376000px;}
.wf{width:135.756000px;}
.wd{width:146.880000px;}
.w7{width:153.570000px;}
.w5{width:159.120000px;}
.we{width:182.370000px;}
.w6{width:185.970000px;}
.w11{width:210.450000px;}
.w10{width:211.350000px;}
.wb{width:214.770000px;}
.w9{width:288.210000px;}
.wa{width:309.315000px;}
.w8{width:334.650000px;}
.w12{width:344.235000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:7.740000px;}
.x6{left:53.999987px;}
.x1e{left:59.399987px;}
.x13{left:75.420000px;}
.x20{left:80.999987px;}
.x17{left:83.340000px;}
.x1f{left:86.399987px;}
.x9{left:108.756000px;}
.xa{left:155.190000px;}
.x5{left:168.509987px;}
.x14{left:258.510000px;}
.xb{left:284.295000px;}
.x3{left:286.814987px;}
.x8{left:328.034987px;}
.x2{left:350.714987px;}
.x10{left:364.935000px;}
.x1d{left:377.534987px;}
.x15{left:395.175000px;}
.x4{left:419.294987px;}
.x18{left:428.295000px;}
.xc{left:444.135000px;}
.x1{left:479.444987px;}
.x19{left:527.685000px;}
.x11{left:580.425000px;}
.x16{left:607.245000px;}
.x1a{left:623.085000px;}
.xd{left:630.825000px;}
.x12{left:691.530000px;}
.x1b{left:694.410000px;}
.x7{left:695.489987px;}
.xe{left:714.749987px;}
.x1c{left:746.969987px;}
.x21{left:839.309987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls20{letter-spacing:-0.853333pt;}
.ls11{letter-spacing:-0.698667pt;}
.ls1d{letter-spacing:-0.515200pt;}
.ls1a{letter-spacing:-0.484267pt;}
.ls26{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls10{letter-spacing:-0.265067pt;}
.ls6{letter-spacing:-0.259733pt;}
.ls16{letter-spacing:-0.190933pt;}
.ls17{letter-spacing:-0.165867pt;}
.ls4{letter-spacing:-0.117867pt;}
.ls22{letter-spacing:-0.102933pt;}
.ls25{letter-spacing:-0.095467pt;}
.ls1c{letter-spacing:-0.069867pt;}
.ls7{letter-spacing:-0.051840pt;}
.ls21{letter-spacing:-0.001280pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.021120pt;}
.ls3{letter-spacing:0.034560pt;}
.ls9{letter-spacing:0.133120pt;}
.ls0{letter-spacing:0.133333pt;}
.lsa{letter-spacing:0.154667pt;}
.lsc{letter-spacing:0.154880pt;}
.ls24{letter-spacing:0.155733pt;}
.ls1e{letter-spacing:0.159360pt;}
.ls8{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.165867pt;}
.ls12{letter-spacing:0.216533pt;}
.ls19{letter-spacing:0.221333pt;}
.ls14{letter-spacing:0.226560pt;}
.ls13{letter-spacing:0.272000pt;}
.lsb{letter-spacing:0.349867pt;}
.ls1{letter-spacing:0.380160pt;}
.ls15{letter-spacing:0.426240pt;}
.lsf{letter-spacing:0.438400pt;}
.lse{letter-spacing:0.581333pt;}
.ls18{letter-spacing:0.794880pt;}
.lsd{letter-spacing:0.912000pt;}
.ls28{letter-spacing:10.832640pt;}
.ls27{letter-spacing:37.840640pt;}
.ls23{letter-spacing:40.912640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.wsa{word-spacing:-12.354987pt;}
.wsc{word-spacing:-12.277120pt;}
.wsb{word-spacing:-12.221653pt;}
.ws11{word-spacing:-12.170987pt;}
.ws10{word-spacing:-12.164480pt;}
.ws12{word-spacing:-12.160853pt;}
.ws7{word-spacing:-12.005120pt;}
.ws8{word-spacing:-11.953280pt;}
.wsf{word-spacing:-11.935253pt;}
.ws13{word-spacing:-11.909653pt;}
.wse{word-spacing:-11.839253pt;}
.wsd{word-spacing:-11.814187pt;}
.ws5{word-spacing:-8.389120pt;}
.ws4{word-spacing:-8.129387pt;}
.ws6{word-spacing:-7.810560pt;}
.ws9{word-spacing:0.000000pt;}
._1e{margin-left:-473.705387pt;}
._1f{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._17{margin-left:-220.436480pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-198.021333pt;}
._22{margin-left:-190.878720pt;}
._f{margin-left:-180.453547pt;}
._19{margin-left:-179.069440pt;}
._18{margin-left:-177.979307pt;}
._21{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._27{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._10{margin-left:-142.007467pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._26{margin-left:-129.022293pt;}
._c{margin-left:-119.281920pt;}
._20{margin-left:-118.232320pt;}
._11{margin-left:-102.686720pt;}
._25{margin-left:-97.212587pt;}
._1d{margin-left:-91.137280pt;}
._7{margin-left:-80.999893pt;}
._1c{margin-left:-76.799787pt;}
._1b{margin-left:-74.240000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._23{margin-left:-47.486720pt;}
._14{margin-left:-43.665707pt;}
._24{margin-left:-31.457280pt;}
._1a{margin-left:-28.026880pt;}
._29{margin-left:-3.543893pt;}
._28{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._2a{width:0.936320pt;}
._2b{width:2.101333pt;}
._2f{width:3.346560pt;}
._2e{width:4.515200pt;}
._34{width:5.491840pt;}
._35{width:6.552533pt;}
._2d{width:7.489920pt;}
._2c{width:8.518400pt;}
._31{width:9.634560pt;}
._30{width:10.783360pt;}
._33{width:13.102507pt;}
._32{width:14.201173pt;}
._36{width:15.484160pt;}
._3a{width:17.330560pt;}
._39{width:18.293120pt;}
._38{width:19.727360pt;}
._37{width:20.823040pt;}
.fs6{font-size:21.120000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb5{bottom:3.520000pt;}
.yf6{bottom:7.040000pt;}
.yf4{bottom:7.200000pt;}
.ye9{bottom:19.680000pt;}
.yf2{bottom:19.840000pt;}
.yba{bottom:20.506667pt;}
.yb8{bottom:20.800000pt;}
.yb7{bottom:37.120000pt;}
.yc5{bottom:37.440000pt;}
.yb6{bottom:37.760000pt;}
.y6{bottom:53.280000pt;}
.yb3{bottom:54.080000pt;}
.ybe{bottom:71.200000pt;}
.y10f{bottom:79.392000pt;}
.yb1{bottom:81.472000pt;}
.y12b{bottom:82.912000pt;}
.yd6{bottom:83.232000pt;}
.y32{bottom:86.112000pt;}
.y94{bottom:87.392000pt;}
.y11f{bottom:92.672000pt;}
.ye0{bottom:95.232000pt;}
.yb0{bottom:96.672000pt;}
.y106{bottom:97.952000pt;}
.y12a{bottom:100.672000pt;}
.yd5{bottom:101.952000pt;}
.y65{bottom:103.392000pt;}
.y31{bottom:104.832000pt;}
.y93{bottom:106.112000pt;}
.y11e{bottom:111.392000pt;}
.ydf{bottom:115.232000pt;}
.y129{bottom:119.392000pt;}
.yd4{bottom:120.672000pt;}
.y64{bottom:122.112000pt;}
.y30{bottom:123.552000pt;}
.y105{bottom:124.672000pt;}
.y92{bottom:124.832000pt;}
.y11d{bottom:130.112000pt;}
.y10e{bottom:132.832000pt;}
.y128{bottom:138.106667pt;}
.yd3{bottom:139.386667pt;}
.y63{bottom:140.826667pt;}
.y2f{bottom:142.266667pt;}
.y104{bottom:143.386667pt;}
.y91{bottom:143.546667pt;}
.yde{bottom:144.346667pt;}
.y11c{bottom:148.826667pt;}
.y127{bottom:156.826667pt;}
.yd2{bottom:158.106667pt;}
.y62{bottom:159.546667pt;}
.y2e{bottom:160.986667pt;}
.y103{bottom:162.106667pt;}
.y90{bottom:162.266667pt;}
.ydd{bottom:163.066667pt;}
.y11b{bottom:167.546667pt;}
.y126{bottom:175.546667pt;}
.yd1{bottom:176.826667pt;}
.y61{bottom:178.266667pt;}
.y2d{bottom:179.706667pt;}
.y102{bottom:180.826667pt;}
.y8f{bottom:180.986667pt;}
.ydc{bottom:181.786667pt;}
.y11a{bottom:186.266667pt;}
.y125{bottom:194.266667pt;}
.yd0{bottom:195.546667pt;}
.y60{bottom:196.986667pt;}
.y2c{bottom:198.426667pt;}
.y101{bottom:199.546667pt;}
.y8e{bottom:199.706667pt;}
.ydb{bottom:200.506667pt;}
.y119{bottom:204.986667pt;}
.y124{bottom:212.986667pt;}
.ycf{bottom:214.266667pt;}
.y5f{bottom:215.706667pt;}
.y2b{bottom:217.146667pt;}
.y100{bottom:218.266667pt;}
.y8d{bottom:218.426667pt;}
.yda{bottom:219.226667pt;}
.y118{bottom:223.706667pt;}
.y123{bottom:231.706667pt;}
.yce{bottom:232.986667pt;}
.y10d{bottom:234.426667pt;}
.y2a{bottom:235.866667pt;}
.yff{bottom:236.986667pt;}
.y8c{bottom:237.146667pt;}
.yd9{bottom:237.946667pt;}
.y5e{bottom:242.426667pt;}
.ycd{bottom:246.426667pt;}
.y122{bottom:250.426667pt;}
.y10c{bottom:253.146667pt;}
.y29{bottom:254.586667pt;}
.yfe{bottom:255.706667pt;}
.y8b{bottom:255.866667pt;}
.yd8{bottom:256.666667pt;}
.y5d{bottom:261.146667pt;}
.ycc{bottom:263.386667pt;}
.y121{bottom:269.146667pt;}
.y10b{bottom:271.866667pt;}
.yd7{bottom:272.026667pt;}
.y28{bottom:273.306667pt;}
.yfd{bottom:274.426667pt;}
.y5c{bottom:279.866667pt;}
.ycb{bottom:280.346667pt;}
.y8a{bottom:282.586667pt;}
.y120{bottom:287.866667pt;}
.y10a{bottom:290.586667pt;}
.y27{bottom:292.066667pt;}
.yfc{bottom:293.186667pt;}
.yca{bottom:297.186667pt;}
.y5b{bottom:298.626667pt;}
.y89{bottom:301.346667pt;}
.y117{bottom:306.626667pt;}
.yaf{bottom:309.346667pt;}
.y26{bottom:310.786667pt;}
.yfb{bottom:311.906667pt;}
.yc9{bottom:314.146667pt;}
.y5a{bottom:317.346667pt;}
.y88{bottom:320.066667pt;}
.y116{bottom:325.346667pt;}
.yae{bottom:328.066667pt;}
.y25{bottom:329.506667pt;}
.yfa{bottom:330.626667pt;}
.yc8{bottom:331.106667pt;}
.y59{bottom:336.066667pt;}
.y87{bottom:338.786667pt;}
.y115{bottom:344.066667pt;}
.yf9{bottom:345.826667pt;}
.yad{bottom:346.786667pt;}
.yc4{bottom:348.066667pt;}
.y24{bottom:348.226667pt;}
.y58{bottom:354.786667pt;}
.y86{bottom:357.506667pt;}
.y114{bottom:362.786667pt;}
.yc7{bottom:365.026667pt;}
.yac{bottom:365.506667pt;}
.y23{bottom:366.946667pt;}
.y57{bottom:373.506667pt;}
.y85{bottom:376.226667pt;}
.y113{bottom:381.506667pt;}
.yc6{bottom:381.986667pt;}
.yab{bottom:384.226667pt;}
.y22{bottom:385.666667pt;}
.y56{bottom:392.226667pt;}
.y84{bottom:394.946667pt;}
.yc3{bottom:398.946667pt;}
.y112{bottom:400.226667pt;}
.yaa{bottom:402.946667pt;}
.y21{bottom:404.386667pt;}
.y55{bottom:410.946667pt;}
.y83{bottom:413.666667pt;}
.ybd{bottom:415.906667pt;}
.y111{bottom:418.946667pt;}
.ya9{bottom:421.666667pt;}
.y20{bottom:423.106667pt;}
.y54{bottom:429.666667pt;}
.y82{bottom:432.386667pt;}
.yc2{bottom:432.866667pt;}
.y110{bottom:437.666667pt;}
.ya8{bottom:440.386667pt;}
.y1f{bottom:441.826667pt;}
.yc1{bottom:449.666667pt;}
.y81{bottom:451.106667pt;}
.y53{bottom:456.386667pt;}
.ya7{bottom:459.106667pt;}
.y1e{bottom:460.546667pt;}
.yc0{bottom:466.626667pt;}
.y80{bottom:469.826667pt;}
.y52{bottom:475.106667pt;}
.y109{bottom:477.826667pt;}
.y1d{bottom:479.266667pt;}
.ybf{bottom:483.586667pt;}
.ya6{bottom:485.826667pt;}
.y7f{bottom:488.546667pt;}
.y51{bottom:493.826667pt;}
.y108{bottom:496.546667pt;}
.y1c{bottom:497.986667pt;}
.ybc{bottom:500.546667pt;}
.ya5{bottom:504.546667pt;}
.y7e{bottom:507.266667pt;}
.y50{bottom:512.546667pt;}
.y107{bottom:515.266667pt;}
.y1b{bottom:516.706667pt;}
.yb9{bottom:517.506667pt;}
.ya4{bottom:523.266667pt;}
.y7d{bottom:525.986667pt;}
.y4f{bottom:531.293333pt;}
.ybb{bottom:534.493333pt;}
.y1a{bottom:535.453333pt;}
.ya3{bottom:542.013333pt;}
.y7c{bottom:544.733333pt;}
.y4e{bottom:550.013333pt;}
.yb2{bottom:551.453333pt;}
.y19{bottom:554.173333pt;}
.ya2{bottom:560.733333pt;}
.y7b{bottom:563.453333pt;}
.y4d{bottom:568.733333pt;}
.ya1{bottom:579.453333pt;}
.y7a{bottom:582.173333pt;}
.y18{bottom:582.973333pt;}
.y4c{bottom:587.453333pt;}
.y17{bottom:598.013333pt;}
.ya0{bottom:598.173333pt;}
.y79{bottom:600.893333pt;}
.yb4{bottom:602.013333pt;}
.y4b{bottom:606.173333pt;}
.yf8{bottom:607.773333pt;}
.y16{bottom:609.053333pt;}
.y9f{bottom:616.893333pt;}
.y78{bottom:619.613333pt;}
.yf7{bottom:621.213333pt;}
.y4a{bottom:624.893333pt;}
.y15{bottom:627.773333pt;}
.y9e{bottom:635.613333pt;}
.y49{bottom:643.613333pt;}
.y77{bottom:646.333333pt;}
.y14{bottom:646.493333pt;}
.y9d{bottom:654.333333pt;}
.yf5{bottom:654.493333pt;}
.y48{bottom:662.333333pt;}
.y76{bottom:664.893333pt;}
.y13{bottom:665.213333pt;}
.y9c{bottom:672.893333pt;}
.yf3{bottom:674.973333pt;}
.y47{bottom:680.893333pt;}
.y75{bottom:683.613333pt;}
.y12{bottom:683.933333pt;}
.y9b{bottom:691.613333pt;}
.yf1{bottom:695.613333pt;}
.y46{bottom:699.613333pt;}
.y74{bottom:702.333333pt;}
.y11{bottom:702.653333pt;}
.y9a{bottom:710.333333pt;}
.y45{bottom:718.333333pt;}
.y73{bottom:721.053333pt;}
.y10{bottom:721.373333pt;}
.y99{bottom:729.053333pt;}
.y44{bottom:737.053333pt;}
.y72{bottom:739.773333pt;}
.yf{bottom:740.093333pt;}
.yf0{bottom:742.813333pt;}
.y98{bottom:747.773333pt;}
.y43{bottom:755.773333pt;}
.y71{bottom:758.493333pt;}
.ye{bottom:758.813333pt;}
.yef{bottom:761.533333pt;}
.y97{bottom:766.533333pt;}
.y42{bottom:774.533333pt;}
.y70{bottom:777.253333pt;}
.yd{bottom:777.573333pt;}
.yee{bottom:780.293333pt;}
.y96{bottom:785.253333pt;}
.y41{bottom:793.253333pt;}
.y6f{bottom:795.973333pt;}
.yc{bottom:798.213333pt;}
.yed{bottom:799.013333pt;}
.y95{bottom:803.973333pt;}
.y40{bottom:811.973333pt;}
.yec{bottom:812.453333pt;}
.yb{bottom:821.573333pt;}
.y6e{bottom:822.693333pt;}
.yeb{bottom:829.413333pt;}
.y3f{bottom:830.693333pt;}
.ya{bottom:836.453333pt;}
.y6d{bottom:841.413333pt;}
.yea{bottom:846.373333pt;}
.y3e{bottom:849.413333pt;}
.y9{bottom:856.293333pt;}
.y6c{bottom:860.133333pt;}
.ye8{bottom:863.333333pt;}
.y3d{bottom:868.133333pt;}
.y8{bottom:876.933333pt;}
.y6b{bottom:878.853333pt;}
.y3c{bottom:886.853333pt;}
.y6a{bottom:897.573333pt;}
.ye7{bottom:902.373333pt;}
.y7{bottom:904.933333pt;}
.y3b{bottom:905.573333pt;}
.y69{bottom:916.293333pt;}
.ye6{bottom:921.093333pt;}
.y3a{bottom:924.293333pt;}
.y68{bottom:935.013333pt;}
.ye5{bottom:939.813333pt;}
.y5{bottom:940.613333pt;}
.y39{bottom:943.013333pt;}
.y67{bottom:953.733333pt;}
.ye4{bottom:958.533333pt;}
.y38{bottom:961.733333pt;}
.y4{bottom:969.253333pt;}
.y66{bottom:972.453333pt;}
.ye3{bottom:977.253333pt;}
.y37{bottom:980.453333pt;}
.ye2{bottom:990.693333pt;}
.y3{bottom:997.893333pt;}
.y36{bottom:999.173333pt;}
.ye1{bottom:1010.720000pt;}
.y35{bottom:1017.920000pt;}
.y2{bottom:1026.400000pt;}
.y34{bottom:1042.720000pt;}
.y1{bottom:1056.640000pt;}
.y33{bottom:1060.640000pt;}
.hb{height:16.160000pt;}
.h12{height:16.192000pt;}
.he{height:16.320000pt;}
.hf{height:16.352000pt;}
.h14{height:19.200000pt;}
.h15{height:19.360000pt;}
.h16{height:19.392000pt;}
.h1a{height:19.840000pt;}
.h19{height:20.000000pt;}
.h9{height:21.625312pt;}
.h13{height:22.560000pt;}
.h17{height:32.480000pt;}
.h18{height:32.640000pt;}
.hd{height:33.312000pt;}
.h7{height:34.374375pt;}
.hc{height:49.760000pt;}
.h11{height:50.240000pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.ha{height:66.720000pt;}
.h2{height:76.671562pt;}
.h10{height:84.000000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:40.640000pt;}
.w15{width:62.752000pt;}
.w14{width:84.000000pt;}
.w13{width:87.712000pt;}
.wc{width:98.112000pt;}
.w16{width:102.560000pt;}
.w4{width:114.112000pt;}
.wf{width:120.672000pt;}
.wd{width:130.560000pt;}
.w7{width:136.506667pt;}
.w5{width:141.440000pt;}
.we{width:162.106667pt;}
.w6{width:165.306667pt;}
.w11{width:187.066667pt;}
.w10{width:187.866667pt;}
.wb{width:190.906667pt;}
.w9{width:256.186667pt;}
.wa{width:274.946667pt;}
.w8{width:297.466667pt;}
.w12{width:305.986667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.880000pt;}
.x6{left:47.999988pt;}
.x1e{left:52.799988pt;}
.x13{left:67.040000pt;}
.x20{left:71.999988pt;}
.x17{left:74.080000pt;}
.x1f{left:76.799988pt;}
.x9{left:96.672000pt;}
.xa{left:137.946667pt;}
.x5{left:149.786655pt;}
.x14{left:229.786667pt;}
.xb{left:252.706667pt;}
.x3{left:254.946655pt;}
.x8{left:291.586655pt;}
.x2{left:311.746655pt;}
.x10{left:324.386667pt;}
.x1d{left:335.586655pt;}
.x15{left:351.266667pt;}
.x4{left:372.706655pt;}
.x18{left:380.706667pt;}
.xc{left:394.786667pt;}
.x1{left:426.173322pt;}
.x19{left:469.053333pt;}
.x11{left:515.933333pt;}
.x16{left:539.773333pt;}
.x1a{left:553.853333pt;}
.xd{left:560.733333pt;}
.x12{left:614.693333pt;}
.x1b{left:617.253333pt;}
.x7{left:618.213322pt;}
.xe{left:635.333322pt;}
.x1c{left:663.973322pt;}
.x21{left:746.053322pt;}
}




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