
    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_0b9244f339a710f5a72f2129.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.862793;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_08f1d3372a6bdbf39c8fbad0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.145508;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_bfb812d8bacd0d9f5e1a26b1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.139160;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_b5ca9046769e78901f777582.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.749512;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_2f4e28dcea46230afc84a7ae.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3af65251dd2aec7b84decb60.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.145508;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_4ecc318cbfd7e728701342ca.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.145508;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_b4f5bd948b05ecf893654795.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.145508;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_e9e0d5ee31aa08b76a19aa74.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.862793;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_2a1c5449e22b2af320a2a757.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m1{transform:matrix(0.241675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241675,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242200,0.000000,0.000000,0.250000,0,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);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-1.080000px;}
.ls6{letter-spacing:-0.504000px;}
.ls17{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.150000px;}
.ls1a{letter-spacing:-0.000003px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.012240px;}
.ls1e{letter-spacing:0.150000px;}
.ls1f{letter-spacing:0.174240px;}
.ls2{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.309000px;}
.ls7{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.366000px;}
.ls12{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.648000px;}
.ls14{letter-spacing:0.936000px;}
.lsa{letter-spacing:1.368000px;}
.lsf{letter-spacing:2.088000px;}
.ls13{letter-spacing:2.808000px;}
.ls15{letter-spacing:3.528000px;}
.lse{letter-spacing:4.968000px;}
.ls10{letter-spacing:5.688000px;}
.lsb{letter-spacing:6.408000px;}
.ls9{letter-spacing:8.568000px;}
.ls19{letter-spacing:15.768000px;}
.ls4{letter-spacing:15.984000px;}
.ls16{letter-spacing:16.488000px;}
.ls1d{letter-spacing:18.648000px;}
.ls8{letter-spacing:40.464000px;}
.ls20{letter-spacing:57.720000px;}
.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:-22.104000px;}
.ws6{word-spacing:-22.032000px;}
.ws5{word-spacing:-21.960000px;}
.ws4{word-spacing:-21.888000px;}
.ws8{word-spacing:-21.672000px;}
.wsd{word-spacing:-21.671997px;}
.ws3{word-spacing:-21.384000px;}
.ws9{word-spacing:-21.312000px;}
.wse{word-spacing:-21.240000px;}
.ws7{word-spacing:-21.168000px;}
.wsa{word-spacing:-20.592000px;}
.wsb{word-spacing:-18.353760px;}
.ws0{word-spacing:-14.520240px;}
.ws1{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._f{margin-left:-20.241552px;}
._13{margin-left:-18.180000px;}
._e{margin-left:-17.052000px;}
._4{margin-left:-15.732000px;}
._7{margin-left:-11.340000px;}
._9{margin-left:-10.001496px;}
._d{margin-left:-8.705496px;}
._c{margin-left:-6.492000px;}
._5{margin-left:-5.412000px;}
._6{margin-left:-4.272000px;}
._0{margin-left:-1.192055px;}
._2{width:1.053552px;}
._20{width:2.149249px;}
._14{width:3.168000px;}
._21{width:4.611648px;}
._23{width:6.024000px;}
._24{width:7.027865px;}
._1{width:8.789319px;}
._15{width:9.792000px;}
._16{width:10.905129px;}
._17{width:12.305742px;}
._1b{width:13.536000px;}
._1c{width:14.601880px;}
._1a{width:15.704284px;}
._26{width:16.833880px;}
._29{width:18.144000px;}
._19{width:19.224000px;}
._18{width:20.424000px;}
._22{width:23.152055px;}
._a{width:24.192000px;}
._b{width:25.207345px;}
._25{width:26.688000px;}
._1d{width:28.448110px;}
._1f{width:29.913552px;}
._1e{width:31.214448px;}
._2f{width:32.339758px;}
._30{width:33.540242px;}
._2c{width:34.600055px;}
._11{width:36.144000px;}
._10{width:37.152000px;}
._2d{width:38.318691px;}
._12{width:39.602448px;}
._34{width:42.816006px;}
._2b{width:44.568000px;}
._2a{width:45.576000px;}
._2e{width:46.720055px;}
._8{width:48.000000px;}
._32{width:49.723945px;}
._31{width:51.146616px;}
._28{width:52.174916px;}
._27{width:53.568000px;}
._3b{width:57.312000px;}
._3a{width:58.824000px;}
._39{width:72.556055px;}
._38{width:73.728000px;}
._33{width:77.832000px;}
._3{width:112.728000px;}
._36{width:194.388240px;}
._35{width:1302.780000px;}
._37{width:1334.460000px;}
.fc5{color:rgb(0,176,240);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(54,95,145);}
.fc2{color:transparent;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yf5{bottom:26.265000px;}
.yf0{bottom:26.295000px;}
.yeb{bottom:26.325000px;}
.yf4{bottom:52.365000px;}
.yef{bottom:52.395000px;}
.yea{bottom:52.425000px;}
.yf8{bottom:52.545000px;}
.y2{bottom:75.636000px;}
.yed{bottom:91.980000px;}
.ye8{bottom:92.010000px;}
.yf7{bottom:92.145000px;}
.y30{bottom:113.076000px;}
.y1{bottom:113.796000px;}
.y119{bottom:130.356000px;}
.y113{bottom:130.536000px;}
.y10a{bottom:132.336000px;}
.y9e{bottom:136.656000px;}
.yf9{bottom:138.276000px;}
.ybb{bottom:141.516000px;}
.y6c{bottom:145.656000px;}
.yd9{bottom:145.836000px;}
.y112{bottom:147.996000px;}
.y118{bottom:148.716000px;}
.y50{bottom:151.950000px;}
.yf6{bottom:152.865000px;}
.y111{bottom:153.210000px;}
.yd1{bottom:159.330000px;}
.y109{bottom:163.650000px;}
.y110{bottom:166.710000px;}
.y117{bottom:166.890000px;}
.y9d{bottom:167.970000px;}
.ye4{bottom:168.510000px;}
.y116{bottom:172.110000px;}
.yba{bottom:172.830000px;}
.y107{bottom:173.370000px;}
.y1a{bottom:174.270000px;}
.y6b{bottom:176.970000px;}
.yd8{bottom:177.150000px;}
.y83{bottom:181.470000px;}
.y4f{bottom:183.270000px;}
.y115{bottom:185.790000px;}
.ycb{bottom:186.330000px;}
.y108{bottom:194.970000px;}
.y9c{bottom:199.470000px;}
.ye3{bottom:199.830000px;}
.y10f{bottom:203.970000px;}
.yb9{bottom:204.150000px;}
.y106{bottom:204.690000px;}
.yd7{bottom:208.470000px;}
.y13b{bottom:212.790000px;}
.y4e{bottom:214.770000px;}
.y19{bottom:216.570000px;}
.yca{bottom:217.650000px;}
.y6a{bottom:221.970000px;}
.y82{bottom:226.470000px;}
.y9b{bottom:230.790000px;}
.ye2{bottom:231.150000px;}
.yb8{bottom:235.470000px;}
.y105{bottom:236.010000px;}
.y129{bottom:239.790000px;}
.yd6{bottom:239.970000px;}
.y13a{bottom:244.110000px;}
.y4d{bottom:246.090000px;}
.yc9{bottom:248.970000px;}
.yac{bottom:253.290000px;}
.y18{bottom:258.690000px;}
.yf3{bottom:259.785000px;}
.y9a{bottom:262.110000px;}
.ye1{bottom:262.470000px;}
.yb7{bottom:266.970000px;}
.y104{bottom:267.330000px;}
.y69{bottom:271.290000px;}
.y4c{bottom:277.410000px;}
.y10e{bottom:280.290000px;}
.yc8{bottom:280.470000px;}
.yab{bottom:284.610000px;}
.y139{bottom:288.930000px;}
.y99{bottom:293.430000px;}
.ye0{bottom:293.970000px;}
.yd0{bottom:298.290000px;}
.y103{bottom:298.830000px;}
.y17{bottom:300.990000px;}
.y81{bottom:302.610000px;}
.y4b{bottom:308.730000px;}
.y10d{bottom:311.610000px;}
.yb6{bottom:311.790000px;}
.yaa{bottom:315.930000px;}
.y68{bottom:316.110000px;}
.y138{bottom:320.250000px;}
.y98{bottom:324.750000px;}
.ydf{bottom:325.290000px;}
.ycf{bottom:329.655000px;}
.y102{bottom:330.195000px;}
.y80{bottom:333.975000px;}
.y4a{bottom:340.095000px;}
.yb5{bottom:343.155000px;}
.y16{bottom:343.335000px;}
.ya9{bottom:347.295000px;}
.y67{bottom:347.475000px;}
.y137{bottom:351.615000px;}
.y97{bottom:356.115000px;}
.yde{bottom:356.655000px;}
.yce{bottom:360.975000px;}
.y101{bottom:361.515000px;}
.y7f{bottom:365.295000px;}
.yf2{bottom:366.720000px;}
.yf1{bottom:366.735000px;}
.y10c{bottom:366.915000px;}
.y49{bottom:371.415000px;}
.yb4{bottom:374.475000px;}
.ya8{bottom:378.615000px;}
.y66{bottom:378.795000px;}
.y15{bottom:385.455000px;}
.ydd{bottom:387.975000px;}
.ycd{bottom:392.295000px;}
.y7e{bottom:396.615000px;}
.y96{bottom:401.115000px;}
.y48{bottom:402.915000px;}
.yb3{bottom:405.795000px;}
.y100{bottom:406.335000px;}
.y65{bottom:410.115000px;}
.y10b{bottom:411.735000px;}
.ydc{bottom:419.295000px;}
.y14c{bottom:423.075000px;}
.ycc{bottom:423.615000px;}
.y14{bottom:427.755000px;}
.y136{bottom:427.935000px;}
.y7d{bottom:428.115000px;}
.y95{bottom:432.435000px;}
.y47{bottom:434.235000px;}
.yb2{bottom:437.115000px;}
.yff{bottom:440.175000px;}
.y2f{bottom:441.075000px;}
.y128{bottom:441.435000px;}
.y11c{bottom:441.615000px;}
.ydb{bottom:450.615000px;}
.y14b{bottom:454.395000px;}
.ya7{bottom:454.935000px;}
.y64{bottom:455.115000px;}
.yfe{bottom:457.635000px;}
.y7c{bottom:459.435000px;}
.y94{bottom:463.755000px;}
.y46{bottom:465.555000px;}
.yb1{bottom:468.615000px;}
.y13{bottom:470.055000px;}
.y127{bottom:472.755000px;}
.y11b{bottom:472.935000px;}
.yee{bottom:473.640000px;}
.yec{bottom:473.655000px;}
.yda{bottom:482.115000px;}
.y63{bottom:486.435000px;}
.yfd{bottom:486.975000px;}
.y2e{bottom:487.515000px;}
.y7b{bottom:490.755000px;}
.y93{bottom:495.075000px;}
.y45{bottom:496.875000px;}
.y14a{bottom:499.215000px;}
.ya6{bottom:499.755000px;}
.yb0{bottom:499.935000px;}
.y126{bottom:504.075000px;}
.y11a{bottom:504.255000px;}
.y12{bottom:512.175000px;}
.yc7{bottom:513.435000px;}
.y62{bottom:517.755000px;}
.yd5{bottom:522.075000px;}
.y2d{bottom:526.395000px;}
.y44{bottom:528.195000px;}
.y149{bottom:530.715000px;}
.ya5{bottom:531.075000px;}
.yaf{bottom:531.255000px;}
.y125{bottom:535.395000px;}
.y7a{bottom:535.575000px;}
.yc6{bottom:544.755000px;}
.y61{bottom:549.075000px;}
.yd4{bottom:553.395000px;}
.y11{bottom:554.475000px;}
.y43{bottom:559.515000px;}
.y148{bottom:562.035000px;}
.yae{bottom:562.575000px;}
.y2c{bottom:565.275000px;}
.y124{bottom:566.715000px;}
.y79{bottom:566.895000px;}
.y92{bottom:571.215000px;}
.yc5{bottom:576.075000px;}
.y60{bottom:580.395000px;}
.ye9{bottom:582.360000px;}
.ye7{bottom:582.375000px;}
.yd3{bottom:584.715000px;}
.y42{bottom:591.015000px;}
.yad{bottom:593.895000px;}
.y10{bottom:596.805000px;}
.y78{bottom:598.245000px;}
.y2b{bottom:604.185000px;}
.y147{bottom:606.885000px;}
.yc4{bottom:607.425000px;}
.y5f{bottom:611.745000px;}
.y91{bottom:616.245000px;}
.y41{bottom:622.365000px;}
.ya4{bottom:625.245000px;}
.y77{bottom:629.745000px;}
.y146{bottom:638.205000px;}
.yc3{bottom:638.745000px;}
.yf{bottom:638.925000px;}
.y2a{bottom:643.065000px;}
.y5e{bottom:643.245000px;}
.ye5{bottom:647.565000px;}
.y40{bottom:653.685000px;}
.ya3{bottom:656.745000px;}
.y76{bottom:661.065000px;}
.yc2{bottom:670.245000px;}
.y29{bottom:674.205000px;}
.y123{bottom:674.385000px;}
.yd2{bottom:674.565000px;}
.ye{bottom:681.225000px;}
.y145{bottom:683.025000px;}
.yfc{bottom:683.565000px;}
.y3f{bottom:685.005000px;}
.y135{bottom:687.885000px;}
.y5d{bottom:688.065000px;}
.y90{bottom:692.385000px;}
.yc1{bottom:701.565000px;}
.y122{bottom:705.705000px;}
.y75{bottom:705.885000px;}
.ye6{bottom:707.325000px;}
.yfb{bottom:713.085000px;}
.y28{bottom:713.265000px;}
.y144{bottom:714.345000px;}
.y3e{bottom:716.325000px;}
.y134{bottom:719.205000px;}
.y5c{bottom:719.385000px;}
.y8f{bottom:723.705000px;}
.yd{bottom:729.645000px;}
.yc0{bottom:732.885000px;}
.y121{bottom:737.025000px;}
.y74{bottom:737.205000px;}
.y3d{bottom:747.645000px;}
.y133{bottom:750.525000px;}
.y5b{bottom:750.705000px;}
.y27{bottom:752.145000px;}
.y8e{bottom:755.025000px;}
.y143{bottom:759.345000px;}
.ybf{bottom:764.205000px;}
.y120{bottom:768.345000px;}
.y73{bottom:768.525000px;}
.y3c{bottom:779.145000px;}
.yc{bottom:779.865000px;}
.y5a{bottom:782.025000px;}
.y8d{bottom:786.345000px;}
.y26{bottom:791.025000px;}
.y132{bottom:795.345000px;}
.ybe{bottom:795.525000px;}
.y72{bottom:799.845000px;}
.y142{bottom:804.165000px;}
.y3b{bottom:810.465000px;}
.yb{bottom:811.185000px;}
.y59{bottom:813.345000px;}
.y8c{bottom:817.845000px;}
.ybd{bottom:826.845000px;}
.y25{bottom:829.725000px;}
.y11f{bottom:831.165000px;}
.y71{bottom:831.345000px;}
.y3a{bottom:841.785000px;}
.ya{bottom:842.685000px;}
.y58{bottom:844.845000px;}
.y141{bottom:848.985000px;}
.y8b{bottom:849.165000px;}
.y131{bottom:858.165000px;}
.ybc{bottom:858.345000px;}
.y70{bottom:862.710000px;}
.y24{bottom:868.650000px;}
.y39{bottom:873.150000px;}
.y11e{bottom:876.030000px;}
.y57{bottom:876.210000px;}
.y8a{bottom:880.530000px;}
.ya2{bottom:889.710000px;}
.y9{bottom:892.590000px;}
.y140{bottom:893.850000px;}
.yfa{bottom:896.910000px;}
.y23{bottom:899.790000px;}
.y130{bottom:903.030000px;}
.y38{bottom:904.470000px;}
.y56{bottom:907.530000px;}
.y89{bottom:911.850000px;}
.ya1{bottom:921.030000px;}
.y13f{bottom:925.170000px;}
.y11d{bottom:925.350000px;}
.y12f{bottom:934.350000px;}
.y37{bottom:935.790000px;}
.y22{bottom:938.850000px;}
.y8{bottom:947.850000px;}
.ya0{bottom:952.350000px;}
.y13e{bottom:956.490000px;}
.y88{bottom:956.670000px;}
.y12e{bottom:965.670000px;}
.y36{bottom:967.290000px;}
.y55{bottom:970.170000px;}
.y21{bottom:977.730000px;}
.y9f{bottom:983.670000px;}
.y87{bottom:987.990000px;}
.y7{bottom:996.990000px;}
.y35{bottom:998.610000px;}
.y6f{bottom:1001.490000px;}
.y54{bottom:1014.990000px;}
.y20{bottom:1016.610000px;}
.y86{bottom:1019.490000px;}
.y34{bottom:1029.930000px;}
.y6e{bottom:1032.990000px;}
.y6{bottom:1033.890000px;}
.y12d{bottom:1041.990000px;}
.y13d{bottom:1046.310000px;}
.y53{bottom:1046.490000px;}
.y1d{bottom:1047.750000px;}
.y85{bottom:1050.810000px;}
.y5{bottom:1051.890000px;}
.y1f{bottom:1055.490000px;}
.y33{bottom:1061.250000px;}
.y6d{bottom:1064.310000px;}
.y4{bottom:1065.750000px;}
.y12c{bottom:1073.310000px;}
.y52{bottom:1077.810000px;}
.y13c{bottom:1091.130000px;}
.y32{bottom:1092.570000px;}
.y3{bottom:1093.650000px;}
.y1c{bottom:1094.190000px;}
.y1e{bottom:1094.370000px;}
.y84{bottom:1095.630000px;}
.y12b{bottom:1104.630000px;}
.y51{bottom:1109.130000px;}
.y114{bottom:1115.070000px;}
.y12a{bottom:1135.980000px;}
.y31{bottom:1137.600000px;}
.y1b{bottom:1140.480000px;}
.h16{height:26.616094px;}
.h17{height:40.909922px;}
.h5{height:44.235703px;}
.h4{height:45.177891px;}
.h2{height:45.345937px;}
.hd{height:54.799453px;}
.ha{height:55.966641px;}
.h6{height:60.741562px;}
.h3{height:62.035312px;}
.h8{height:66.023438px;}
.h9{height:67.429688px;}
.h18{height:74.004654px;}
.hb{height:74.953125px;}
.h7{height:87.811172px;}
.h10{height:105.295500px;}
.h11{height:105.300000px;}
.h12{height:105.322500px;}
.hc{height:105.330000px;}
.he{height:105.336000px;}
.hf{height:105.345000px;}
.h13{height:105.471000px;}
.h14{height:105.480000px;}
.h15{height:1262.864910px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:131.242500px;}
.w3{width:171.210000px;}
.w4{width:171.225000px;}
.w5{width:171.375000px;}
.w6{width:171.390000px;}
.w7{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:11.355000px;}
.x1f{left:15.105000px;}
.x21{left:17.640000px;}
.x25{left:20.145000px;}
.x20{left:25.365000px;}
.x1b{left:36.705000px;}
.x23{left:39.225000px;}
.x1e{left:40.695000px;}
.x24{left:43.545000px;}
.x22{left:44.625000px;}
.x26{left:48.405000px;}
.x1d{left:52.215000px;}
.x19{left:59.220000px;}
.x16{left:65.505000px;}
.x18{left:85.500000px;}
.x1{left:106.416000px;}
.x2e{left:111.276000px;}
.xa{left:114.696000px;}
.x13{left:131.976000px;}
.x10{left:133.416000px;}
.x15{left:139.005000px;}
.x9{left:146.556000px;}
.x2f{left:159.330000px;}
.x11{left:160.410000px;}
.x2{left:177.330000px;}
.x14{left:182.910000px;}
.xb{left:190.650000px;}
.x17{left:271.695000px;}
.xe{left:276.735000px;}
.x4{left:309.495000px;}
.x2b{left:322.455000px;}
.xd{left:328.575000px;}
.x6{left:337.215000px;}
.x7{left:346.575000px;}
.x5{left:355.935000px;}
.xc{left:389.415000px;}
.x29{left:409.762500px;}
.x2a{left:416.085000px;}
.x12{left:438.765000px;}
.x28{left:441.105000px;}
.xf{left:442.545000px;}
.x1a{left:444.360000px;}
.x8{left:446.505000px;}
.x1c{left:617.190000px;}
.x2c{left:666.667500px;}
.x2d{left:674.970000px;}
.x3{left:868.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.960000pt;}
.ls6{letter-spacing:-0.448000pt;}
.ls17{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.133333pt;}
.ls1a{letter-spacing:-0.000003pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.010880pt;}
.ls1e{letter-spacing:0.133333pt;}
.ls1f{letter-spacing:0.154880pt;}
.ls2{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.274667pt;}
.ls7{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.325333pt;}
.ls12{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.576000pt;}
.ls14{letter-spacing:0.832000pt;}
.lsa{letter-spacing:1.216000pt;}
.lsf{letter-spacing:1.856000pt;}
.ls13{letter-spacing:2.496000pt;}
.ls15{letter-spacing:3.136000pt;}
.lse{letter-spacing:4.416000pt;}
.ls10{letter-spacing:5.056000pt;}
.lsb{letter-spacing:5.696000pt;}
.ls9{letter-spacing:7.616000pt;}
.ls19{letter-spacing:14.016000pt;}
.ls4{letter-spacing:14.208000pt;}
.ls16{letter-spacing:14.656000pt;}
.ls1d{letter-spacing:16.576000pt;}
.ls8{letter-spacing:35.968000pt;}
.ls20{letter-spacing:51.306667pt;}
.wsc{word-spacing:-19.648000pt;}
.ws6{word-spacing:-19.584000pt;}
.ws5{word-spacing:-19.520000pt;}
.ws4{word-spacing:-19.456000pt;}
.ws8{word-spacing:-19.264000pt;}
.wsd{word-spacing:-19.263997pt;}
.ws3{word-spacing:-19.008000pt;}
.ws9{word-spacing:-18.944000pt;}
.wse{word-spacing:-18.880000pt;}
.ws7{word-spacing:-18.816000pt;}
.wsa{word-spacing:-18.304000pt;}
.wsb{word-spacing:-16.314453pt;}
.ws0{word-spacing:-12.906880pt;}
.ws1{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._f{margin-left:-17.992490pt;}
._13{margin-left:-16.160000pt;}
._e{margin-left:-15.157333pt;}
._4{margin-left:-13.984000pt;}
._7{margin-left:-10.080000pt;}
._9{margin-left:-8.890219pt;}
._d{margin-left:-7.738219pt;}
._c{margin-left:-5.770667pt;}
._5{margin-left:-4.810667pt;}
._6{margin-left:-3.797333pt;}
._0{margin-left:-1.059604pt;}
._2{width:0.936490pt;}
._20{width:1.910444pt;}
._14{width:2.816000pt;}
._21{width:4.099242pt;}
._23{width:5.354667pt;}
._24{width:6.246991pt;}
._1{width:7.812728pt;}
._15{width:8.704000pt;}
._16{width:9.693448pt;}
._17{width:10.938437pt;}
._1b{width:12.032000pt;}
._1c{width:12.979449pt;}
._1a{width:13.959364pt;}
._26{width:14.963449pt;}
._29{width:16.128000pt;}
._19{width:17.088000pt;}
._18{width:18.154667pt;}
._22{width:20.579604pt;}
._a{width:21.504000pt;}
._b{width:22.406529pt;}
._25{width:23.722667pt;}
._1d{width:25.287209pt;}
._1f{width:26.589824pt;}
._1e{width:27.746176pt;}
._2f{width:28.746451pt;}
._30{width:29.813549pt;}
._2c{width:30.755604pt;}
._11{width:32.128000pt;}
._10{width:33.024000pt;}
._2d{width:34.061059pt;}
._12{width:35.202176pt;}
._34{width:38.058672pt;}
._2b{width:39.616000pt;}
._2a{width:40.512000pt;}
._2e{width:41.528938pt;}
._8{width:42.666667pt;}
._32{width:44.199062pt;}
._31{width:45.463659pt;}
._28{width:46.377703pt;}
._27{width:47.616000pt;}
._3b{width:50.944000pt;}
._3a{width:52.288000pt;}
._39{width:64.494271pt;}
._38{width:65.536000pt;}
._33{width:69.184000pt;}
._3{width:100.202667pt;}
._36{width:172.789547pt;}
._35{width:1158.026667pt;}
._37{width:1186.186667pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yf5{bottom:23.346667pt;}
.yf0{bottom:23.373333pt;}
.yeb{bottom:23.400000pt;}
.yf4{bottom:46.546667pt;}
.yef{bottom:46.573333pt;}
.yea{bottom:46.600000pt;}
.yf8{bottom:46.706667pt;}
.y2{bottom:67.232000pt;}
.yed{bottom:81.760000pt;}
.ye8{bottom:81.786667pt;}
.yf7{bottom:81.906667pt;}
.y30{bottom:100.512000pt;}
.y1{bottom:101.152000pt;}
.y119{bottom:115.872000pt;}
.y113{bottom:116.032000pt;}
.y10a{bottom:117.632000pt;}
.y9e{bottom:121.472000pt;}
.yf9{bottom:122.912000pt;}
.ybb{bottom:125.792000pt;}
.y6c{bottom:129.472000pt;}
.yd9{bottom:129.632000pt;}
.y112{bottom:131.552000pt;}
.y118{bottom:132.192000pt;}
.y50{bottom:135.066667pt;}
.yf6{bottom:135.880000pt;}
.y111{bottom:136.186667pt;}
.yd1{bottom:141.626667pt;}
.y109{bottom:145.466667pt;}
.y110{bottom:148.186667pt;}
.y117{bottom:148.346667pt;}
.y9d{bottom:149.306667pt;}
.ye4{bottom:149.786667pt;}
.y116{bottom:152.986667pt;}
.yba{bottom:153.626667pt;}
.y107{bottom:154.106667pt;}
.y1a{bottom:154.906667pt;}
.y6b{bottom:157.306667pt;}
.yd8{bottom:157.466667pt;}
.y83{bottom:161.306667pt;}
.y4f{bottom:162.906667pt;}
.y115{bottom:165.146667pt;}
.ycb{bottom:165.626667pt;}
.y108{bottom:173.306667pt;}
.y9c{bottom:177.306667pt;}
.ye3{bottom:177.626667pt;}
.y10f{bottom:181.306667pt;}
.yb9{bottom:181.466667pt;}
.y106{bottom:181.946667pt;}
.yd7{bottom:185.306667pt;}
.y13b{bottom:189.146667pt;}
.y4e{bottom:190.906667pt;}
.y19{bottom:192.506667pt;}
.yca{bottom:193.466667pt;}
.y6a{bottom:197.306667pt;}
.y82{bottom:201.306667pt;}
.y9b{bottom:205.146667pt;}
.ye2{bottom:205.466667pt;}
.yb8{bottom:209.306667pt;}
.y105{bottom:209.786667pt;}
.y129{bottom:213.146667pt;}
.yd6{bottom:213.306667pt;}
.y13a{bottom:216.986667pt;}
.y4d{bottom:218.746667pt;}
.yc9{bottom:221.306667pt;}
.yac{bottom:225.146667pt;}
.y18{bottom:229.946667pt;}
.yf3{bottom:230.920000pt;}
.y9a{bottom:232.986667pt;}
.ye1{bottom:233.306667pt;}
.yb7{bottom:237.306667pt;}
.y104{bottom:237.626667pt;}
.y69{bottom:241.146667pt;}
.y4c{bottom:246.586667pt;}
.y10e{bottom:249.146667pt;}
.yc8{bottom:249.306667pt;}
.yab{bottom:252.986667pt;}
.y139{bottom:256.826667pt;}
.y99{bottom:260.826667pt;}
.ye0{bottom:261.306667pt;}
.yd0{bottom:265.146667pt;}
.y103{bottom:265.626667pt;}
.y17{bottom:267.546667pt;}
.y81{bottom:268.986667pt;}
.y4b{bottom:274.426667pt;}
.y10d{bottom:276.986667pt;}
.yb6{bottom:277.146667pt;}
.yaa{bottom:280.826667pt;}
.y68{bottom:280.986667pt;}
.y138{bottom:284.666667pt;}
.y98{bottom:288.666667pt;}
.ydf{bottom:289.146667pt;}
.ycf{bottom:293.026667pt;}
.y102{bottom:293.506667pt;}
.y80{bottom:296.866667pt;}
.y4a{bottom:302.306667pt;}
.yb5{bottom:305.026667pt;}
.y16{bottom:305.186667pt;}
.ya9{bottom:308.706667pt;}
.y67{bottom:308.866667pt;}
.y137{bottom:312.546667pt;}
.y97{bottom:316.546667pt;}
.yde{bottom:317.026667pt;}
.yce{bottom:320.866667pt;}
.y101{bottom:321.346667pt;}
.y7f{bottom:324.706667pt;}
.yf2{bottom:325.973333pt;}
.yf1{bottom:325.986667pt;}
.y10c{bottom:326.146667pt;}
.y49{bottom:330.146667pt;}
.yb4{bottom:332.866667pt;}
.ya8{bottom:336.546667pt;}
.y66{bottom:336.706667pt;}
.y15{bottom:342.626667pt;}
.ydd{bottom:344.866667pt;}
.ycd{bottom:348.706667pt;}
.y7e{bottom:352.546667pt;}
.y96{bottom:356.546667pt;}
.y48{bottom:358.146667pt;}
.yb3{bottom:360.706667pt;}
.y100{bottom:361.186667pt;}
.y65{bottom:364.546667pt;}
.y10b{bottom:365.986667pt;}
.ydc{bottom:372.706667pt;}
.y14c{bottom:376.066667pt;}
.ycc{bottom:376.546667pt;}
.y14{bottom:380.226667pt;}
.y136{bottom:380.386667pt;}
.y7d{bottom:380.546667pt;}
.y95{bottom:384.386667pt;}
.y47{bottom:385.986667pt;}
.yb2{bottom:388.546667pt;}
.yff{bottom:391.266667pt;}
.y2f{bottom:392.066667pt;}
.y128{bottom:392.386667pt;}
.y11c{bottom:392.546667pt;}
.ydb{bottom:400.546667pt;}
.y14b{bottom:403.906667pt;}
.ya7{bottom:404.386667pt;}
.y64{bottom:404.546667pt;}
.yfe{bottom:406.786667pt;}
.y7c{bottom:408.386667pt;}
.y94{bottom:412.226667pt;}
.y46{bottom:413.826667pt;}
.yb1{bottom:416.546667pt;}
.y13{bottom:417.826667pt;}
.y127{bottom:420.226667pt;}
.y11b{bottom:420.386667pt;}
.yee{bottom:421.013333pt;}
.yec{bottom:421.026667pt;}
.yda{bottom:428.546667pt;}
.y63{bottom:432.386667pt;}
.yfd{bottom:432.866667pt;}
.y2e{bottom:433.346667pt;}
.y7b{bottom:436.226667pt;}
.y93{bottom:440.066667pt;}
.y45{bottom:441.666667pt;}
.y14a{bottom:443.746667pt;}
.ya6{bottom:444.226667pt;}
.yb0{bottom:444.386667pt;}
.y126{bottom:448.066667pt;}
.y11a{bottom:448.226667pt;}
.y12{bottom:455.266667pt;}
.yc7{bottom:456.386667pt;}
.y62{bottom:460.226667pt;}
.yd5{bottom:464.066667pt;}
.y2d{bottom:467.906667pt;}
.y44{bottom:469.506667pt;}
.y149{bottom:471.746667pt;}
.ya5{bottom:472.066667pt;}
.yaf{bottom:472.226667pt;}
.y125{bottom:475.906667pt;}
.y7a{bottom:476.066667pt;}
.yc6{bottom:484.226667pt;}
.y61{bottom:488.066667pt;}
.yd4{bottom:491.906667pt;}
.y11{bottom:492.866667pt;}
.y43{bottom:497.346667pt;}
.y148{bottom:499.586667pt;}
.yae{bottom:500.066667pt;}
.y2c{bottom:502.466667pt;}
.y124{bottom:503.746667pt;}
.y79{bottom:503.906667pt;}
.y92{bottom:507.746667pt;}
.yc5{bottom:512.066667pt;}
.y60{bottom:515.906667pt;}
.ye9{bottom:517.653333pt;}
.ye7{bottom:517.666667pt;}
.yd3{bottom:519.746667pt;}
.y42{bottom:525.346667pt;}
.yad{bottom:527.906667pt;}
.y10{bottom:530.493333pt;}
.y78{bottom:531.773333pt;}
.y2b{bottom:537.053333pt;}
.y147{bottom:539.453333pt;}
.yc4{bottom:539.933333pt;}
.y5f{bottom:543.773333pt;}
.y91{bottom:547.773333pt;}
.y41{bottom:553.213333pt;}
.ya4{bottom:555.773333pt;}
.y77{bottom:559.773333pt;}
.y146{bottom:567.293333pt;}
.yc3{bottom:567.773333pt;}
.yf{bottom:567.933333pt;}
.y2a{bottom:571.613333pt;}
.y5e{bottom:571.773333pt;}
.ye5{bottom:575.613333pt;}
.y40{bottom:581.053333pt;}
.ya3{bottom:583.773333pt;}
.y76{bottom:587.613333pt;}
.yc2{bottom:595.773333pt;}
.y29{bottom:599.293333pt;}
.y123{bottom:599.453333pt;}
.yd2{bottom:599.613333pt;}
.ye{bottom:605.533333pt;}
.y145{bottom:607.133333pt;}
.yfc{bottom:607.613333pt;}
.y3f{bottom:608.893333pt;}
.y135{bottom:611.453333pt;}
.y5d{bottom:611.613333pt;}
.y90{bottom:615.453333pt;}
.yc1{bottom:623.613333pt;}
.y122{bottom:627.293333pt;}
.y75{bottom:627.453333pt;}
.ye6{bottom:628.733333pt;}
.yfb{bottom:633.853333pt;}
.y28{bottom:634.013333pt;}
.y144{bottom:634.973333pt;}
.y3e{bottom:636.733333pt;}
.y134{bottom:639.293333pt;}
.y5c{bottom:639.453333pt;}
.y8f{bottom:643.293333pt;}
.yd{bottom:648.573333pt;}
.yc0{bottom:651.453333pt;}
.y121{bottom:655.133333pt;}
.y74{bottom:655.293333pt;}
.y3d{bottom:664.573333pt;}
.y133{bottom:667.133333pt;}
.y5b{bottom:667.293333pt;}
.y27{bottom:668.573333pt;}
.y8e{bottom:671.133333pt;}
.y143{bottom:674.973333pt;}
.ybf{bottom:679.293333pt;}
.y120{bottom:682.973333pt;}
.y73{bottom:683.133333pt;}
.y3c{bottom:692.573333pt;}
.yc{bottom:693.213333pt;}
.y5a{bottom:695.133333pt;}
.y8d{bottom:698.973333pt;}
.y26{bottom:703.133333pt;}
.y132{bottom:706.973333pt;}
.ybe{bottom:707.133333pt;}
.y72{bottom:710.973333pt;}
.y142{bottom:714.813333pt;}
.y3b{bottom:720.413333pt;}
.yb{bottom:721.053333pt;}
.y59{bottom:722.973333pt;}
.y8c{bottom:726.973333pt;}
.ybd{bottom:734.973333pt;}
.y25{bottom:737.533333pt;}
.y11f{bottom:738.813333pt;}
.y71{bottom:738.973333pt;}
.y3a{bottom:748.253333pt;}
.ya{bottom:749.053333pt;}
.y58{bottom:750.973333pt;}
.y141{bottom:754.653333pt;}
.y8b{bottom:754.813333pt;}
.y131{bottom:762.813333pt;}
.ybc{bottom:762.973333pt;}
.y70{bottom:766.853333pt;}
.y24{bottom:772.133333pt;}
.y39{bottom:776.133333pt;}
.y11e{bottom:778.693333pt;}
.y57{bottom:778.853333pt;}
.y8a{bottom:782.693333pt;}
.ya2{bottom:790.853333pt;}
.y9{bottom:793.413333pt;}
.y140{bottom:794.533333pt;}
.yfa{bottom:797.253333pt;}
.y23{bottom:799.813333pt;}
.y130{bottom:802.693333pt;}
.y38{bottom:803.973333pt;}
.y56{bottom:806.693333pt;}
.y89{bottom:810.533333pt;}
.ya1{bottom:818.693333pt;}
.y13f{bottom:822.373333pt;}
.y11d{bottom:822.533333pt;}
.y12f{bottom:830.533333pt;}
.y37{bottom:831.813333pt;}
.y22{bottom:834.533333pt;}
.y8{bottom:842.533333pt;}
.ya0{bottom:846.533333pt;}
.y13e{bottom:850.213333pt;}
.y88{bottom:850.373333pt;}
.y12e{bottom:858.373333pt;}
.y36{bottom:859.813333pt;}
.y55{bottom:862.373333pt;}
.y21{bottom:869.093333pt;}
.y9f{bottom:874.373333pt;}
.y87{bottom:878.213333pt;}
.y7{bottom:886.213333pt;}
.y35{bottom:887.653333pt;}
.y6f{bottom:890.213333pt;}
.y54{bottom:902.213333pt;}
.y20{bottom:903.653333pt;}
.y86{bottom:906.213333pt;}
.y34{bottom:915.493333pt;}
.y6e{bottom:918.213333pt;}
.y6{bottom:919.013333pt;}
.y12d{bottom:926.213333pt;}
.y13d{bottom:930.053333pt;}
.y53{bottom:930.213333pt;}
.y1d{bottom:931.333333pt;}
.y85{bottom:934.053333pt;}
.y5{bottom:935.013333pt;}
.y1f{bottom:938.213333pt;}
.y33{bottom:943.333333pt;}
.y6d{bottom:946.053333pt;}
.y4{bottom:947.333333pt;}
.y12c{bottom:954.053333pt;}
.y52{bottom:958.053333pt;}
.y13c{bottom:969.893333pt;}
.y32{bottom:971.173333pt;}
.y3{bottom:972.133333pt;}
.y1c{bottom:972.613333pt;}
.y1e{bottom:972.773333pt;}
.y84{bottom:973.893333pt;}
.y12b{bottom:981.893333pt;}
.y51{bottom:985.893333pt;}
.y114{bottom:991.173333pt;}
.y12a{bottom:1009.760000pt;}
.y31{bottom:1011.200000pt;}
.y1b{bottom:1013.760000pt;}
.h16{height:23.658750pt;}
.h17{height:36.364375pt;}
.h5{height:39.320625pt;}
.h4{height:40.158125pt;}
.h2{height:40.307500pt;}
.hd{height:48.710625pt;}
.ha{height:49.748125pt;}
.h6{height:53.992500pt;}
.h3{height:55.142500pt;}
.h8{height:58.687500pt;}
.h9{height:59.937500pt;}
.h18{height:65.781915pt;}
.hb{height:66.625000pt;}
.h7{height:78.054375pt;}
.h10{height:93.596000pt;}
.h11{height:93.600000pt;}
.h12{height:93.620000pt;}
.hc{height:93.626667pt;}
.he{height:93.632000pt;}
.hf{height:93.640000pt;}
.h13{height:93.752000pt;}
.h14{height:93.760000pt;}
.h15{height:1122.546587pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:116.660000pt;}
.w3{width:152.186667pt;}
.w4{width:152.200000pt;}
.w5{width:152.333333pt;}
.w6{width:152.346667pt;}
.w7{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:10.093333pt;}
.x1f{left:13.426667pt;}
.x21{left:15.680000pt;}
.x25{left:17.906667pt;}
.x20{left:22.546667pt;}
.x1b{left:32.626667pt;}
.x23{left:34.866667pt;}
.x1e{left:36.173333pt;}
.x24{left:38.706667pt;}
.x22{left:39.666667pt;}
.x26{left:43.026667pt;}
.x1d{left:46.413333pt;}
.x19{left:52.640000pt;}
.x16{left:58.226667pt;}
.x18{left:76.000000pt;}
.x1{left:94.592000pt;}
.x2e{left:98.912000pt;}
.xa{left:101.952000pt;}
.x13{left:117.312000pt;}
.x10{left:118.592000pt;}
.x15{left:123.560000pt;}
.x9{left:130.272000pt;}
.x2f{left:141.626667pt;}
.x11{left:142.586667pt;}
.x2{left:157.626667pt;}
.x14{left:162.586667pt;}
.xb{left:169.466667pt;}
.x17{left:241.506667pt;}
.xe{left:245.986667pt;}
.x4{left:275.106667pt;}
.x2b{left:286.626667pt;}
.xd{left:292.066667pt;}
.x6{left:299.746667pt;}
.x7{left:308.066667pt;}
.x5{left:316.386667pt;}
.xc{left:346.146667pt;}
.x29{left:364.233333pt;}
.x2a{left:369.853333pt;}
.x12{left:390.013333pt;}
.x28{left:392.093333pt;}
.xf{left:393.373333pt;}
.x1a{left:394.986667pt;}
.x8{left:396.893333pt;}
.x1c{left:548.613333pt;}
.x2c{left:592.593333pt;}
.x2d{left:599.973333pt;}
.x3{left:772.000000pt;}
}




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