
    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_7db3ee39ec955c7e6fd59615.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5efad5c3b44108fe75f5ab27.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ee6d1772d99c5c256f8451f4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.767578;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_40e63c0877f6c01cfd754d21.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.372070;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_16039a0ffd97c2e20d1999f8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2f374f7294327982ffa7e6f7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_73a223bc42d222f55d2712db.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_dbfad6ebe278da6a97bf4a09.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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:ffb;src:url('chunks/assets/font_42aa342ad08c90ff070d7ae9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;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:ffc;src:url('chunks/assets/font_d8a5894ad2fbadc02eaed10d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v7{vertical-align:-13.680000px;}
.v3{vertical-align:-12.240000px;}
.v1{vertical-align:-10.800000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.160000px;}
.v8{vertical-align:13.680000px;}
.v6{vertical-align:23.040000px;}
.v9{vertical-align:25.920000px;}
.v5{vertical-align:35.280000px;}
.ls19{letter-spacing:-0.570000px;}
.ls7{letter-spacing:-0.034560px;}
.ls16{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.015120px;}
.ls9{letter-spacing:0.017280px;}
.ls17{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.093600px;}
.lsb{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.150000px;}
.ls6{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.227400px;}
.ls1{letter-spacing:0.256200px;}
.ls1a{letter-spacing:0.324000px;}
.ls12{letter-spacing:0.341280px;}
.ls3{letter-spacing:1.949760px;}
.lsd{letter-spacing:2.669760px;}
.ls4{letter-spacing:14.189760px;}
.ls11{letter-spacing:16.559280px;}
.ls13{letter-spacing:16.959600px;}
.lsc{letter-spacing:17.069760px;}
.ls10{letter-spacing:17.679600px;}
.lse{letter-spacing:25.992000px;}
.ls15{letter-spacing:46.079280px;}
.ls14{letter-spacing:47.519280px;}
.lsa{letter-spacing:59.345280px;}
.ls8{letter-spacing:99.342720px;}
.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;}
}
.ws1d{word-spacing:-59.760000px;}
.ws6{word-spacing:-54.000000px;}
.wsa{word-spacing:-21.634560px;}
.ws9{word-spacing:-21.582720px;}
.ws2{word-spacing:-15.226440px;}
.ws1{word-spacing:-14.970240px;}
.wsb{word-spacing:-14.211360px;}
.ws11{word-spacing:-13.147200px;}
.ws5{word-spacing:-12.204000px;}
.ws1c{word-spacing:-12.186000px;}
.ws7{word-spacing:-11.880000px;}
.wsd{word-spacing:-11.862000px;}
.ws4{word-spacing:-10.917360px;}
.ws3{word-spacing:-10.902240px;}
.ws17{word-spacing:-9.414600px;}
.ws12{word-spacing:-9.187200px;}
.ws16{word-spacing:-8.136000px;}
.ws13{word-spacing:-7.920000px;}
.ws10{word-spacing:-0.378000px;}
.wsc{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:0.144000px;}
.ws8{word-spacing:0.342000px;}
.wsf{word-spacing:0.414000px;}
.ws18{word-spacing:3.528000px;}
.ws1a{word-spacing:4.248000px;}
.ws14{word-spacing:19.944000px;}
.ws1b{word-spacing:104.003760px;}
.ws19{word-spacing:105.443760px;}
.ws15{word-spacing:189.683760px;}
._16{margin-left:-3.900480px;}
._d{margin-left:-2.782080px;}
._1{margin-left:-1.192320px;}
._9{width:1.192320px;}
._19{width:2.252160px;}
._13{width:3.841920px;}
._7{width:5.609280px;}
._8{width:7.084800px;}
._18{width:8.137920px;}
._a{width:9.264960px;}
._4{width:10.465920px;}
._5{width:12.519360px;}
._10{width:13.715040px;}
._17{width:16.096320px;}
._1a{width:17.487360px;}
._6{width:18.679680px;}
._b{width:20.335680px;}
._c{width:21.505920px;}
._15{width:24.128640px;}
._11{width:28.218240px;}
._12{width:29.370720px;}
._1b{width:30.576480px;}
._e{width:31.861440px;}
._f{width:32.996640px;}
._14{width:49.216320px;}
._20{width:63.007680px;}
._1f{width:99.779520px;}
._1e{width:136.983360px;}
._1d{width:654.123360px;}
._3{width:845.885280px;}
._2{width:849.185760px;}
._22{width:876.302640px;}
._21{width:1142.321760px;}
._1c{width:1332.156000px;}
._0{width:2406.149760px;}
.fc4{color:rgb(255,0,0);}
.fc5{color:rgb(84,141,212);}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(79,129,189);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y106{bottom:13.140000px;}
.y107{bottom:23.400000px;}
.y3{bottom:57.600000px;}
.ye7{bottom:57.636000px;}
.y2{bottom:95.616000px;}
.y99{bottom:133.236000px;}
.y10d{bottom:142.596000px;}
.y2d{bottom:142.776000px;}
.yd7{bottom:146.376000px;}
.y98{bottom:150.870000px;}
.ya4{bottom:158.790000px;}
.y4b{bottom:164.550000px;}
.y97{bottom:166.710000px;}
.yd6{bottom:170.310000px;}
.y96{bottom:172.650000px;}
.y2c{bottom:173.010000px;}
.y10c{bottom:173.370000px;}
.y128{bottom:174.090000px;}
.y65{bottom:176.790000px;}
.y5{bottom:185.940000px;}
.y7{bottom:190.485000px;}
.y117{bottom:190.830000px;}
.yd5{bottom:194.430000px;}
.y4a{bottom:194.790000px;}
.y2b{bottom:203.250000px;}
.y95{bottom:204.870000px;}
.y9c{bottom:211.530000px;}
.y89{bottom:214.230000px;}
.y49{bottom:225.030000px;}
.ya3{bottom:231.510000px;}
.y2a{bottom:233.490000px;}
.yaf{bottom:241.770000px;}
.y5f{bottom:242.670000px;}
.y75{bottom:243.930000px;}
.yef{bottom:253.470000px;}
.y8b{bottom:254.550000px;}
.y102{bottom:255.090000px;}
.y48{bottom:255.270000px;}
.y88{bottom:260.670000px;}
.y94{bottom:262.470000px;}
.y29{bottom:263.550000px;}
.yd4{bottom:266.430000px;}
.y101{bottom:271.650000px;}
.y74{bottom:279.930000px;}
.y81{bottom:281.190000px;}
.y87{bottom:284.610000px;}
.y47{bottom:285.510000px;}
.y93{bottom:286.410000px;}
.yae{bottom:290.010000px;}
.yd3{bottom:290.370000px;}
.y5e{bottom:290.910000px;}
.y123{bottom:291.630000px;}
.y28{bottom:293.790000px;}
.y6a{bottom:295.770000px;}
.y100{bottom:303.510000px;}
.yfb{bottom:304.950000px;}
.y86{bottom:308.730000px;}
.yfc{bottom:309.270000px;}
.y92{bottom:310.350000px;}
.yfa{bottom:312.690000px;}
.yd2{bottom:314.490000px;}
.y46{bottom:315.570000px;}
.y122{bottom:317.730000px;}
.ye9{bottom:318.675000px;}
.y27{bottom:324.030000px;}
.y73{bottom:328.755000px;}
.y6c{bottom:330.015000px;}
.y85{bottom:332.715000px;}
.y69{bottom:333.075000px;}
.y91{bottom:334.515000px;}
.yd1{bottom:338.655000px;}
.y5d{bottom:339.195000px;}
.y121{bottom:344.055000px;}
.y45{bottom:345.855000px;}
.y68{bottom:347.655000px;}
.yf8{bottom:352.155000px;}
.ya2{bottom:352.335000px;}
.y72{bottom:353.415000px;}
.y26{bottom:354.315000px;}
.y84{bottom:355.035000px;}
.yf9{bottom:356.475000px;}
.y90{bottom:358.455000px;}
.yf7{bottom:359.895000px;}
.yd0{bottom:362.595000px;}
.yad{bottom:362.775000px;}
.y120{bottom:370.155000px;}
.y4{bottom:371.775000px;}
.y44{bottom:376.095000px;}
.y125{bottom:379.515000px;}
.y25{bottom:384.555000px;}
.y67{bottom:387.075000px;}
.y5c{bottom:387.435000px;}
.y80{bottom:395.535000px;}
.ybb{bottom:397.335000px;}
.yf5{bottom:399.675000px;}
.y71{bottom:402.015000px;}
.yf6{bottom:403.995000px;}
.y64{bottom:406.335000px;}
.yf3{bottom:407.415000px;}
.yac{bottom:411.555000px;}
.yf4{bottom:420.915000px;}
.y43{bottom:424.335000px;}
.y70{bottom:426.855000px;}
.y24{bottom:432.795000px;}
.ycf{bottom:434.595000px;}
.y5b{bottom:435.495000px;}
.y63{bottom:436.575000px;}
.y11f{bottom:438.375000px;}
.y7f{bottom:444.135000px;}
.ya1{bottom:448.995000px;}
.yf2{bottom:450.615000px;}
.ya{bottom:454.395000px;}
.y42{bottom:454.575000px;}
.y9d{bottom:454.935000px;}
.y116{bottom:456.915000px;}
.yce{bottom:458.715000px;}
.y23{bottom:463.035000px;}
.y115{bottom:473.475000px;}
.y6f{bottom:475.455000px;}
.y129{bottom:479.235000px;}
.ycd{bottom:482.655000px;}
.y5a{bottom:483.735000px;}
.y41{bottom:484.815000px;}
.yf1{bottom:485.175000px;}
.y11e{bottom:488.595000px;}
.y114{bottom:490.035000px;}
.y127{bottom:491.835000px;}
.y7e{bottom:492.915000px;}
.y22{bottom:493.095000px;}
.yba{bottom:493.455000px;}
.y113{bottom:506.595000px;}
.ycc{bottom:506.775000px;}
.yab{bottom:508.215000px;}
.y11d{bottom:514.875000px;}
.y40{bottom:515.055000px;}
.y119{bottom:515.415000px;}
.y7d{bottom:517.575000px;}
.y21{bottom:523.335000px;}
.y59{bottom:531.975000px;}
.y11c{bottom:540.975000px;}
.y3f{bottom:545.115000px;}
.y20{bottom:553.575000px;}
.y105{bottom:559.155000px;}
.yb9{bottom:565.635000px;}
.y7c{bottom:566.355000px;}
.y3e{bottom:575.355000px;}
.ycb{bottom:578.775000px;}
.y58{bottom:580.215000px;}
.y1f{bottom:583.815000px;}
.y11b{bottom:591.195000px;}
.y6e{bottom:602.745000px;}
.yca{bottom:602.925000px;}
.y9b{bottom:605.445000px;}
.y3d{bottom:605.625000px;}
.yb8{bottom:613.725000px;}
.y1e{bottom:614.085000px;}
.y9f{bottom:616.605000px;}
.yff{bottom:617.685000px;}
.yc9{bottom:626.865000px;}
.y57{bottom:628.485000px;}
.yaa{bottom:629.025000px;}
.y62{bottom:635.865000px;}
.yb7{bottom:638.385000px;}
.yee{bottom:643.785000px;}
.y1d{bottom:644.325000px;}
.yfe{bottom:649.545000px;}
.yc8{bottom:650.985000px;}
.y3c{bottom:653.865000px;}
.yb6{bottom:662.325000px;}
.y8e{bottom:662.685000px;}
.y61{bottom:666.105000px;}
.y82{bottom:671.505000px;}
.y9a{bottom:673.485000px;}
.yc7{bottom:674.925000px;}
.y56{bottom:676.725000px;}
.y6b{bottom:680.685000px;}
.y3b{bottom:684.105000px;}
.yb5{bottom:686.445000px;}
.ye5{bottom:686.985000px;}
.y112{bottom:691.305000px;}
.y1c{bottom:692.385000px;}
.y6{bottom:701.205000px;}
.yb4{bottom:710.385000px;}
.ye4{bottom:711.105000px;}
.y3a{bottom:714.345000px;}
.y1b{bottom:722.625000px;}
.y55{bottom:724.965000px;}
.y8d{bottom:730.905000px;}
.y7b{bottom:732.705000px;}
.yb3{bottom:734.325000px;}
.ybe{bottom:738.465000px;}
.ye8{bottom:741.030000px;}
.y39{bottom:744.405000px;}
.yc6{bottom:747.105000px;}
.y1a{bottom:752.865000px;}
.ye3{bottom:759.165000px;}
.y124{bottom:764.925000px;}
.yc5{bottom:771.045000px;}
.y54{bottom:773.025000px;}
.ya9{bottom:773.745000px;}
.y104{bottom:774.105000px;}
.y38{bottom:774.645000px;}
.y7a{bottom:779.145000px;}
.y19{bottom:783.105000px;}
.y118{bottom:783.465000px;}
.y10b{bottom:785.625000px;}
.ybd{bottom:789.405000px;}
.y111{bottom:789.585000px;}
.yc4{bottom:795.165000px;}
.y79{bottom:803.805000px;}
.y37{bottom:804.885000px;}
.y103{bottom:805.965000px;}
.ye2{bottom:807.225000px;}
.y18{bottom:813.345000px;}
.yc3{bottom:819.105000px;}
.y53{bottom:821.265000px;}
.y11a{bottom:827.925000px;}
.y78{bottom:828.465000px;}
.ye6{bottom:829.620000px;}
.ye1{bottom:831.165000px;}
.y36{bottom:835.125000px;}
.ye{bottom:839.445000px;}
.y17{bottom:843.585000px;}
.yf0{bottom:853.125000px;}
.yed{bottom:860.505000px;}
.ybc{bottom:861.405000px;}
.y35{bottom:865.410000px;}
.yd{bottom:866.850000px;}
.y52{bottom:869.550000px;}
.y16{bottom:873.870000px;}
.y77{bottom:877.290000px;}
.ye0{bottom:879.270000px;}
.y110{bottom:887.910000px;}
.ya8{bottom:894.570000px;}
.y60{bottom:895.650000px;}
.yb2{bottom:902.670000px;}
.ydf{bottom:903.390000px;}
.y15{bottom:903.930000px;}
.y83{bottom:906.450000px;}
.y10a{bottom:907.890000px;}
.y34{bottom:913.650000px;}
.yc2{bottom:915.270000px;}
.y51{bottom:917.790000px;}
.yde{bottom:927.330000px;}
.yec{bottom:933.270000px;}
.y8c{bottom:933.450000px;}
.y109{bottom:934.170000px;}
.yc1{bottom:939.210000px;}
.y33{bottom:943.890000px;}
.ydd{bottom:951.450000px;}
.y14{bottom:952.170000px;}
.y10f{bottom:962.070000px;}
.yc0{bottom:963.330000px;}
.y50{bottom:966.030000px;}
.yc{bottom:972.690000px;}
.y32{bottom:973.950000px;}
.ya6{bottom:974.130000px;}
.yb1{bottom:974.670000px;}
.y126{bottom:975.390000px;}
.y9e{bottom:981.510000px;}
.y13{bottom:982.410000px;}
.ya7{bottom:991.410000px;}
.yeb{bottom:991.950000px;}
.yb{bottom:992.850000px;}
.ydc{bottom:999.330000px;}
.yfd{bottom:1000.950000px;}
.y31{bottom:1004.190000px;}
.y108{bottom:1006.170000px;}
.y12{bottom:1012.650000px;}
.y4f{bottom:1014.270000px;}
.y76{bottom:1017.510000px;}
.y8a{bottom:1020.390000px;}
.ydb{bottom:1023.450000px;}
.y30{bottom:1034.430000px;}
.y8f{bottom:1036.050000px;}
.y11{bottom:1042.890000px;}
.yda{bottom:1047.390000px;}
.ya0{bottom:1048.110000px;}
.y10e{bottom:1060.350000px;}
.y4e{bottom:1062.330000px;}
.y2f{bottom:1064.670000px;}
.ya5{bottom:1070.970000px;}
.yd9{bottom:1071.510000px;}
.y10{bottom:1073.130000px;}
.y2e{bottom:1094.910000px;}
.ybf{bottom:1103.010000px;}
.yf{bottom:1103.190000px;}
.y4d{bottom:1110.570000px;}
.y8{bottom:1122.810000px;}
.yea{bottom:1131.660000px;}
.y6d{bottom:1139.220000px;}
.y66{bottom:1140.660000px;}
.y4c{bottom:1140.840000px;}
.y9{bottom:1141.200000px;}
.yb0{bottom:1143.000000px;}
.yd8{bottom:1143.540000px;}
.y1{bottom:1199.520000px;}
.h19{height:30.339844px;}
.h1a{height:35.194219px;}
.h10{height:41.535703px;}
.he{height:45.509766px;}
.h1c{height:46.800000px;}
.h11{height:47.980898px;}
.ha{height:49.394180px;}
.h8{height:50.229844px;}
.hb{height:53.709961px;}
.h15{height:53.868164px;}
.hf{height:55.291992px;}
.h14{height:56.214844px;}
.hd{height:56.320312px;}
.h1d{height:57.240000px;}
.h12{height:59.439023px;}
.h1e{height:62.327813px;}
.h2{height:65.884219px;}
.h9{height:66.078281px;}
.h1b{height:68.971992px;}
.h7{height:69.086250px;}
.h18{height:70.474219px;}
.h4{height:74.004654px;}
.hc{height:75.093750px;}
.h13{height:81.101250px;}
.h6{height:83.787539px;}
.h5{height:240.150000px;}
.h3{height:402.870000px;}
.h16{height:892.980000px;}
.h17{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:135.936000px;}
.w9{width:309.990000px;}
.w3{width:493.125000px;}
.w4{width:680.325000px;}
.w5{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w8{width:1262.879981px;}
.w6{width:1262.880000px;}
.w7{width:1263.000000px;}
.x0{left:0.000000px;}
.x14{left:62.459987px;}
.x9{left:84.959987px;}
.x42{left:91.800000px;}
.xc{left:93.959987px;}
.x6{left:106.416000px;}
.xa{left:111.995987px;}
.x22{left:128.375987px;}
.x12{left:138.095987px;}
.x15{left:144.575987px;}
.x1c{left:146.015987px;}
.x7{left:148.494000px;}
.x10{left:149.795987px;}
.x1d{left:152.309987px;}
.x41{left:153.570000px;}
.x1{left:160.229987px;}
.x13{left:163.829987px;}
.x8{left:165.989987px;}
.x2c{left:171.029981px;}
.x1b{left:173.909987px;}
.x18{left:176.609987px;}
.x45{left:180.569987px;}
.x29{left:181.649981px;}
.x17{left:191.189987px;}
.x16{left:192.989987px;}
.x4{left:200.010000px;}
.x19{left:203.249987px;}
.x25{left:205.229987px;}
.x26{left:206.849987px;}
.x1f{left:208.649973px;}
.x20{left:213.869987px;}
.xf{left:225.929987px;}
.x4c{left:228.989987px;}
.x37{left:245.369987px;}
.x23{left:246.989987px;}
.xe{left:250.769987px;}
.x21{left:253.109987px;}
.x44{left:255.269987px;}
.x28{left:257.969987px;}
.x1a{left:259.049987px;}
.x2f{left:261.929987px;}
.x34{left:264.449987px;}
.x5{left:273.495000px;}
.x30{left:280.109987px;}
.x2e{left:290.234987px;}
.x24{left:301.034987px;}
.x27{left:314.534987px;}
.x3d{left:324.254987px;}
.x38{left:343.514987px;}
.x39{left:350.354987px;}
.x40{left:353.774987px;}
.x32{left:361.334987px;}
.x35{left:362.414987px;}
.x31{left:363.854987px;}
.x33{left:368.174987px;}
.x36{left:369.254987px;}
.x3c{left:375.734987px;}
.x1e{left:382.034987px;}
.x3f{left:387.794987px;}
.x3b{left:392.834987px;}
.x4b{left:444.494987px;}
.x3a{left:452.054987px;}
.x3e{left:618.764987px;}
.x43{left:653.505000px;}
.x4a{left:694.949987px;}
.x11{left:723.749987px;}
.x46{left:724.829987px;}
.x49{left:732.749987px;}
.xd{left:778.649987px;}
.xb{left:791.249987px;}
.x2{left:799.709987px;}
.x3{left:807.989987px;}
.x47{left:816.989987px;}
.x48{left:821.129987px;}
.x2a{left:1139.909981px;}
.x2b{left:1156.649981px;}
.x2d{left:1241.459981px;}
@media print{
.v7{vertical-align:-12.160000pt;}
.v3{vertical-align:-10.880000pt;}
.v1{vertical-align:-9.600000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.920000pt;}
.v8{vertical-align:12.160000pt;}
.v6{vertical-align:20.480000pt;}
.v9{vertical-align:23.040000pt;}
.v5{vertical-align:31.360000pt;}
.ls19{letter-spacing:-0.506667pt;}
.ls7{letter-spacing:-0.030720pt;}
.ls16{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.013440pt;}
.ls9{letter-spacing:0.015360pt;}
.ls17{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.083200pt;}
.lsb{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.133333pt;}
.ls6{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.202133pt;}
.ls1{letter-spacing:0.227733pt;}
.ls1a{letter-spacing:0.288000pt;}
.ls12{letter-spacing:0.303360pt;}
.ls3{letter-spacing:1.733120pt;}
.lsd{letter-spacing:2.373120pt;}
.ls4{letter-spacing:12.613120pt;}
.ls11{letter-spacing:14.719360pt;}
.ls13{letter-spacing:15.075200pt;}
.lsc{letter-spacing:15.173120pt;}
.ls10{letter-spacing:15.715200pt;}
.lse{letter-spacing:23.104000pt;}
.ls15{letter-spacing:40.959360pt;}
.ls14{letter-spacing:42.239360pt;}
.lsa{letter-spacing:52.751360pt;}
.ls8{letter-spacing:88.304640pt;}
.ws1d{word-spacing:-53.120000pt;}
.ws6{word-spacing:-48.000000pt;}
.wsa{word-spacing:-19.230720pt;}
.ws9{word-spacing:-19.184640pt;}
.ws2{word-spacing:-13.534613pt;}
.ws1{word-spacing:-13.306880pt;}
.wsb{word-spacing:-12.632320pt;}
.ws11{word-spacing:-11.686400pt;}
.ws5{word-spacing:-10.848000pt;}
.ws1c{word-spacing:-10.832000pt;}
.ws7{word-spacing:-10.560000pt;}
.wsd{word-spacing:-10.544000pt;}
.ws4{word-spacing:-9.704320pt;}
.ws3{word-spacing:-9.690880pt;}
.ws17{word-spacing:-8.368533pt;}
.ws12{word-spacing:-8.166400pt;}
.ws16{word-spacing:-7.232000pt;}
.ws13{word-spacing:-7.040000pt;}
.ws10{word-spacing:-0.336000pt;}
.wsc{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:0.128000pt;}
.ws8{word-spacing:0.304000pt;}
.wsf{word-spacing:0.368000pt;}
.ws18{word-spacing:3.136000pt;}
.ws1a{word-spacing:3.776000pt;}
.ws14{word-spacing:17.728000pt;}
.ws1b{word-spacing:92.447787pt;}
.ws19{word-spacing:93.727787pt;}
.ws15{word-spacing:168.607787pt;}
._16{margin-left:-3.467093pt;}
._d{margin-left:-2.472960pt;}
._1{margin-left:-1.059840pt;}
._9{width:1.059840pt;}
._19{width:2.001920pt;}
._13{width:3.415040pt;}
._7{width:4.986027pt;}
._8{width:6.297600pt;}
._18{width:7.233707pt;}
._a{width:8.235520pt;}
._4{width:9.303040pt;}
._5{width:11.128320pt;}
._10{width:12.191147pt;}
._17{width:14.307840pt;}
._1a{width:15.544320pt;}
._6{width:16.604160pt;}
._b{width:18.076160pt;}
._c{width:19.116373pt;}
._15{width:21.447680pt;}
._11{width:25.082880pt;}
._12{width:26.107307pt;}
._1b{width:27.179093pt;}
._e{width:28.321280pt;}
._f{width:29.330347pt;}
._14{width:43.747840pt;}
._20{width:56.006827pt;}
._1f{width:88.692907pt;}
._1e{width:121.762987pt;}
._1d{width:581.442987pt;}
._3{width:751.898027pt;}
._2{width:754.831787pt;}
._22{width:778.935680pt;}
._21{width:1015.397120pt;}
._1c{width:1184.138667pt;}
._0{width:2138.799787pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y106{bottom:11.680000pt;}
.y107{bottom:20.800000pt;}
.y3{bottom:51.200000pt;}
.ye7{bottom:51.232000pt;}
.y2{bottom:84.992000pt;}
.y99{bottom:118.432000pt;}
.y10d{bottom:126.752000pt;}
.y2d{bottom:126.912000pt;}
.yd7{bottom:130.112000pt;}
.y98{bottom:134.106667pt;}
.ya4{bottom:141.146667pt;}
.y4b{bottom:146.266667pt;}
.y97{bottom:148.186667pt;}
.yd6{bottom:151.386667pt;}
.y96{bottom:153.466667pt;}
.y2c{bottom:153.786667pt;}
.y10c{bottom:154.106667pt;}
.y128{bottom:154.746667pt;}
.y65{bottom:157.146667pt;}
.y5{bottom:165.280000pt;}
.y7{bottom:169.320000pt;}
.y117{bottom:169.626667pt;}
.yd5{bottom:172.826667pt;}
.y4a{bottom:173.146667pt;}
.y2b{bottom:180.666667pt;}
.y95{bottom:182.106667pt;}
.y9c{bottom:188.026667pt;}
.y89{bottom:190.426667pt;}
.y49{bottom:200.026667pt;}
.ya3{bottom:205.786667pt;}
.y2a{bottom:207.546667pt;}
.yaf{bottom:214.906667pt;}
.y5f{bottom:215.706667pt;}
.y75{bottom:216.826667pt;}
.yef{bottom:225.306667pt;}
.y8b{bottom:226.266667pt;}
.y102{bottom:226.746667pt;}
.y48{bottom:226.906667pt;}
.y88{bottom:231.706667pt;}
.y94{bottom:233.306667pt;}
.y29{bottom:234.266667pt;}
.yd4{bottom:236.826667pt;}
.y101{bottom:241.466667pt;}
.y74{bottom:248.826667pt;}
.y81{bottom:249.946667pt;}
.y87{bottom:252.986667pt;}
.y47{bottom:253.786667pt;}
.y93{bottom:254.586667pt;}
.yae{bottom:257.786667pt;}
.yd3{bottom:258.106667pt;}
.y5e{bottom:258.586667pt;}
.y123{bottom:259.226667pt;}
.y28{bottom:261.146667pt;}
.y6a{bottom:262.906667pt;}
.y100{bottom:269.786667pt;}
.yfb{bottom:271.066667pt;}
.y86{bottom:274.426667pt;}
.yfc{bottom:274.906667pt;}
.y92{bottom:275.866667pt;}
.yfa{bottom:277.946667pt;}
.yd2{bottom:279.546667pt;}
.y46{bottom:280.506667pt;}
.y122{bottom:282.426667pt;}
.ye9{bottom:283.266667pt;}
.y27{bottom:288.026667pt;}
.y73{bottom:292.226667pt;}
.y6c{bottom:293.346667pt;}
.y85{bottom:295.746667pt;}
.y69{bottom:296.066667pt;}
.y91{bottom:297.346667pt;}
.yd1{bottom:301.026667pt;}
.y5d{bottom:301.506667pt;}
.y121{bottom:305.826667pt;}
.y45{bottom:307.426667pt;}
.y68{bottom:309.026667pt;}
.yf8{bottom:313.026667pt;}
.ya2{bottom:313.186667pt;}
.y72{bottom:314.146667pt;}
.y26{bottom:314.946667pt;}
.y84{bottom:315.586667pt;}
.yf9{bottom:316.866667pt;}
.y90{bottom:318.626667pt;}
.yf7{bottom:319.906667pt;}
.yd0{bottom:322.306667pt;}
.yad{bottom:322.466667pt;}
.y120{bottom:329.026667pt;}
.y4{bottom:330.466667pt;}
.y44{bottom:334.306667pt;}
.y125{bottom:337.346667pt;}
.y25{bottom:341.826667pt;}
.y67{bottom:344.066667pt;}
.y5c{bottom:344.386667pt;}
.y80{bottom:351.586667pt;}
.ybb{bottom:353.186667pt;}
.yf5{bottom:355.266667pt;}
.y71{bottom:357.346667pt;}
.yf6{bottom:359.106667pt;}
.y64{bottom:361.186667pt;}
.yf3{bottom:362.146667pt;}
.yac{bottom:365.826667pt;}
.yf4{bottom:374.146667pt;}
.y43{bottom:377.186667pt;}
.y70{bottom:379.426667pt;}
.y24{bottom:384.706667pt;}
.ycf{bottom:386.306667pt;}
.y5b{bottom:387.106667pt;}
.y63{bottom:388.066667pt;}
.y11f{bottom:389.666667pt;}
.y7f{bottom:394.786667pt;}
.ya1{bottom:399.106667pt;}
.yf2{bottom:400.546667pt;}
.ya{bottom:403.906667pt;}
.y42{bottom:404.066667pt;}
.y9d{bottom:404.386667pt;}
.y116{bottom:406.146667pt;}
.yce{bottom:407.746667pt;}
.y23{bottom:411.586667pt;}
.y115{bottom:420.866667pt;}
.y6f{bottom:422.626667pt;}
.y129{bottom:425.986667pt;}
.ycd{bottom:429.026667pt;}
.y5a{bottom:429.986667pt;}
.y41{bottom:430.946667pt;}
.yf1{bottom:431.266667pt;}
.y11e{bottom:434.306667pt;}
.y114{bottom:435.586667pt;}
.y127{bottom:437.186667pt;}
.y7e{bottom:438.146667pt;}
.y22{bottom:438.306667pt;}
.yba{bottom:438.626667pt;}
.y113{bottom:450.306667pt;}
.ycc{bottom:450.466667pt;}
.yab{bottom:451.746667pt;}
.y11d{bottom:457.666667pt;}
.y40{bottom:457.826667pt;}
.y119{bottom:458.146667pt;}
.y7d{bottom:460.066667pt;}
.y21{bottom:465.186667pt;}
.y59{bottom:472.866667pt;}
.y11c{bottom:480.866667pt;}
.y3f{bottom:484.546667pt;}
.y20{bottom:492.066667pt;}
.y105{bottom:497.026667pt;}
.yb9{bottom:502.786667pt;}
.y7c{bottom:503.426667pt;}
.y3e{bottom:511.426667pt;}
.ycb{bottom:514.466667pt;}
.y58{bottom:515.746667pt;}
.y1f{bottom:518.946667pt;}
.y11b{bottom:525.506667pt;}
.y6e{bottom:535.773333pt;}
.yca{bottom:535.933333pt;}
.y9b{bottom:538.173333pt;}
.y3d{bottom:538.333333pt;}
.yb8{bottom:545.533333pt;}
.y1e{bottom:545.853333pt;}
.y9f{bottom:548.093333pt;}
.yff{bottom:549.053333pt;}
.yc9{bottom:557.213333pt;}
.y57{bottom:558.653333pt;}
.yaa{bottom:559.133333pt;}
.y62{bottom:565.213333pt;}
.yb7{bottom:567.453333pt;}
.yee{bottom:572.253333pt;}
.y1d{bottom:572.733333pt;}
.yfe{bottom:577.373333pt;}
.yc8{bottom:578.653333pt;}
.y3c{bottom:581.213333pt;}
.yb6{bottom:588.733333pt;}
.y8e{bottom:589.053333pt;}
.y61{bottom:592.093333pt;}
.y82{bottom:596.893333pt;}
.y9a{bottom:598.653333pt;}
.yc7{bottom:599.933333pt;}
.y56{bottom:601.533333pt;}
.y6b{bottom:605.053333pt;}
.y3b{bottom:608.093333pt;}
.yb5{bottom:610.173333pt;}
.ye5{bottom:610.653333pt;}
.y112{bottom:614.493333pt;}
.y1c{bottom:615.453333pt;}
.y6{bottom:623.293333pt;}
.yb4{bottom:631.453333pt;}
.ye4{bottom:632.093333pt;}
.y3a{bottom:634.973333pt;}
.y1b{bottom:642.333333pt;}
.y55{bottom:644.413333pt;}
.y8d{bottom:649.693333pt;}
.y7b{bottom:651.293333pt;}
.yb3{bottom:652.733333pt;}
.ybe{bottom:656.413333pt;}
.ye8{bottom:658.693333pt;}
.y39{bottom:661.693333pt;}
.yc6{bottom:664.093333pt;}
.y1a{bottom:669.213333pt;}
.ye3{bottom:674.813333pt;}
.y124{bottom:679.933333pt;}
.yc5{bottom:685.373333pt;}
.y54{bottom:687.133333pt;}
.ya9{bottom:687.773333pt;}
.y104{bottom:688.093333pt;}
.y38{bottom:688.573333pt;}
.y7a{bottom:692.573333pt;}
.y19{bottom:696.093333pt;}
.y118{bottom:696.413333pt;}
.y10b{bottom:698.333333pt;}
.ybd{bottom:701.693333pt;}
.y111{bottom:701.853333pt;}
.yc4{bottom:706.813333pt;}
.y79{bottom:714.493333pt;}
.y37{bottom:715.453333pt;}
.y103{bottom:716.413333pt;}
.ye2{bottom:717.533333pt;}
.y18{bottom:722.973333pt;}
.yc3{bottom:728.093333pt;}
.y53{bottom:730.013333pt;}
.y11a{bottom:735.933333pt;}
.y78{bottom:736.413333pt;}
.ye6{bottom:737.440000pt;}
.ye1{bottom:738.813333pt;}
.y36{bottom:742.333333pt;}
.ye{bottom:746.173333pt;}
.y17{bottom:749.853333pt;}
.yf0{bottom:758.333333pt;}
.yed{bottom:764.893333pt;}
.ybc{bottom:765.693333pt;}
.y35{bottom:769.253333pt;}
.yd{bottom:770.533333pt;}
.y52{bottom:772.933333pt;}
.y16{bottom:776.773333pt;}
.y77{bottom:779.813333pt;}
.ye0{bottom:781.573333pt;}
.y110{bottom:789.253333pt;}
.ya8{bottom:795.173333pt;}
.y60{bottom:796.133333pt;}
.yb2{bottom:802.373333pt;}
.ydf{bottom:803.013333pt;}
.y15{bottom:803.493333pt;}
.y83{bottom:805.733333pt;}
.y10a{bottom:807.013333pt;}
.y34{bottom:812.133333pt;}
.yc2{bottom:813.573333pt;}
.y51{bottom:815.813333pt;}
.yde{bottom:824.293333pt;}
.yec{bottom:829.573333pt;}
.y8c{bottom:829.733333pt;}
.y109{bottom:830.373333pt;}
.yc1{bottom:834.853333pt;}
.y33{bottom:839.013333pt;}
.ydd{bottom:845.733333pt;}
.y14{bottom:846.373333pt;}
.y10f{bottom:855.173333pt;}
.yc0{bottom:856.293333pt;}
.y50{bottom:858.693333pt;}
.yc{bottom:864.613333pt;}
.y32{bottom:865.733333pt;}
.ya6{bottom:865.893333pt;}
.yb1{bottom:866.373333pt;}
.y126{bottom:867.013333pt;}
.y9e{bottom:872.453333pt;}
.y13{bottom:873.253333pt;}
.ya7{bottom:881.253333pt;}
.yeb{bottom:881.733333pt;}
.yb{bottom:882.533333pt;}
.ydc{bottom:888.293333pt;}
.yfd{bottom:889.733333pt;}
.y31{bottom:892.613333pt;}
.y108{bottom:894.373333pt;}
.y12{bottom:900.133333pt;}
.y4f{bottom:901.573333pt;}
.y76{bottom:904.453333pt;}
.y8a{bottom:907.013333pt;}
.ydb{bottom:909.733333pt;}
.y30{bottom:919.493333pt;}
.y8f{bottom:920.933333pt;}
.y11{bottom:927.013333pt;}
.yda{bottom:931.013333pt;}
.ya0{bottom:931.653333pt;}
.y10e{bottom:942.533333pt;}
.y4e{bottom:944.293333pt;}
.y2f{bottom:946.373333pt;}
.ya5{bottom:951.973333pt;}
.yd9{bottom:952.453333pt;}
.y10{bottom:953.893333pt;}
.y2e{bottom:973.253333pt;}
.ybf{bottom:980.453333pt;}
.yf{bottom:980.613333pt;}
.y4d{bottom:987.173333pt;}
.y8{bottom:998.053333pt;}
.yea{bottom:1005.920000pt;}
.y6d{bottom:1012.640000pt;}
.y66{bottom:1013.920000pt;}
.y4c{bottom:1014.080000pt;}
.y9{bottom:1014.400000pt;}
.yb0{bottom:1016.000000pt;}
.yd8{bottom:1016.480000pt;}
.y1{bottom:1066.240000pt;}
.h19{height:26.968750pt;}
.h1a{height:31.283750pt;}
.h10{height:36.920625pt;}
.he{height:40.453125pt;}
.h1c{height:41.600000pt;}
.h11{height:42.649687pt;}
.ha{height:43.905937pt;}
.h8{height:44.648750pt;}
.hb{height:47.742188pt;}
.h15{height:47.882812pt;}
.hf{height:49.148438pt;}
.h14{height:49.968750pt;}
.hd{height:50.062500pt;}
.h1d{height:50.880000pt;}
.h12{height:52.834688pt;}
.h1e{height:55.402500pt;}
.h2{height:58.563750pt;}
.h9{height:58.736250pt;}
.h1b{height:61.308438pt;}
.h7{height:61.410000pt;}
.h18{height:62.643750pt;}
.h4{height:65.781915pt;}
.hc{height:66.750000pt;}
.h13{height:72.090000pt;}
.h6{height:74.477812pt;}
.h5{height:213.466667pt;}
.h3{height:358.106667pt;}
.h16{height:793.760000pt;}
.h17{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:120.832000pt;}
.w9{width:275.546667pt;}
.w3{width:438.333333pt;}
.w4{width:604.733333pt;}
.w5{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w8{width:1122.559983pt;}
.w6{width:1122.560000pt;}
.w7{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x14{left:55.519988pt;}
.x9{left:75.519988pt;}
.x42{left:81.600000pt;}
.xc{left:83.519988pt;}
.x6{left:94.592000pt;}
.xa{left:99.551988pt;}
.x22{left:114.111988pt;}
.x12{left:122.751988pt;}
.x15{left:128.511988pt;}
.x1c{left:129.791988pt;}
.x7{left:131.994667pt;}
.x10{left:133.151988pt;}
.x1d{left:135.386655pt;}
.x41{left:136.506667pt;}
.x1{left:142.426655pt;}
.x13{left:145.626655pt;}
.x8{left:147.546655pt;}
.x2c{left:152.026650pt;}
.x1b{left:154.586655pt;}
.x18{left:156.986655pt;}
.x45{left:160.506655pt;}
.x29{left:161.466650pt;}
.x17{left:169.946655pt;}
.x16{left:171.546655pt;}
.x4{left:177.786667pt;}
.x19{left:180.666655pt;}
.x25{left:182.426655pt;}
.x26{left:183.866655pt;}
.x1f{left:185.466643pt;}
.x20{left:190.106655pt;}
.xf{left:200.826655pt;}
.x4c{left:203.546655pt;}
.x37{left:218.106655pt;}
.x23{left:219.546655pt;}
.xe{left:222.906655pt;}
.x21{left:224.986655pt;}
.x44{left:226.906655pt;}
.x28{left:229.306655pt;}
.x1a{left:230.266655pt;}
.x2f{left:232.826655pt;}
.x34{left:235.066655pt;}
.x5{left:243.106667pt;}
.x30{left:248.986655pt;}
.x2e{left:257.986655pt;}
.x24{left:267.586655pt;}
.x27{left:279.586655pt;}
.x3d{left:288.226655pt;}
.x38{left:305.346655pt;}
.x39{left:311.426655pt;}
.x40{left:314.466655pt;}
.x32{left:321.186655pt;}
.x35{left:322.146655pt;}
.x31{left:323.426655pt;}
.x33{left:327.266655pt;}
.x36{left:328.226655pt;}
.x3c{left:333.986655pt;}
.x1e{left:339.586655pt;}
.x3f{left:344.706655pt;}
.x3b{left:349.186655pt;}
.x4b{left:395.106655pt;}
.x3a{left:401.826655pt;}
.x3e{left:550.013322pt;}
.x43{left:580.893333pt;}
.x4a{left:617.733322pt;}
.x11{left:643.333322pt;}
.x46{left:644.293322pt;}
.x49{left:651.333322pt;}
.xd{left:692.133322pt;}
.xb{left:703.333322pt;}
.x2{left:710.853322pt;}
.x3{left:718.213322pt;}
.x47{left:726.213322pt;}
.x48{left:729.893322pt;}
.x2a{left:1013.253317pt;}
.x2b{left:1028.133317pt;}
.x2d{left:1103.519983pt;}
}




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