
    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_2101925f0c8edad452f2e44e.woff')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_df1b274c1fbfebb7e7ce2c55.woff')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_ff7629666ec2328dec639010.woff')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_b4feb020e884746ba36338c3.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4e7bae59ea4e48c003e367a0.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_69f6be18e1d8d7f0e1dbf367.woff')format("woff");}.ff6{font-family:ff6;line-height:0.855469;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_cf9f6d16430008c58f469fb1.woff')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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls18{letter-spacing:-0.960000px;}
.ls1b{letter-spacing:-0.786000px;}
.ls11{letter-spacing:-0.579600px;}
.ls13{letter-spacing:-0.533400px;}
.ls8{letter-spacing:-0.463800px;}
.ls19{letter-spacing:-0.414000px;}
.lsd{letter-spacing:-0.303000px;}
.ls23{letter-spacing:-0.240600px;}
.lsb{letter-spacing:-0.226200px;}
.ls7{letter-spacing:-0.132600px;}
.ls10{letter-spacing:-0.115800px;}
.ls1d{letter-spacing:-0.107400px;}
.ls24{letter-spacing:-0.069600px;}
.ls12{letter-spacing:-0.058320px;}
.ls26{letter-spacing:-0.041040px;}
.ls2b{letter-spacing:-0.038160px;}
.lsa{letter-spacing:-0.020160px;}
.ls5{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.038880px;}
.ls25{letter-spacing:0.060600px;}
.ls20{letter-spacing:0.066960px;}
.ls15{letter-spacing:0.097200px;}
.ls1e{letter-spacing:0.135360px;}
.ls9{letter-spacing:0.150000px;}
.ls4{letter-spacing:0.174000px;}
.ls14{letter-spacing:0.174240px;}
.ls27{letter-spacing:0.175200px;}
.ls1a{letter-spacing:0.186600px;}
.ls0{letter-spacing:0.214560px;}
.lsf{letter-spacing:0.306000px;}
.ls1{letter-spacing:0.321120px;}
.lse{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.393600px;}
.ls3{letter-spacing:0.479520px;}
.lsc{letter-spacing:0.493800px;}
.ls17{letter-spacing:0.617760px;}
.ls1f{letter-spacing:0.894240px;}
.ls22{letter-spacing:0.953280px;}
.ls21{letter-spacing:2.106720px;}
.ls1c{letter-spacing:5.706720px;}
.ls2c{letter-spacing:12.186720px;}
.ls28{letter-spacing:17.946720px;}
.ls16{letter-spacing:21.546720px;}
.ls2{letter-spacing:38.106720px;}
.ls29{letter-spacing:42.570720px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws4{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws12{word-spacing:-13.899360px;}
.wsd{word-spacing:-13.692360px;}
.ws10{word-spacing:-13.566360px;}
.ws8{word-spacing:-13.505760px;}
.ws13{word-spacing:-13.467600px;}
.ws11{word-spacing:-13.464720px;}
.wsa{word-spacing:-13.447440px;}
.wsf{word-spacing:-13.436160px;}
.wse{word-spacing:-13.398360px;}
.ws9{word-spacing:-13.389960px;}
.ws5{word-spacing:-9.437760px;}
.ws7{word-spacing:-9.146880px;}
.ws6{word-spacing:-8.786880px;}
.wsb{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;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._17{margin-left:-229.991040px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-203.010240px;}
._19{margin-left:-201.453120px;}
._18{margin-left:-200.226720px;}
._22{margin-left:-196.738560px;}
._21{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._27{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._26{margin-left:-145.104000px;}
._10{margin-left:-141.758400px;}
._c{margin-left:-134.192160px;}
._20{margin-left:-133.011360px;}
._11{margin-left:-116.062560px;}
._25{margin-left:-109.410240px;}
._1d{margin-left:-102.529440px;}
._7{margin-left:-91.124880px;}
._1c{margin-left:-86.399760px;}
._1b{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._23{margin-left:-80.367360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.492560px;}
._24{margin-left:-35.130240px;}
._1a{margin-left:-31.530240px;}
._2a{margin-left:-4.412160px;}
._28{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._29{width:1.317240px;}
._2d{width:2.469720px;}
._2f{width:3.811680px;}
._2e{width:5.263200px;}
._30{width:6.799680px;}
._35{width:7.961040px;}
._33{width:9.047520px;}
._32{width:10.296720px;}
._2b{width:11.299680px;}
._2c{width:12.470160px;}
._31{width:15.179040px;}
._39{width:17.091360px;}
._37{width:18.771120px;}
._36{width:20.318400px;}
._3d{width:22.649040px;}
._3a{width:23.784480px;}
._3c{width:27.250560px;}
._3b{width:28.326240px;}
._38{width:37.350000px;}
._34{width:537.324360px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yc8{bottom:6.480000px;}
.y20{bottom:6.660000px;}
.y8f{bottom:6.705000px;}
.y8c{bottom:7.740000px;}
.y9c{bottom:7.920000px;}
.y97{bottom:9.000000px;}
.y93{bottom:14.040000px;}
.y90{bottom:17.145000px;}
.y98{bottom:19.440000px;}
.y94{bottom:24.660000px;}
.y21{bottom:27.720000px;}
.y8e{bottom:27.765000px;}
.y96{bottom:30.060000px;}
.y92{bottom:35.100000px;}
.yc3{bottom:49.500000px;}
.y6{bottom:61.416000px;}
.y54{bottom:93.456000px;}
.ye6{bottom:97.056000px;}
.yb5{bottom:98.856000px;}
.y12a{bottom:106.596000px;}
.y85{bottom:109.476000px;}
.y53{bottom:114.516000px;}
.y105{bottom:115.416000px;}
.yc6{bottom:115.560000px;}
.yb4{bottom:115.956000px;}
.ye5{bottom:118.116000px;}
.y84{bottom:130.536000px;}
.y52{bottom:135.576000px;}
.y104{bottom:136.476000px;}
.ye4{bottom:139.176000px;}
.yb3{bottom:142.776000px;}
.y2e{bottom:147.816000px;}
.y83{bottom:151.590000px;}
.y51{bottom:156.630000px;}
.y103{bottom:157.530000px;}
.ye3{bottom:160.230000px;}
.yb2{bottom:163.830000px;}
.y2d{bottom:168.870000px;}
.y82{bottom:172.650000px;}
.y129{bottom:175.530000px;}
.y50{bottom:177.690000px;}
.y102{bottom:178.590000px;}
.ye2{bottom:181.290000px;}
.yb1{bottom:184.890000px;}
.y2c{bottom:189.930000px;}
.y81{bottom:193.710000px;}
.y128{bottom:196.590000px;}
.y4f{bottom:198.750000px;}
.y101{bottom:199.650000px;}
.yb0{bottom:201.810000px;}
.ye1{bottom:202.350000px;}
.y2b{bottom:210.990000px;}
.y127{bottom:217.650000px;}
.y4e{bottom:219.810000px;}
.y100{bottom:220.710000px;}
.ye0{bottom:223.410000px;}
.y80{bottom:223.770000px;}
.y2a{bottom:232.050000px;}
.y126{bottom:238.710000px;}
.y4d{bottom:240.870000px;}
.yff{bottom:241.770000px;}
.ydf{bottom:244.470000px;}
.y7f{bottom:244.830000px;}
.yaf{bottom:248.610000px;}
.y29{bottom:253.110000px;}
.y125{bottom:259.770000px;}
.y4c{bottom:261.930000px;}
.yfe{bottom:262.830000px;}
.yde{bottom:265.530000px;}
.y7e{bottom:265.890000px;}
.yae{bottom:269.670000px;}
.y28{bottom:274.170000px;}
.y124{bottom:280.830000px;}
.y4b{bottom:282.990000px;}
.yfd{bottom:283.890000px;}
.ydd{bottom:286.590000px;}
.y7d{bottom:286.950000px;}
.yad{bottom:290.730000px;}
.y27{bottom:295.230000px;}
.y123{bottom:301.890000px;}
.y4a{bottom:304.050000px;}
.yfc{bottom:304.950000px;}
.ydc{bottom:307.650000px;}
.yac{bottom:307.830000px;}
.y7c{bottom:308.010000px;}
.y26{bottom:316.290000px;}
.y122{bottom:322.950000px;}
.y49{bottom:325.110000px;}
.yfb{bottom:326.010000px;}
.ydb{bottom:328.755000px;}
.y7b{bottom:329.115000px;}
.y25{bottom:337.395000px;}
.y121{bottom:344.055000px;}
.y48{bottom:346.215000px;}
.yfa{bottom:347.115000px;}
.y7a{bottom:350.175000px;}
.y24{bottom:352.515000px;}
.yab{bottom:354.675000px;}
.yda{bottom:358.815000px;}
.y120{bottom:365.115000px;}
.y47{bottom:367.275000px;}
.yf9{bottom:368.175000px;}
.y79{bottom:371.235000px;}
.yaa{bottom:375.735000px;}
.y23{bottom:376.455000px;}
.yd9{bottom:379.875000px;}
.y11f{bottom:386.175000px;}
.y46{bottom:388.335000px;}
.yf8{bottom:389.235000px;}
.ya9{bottom:396.795000px;}
.y22{bottom:400.395000px;}
.yd8{bottom:400.935000px;}
.y78{bottom:401.295000px;}
.y11e{bottom:407.235000px;}
.y45{bottom:409.395000px;}
.yf7{bottom:410.295000px;}
.ya8{bottom:417.855000px;}
.yd7{bottom:421.995000px;}
.y77{bottom:422.355000px;}
.y1f{bottom:424.515000px;}
.y11d{bottom:428.295000px;}
.y44{bottom:430.455000px;}
.yf6{bottom:431.355000px;}
.ya7{bottom:434.955000px;}
.yd6{bottom:443.055000px;}
.y76{bottom:443.415000px;}
.y11c{bottom:449.355000px;}
.y43{bottom:451.515000px;}
.yf5{bottom:452.415000px;}
.yd5{bottom:464.115000px;}
.y75{bottom:464.475000px;}
.y11b{bottom:470.415000px;}
.y42{bottom:472.575000px;}
.yf4{bottom:473.475000px;}
.y1e{bottom:474.015000px;}
.ya6{bottom:478.335000px;}
.yd4{bottom:485.175000px;}
.y74{bottom:485.535000px;}
.y11a{bottom:491.475000px;}
.y41{bottom:493.635000px;}
.yf3{bottom:494.535000px;}
.y1d{bottom:495.075000px;}
.ya5{bottom:499.395000px;}
.yd3{bottom:506.235000px;}
.y73{bottom:506.595000px;}
.y119{bottom:512.535000px;}
.y40{bottom:514.695000px;}
.yf2{bottom:515.595000px;}
.y1c{bottom:516.135000px;}
.ya4{bottom:520.455000px;}
.yd2{bottom:527.115000px;}
.y72{bottom:527.655000px;}
.y118{bottom:533.595000px;}
.y3f{bottom:535.755000px;}
.yf1{bottom:536.655000px;}
.y1b{bottom:537.195000px;}
.ya3{bottom:541.515000px;}
.yd1{bottom:548.175000px;}
.y71{bottom:548.715000px;}
.y117{bottom:554.655000px;}
.y3e{bottom:556.815000px;}
.yf0{bottom:557.715000px;}
.y1a{bottom:558.255000px;}
.ya2{bottom:562.575000px;}
.yd0{bottom:569.235000px;}
.y70{bottom:569.775000px;}
.y116{bottom:575.715000px;}
.y3d{bottom:577.875000px;}
.yef{bottom:578.775000px;}
.y19{bottom:579.315000px;}
.ya1{bottom:583.635000px;}
.ycf{bottom:590.295000px;}
.y6f{bottom:590.835000px;}
.y115{bottom:596.805000px;}
.y3c{bottom:598.965000px;}
.yee{bottom:599.865000px;}
.y18{bottom:600.405000px;}
.ya0{bottom:604.725000px;}
.yce{bottom:611.385000px;}
.y6e{bottom:611.925000px;}
.y114{bottom:617.865000px;}
.y3b{bottom:620.025000px;}
.yed{bottom:620.925000px;}
.y17{bottom:621.465000px;}
.y9f{bottom:625.785000px;}
.ycd{bottom:626.685000px;}
.y113{bottom:638.925000px;}
.y3a{bottom:641.085000px;}
.y6d{bottom:641.805000px;}
.y16{bottom:642.525000px;}
.y9e{bottom:646.845000px;}
.yc5{bottom:648.465000px;}
.y112{bottom:659.805000px;}
.y39{bottom:662.145000px;}
.y6c{bottom:662.865000px;}
.y15{bottom:663.585000px;}
.y9d{bottom:667.905000px;}
.ycc{bottom:670.245000px;}
.y111{bottom:680.865000px;}
.y9b{bottom:683.025000px;}
.y38{bottom:683.205000px;}
.y6b{bottom:683.925000px;}
.ycb{bottom:692.025000px;}
.yec{bottom:692.925000px;}
.y110{bottom:701.925000px;}
.y37{bottom:704.265000px;}
.y6a{bottom:704.985000px;}
.y14{bottom:705.345000px;}
.y9a{bottom:707.145000px;}
.yca{bottom:713.805000px;}
.yeb{bottom:713.985000px;}
.y10f{bottom:722.985000px;}
.y36{bottom:725.325000px;}
.y69{bottom:726.045000px;}
.y99{bottom:731.085000px;}
.yea{bottom:735.045000px;}
.y13{bottom:735.225000px;}
.yc9{bottom:735.585000px;}
.y10e{bottom:744.045000px;}
.y35{bottom:746.385000px;}
.y68{bottom:747.105000px;}
.y95{bottom:755.025000px;}
.ye9{bottom:756.105000px;}
.y12{bottom:756.285000px;}
.yc7{bottom:757.545000px;}
.y10d{bottom:765.105000px;}
.y34{bottom:767.445000px;}
.y67{bottom:768.165000px;}
.ye8{bottom:777.165000px;}
.y11{bottom:777.345000px;}
.yc2{bottom:779.325000px;}
.y10c{bottom:786.165000px;}
.y33{bottom:788.505000px;}
.y66{bottom:789.225000px;}
.ye7{bottom:798.225000px;}
.y10{bottom:798.405000px;}
.yc4{bottom:801.105000px;}
.y91{bottom:802.365000px;}
.y10b{bottom:807.225000px;}
.y32{bottom:809.565000px;}
.y65{bottom:819.285000px;}
.yf{bottom:819.465000px;}
.y10a{bottom:828.285000px;}
.y31{bottom:830.625000px;}
.y64{bottom:840.345000px;}
.ye{bottom:840.525000px;}
.yc1{bottom:843.945000px;}
.y30{bottom:847.725000px;}
.y109{bottom:849.345000px;}
.y8d{bottom:860.145000px;}
.y63{bottom:861.405000px;}
.yd{bottom:861.585000px;}
.y108{bottom:870.450000px;}
.yc0{bottom:872.430000px;}
.y62{bottom:882.510000px;}
.yc{bottom:884.850000px;}
.y107{bottom:891.510000px;}
.ybf{bottom:893.490000px;}
.y8b{bottom:903.030000px;}
.y61{bottom:903.570000px;}
.yb{bottom:911.130000px;}
.y106{bottom:912.570000px;}
.ybe{bottom:914.550000px;}
.y60{bottom:924.630000px;}
.ya{bottom:927.870000px;}
.y8a{bottom:933.630000px;}
.ybd{bottom:935.610000px;}
.y5f{bottom:945.690000px;}
.y9{bottom:950.190000px;}
.y89{bottom:954.690000px;}
.ybc{bottom:956.670000px;}
.y5e{bottom:966.750000px;}
.y8{bottom:975.390000px;}
.y88{bottom:975.750000px;}
.ybb{bottom:977.730000px;}
.y5d{bottom:987.810000px;}
.yba{bottom:994.830000px;}
.y87{bottom:996.810000px;}
.y5c{bottom:1008.870000px;}
.y7{bottom:1009.050000px;}
.y86{bottom:1017.870000px;}
.yb9{bottom:1038.210000px;}
.y5b{bottom:1038.930000px;}
.y5{bottom:1049.190000px;}
.yb8{bottom:1059.270000px;}
.y5a{bottom:1059.990000px;}
.yb7{bottom:1080.330000px;}
.y59{bottom:1081.050000px;}
.y4{bottom:1081.410000px;}
.yb6{bottom:1097.430000px;}
.y58{bottom:1102.110000px;}
.y3{bottom:1113.630000px;}
.y57{bottom:1123.170000px;}
.y56{bottom:1144.260000px;}
.y2{bottom:1145.700000px;}
.y55{bottom:1165.320000px;}
.y1{bottom:1179.720000px;}
.y2f{bottom:1193.220000px;}
.h13{height:20.880000px;}
.h11{height:21.060000px;}
.hf{height:21.096000px;}
.hb{height:23.220000px;}
.ha{height:23.400000px;}
.h7{height:38.671172px;}
.h9{height:42.120000px;}
.hc{height:42.156000px;}
.he{height:46.620000px;}
.hd{height:57.060000px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h10{height:63.900000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h12{height:129.960000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:54.360000px;}
.we{width:58.500000px;}
.w11{width:67.356000px;}
.wd{width:67.536000px;}
.wf{width:80.280000px;}
.w8{width:93.096000px;}
.w10{width:95.256000px;}
.w13{width:99.216000px;}
.w3{width:102.780000px;}
.w6{width:106.056000px;}
.wc{width:109.440000px;}
.wa{width:154.290000px;}
.w5{width:158.790000px;}
.wb{width:176.610000px;}
.w4{width:188.670000px;}
.w7{width:479.955000px;}
.w9{width:569.805000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.740000px;}
.x6{left:53.999987px;}
.x7{left:75.599987px;}
.xe{left:98.315987px;}
.x19{left:101.375987px;}
.x10{left:115.595987px;}
.x12{left:160.050000px;}
.x1a{left:161.670000px;}
.x8{left:167.790000px;}
.x5{left:176.969987px;}
.x20{left:216.750000px;}
.xa{left:270.930000px;}
.x3{left:272.189987px;}
.x1b{left:316.695000px;}
.x2{left:350.534987px;}
.xf{left:372.314987px;}
.x1f{left:397.695000px;}
.x4{left:419.114987px;}
.x11{left:457.274987px;}
.xb{left:459.975000px;}
.x1{left:479.264987px;}
.x1c{left:494.025000px;}
.x17{left:539.024987px;}
.x14{left:545.144987px;}
.x18{left:562.604987px;}
.x15{left:598.604987px;}
.x1d{left:604.185000px;}
.xc{left:619.125000px;}
.x16{left:621.644987px;}
.x13{left:640.005000px;}
.x1e{left:672.450000px;}
.xd{left:811.589987px;}
.x21{left:838.409987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls18{letter-spacing:-0.853333pt;}
.ls1b{letter-spacing:-0.698667pt;}
.ls11{letter-spacing:-0.515200pt;}
.ls13{letter-spacing:-0.474133pt;}
.ls8{letter-spacing:-0.412267pt;}
.ls19{letter-spacing:-0.368000pt;}
.lsd{letter-spacing:-0.269333pt;}
.ls23{letter-spacing:-0.213867pt;}
.lsb{letter-spacing:-0.201067pt;}
.ls7{letter-spacing:-0.117867pt;}
.ls10{letter-spacing:-0.102933pt;}
.ls1d{letter-spacing:-0.095467pt;}
.ls24{letter-spacing:-0.061867pt;}
.ls12{letter-spacing:-0.051840pt;}
.ls26{letter-spacing:-0.036480pt;}
.ls2b{letter-spacing:-0.033920pt;}
.lsa{letter-spacing:-0.017920pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.034560pt;}
.ls25{letter-spacing:0.053867pt;}
.ls20{letter-spacing:0.059520pt;}
.ls15{letter-spacing:0.086400pt;}
.ls1e{letter-spacing:0.120320pt;}
.ls9{letter-spacing:0.133333pt;}
.ls4{letter-spacing:0.154667pt;}
.ls14{letter-spacing:0.154880pt;}
.ls27{letter-spacing:0.155733pt;}
.ls1a{letter-spacing:0.165867pt;}
.ls0{letter-spacing:0.190720pt;}
.lsf{letter-spacing:0.272000pt;}
.ls1{letter-spacing:0.285440pt;}
.lse{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.349867pt;}
.ls3{letter-spacing:0.426240pt;}
.lsc{letter-spacing:0.438933pt;}
.ls17{letter-spacing:0.549120pt;}
.ls1f{letter-spacing:0.794880pt;}
.ls22{letter-spacing:0.847360pt;}
.ls21{letter-spacing:1.872640pt;}
.ls1c{letter-spacing:5.072640pt;}
.ls2c{letter-spacing:10.832640pt;}
.ls28{letter-spacing:15.952640pt;}
.ls16{letter-spacing:19.152640pt;}
.ls2{letter-spacing:33.872640pt;}
.ls29{letter-spacing:37.840640pt;}
.wsc{word-spacing:-53.120000pt;}
.ws4{word-spacing:-19.237120pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws12{word-spacing:-12.354987pt;}
.wsd{word-spacing:-12.170987pt;}
.ws10{word-spacing:-12.058987pt;}
.ws8{word-spacing:-12.005120pt;}
.ws13{word-spacing:-11.971200pt;}
.ws11{word-spacing:-11.968640pt;}
.wsa{word-spacing:-11.953280pt;}
.wsf{word-spacing:-11.943253pt;}
.wse{word-spacing:-11.909653pt;}
.ws9{word-spacing:-11.902187pt;}
.ws5{word-spacing:-8.389120pt;}
.ws7{word-spacing:-8.130560pt;}
.ws6{word-spacing:-7.810560pt;}
.wsb{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;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._17{margin-left:-204.436480pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.453547pt;}
._19{margin-left:-179.069440pt;}
._18{margin-left:-177.979307pt;}
._22{margin-left:-174.878720pt;}
._21{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._27{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._26{margin-left:-128.981333pt;}
._10{margin-left:-126.007467pt;}
._c{margin-left:-119.281920pt;}
._20{margin-left:-118.232320pt;}
._11{margin-left:-103.166720pt;}
._25{margin-left:-97.253547pt;}
._1d{margin-left:-91.137280pt;}
._7{margin-left:-80.999893pt;}
._1c{margin-left:-76.799787pt;}
._1b{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._23{margin-left:-71.437653pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.993387pt;}
._24{margin-left:-31.226880pt;}
._1a{margin-left:-28.026880pt;}
._2a{margin-left:-3.921920pt;}
._28{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._29{width:1.170880pt;}
._2d{width:2.195307pt;}
._2f{width:3.388160pt;}
._2e{width:4.678400pt;}
._30{width:6.044160pt;}
._35{width:7.076480pt;}
._33{width:8.042240pt;}
._32{width:9.152640pt;}
._2b{width:10.044160pt;}
._2c{width:11.084587pt;}
._31{width:13.492480pt;}
._39{width:15.192320pt;}
._37{width:16.685440pt;}
._36{width:18.060800pt;}
._3d{width:20.132480pt;}
._3a{width:21.141760pt;}
._3c{width:24.222720pt;}
._3b{width:25.178880pt;}
._38{width:33.200000pt;}
._34{width:477.621653pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yc8{bottom:5.760000pt;}
.y20{bottom:5.920000pt;}
.y8f{bottom:5.960000pt;}
.y8c{bottom:6.880000pt;}
.y9c{bottom:7.040000pt;}
.y97{bottom:8.000000pt;}
.y93{bottom:12.480000pt;}
.y90{bottom:15.240000pt;}
.y98{bottom:17.280000pt;}
.y94{bottom:21.920000pt;}
.y21{bottom:24.640000pt;}
.y8e{bottom:24.680000pt;}
.y96{bottom:26.720000pt;}
.y92{bottom:31.200000pt;}
.yc3{bottom:44.000000pt;}
.y6{bottom:54.592000pt;}
.y54{bottom:83.072000pt;}
.ye6{bottom:86.272000pt;}
.yb5{bottom:87.872000pt;}
.y12a{bottom:94.752000pt;}
.y85{bottom:97.312000pt;}
.y53{bottom:101.792000pt;}
.y105{bottom:102.592000pt;}
.yc6{bottom:102.720000pt;}
.yb4{bottom:103.072000pt;}
.ye5{bottom:104.992000pt;}
.y84{bottom:116.032000pt;}
.y52{bottom:120.512000pt;}
.y104{bottom:121.312000pt;}
.ye4{bottom:123.712000pt;}
.yb3{bottom:126.912000pt;}
.y2e{bottom:131.392000pt;}
.y83{bottom:134.746667pt;}
.y51{bottom:139.226667pt;}
.y103{bottom:140.026667pt;}
.ye3{bottom:142.426667pt;}
.yb2{bottom:145.626667pt;}
.y2d{bottom:150.106667pt;}
.y82{bottom:153.466667pt;}
.y129{bottom:156.026667pt;}
.y50{bottom:157.946667pt;}
.y102{bottom:158.746667pt;}
.ye2{bottom:161.146667pt;}
.yb1{bottom:164.346667pt;}
.y2c{bottom:168.826667pt;}
.y81{bottom:172.186667pt;}
.y128{bottom:174.746667pt;}
.y4f{bottom:176.666667pt;}
.y101{bottom:177.466667pt;}
.yb0{bottom:179.386667pt;}
.ye1{bottom:179.866667pt;}
.y2b{bottom:187.546667pt;}
.y127{bottom:193.466667pt;}
.y4e{bottom:195.386667pt;}
.y100{bottom:196.186667pt;}
.ye0{bottom:198.586667pt;}
.y80{bottom:198.906667pt;}
.y2a{bottom:206.266667pt;}
.y126{bottom:212.186667pt;}
.y4d{bottom:214.106667pt;}
.yff{bottom:214.906667pt;}
.ydf{bottom:217.306667pt;}
.y7f{bottom:217.626667pt;}
.yaf{bottom:220.986667pt;}
.y29{bottom:224.986667pt;}
.y125{bottom:230.906667pt;}
.y4c{bottom:232.826667pt;}
.yfe{bottom:233.626667pt;}
.yde{bottom:236.026667pt;}
.y7e{bottom:236.346667pt;}
.yae{bottom:239.706667pt;}
.y28{bottom:243.706667pt;}
.y124{bottom:249.626667pt;}
.y4b{bottom:251.546667pt;}
.yfd{bottom:252.346667pt;}
.ydd{bottom:254.746667pt;}
.y7d{bottom:255.066667pt;}
.yad{bottom:258.426667pt;}
.y27{bottom:262.426667pt;}
.y123{bottom:268.346667pt;}
.y4a{bottom:270.266667pt;}
.yfc{bottom:271.066667pt;}
.ydc{bottom:273.466667pt;}
.yac{bottom:273.626667pt;}
.y7c{bottom:273.786667pt;}
.y26{bottom:281.146667pt;}
.y122{bottom:287.066667pt;}
.y49{bottom:288.986667pt;}
.yfb{bottom:289.786667pt;}
.ydb{bottom:292.226667pt;}
.y7b{bottom:292.546667pt;}
.y25{bottom:299.906667pt;}
.y121{bottom:305.826667pt;}
.y48{bottom:307.746667pt;}
.yfa{bottom:308.546667pt;}
.y7a{bottom:311.266667pt;}
.y24{bottom:313.346667pt;}
.yab{bottom:315.266667pt;}
.yda{bottom:318.946667pt;}
.y120{bottom:324.546667pt;}
.y47{bottom:326.466667pt;}
.yf9{bottom:327.266667pt;}
.y79{bottom:329.986667pt;}
.yaa{bottom:333.986667pt;}
.y23{bottom:334.626667pt;}
.yd9{bottom:337.666667pt;}
.y11f{bottom:343.266667pt;}
.y46{bottom:345.186667pt;}
.yf8{bottom:345.986667pt;}
.ya9{bottom:352.706667pt;}
.y22{bottom:355.906667pt;}
.yd8{bottom:356.386667pt;}
.y78{bottom:356.706667pt;}
.y11e{bottom:361.986667pt;}
.y45{bottom:363.906667pt;}
.yf7{bottom:364.706667pt;}
.ya8{bottom:371.426667pt;}
.yd7{bottom:375.106667pt;}
.y77{bottom:375.426667pt;}
.y1f{bottom:377.346667pt;}
.y11d{bottom:380.706667pt;}
.y44{bottom:382.626667pt;}
.yf6{bottom:383.426667pt;}
.ya7{bottom:386.626667pt;}
.yd6{bottom:393.826667pt;}
.y76{bottom:394.146667pt;}
.y11c{bottom:399.426667pt;}
.y43{bottom:401.346667pt;}
.yf5{bottom:402.146667pt;}
.yd5{bottom:412.546667pt;}
.y75{bottom:412.866667pt;}
.y11b{bottom:418.146667pt;}
.y42{bottom:420.066667pt;}
.yf4{bottom:420.866667pt;}
.y1e{bottom:421.346667pt;}
.ya6{bottom:425.186667pt;}
.yd4{bottom:431.266667pt;}
.y74{bottom:431.586667pt;}
.y11a{bottom:436.866667pt;}
.y41{bottom:438.786667pt;}
.yf3{bottom:439.586667pt;}
.y1d{bottom:440.066667pt;}
.ya5{bottom:443.906667pt;}
.yd3{bottom:449.986667pt;}
.y73{bottom:450.306667pt;}
.y119{bottom:455.586667pt;}
.y40{bottom:457.506667pt;}
.yf2{bottom:458.306667pt;}
.y1c{bottom:458.786667pt;}
.ya4{bottom:462.626667pt;}
.yd2{bottom:468.546667pt;}
.y72{bottom:469.026667pt;}
.y118{bottom:474.306667pt;}
.y3f{bottom:476.226667pt;}
.yf1{bottom:477.026667pt;}
.y1b{bottom:477.506667pt;}
.ya3{bottom:481.346667pt;}
.yd1{bottom:487.266667pt;}
.y71{bottom:487.746667pt;}
.y117{bottom:493.026667pt;}
.y3e{bottom:494.946667pt;}
.yf0{bottom:495.746667pt;}
.y1a{bottom:496.226667pt;}
.ya2{bottom:500.066667pt;}
.yd0{bottom:505.986667pt;}
.y70{bottom:506.466667pt;}
.y116{bottom:511.746667pt;}
.y3d{bottom:513.666667pt;}
.yef{bottom:514.466667pt;}
.y19{bottom:514.946667pt;}
.ya1{bottom:518.786667pt;}
.ycf{bottom:524.706667pt;}
.y6f{bottom:525.186667pt;}
.y115{bottom:530.493333pt;}
.y3c{bottom:532.413333pt;}
.yee{bottom:533.213333pt;}
.y18{bottom:533.693333pt;}
.ya0{bottom:537.533333pt;}
.yce{bottom:543.453333pt;}
.y6e{bottom:543.933333pt;}
.y114{bottom:549.213333pt;}
.y3b{bottom:551.133333pt;}
.yed{bottom:551.933333pt;}
.y17{bottom:552.413333pt;}
.y9f{bottom:556.253333pt;}
.ycd{bottom:557.053333pt;}
.y113{bottom:567.933333pt;}
.y3a{bottom:569.853333pt;}
.y6d{bottom:570.493333pt;}
.y16{bottom:571.133333pt;}
.y9e{bottom:574.973333pt;}
.yc5{bottom:576.413333pt;}
.y112{bottom:586.493333pt;}
.y39{bottom:588.573333pt;}
.y6c{bottom:589.213333pt;}
.y15{bottom:589.853333pt;}
.y9d{bottom:593.693333pt;}
.ycc{bottom:595.773333pt;}
.y111{bottom:605.213333pt;}
.y9b{bottom:607.133333pt;}
.y38{bottom:607.293333pt;}
.y6b{bottom:607.933333pt;}
.ycb{bottom:615.133333pt;}
.yec{bottom:615.933333pt;}
.y110{bottom:623.933333pt;}
.y37{bottom:626.013333pt;}
.y6a{bottom:626.653333pt;}
.y14{bottom:626.973333pt;}
.y9a{bottom:628.573333pt;}
.yca{bottom:634.493333pt;}
.yeb{bottom:634.653333pt;}
.y10f{bottom:642.653333pt;}
.y36{bottom:644.733333pt;}
.y69{bottom:645.373333pt;}
.y99{bottom:649.853333pt;}
.yea{bottom:653.373333pt;}
.y13{bottom:653.533333pt;}
.yc9{bottom:653.853333pt;}
.y10e{bottom:661.373333pt;}
.y35{bottom:663.453333pt;}
.y68{bottom:664.093333pt;}
.y95{bottom:671.133333pt;}
.ye9{bottom:672.093333pt;}
.y12{bottom:672.253333pt;}
.yc7{bottom:673.373333pt;}
.y10d{bottom:680.093333pt;}
.y34{bottom:682.173333pt;}
.y67{bottom:682.813333pt;}
.ye8{bottom:690.813333pt;}
.y11{bottom:690.973333pt;}
.yc2{bottom:692.733333pt;}
.y10c{bottom:698.813333pt;}
.y33{bottom:700.893333pt;}
.y66{bottom:701.533333pt;}
.ye7{bottom:709.533333pt;}
.y10{bottom:709.693333pt;}
.yc4{bottom:712.093333pt;}
.y91{bottom:713.213333pt;}
.y10b{bottom:717.533333pt;}
.y32{bottom:719.613333pt;}
.y65{bottom:728.253333pt;}
.yf{bottom:728.413333pt;}
.y10a{bottom:736.253333pt;}
.y31{bottom:738.333333pt;}
.y64{bottom:746.973333pt;}
.ye{bottom:747.133333pt;}
.yc1{bottom:750.173333pt;}
.y30{bottom:753.533333pt;}
.y109{bottom:754.973333pt;}
.y8d{bottom:764.573333pt;}
.y63{bottom:765.693333pt;}
.yd{bottom:765.853333pt;}
.y108{bottom:773.733333pt;}
.yc0{bottom:775.493333pt;}
.y62{bottom:784.453333pt;}
.yc{bottom:786.533333pt;}
.y107{bottom:792.453333pt;}
.ybf{bottom:794.213333pt;}
.y8b{bottom:802.693333pt;}
.y61{bottom:803.173333pt;}
.yb{bottom:809.893333pt;}
.y106{bottom:811.173333pt;}
.ybe{bottom:812.933333pt;}
.y60{bottom:821.893333pt;}
.ya{bottom:824.773333pt;}
.y8a{bottom:829.893333pt;}
.ybd{bottom:831.653333pt;}
.y5f{bottom:840.613333pt;}
.y9{bottom:844.613333pt;}
.y89{bottom:848.613333pt;}
.ybc{bottom:850.373333pt;}
.y5e{bottom:859.333333pt;}
.y8{bottom:867.013333pt;}
.y88{bottom:867.333333pt;}
.ybb{bottom:869.093333pt;}
.y5d{bottom:878.053333pt;}
.yba{bottom:884.293333pt;}
.y87{bottom:886.053333pt;}
.y5c{bottom:896.773333pt;}
.y7{bottom:896.933333pt;}
.y86{bottom:904.773333pt;}
.yb9{bottom:922.853333pt;}
.y5b{bottom:923.493333pt;}
.y5{bottom:932.613333pt;}
.yb8{bottom:941.573333pt;}
.y5a{bottom:942.213333pt;}
.yb7{bottom:960.293333pt;}
.y59{bottom:960.933333pt;}
.y4{bottom:961.253333pt;}
.yb6{bottom:975.493333pt;}
.y58{bottom:979.653333pt;}
.y3{bottom:989.893333pt;}
.y57{bottom:998.373333pt;}
.y56{bottom:1017.120000pt;}
.y2{bottom:1018.400000pt;}
.y55{bottom:1035.840000pt;}
.y1{bottom:1048.640000pt;}
.y2f{bottom:1060.640000pt;}
.h13{height:18.560000pt;}
.h11{height:18.720000pt;}
.hf{height:18.752000pt;}
.hb{height:20.640000pt;}
.ha{height:20.800000pt;}
.h7{height:34.374375pt;}
.h9{height:37.440000pt;}
.hc{height:37.472000pt;}
.he{height:41.440000pt;}
.hd{height:50.720000pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h10{height:56.800000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h12{height:115.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:48.320000pt;}
.we{width:52.000000pt;}
.w11{width:59.872000pt;}
.wd{width:60.032000pt;}
.wf{width:71.360000pt;}
.w8{width:82.752000pt;}
.w10{width:84.672000pt;}
.w13{width:88.192000pt;}
.w3{width:91.360000pt;}
.w6{width:94.272000pt;}
.wc{width:97.280000pt;}
.wa{width:137.146667pt;}
.w5{width:141.146667pt;}
.wb{width:156.986667pt;}
.w4{width:167.706667pt;}
.w7{width:426.626667pt;}
.w9{width:506.493333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.880000pt;}
.x6{left:47.999988pt;}
.x7{left:67.199988pt;}
.xe{left:87.391988pt;}
.x19{left:90.111988pt;}
.x10{left:102.751988pt;}
.x12{left:142.266667pt;}
.x1a{left:143.706667pt;}
.x8{left:149.146667pt;}
.x5{left:157.306655pt;}
.x20{left:192.666667pt;}
.xa{left:240.826667pt;}
.x3{left:241.946655pt;}
.x1b{left:281.506667pt;}
.x2{left:311.586655pt;}
.xf{left:330.946655pt;}
.x1f{left:353.506667pt;}
.x4{left:372.546655pt;}
.x11{left:406.466655pt;}
.xb{left:408.866667pt;}
.x1{left:426.013322pt;}
.x1c{left:439.133333pt;}
.x17{left:479.133322pt;}
.x14{left:484.573322pt;}
.x18{left:500.093322pt;}
.x15{left:532.093322pt;}
.x1d{left:537.053333pt;}
.xc{left:550.333333pt;}
.x16{left:552.573322pt;}
.x13{left:568.893333pt;}
.x1e{left:597.733333pt;}
.xd{left:721.413322pt;}
.x21{left:745.253322pt;}
}




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