
    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_defd2f28e4b9e75369faeef7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_c2ad4831a6eebac646b3283f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.871094;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_9844b6799bad81194d57cee0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_8072ae1422f9289e2d70f2c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.987305;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_401e93908afa11e5d6f65b4b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.012695;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_4cd3d28f0897dbe1588822f6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.980957;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_9b633f86b4e9d3db21706bff.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_26f4f28b0aa712214cac0331.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_63c319fb14e4339768891a92.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-30.241380px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.241380px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.029220px;}
.ls8{letter-spacing:0.386340px;}
.ls7{letter-spacing:0.497637px;}
.ls6{letter-spacing:0.538289px;}
.ls4{letter-spacing:31.924080px;}
.ls5{letter-spacing:33.365880px;}
.ls2{letter-spacing:34.810020px;}
.ls1{letter-spacing:40.579800px;}
.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;}
}
.ws4{word-spacing:-18.072000px;}
.ws3{word-spacing:-17.208000px;}
.ws6{word-spacing:-15.632498px;}
.ws7{word-spacing:-15.180480px;}
.ws0{word-spacing:-14.970104px;}
.ws2{word-spacing:-14.454720px;}
.ws5{word-spacing:-10.481760px;}
.ws9{word-spacing:-10.256517px;}
.ws8{word-spacing:-9.758880px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-2.732438px;}
._0{margin-left:-1.228408px;}
._1{width:1.076803px;}
._7{width:2.303541px;}
._a{width:3.384242px;}
._5{width:4.599451px;}
._2{width:5.845518px;}
._3{width:6.862534px;}
._d{width:8.353482px;}
._10{width:9.590474px;}
._f{width:10.823882px;}
._8{width:12.497198px;}
._9{width:13.604446px;}
._11{width:14.694610px;}
._e{width:16.245301px;}
._12{width:17.751056px;}
._c{width:18.902414px;}
._b{width:19.960034px;}
._14{width:21.058255px;}
._15{width:23.641190px;}
._4{width:26.716830px;}
._13{width:28.458733px;}
._18{width:47.520819px;}
._16{width:142.911836px;}
._17{width:195.457234px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,204);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs6{font-size:54.719400px;}
.fs4{font-size:60.480000px;}
.fs0{font-size:66.239400px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs3{font-size:83.520000px;}
.fs5{font-size:96.479400px;}
.y57{bottom:-9.359760px;}
.y0{bottom:0.000000px;}
.y59{bottom:4.320000px;}
.y56{bottom:12.959760px;}
.y55{bottom:20.159850px;}
.y54{bottom:36.359850px;}
.y53{bottom:52.920150px;}
.y1{bottom:54.000000px;}
.y52{bottom:69.479850px;}
.y51{bottom:85.679850px;}
.yb1{bottom:113.043150px;}
.yf5{bottom:115.202250px;}
.y10e{bottom:115.561950px;}
.y50{bottom:117.000450px;}
.yd4{bottom:126.722250px;}
.y132{bottom:131.042550px;}
.y156{bottom:133.200300px;}
.yb0{bottom:133.202850px;}
.yf4{bottom:135.361950px;}
.y10d{bottom:135.722250px;}
.y4f{bottom:137.160150px;}
.y87{bottom:140.402250px;}
.yd3{bottom:146.881950px;}
.y23{bottom:150.480450px;}
.y131{bottom:151.202250px;}
.yaf{bottom:153.362550px;}
.yf3{bottom:155.522250px;}
.y10c{bottom:155.881950px;}
.y4e{bottom:157.320450px;}
.y155{bottom:160.560000px;}
.y86{bottom:160.561950px;}
.yd2{bottom:167.042250px;}
.y130{bottom:171.361950px;}
.yae{bottom:173.522850px;}
.yf2{bottom:175.681950px;}
.y10b{bottom:176.042250px;}
.y4d{bottom:177.120450px;}
.y154{bottom:178.560000px;}
.y85{bottom:180.722250px;}
.yd1{bottom:187.201950px;}
.y12f{bottom:191.522250px;}
.yad{bottom:193.682550px;}
.yf1{bottom:195.842250px;}
.y10a{bottom:196.201950px;}
.y4c{bottom:197.280150px;}
.y84{bottom:200.881950px;}
.y153{bottom:205.920300px;}
.yd0{bottom:207.361650px;}
.y12e{bottom:211.681950px;}
.yac{bottom:213.842850px;}
.yf0{bottom:216.001950px;}
.y109{bottom:216.361650px;}
.y4b{bottom:217.440450px;}
.y22{bottom:219.960300px;}
.y83{bottom:221.042250px;}
.ycf{bottom:227.521950px;}
.y12d{bottom:231.842250px;}
.y152{bottom:233.280000px;}
.yab{bottom:234.002550px;}
.y108{bottom:236.521950px;}
.y21{bottom:237.960300px;}
.y82{bottom:241.201950px;}
.yef{bottom:245.161650px;}
.y4a{bottom:246.600150px;}
.yce{bottom:247.681650px;}
.y12c{bottom:252.001950px;}
.y20{bottom:256.320600px;}
.y151{bottom:260.640300px;}
.y81{bottom:261.361650px;}
.yaa{bottom:263.162250px;}
.yee{bottom:265.321950px;}
.y107{bottom:265.681650px;}
.y49{bottom:266.759850px;}
.ycd{bottom:267.841950px;}
.y12b{bottom:272.161650px;}
.y150{bottom:279.000000px;}
.y80{bottom:281.521950px;}
.ya9{bottom:283.322550px;}
.y1f{bottom:283.680300px;}
.yed{bottom:285.481650px;}
.y106{bottom:285.841950px;}
.y48{bottom:286.920150px;}
.y12a{bottom:292.321950px;}
.ycc{bottom:297.001650px;}
.y14f{bottom:297.359700px;}
.y1e{bottom:302.040600px;}
.ya8{bottom:303.482250px;}
.y105{bottom:306.001650px;}
.y47{bottom:307.079850px;}
.y7f{bottom:310.681650px;}
.y129{bottom:312.481650px;}
.yec{bottom:314.641950px;}
.ycb{bottom:317.161350px;}
.y1d{bottom:320.400300px;}
.ya7{bottom:323.642550px;}
.y14e{bottom:324.720000px;}
.y104{bottom:326.161350px;}
.y46{bottom:327.240150px;}
.y7e{bottom:330.841950px;}
.y128{bottom:332.641950px;}
.yeb{bottom:334.801650px;}
.yca{bottom:337.321650px;}
.y1c{bottom:338.760000px;}
.ya6{bottom:343.802250px;}
.y103{bottom:346.321650px;}
.y45{bottom:347.399850px;}
.y7d{bottom:351.001650px;}
.y14d{bottom:351.720000px;}
.y127{bottom:352.801650px;}
.yea{bottom:354.961350px;}
.yc9{bottom:357.121650px;}
.ya5{bottom:363.961950px;}
.y1b{bottom:366.120300px;}
.y102{bottom:366.121650px;}
.y44{bottom:367.559550px;}
.y7c{bottom:371.161350px;}
.ye9{bottom:375.121650px;}
.yc8{bottom:377.281350px;}
.y14c{bottom:379.079700px;}
.y126{bottom:381.961350px;}
.ya4{bottom:384.122250px;}
.y101{bottom:386.281350px;}
.y43{bottom:387.719850px;}
.y7b{bottom:391.321650px;}
.y1a{bottom:393.479700px;}
.y125{bottom:402.121650px;}
.ye8{bottom:404.281350px;}
.ya3{bottom:404.281950px;}
.yc7{bottom:406.441650px;}
.y14b{bottom:409.680000px;}
.y7a{bottom:411.121650px;}
.y19{bottom:413.640300px;}
.y42{bottom:416.879550px;}
.y124{bottom:422.281350px;}
.ye7{bottom:424.441650px;}
.ya2{bottom:424.442250px;}
.y100{bottom:426.601350px;}
.y79{bottom:431.281350px;}
.y14a{bottom:432.360000px;}
.y18{bottom:433.800300px;}
.yc6{bottom:437.401350px;}
.y123{bottom:442.441650px;}
.ye6{bottom:444.241650px;}
.ya1{bottom:444.242250px;}
.y41{bottom:447.839850px;}
.y78{bottom:451.441650px;}
.y17{bottom:453.959700px;}
.y149{bottom:455.040000px;}
.yff{bottom:455.761050px;}
.y122{bottom:462.241650px;}
.ya0{bottom:464.401950px;}
.yc5{bottom:466.561050px;}
.y148{bottom:470.520300px;}
.y77{bottom:471.601350px;}
.ye5{bottom:473.401350px;}
.y16{bottom:474.120750px;}
.y40{bottom:478.439850px;}
.y9f{bottom:484.561650px;}
.yc4{bottom:486.721350px;}
.y121{bottom:491.401350px;}
.y76{bottom:491.761050px;}
.ye4{bottom:493.561050px;}
.y15{bottom:494.280450px;}
.y147{bottom:496.440000px;}
.y3f{bottom:496.800150px;}
.y9e{bottom:504.721950px;}
.yc3{bottom:506.881050px;}
.y146{bottom:511.559700px;}
.y120{bottom:511.561050px;}
.y75{bottom:511.921350px;}
.ye3{bottom:513.721350px;}
.y14{bottom:514.440750px;}
.y3e{bottom:515.160450px;}
.yfe{bottom:515.881050px;}
.y9d{bottom:524.881650px;}
.yc2{bottom:527.041350px;}
.y11f{bottom:531.721350px;}
.y74{bottom:532.081050px;}
.y3d{bottom:533.160450px;}
.ye2{bottom:533.881050px;}
.y13{bottom:534.600450px;}
.yfd{bottom:536.041350px;}
.y145{bottom:537.480000px;}
.y9c{bottom:545.041950px;}
.y3c{bottom:551.520750px;}
.y11e{bottom:551.881050px;}
.y12{bottom:552.240750px;}
.y73{bottom:552.241350px;}
.ye1{bottom:554.041350px;}
.yc1{bottom:556.201050px;}
.y144{bottom:560.160000px;}
.y9b{bottom:565.201650px;}
.y3b{bottom:569.880450px;}
.y11d{bottom:572.041350px;}
.y72{bottom:572.401050px;}
.ye0{bottom:574.201050px;}
.y143{bottom:575.640000px;}
.yc0{bottom:576.360750px;}
.y9a{bottom:585.361350px;}
.y3a{bottom:588.240750px;}
.y11c{bottom:592.201050px;}
.y71{bottom:592.560750px;}
.ydf{bottom:594.360750px;}
.ybf{bottom:596.521050px;}
.y142{bottom:601.200000px;}
.y99{bottom:605.521650px;}
.y39{bottom:606.600450px;}
.y11b{bottom:612.360750px;}
.y70{bottom:612.721050px;}
.yde{bottom:614.521050px;}
.ybe{bottom:616.680750px;}
.y141{bottom:617.040900px;}
.y38{bottom:624.960750px;}
.y98{bottom:625.681350px;}
.y11a{bottom:632.521050px;}
.y6f{bottom:632.880750px;}
.ydd{bottom:634.680750px;}
.ybd{bottom:636.841050px;}
.y11{bottom:639.360300px;}
.y37{bottom:643.320450px;}
.y140{bottom:645.840900px;}
.yfc{bottom:645.841050px;}
.y97{bottom:645.841650px;}
.y119{bottom:652.680750px;}
.y6e{bottom:653.041050px;}
.ydc{bottom:654.841050px;}
.ybc{bottom:657.000750px;}
.y36{bottom:661.320450px;}
.y10{bottom:661.320600px;}
.yfb{bottom:666.000750px;}
.y96{bottom:666.001350px;}
.y118{bottom:672.841050px;}
.y6d{bottom:673.200750px;}
.y13f{bottom:673.560450px;}
.ydb{bottom:675.000750px;}
.ybb{bottom:677.160450px;}
.y35{bottom:679.680150px;}
.yf{bottom:683.280300px;}
.yfa{bottom:686.160450px;}
.y117{bottom:693.000750px;}
.y6c{bottom:693.360450px;}
.yda{bottom:695.160450px;}
.y95{bottom:695.161050px;}
.yba{bottom:697.320750px;}
.y34{bottom:698.040450px;}
.y13e{bottom:702.720750px;}
.ye{bottom:705.240600px;}
.yf9{bottom:706.320750px;}
.y116{bottom:713.160450px;}
.y6b{bottom:713.520750px;}
.yd9{bottom:715.320750px;}
.y94{bottom:715.321350px;}
.y33{bottom:716.400150px;}
.yb9{bottom:726.480450px;}
.yd{bottom:727.200300px;}
.y13d{bottom:731.880450px;}
.y115{bottom:733.320750px;}
.y6a{bottom:733.680450px;}
.y32{bottom:734.759850px;}
.yd8{bottom:735.480450px;}
.y93{bottom:735.481050px;}
.y162{bottom:741.960000px;}
.yf8{bottom:746.640750px;}
.yc{bottom:749.160150px;}
.y13c{bottom:752.040750px;}
.y31{bottom:753.120150px;}
.y114{bottom:753.480450px;}
.y69{bottom:753.840750px;}
.yb8{bottom:755.640750px;}
.y92{bottom:755.641350px;}
.yb{bottom:771.120450px;}
.y30{bottom:771.479850px;}
.y13b{bottom:771.840750px;}
.y113{bottom:773.640750px;}
.y68{bottom:774.000450px;}
.yb7{bottom:775.800450px;}
.y91{bottom:775.801050px;}
.y2f{bottom:789.840150px;}
.y161{bottom:792.000000px;}
.y13a{bottom:792.000450px;}
.ya{bottom:793.440600px;}
.y112{bottom:793.800450px;}
.y67{bottom:794.160150px;}
.yb6{bottom:795.960750px;}
.y90{bottom:795.961350px;}
.y2e{bottom:807.840150px;}
.y160{bottom:812.159700px;}
.y139{bottom:812.160150px;}
.y66{bottom:813.960750px;}
.y9{bottom:815.400300px;}
.yb5{bottom:816.120450px;}
.y8f{bottom:816.121050px;}
.yd7{bottom:825.120450px;}
.y2d{bottom:826.199850px;}
.y15f{bottom:832.320000px;}
.y138{bottom:832.320450px;}
.y65{bottom:834.120450px;}
.yb4{bottom:836.280150px;}
.y8{bottom:837.360000px;}
.y2c{bottom:844.559550px;}
.yd6{bottom:845.280150px;}
.y8e{bottom:845.280750px;}
.y15e{bottom:852.479700px;}
.y137{bottom:852.480150px;}
.y64{bottom:854.280150px;}
.yb3{bottom:856.080150px;}
.y7{bottom:862.560000px;}
.y2b{bottom:862.919850px;}
.yd5{bottom:865.080150px;}
.y8d{bottom:865.080750px;}
.y15d{bottom:872.640000px;}
.y136{bottom:872.640450px;}
.y111{bottom:874.080150px;}
.y63{bottom:874.440450px;}
.y2a{bottom:881.280150px;}
.y8c{bottom:885.240450px;}
.y6{bottom:888.120000px;}
.y15c{bottom:892.440300px;}
.y135{bottom:892.800150px;}
.y110{bottom:894.240450px;}
.y62{bottom:894.600150px;}
.y29{bottom:899.640450px;}
.y8b{bottom:905.400150px;}
.yb2{bottom:914.400150px;}
.y61{bottom:914.760450px;}
.y5{bottom:915.120000px;}
.y28{bottom:918.360000px;}
.y134{bottom:921.960450px;}
.y15b{bottom:924.120150px;}
.yf7{bottom:925.559850px;}
.y8a{bottom:934.559850px;}
.y4{bottom:937.080000px;}
.y27{bottom:943.559700px;}
.y60{bottom:943.920150px;}
.yf6{bottom:945.720150px;}
.y133{bottom:952.920150px;}
.y89{bottom:954.720150px;}
.y3{bottom:959.040000px;}
.y26{bottom:969.120000px;}
.y15a{bottom:972.720150px;}
.y5f{bottom:974.879850px;}
.y2{bottom:976.320000px;}
.y10f{bottom:983.879850px;}
.y25{bottom:995.040150px;}
.y159{bottom:1000.079850px;}
.y5e{bottom:1004.040150px;}
.y88{bottom:1015.199850px;}
.y24{bottom:1021.320000px;}
.y5d{bottom:1024.199850px;}
.y158{bottom:1027.440150px;}
.y5c{bottom:1044.359550px;}
.y157{bottom:1045.799850px;}
.y5b{bottom:1064.519850px;}
.y5a{bottom:1099.440000px;}
.y58{bottom:1115.280000px;}
.h13{height:3.599940px;}
.h14{height:19.800000px;}
.h1a{height:29.824453px;}
.h11{height:37.913491px;}
.h12{height:39.276132px;}
.h9{height:41.904844px;}
.h8{height:43.410938px;}
.h17{height:44.148819px;}
.he{height:44.503594px;}
.h15{height:45.022092px;}
.h16{height:45.895366px;}
.hd{height:46.393594px;}
.h1{height:47.544882px;}
.h1b{height:47.545482px;}
.h7{height:47.546082px;}
.h6{height:48.937500px;}
.h5{height:49.886719px;}
.h10{height:50.811571px;}
.h3{height:51.679688px;}
.hf{height:52.980469px;}
.hc{height:55.230469px;}
.h2{height:55.814063px;}
.h4{height:59.948438px;}
.h19{height:62.272712px;}
.h18{height:62.275052px;}
.hb{height:64.067344px;}
.ha{height:70.993387px;}
.h0{height:1188.000000px;}
.w1{width:7.919400px;}
.w6{width:7.920150px;}
.w3{width:8.280000px;}
.w2{width:16.560000px;}
.w5{width:16.560450px;}
.w8{width:25.200000px;}
.w7{width:407.159850px;}
.w4{width:481.680000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x19{left:100.800000px;}
.xc{left:107.999132px;}
.x1f{left:110.159700px;}
.x9{left:116.280207px;}
.xa{left:120.239831px;}
.x1a{left:122.040300px;}
.x20{left:126.720150px;}
.x17{left:129.237821px;}
.x8{left:132.840183px;}
.x21{left:142.920150px;}
.x24{left:150.480382px;}
.x18{left:160.917964px;}
.x23{left:161.999888px;}
.x13{left:223.200214px;}
.x11{left:272.159884px;}
.x14{left:277.919396px;}
.x1b{left:279.360000px;}
.xf{left:283.319889px;}
.x1c{left:295.920000px;}
.x25{left:304.560000px;}
.x10{left:319.319909px;}
.x12{left:320.400826px;}
.x1d{left:321.480000px;}
.xb{left:324.719081px;}
.x15{left:331.200588px;}
.x6{left:349.200067px;}
.xd{left:365.399640px;}
.x7{left:366.840237px;}
.x4{left:386.280000px;}
.x3{left:401.400000px;}
.x5{left:459.000000px;}
.x22{left:550.080000px;}
.x16{left:586.079896px;}
.x2{left:709.920000px;}
.x1e{left:803.160000px;}
.x1{left:805.320000px;}
.xe{left:839.520097px;}
@media print{
.v2{vertical-align:-26.881227pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.881227pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.025973pt;}
.ls8{letter-spacing:0.343413pt;}
.ls7{letter-spacing:0.442344pt;}
.ls6{letter-spacing:0.478479pt;}
.ls4{letter-spacing:28.376960pt;}
.ls5{letter-spacing:29.658560pt;}
.ls2{letter-spacing:30.942240pt;}
.ls1{letter-spacing:36.070933pt;}
.ws4{word-spacing:-16.064000pt;}
.ws3{word-spacing:-15.296000pt;}
.ws6{word-spacing:-13.895554pt;}
.ws7{word-spacing:-13.493760pt;}
.ws0{word-spacing:-13.306759pt;}
.ws2{word-spacing:-12.848640pt;}
.ws5{word-spacing:-9.317120pt;}
.ws9{word-spacing:-9.116904pt;}
.ws8{word-spacing:-8.674560pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-2.428834pt;}
._0{margin-left:-1.091918pt;}
._1{width:0.957158pt;}
._7{width:2.047592pt;}
._a{width:3.008215pt;}
._5{width:4.088401pt;}
._2{width:5.196016pt;}
._3{width:6.100030pt;}
._d{width:7.425317pt;}
._10{width:8.524865pt;}
._f{width:9.621229pt;}
._8{width:11.108621pt;}
._9{width:12.092841pt;}
._11{width:13.061876pt;}
._e{width:14.440268pt;}
._12{width:15.778716pt;}
._c{width:16.802146pt;}
._b{width:17.742252pt;}
._14{width:18.718449pt;}
._15{width:21.014391pt;}
._4{width:23.748293pt;}
._13{width:25.296651pt;}
._18{width:42.240728pt;}
._16{width:127.032743pt;}
._17{width:173.739764pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs6{font-size:48.639467pt;}
.fs4{font-size:53.760000pt;}
.fs0{font-size:58.879467pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs3{font-size:74.240000pt;}
.fs5{font-size:85.759467pt;}
.y57{bottom:-8.319787pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:3.840000pt;}
.y56{bottom:11.519787pt;}
.y55{bottom:17.919867pt;}
.y54{bottom:32.319867pt;}
.y53{bottom:47.040133pt;}
.y1{bottom:48.000000pt;}
.y52{bottom:61.759867pt;}
.y51{bottom:76.159867pt;}
.yb1{bottom:100.482800pt;}
.yf5{bottom:102.402000pt;}
.y10e{bottom:102.721733pt;}
.y50{bottom:104.000400pt;}
.yd4{bottom:112.642000pt;}
.y132{bottom:116.482267pt;}
.y156{bottom:118.400267pt;}
.yb0{bottom:118.402533pt;}
.yf4{bottom:120.321733pt;}
.y10d{bottom:120.642000pt;}
.y4f{bottom:121.920133pt;}
.y87{bottom:124.802000pt;}
.yd3{bottom:130.561733pt;}
.y23{bottom:133.760400pt;}
.y131{bottom:134.402000pt;}
.yaf{bottom:136.322267pt;}
.yf3{bottom:138.242000pt;}
.y10c{bottom:138.561733pt;}
.y4e{bottom:139.840400pt;}
.y155{bottom:142.720000pt;}
.y86{bottom:142.721733pt;}
.yd2{bottom:148.482000pt;}
.y130{bottom:152.321733pt;}
.yae{bottom:154.242533pt;}
.yf2{bottom:156.161733pt;}
.y10b{bottom:156.482000pt;}
.y4d{bottom:157.440400pt;}
.y154{bottom:158.720000pt;}
.y85{bottom:160.642000pt;}
.yd1{bottom:166.401733pt;}
.y12f{bottom:170.242000pt;}
.yad{bottom:172.162267pt;}
.yf1{bottom:174.082000pt;}
.y10a{bottom:174.401733pt;}
.y4c{bottom:175.360133pt;}
.y84{bottom:178.561733pt;}
.y153{bottom:183.040267pt;}
.yd0{bottom:184.321467pt;}
.y12e{bottom:188.161733pt;}
.yac{bottom:190.082533pt;}
.yf0{bottom:192.001733pt;}
.y109{bottom:192.321467pt;}
.y4b{bottom:193.280400pt;}
.y22{bottom:195.520267pt;}
.y83{bottom:196.482000pt;}
.ycf{bottom:202.241733pt;}
.y12d{bottom:206.082000pt;}
.y152{bottom:207.360000pt;}
.yab{bottom:208.002267pt;}
.y108{bottom:210.241733pt;}
.y21{bottom:211.520267pt;}
.y82{bottom:214.401733pt;}
.yef{bottom:217.921467pt;}
.y4a{bottom:219.200133pt;}
.yce{bottom:220.161467pt;}
.y12c{bottom:224.001733pt;}
.y20{bottom:227.840533pt;}
.y151{bottom:231.680267pt;}
.y81{bottom:232.321467pt;}
.yaa{bottom:233.922000pt;}
.yee{bottom:235.841733pt;}
.y107{bottom:236.161467pt;}
.y49{bottom:237.119867pt;}
.ycd{bottom:238.081733pt;}
.y12b{bottom:241.921467pt;}
.y150{bottom:248.000000pt;}
.y80{bottom:250.241733pt;}
.ya9{bottom:251.842267pt;}
.y1f{bottom:252.160267pt;}
.yed{bottom:253.761467pt;}
.y106{bottom:254.081733pt;}
.y48{bottom:255.040133pt;}
.y12a{bottom:259.841733pt;}
.ycc{bottom:264.001467pt;}
.y14f{bottom:264.319733pt;}
.y1e{bottom:268.480533pt;}
.ya8{bottom:269.762000pt;}
.y105{bottom:272.001467pt;}
.y47{bottom:272.959867pt;}
.y7f{bottom:276.161467pt;}
.y129{bottom:277.761467pt;}
.yec{bottom:279.681733pt;}
.ycb{bottom:281.921200pt;}
.y1d{bottom:284.800267pt;}
.ya7{bottom:287.682267pt;}
.y14e{bottom:288.640000pt;}
.y104{bottom:289.921200pt;}
.y46{bottom:290.880133pt;}
.y7e{bottom:294.081733pt;}
.y128{bottom:295.681733pt;}
.yeb{bottom:297.601467pt;}
.yca{bottom:299.841467pt;}
.y1c{bottom:301.120000pt;}
.ya6{bottom:305.602000pt;}
.y103{bottom:307.841467pt;}
.y45{bottom:308.799867pt;}
.y7d{bottom:312.001467pt;}
.y14d{bottom:312.640000pt;}
.y127{bottom:313.601467pt;}
.yea{bottom:315.521200pt;}
.yc9{bottom:317.441467pt;}
.ya5{bottom:323.521733pt;}
.y1b{bottom:325.440267pt;}
.y102{bottom:325.441467pt;}
.y44{bottom:326.719600pt;}
.y7c{bottom:329.921200pt;}
.ye9{bottom:333.441467pt;}
.yc8{bottom:335.361200pt;}
.y14c{bottom:336.959733pt;}
.y126{bottom:339.521200pt;}
.ya4{bottom:341.442000pt;}
.y101{bottom:343.361200pt;}
.y43{bottom:344.639867pt;}
.y7b{bottom:347.841467pt;}
.y1a{bottom:349.759733pt;}
.y125{bottom:357.441467pt;}
.ye8{bottom:359.361200pt;}
.ya3{bottom:359.361733pt;}
.yc7{bottom:361.281467pt;}
.y14b{bottom:364.160000pt;}
.y7a{bottom:365.441467pt;}
.y19{bottom:367.680267pt;}
.y42{bottom:370.559600pt;}
.y124{bottom:375.361200pt;}
.ye7{bottom:377.281467pt;}
.ya2{bottom:377.282000pt;}
.y100{bottom:379.201200pt;}
.y79{bottom:383.361200pt;}
.y14a{bottom:384.320000pt;}
.y18{bottom:385.600267pt;}
.yc6{bottom:388.801200pt;}
.y123{bottom:393.281467pt;}
.ye6{bottom:394.881467pt;}
.ya1{bottom:394.882000pt;}
.y41{bottom:398.079867pt;}
.y78{bottom:401.281467pt;}
.y17{bottom:403.519733pt;}
.y149{bottom:404.480000pt;}
.yff{bottom:405.120933pt;}
.y122{bottom:410.881467pt;}
.ya0{bottom:412.801733pt;}
.yc5{bottom:414.720933pt;}
.y148{bottom:418.240267pt;}
.y77{bottom:419.201200pt;}
.ye5{bottom:420.801200pt;}
.y16{bottom:421.440667pt;}
.y40{bottom:425.279867pt;}
.y9f{bottom:430.721467pt;}
.yc4{bottom:432.641200pt;}
.y121{bottom:436.801200pt;}
.y76{bottom:437.120933pt;}
.ye4{bottom:438.720933pt;}
.y15{bottom:439.360400pt;}
.y147{bottom:441.280000pt;}
.y3f{bottom:441.600133pt;}
.y9e{bottom:448.641733pt;}
.yc3{bottom:450.560933pt;}
.y146{bottom:454.719733pt;}
.y120{bottom:454.720933pt;}
.y75{bottom:455.041200pt;}
.ye3{bottom:456.641200pt;}
.y14{bottom:457.280667pt;}
.y3e{bottom:457.920400pt;}
.yfe{bottom:458.560933pt;}
.y9d{bottom:466.561467pt;}
.yc2{bottom:468.481200pt;}
.y11f{bottom:472.641200pt;}
.y74{bottom:472.960933pt;}
.y3d{bottom:473.920400pt;}
.ye2{bottom:474.560933pt;}
.y13{bottom:475.200400pt;}
.yfd{bottom:476.481200pt;}
.y145{bottom:477.760000pt;}
.y9c{bottom:484.481733pt;}
.y3c{bottom:490.240667pt;}
.y11e{bottom:490.560933pt;}
.y12{bottom:490.880667pt;}
.y73{bottom:490.881200pt;}
.ye1{bottom:492.481200pt;}
.yc1{bottom:494.400933pt;}
.y144{bottom:497.920000pt;}
.y9b{bottom:502.401467pt;}
.y3b{bottom:506.560400pt;}
.y11d{bottom:508.481200pt;}
.y72{bottom:508.800933pt;}
.ye0{bottom:510.400933pt;}
.y143{bottom:511.680000pt;}
.yc0{bottom:512.320667pt;}
.y9a{bottom:520.321200pt;}
.y3a{bottom:522.880667pt;}
.y11c{bottom:526.400933pt;}
.y71{bottom:526.720667pt;}
.ydf{bottom:528.320667pt;}
.ybf{bottom:530.240933pt;}
.y142{bottom:534.400000pt;}
.y99{bottom:538.241467pt;}
.y39{bottom:539.200400pt;}
.y11b{bottom:544.320667pt;}
.y70{bottom:544.640933pt;}
.yde{bottom:546.240933pt;}
.ybe{bottom:548.160667pt;}
.y141{bottom:548.480800pt;}
.y38{bottom:555.520667pt;}
.y98{bottom:556.161200pt;}
.y11a{bottom:562.240933pt;}
.y6f{bottom:562.560667pt;}
.ydd{bottom:564.160667pt;}
.ybd{bottom:566.080933pt;}
.y11{bottom:568.320267pt;}
.y37{bottom:571.840400pt;}
.y140{bottom:574.080800pt;}
.yfc{bottom:574.080933pt;}
.y97{bottom:574.081467pt;}
.y119{bottom:580.160667pt;}
.y6e{bottom:580.480933pt;}
.ydc{bottom:582.080933pt;}
.ybc{bottom:584.000667pt;}
.y36{bottom:587.840400pt;}
.y10{bottom:587.840533pt;}
.yfb{bottom:592.000667pt;}
.y96{bottom:592.001200pt;}
.y118{bottom:598.080933pt;}
.y6d{bottom:598.400667pt;}
.y13f{bottom:598.720400pt;}
.ydb{bottom:600.000667pt;}
.ybb{bottom:601.920400pt;}
.y35{bottom:604.160133pt;}
.yf{bottom:607.360267pt;}
.yfa{bottom:609.920400pt;}
.y117{bottom:616.000667pt;}
.y6c{bottom:616.320400pt;}
.yda{bottom:617.920400pt;}
.y95{bottom:617.920933pt;}
.yba{bottom:619.840667pt;}
.y34{bottom:620.480400pt;}
.y13e{bottom:624.640667pt;}
.ye{bottom:626.880533pt;}
.yf9{bottom:627.840667pt;}
.y116{bottom:633.920400pt;}
.y6b{bottom:634.240667pt;}
.yd9{bottom:635.840667pt;}
.y94{bottom:635.841200pt;}
.y33{bottom:636.800133pt;}
.yb9{bottom:645.760400pt;}
.yd{bottom:646.400267pt;}
.y13d{bottom:650.560400pt;}
.y115{bottom:651.840667pt;}
.y6a{bottom:652.160400pt;}
.y32{bottom:653.119867pt;}
.yd8{bottom:653.760400pt;}
.y93{bottom:653.760933pt;}
.y162{bottom:659.520000pt;}
.yf8{bottom:663.680667pt;}
.yc{bottom:665.920133pt;}
.y13c{bottom:668.480667pt;}
.y31{bottom:669.440133pt;}
.y114{bottom:669.760400pt;}
.y69{bottom:670.080667pt;}
.yb8{bottom:671.680667pt;}
.y92{bottom:671.681200pt;}
.yb{bottom:685.440400pt;}
.y30{bottom:685.759867pt;}
.y13b{bottom:686.080667pt;}
.y113{bottom:687.680667pt;}
.y68{bottom:688.000400pt;}
.yb7{bottom:689.600400pt;}
.y91{bottom:689.600933pt;}
.y2f{bottom:702.080133pt;}
.y161{bottom:704.000000pt;}
.y13a{bottom:704.000400pt;}
.ya{bottom:705.280533pt;}
.y112{bottom:705.600400pt;}
.y67{bottom:705.920133pt;}
.yb6{bottom:707.520667pt;}
.y90{bottom:707.521200pt;}
.y2e{bottom:718.080133pt;}
.y160{bottom:721.919733pt;}
.y139{bottom:721.920133pt;}
.y66{bottom:723.520667pt;}
.y9{bottom:724.800267pt;}
.yb5{bottom:725.440400pt;}
.y8f{bottom:725.440933pt;}
.yd7{bottom:733.440400pt;}
.y2d{bottom:734.399867pt;}
.y15f{bottom:739.840000pt;}
.y138{bottom:739.840400pt;}
.y65{bottom:741.440400pt;}
.yb4{bottom:743.360133pt;}
.y8{bottom:744.320000pt;}
.y2c{bottom:750.719600pt;}
.yd6{bottom:751.360133pt;}
.y8e{bottom:751.360667pt;}
.y15e{bottom:757.759733pt;}
.y137{bottom:757.760133pt;}
.y64{bottom:759.360133pt;}
.yb3{bottom:760.960133pt;}
.y7{bottom:766.720000pt;}
.y2b{bottom:767.039867pt;}
.yd5{bottom:768.960133pt;}
.y8d{bottom:768.960667pt;}
.y15d{bottom:775.680000pt;}
.y136{bottom:775.680400pt;}
.y111{bottom:776.960133pt;}
.y63{bottom:777.280400pt;}
.y2a{bottom:783.360133pt;}
.y8c{bottom:786.880400pt;}
.y6{bottom:789.440000pt;}
.y15c{bottom:793.280267pt;}
.y135{bottom:793.600133pt;}
.y110{bottom:794.880400pt;}
.y62{bottom:795.200133pt;}
.y29{bottom:799.680400pt;}
.y8b{bottom:804.800133pt;}
.yb2{bottom:812.800133pt;}
.y61{bottom:813.120400pt;}
.y5{bottom:813.440000pt;}
.y28{bottom:816.320000pt;}
.y134{bottom:819.520400pt;}
.y15b{bottom:821.440133pt;}
.yf7{bottom:822.719867pt;}
.y8a{bottom:830.719867pt;}
.y4{bottom:832.960000pt;}
.y27{bottom:838.719733pt;}
.y60{bottom:839.040133pt;}
.yf6{bottom:840.640133pt;}
.y133{bottom:847.040133pt;}
.y89{bottom:848.640133pt;}
.y3{bottom:852.480000pt;}
.y26{bottom:861.440000pt;}
.y15a{bottom:864.640133pt;}
.y5f{bottom:866.559867pt;}
.y2{bottom:867.840000pt;}
.y10f{bottom:874.559867pt;}
.y25{bottom:884.480133pt;}
.y159{bottom:888.959867pt;}
.y5e{bottom:892.480133pt;}
.y88{bottom:902.399867pt;}
.y24{bottom:907.840000pt;}
.y5d{bottom:910.399867pt;}
.y158{bottom:913.280133pt;}
.y5c{bottom:928.319600pt;}
.y157{bottom:929.599867pt;}
.y5b{bottom:946.239867pt;}
.y5a{bottom:977.280000pt;}
.y58{bottom:991.360000pt;}
.h13{height:3.199947pt;}
.h14{height:17.600000pt;}
.h1a{height:26.510625pt;}
.h11{height:33.700880pt;}
.h12{height:34.912117pt;}
.h9{height:37.248750pt;}
.h8{height:38.587500pt;}
.h17{height:39.243395pt;}
.he{height:39.558750pt;}
.h15{height:40.019637pt;}
.h16{height:40.795880pt;}
.hd{height:41.238750pt;}
.h1{height:42.262117pt;}
.h1b{height:42.262651pt;}
.h7{height:42.263184pt;}
.h6{height:43.500000pt;}
.h5{height:44.343750pt;}
.h10{height:45.165841pt;}
.h3{height:45.937500pt;}
.hf{height:47.093750pt;}
.hc{height:49.093750pt;}
.h2{height:49.612500pt;}
.h4{height:53.287500pt;}
.h19{height:55.353522pt;}
.h18{height:55.355602pt;}
.hb{height:56.948750pt;}
.ha{height:63.105233pt;}
.h0{height:1056.000000pt;}
.w1{width:7.039467pt;}
.w6{width:7.040133pt;}
.w3{width:7.360000pt;}
.w2{width:14.720000pt;}
.w5{width:14.720400pt;}
.w8{width:22.400000pt;}
.w7{width:361.919867pt;}
.w4{width:428.160000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x19{left:89.600000pt;}
.xc{left:95.999229pt;}
.x1f{left:97.919733pt;}
.x9{left:103.360184pt;}
.xa{left:106.879850pt;}
.x1a{left:108.480267pt;}
.x20{left:112.640133pt;}
.x17{left:114.878063pt;}
.x8{left:118.080163pt;}
.x21{left:127.040133pt;}
.x24{left:133.760340pt;}
.x18{left:143.038191pt;}
.x23{left:143.999901pt;}
.x13{left:198.400190pt;}
.x11{left:241.919897pt;}
.x14{left:247.039463pt;}
.x1b{left:248.320000pt;}
.xf{left:251.839901pt;}
.x1c{left:263.040000pt;}
.x25{left:270.720000pt;}
.x10{left:283.839919pt;}
.x12{left:284.800734pt;}
.x1d{left:285.760000pt;}
.xb{left:288.639183pt;}
.x15{left:294.400523pt;}
.x6{left:310.400060pt;}
.xd{left:324.799680pt;}
.x7{left:326.080211pt;}
.x4{left:343.360000pt;}
.x3{left:356.800000pt;}
.x5{left:408.000000pt;}
.x22{left:488.960000pt;}
.x16{left:520.959907pt;}
.x2{left:631.040000pt;}
.x1e{left:713.920000pt;}
.x1{left:715.840000pt;}
.xe{left:746.240086pt;}
}




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