
    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_d96095f90cd136268176f5cd.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_a7c3f6b3a6ee8b82e4b0fdc5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_330f9760b7cfbb9188e3f282.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_b8c7199508e1088c1f356520.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_f2bdcd5f9199f62d649599b7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_2bf1664282e8206ce82fc27f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_10261a875405a03368f24ad5.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a700b5e9b58bca04e97d8614.woff')format("woff");}.ff8{font-family:ff8;line-height:0.933594;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsa{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.072000px;}
.ls7{letter-spacing:-0.017280px;}
.ls8{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.017280px;}
.ls12{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.150000px;}
.ls1{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.269400px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.720000px;}
.lse{letter-spacing:1.152000px;}
.lsb{letter-spacing:5.040000px;}
.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;}
}
.ws2{word-spacing:-19.457280px;}
.ws1{word-spacing:-19.440000px;}
.ws6{word-spacing:-19.431360px;}
.ws3{word-spacing:-19.422720px;}
.wsc{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.432000px;}
.wsd{word-spacing:-18.144000px;}
.wse{word-spacing:-18.072000px;}
.ws7{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws5{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.wsa{word-spacing:-12.329400px;}
.ws4{word-spacing:0.000000px;}
._1b{margin-left:-2.462880px;}
._4{margin-left:-1.370400px;}
._0{width:1.015920px;}
._1{width:2.551200px;}
._8{width:4.538400px;}
._12{width:6.408000px;}
._f{width:8.208000px;}
._10{width:9.216000px;}
._11{width:10.728000px;}
._b{width:11.736000px;}
._c{width:12.816000px;}
._16{width:13.917120px;}
._d{width:15.192000px;}
._14{width:16.344000px;}
._9{width:19.152000px;}
._13{width:20.736000px;}
._17{width:22.680000px;}
._18{width:24.186480px;}
._6{width:26.208000px;}
._7{width:27.432000px;}
._a{width:29.008080px;}
._e{width:30.471840px;}
._15{width:31.505040px;}
._1a{width:33.410400px;}
._1f{width:34.416000px;}
._1c{width:36.360000px;}
._21{width:37.425600px;}
._20{width:38.448000px;}
._25{width:40.125360px;}
._24{width:41.184000px;}
._1d{width:43.776000px;}
._1e{width:44.912160px;}
._26{width:46.575840px;}
._27{width:49.080000px;}
._28{width:50.676000px;}
._22{width:55.778400px;}
._23{width:56.940960px;}
._2a{width:84.000000px;}
._19{width:113.016000px;}
._5{width:219.369120px;}
._2{width:1208.520000px;}
._3{width:2033.573280px;}
._29{width:2114.280000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs8{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:44.676000px;}
.y6{bottom:58.536000px;}
.y2d{bottom:131.076000px;}
.y2c{bottom:136.296000px;}
.y124{bottom:139.896000px;}
.y83{bottom:140.796000px;}
.y119{bottom:141.516000px;}
.yaf{bottom:142.596000px;}
.y132{bottom:148.896000px;}
.y2b{bottom:149.256000px;}
.yc1{bottom:159.510000px;}
.y123{bottom:160.590000px;}
.y82{bottom:161.490000px;}
.y118{bottom:162.210000px;}
.yae{bottom:163.290000px;}
.y10d{bottom:165.990000px;}
.y131{bottom:169.590000px;}
.y57{bottom:170.850000px;}
.y151{bottom:178.410000px;}
.yc0{bottom:180.210000px;}
.y122{bottom:181.290000px;}
.y81{bottom:182.190000px;}
.y117{bottom:182.910000px;}
.y2a{bottom:183.630000px;}
.ye9{bottom:183.990000px;}
.y10c{bottom:186.690000px;}
.y130{bottom:190.290000px;}
.y167{bottom:196.410000px;}
.y150{bottom:199.110000px;}
.y29{bottom:200.910000px;}
.yad{bottom:201.630000px;}
.y121{bottom:201.990000px;}
.y80{bottom:202.890000px;}
.y116{bottom:203.610000px;}
.ye8{bottom:204.690000px;}
.y10b{bottom:207.390000px;}
.y56{bottom:211.530000px;}
.y166{bottom:217.110000px;}
.y14f{bottom:219.810000px;}
.ybf{bottom:221.610000px;}
.y120{bottom:222.690000px;}
.y7f{bottom:223.590000px;}
.y115{bottom:224.310000px;}
.ye7{bottom:225.390000px;}
.y10a{bottom:228.090000px;}
.y12f{bottom:228.990000px;}
.y55{bottom:232.230000px;}
.y28{bottom:236.910000px;}
.y165{bottom:237.810000px;}
.y14e{bottom:240.510000px;}
.yac{bottom:242.310000px;}
.y11f{bottom:243.390000px;}
.y7e{bottom:244.290000px;}
.y114{bottom:245.010000px;}
.ye6{bottom:246.090000px;}
.y109{bottom:248.790000px;}
.y12e{bottom:249.690000px;}
.y54{bottom:252.930000px;}
.y27{bottom:257.430000px;}
.y164{bottom:258.510000px;}
.y178{bottom:261.210000px;}
.yab{bottom:263.010000px;}
.y11e{bottom:264.090000px;}
.y7d{bottom:264.990000px;}
.ye5{bottom:266.790000px;}
.y108{bottom:269.490000px;}
.y12d{bottom:270.390000px;}
.y53{bottom:273.675000px;}
.y14d{bottom:279.255000px;}
.y177{bottom:281.955000px;}
.yaa{bottom:283.755000px;}
.y11d{bottom:284.835000px;}
.y7c{bottom:285.735000px;}
.ye4{bottom:287.535000px;}
.y107{bottom:290.235000px;}
.y52{bottom:294.375000px;}
.y163{bottom:297.255000px;}
.y26{bottom:297.975000px;}
.y14c{bottom:299.955000px;}
.y176{bottom:302.655000px;}
.ya9{bottom:304.455000px;}
.y11c{bottom:305.535000px;}
.y7b{bottom:306.435000px;}
.ye3{bottom:308.235000px;}
.y12c{bottom:309.135000px;}
.y106{bottom:310.935000px;}
.y51{bottom:315.075000px;}
.y162{bottom:317.955000px;}
.y25{bottom:318.675000px;}
.y14b{bottom:320.655000px;}
.ya8{bottom:325.155000px;}
.y11b{bottom:326.235000px;}
.y7a{bottom:327.135000px;}
.ye2{bottom:328.935000px;}
.y12b{bottom:329.835000px;}
.y50{bottom:335.775000px;}
.y161{bottom:338.655000px;}
.y24{bottom:339.375000px;}
.y14a{bottom:341.355000px;}
.ya7{bottom:345.855000px;}
.y79{bottom:347.835000px;}
.y105{bottom:349.275000px;}
.ye1{bottom:349.635000px;}
.y4f{bottom:356.475000px;}
.y23{bottom:360.075000px;}
.y175{bottom:362.055000px;}
.ybe{bottom:363.855000px;}
.y11a{bottom:364.575000px;}
.ya6{bottom:366.555000px;}
.y12a{bottom:368.355000px;}
.y128{bottom:370.335000px;}
.y4e{bottom:377.175000px;}
.y160{bottom:377.355000px;}
.y149{bottom:380.055000px;}
.y22{bottom:380.775000px;}
.y174{bottom:382.755000px;}
.ybd{bottom:384.555000px;}
.y78{bottom:386.535000px;}
.ya5{bottom:387.255000px;}
.ye0{bottom:388.335000px;}
.y104{bottom:389.955000px;}
.y127{bottom:391.035000px;}
.y15f{bottom:398.055000px;}
.y148{bottom:400.755000px;}
.y21{bottom:401.475000px;}
.ybc{bottom:405.255000px;}
.y77{bottom:407.235000px;}
.ya4{bottom:407.955000px;}
.ydf{bottom:409.035000px;}
.y103{bottom:410.655000px;}
.y126{bottom:411.735000px;}
.y4d{bottom:415.875000px;}
.y15e{bottom:418.755000px;}
.y147{bottom:421.455000px;}
.y20{bottom:422.175000px;}
.ybb{bottom:425.955000px;}
.y76{bottom:427.935000px;}
.ya3{bottom:428.655000px;}
.yde{bottom:429.735000px;}
.y102{bottom:431.355000px;}
.y4c{bottom:436.575000px;}
.y15d{bottom:439.455000px;}
.y146{bottom:442.155000px;}
.y1f{bottom:442.875000px;}
.yba{bottom:446.655000px;}
.y75{bottom:448.635000px;}
.ya2{bottom:449.355000px;}
.y125{bottom:450.075000px;}
.ydd{bottom:450.435000px;}
.y101{bottom:452.055000px;}
.y4b{bottom:457.275000px;}
.y173{bottom:462.855000px;}
.y1e{bottom:463.575000px;}
.yb9{bottom:467.355000px;}
.y74{bottom:469.335000px;}
.ya1{bottom:470.055000px;}
.ydc{bottom:471.135000px;}
.y100{bottom:472.755000px;}
.y4a{bottom:477.975000px;}
.y15c{bottom:478.155000px;}
.y145{bottom:480.855000px;}
.y172{bottom:483.555000px;}
.y1d{bottom:484.275000px;}
.yb8{bottom:488.055000px;}
.y73{bottom:490.035000px;}
.ya0{bottom:490.755000px;}
.ydb{bottom:491.835000px;}
.yff{bottom:493.455000px;}
.y49{bottom:498.675000px;}
.y15b{bottom:498.855000px;}
.y144{bottom:501.555000px;}
.y1c{bottom:504.975000px;}
.yb7{bottom:508.755000px;}
.y72{bottom:510.735000px;}
.y9f{bottom:511.455000px;}
.yda{bottom:512.535000px;}
.yfe{bottom:514.155000px;}
.y48{bottom:519.375000px;}
.y15a{bottom:519.555000px;}
.y143{bottom:522.255000px;}
.y1b{bottom:525.675000px;}
.yb6{bottom:529.455000px;}
.y71{bottom:531.435000px;}
.y9e{bottom:532.155000px;}
.yd9{bottom:533.235000px;}
.yfd{bottom:534.855000px;}
.y47{bottom:540.075000px;}
.y159{bottom:540.255000px;}
.y171{bottom:542.955000px;}
.y1a{bottom:546.375000px;}
.yb5{bottom:550.155000px;}
.y70{bottom:552.135000px;}
.y9d{bottom:552.855000px;}
.yd8{bottom:553.935000px;}
.yfc{bottom:555.585000px;}
.y46{bottom:560.805000px;}
.y142{bottom:560.985000px;}
.y170{bottom:563.685000px;}
.y19{bottom:567.105000px;}
.yb4{bottom:570.885000px;}
.y6f{bottom:572.865000px;}
.y113{bottom:573.585000px;}
.yd7{bottom:574.665000px;}
.yfb{bottom:576.285000px;}
.y45{bottom:581.505000px;}
.y141{bottom:581.685000px;}
.y16f{bottom:584.385000px;}
.y18{bottom:587.805000px;}
.y9c{bottom:591.585000px;}
.y6e{bottom:593.565000px;}
.y112{bottom:594.285000px;}
.yd6{bottom:595.365000px;}
.yfa{bottom:596.985000px;}
.y158{bottom:599.685000px;}
.y44{bottom:602.205000px;}
.y140{bottom:602.385000px;}
.y17{bottom:608.505000px;}
.y9b{bottom:612.285000px;}
.y6d{bottom:614.265000px;}
.y111{bottom:614.985000px;}
.yd5{bottom:615.885000px;}
.yf9{bottom:617.685000px;}
.y157{bottom:620.385000px;}
.y43{bottom:622.905000px;}
.y13f{bottom:623.085000px;}
.y9a{bottom:632.985000px;}
.y129{bottom:633.705000px;}
.y6c{bottom:634.965000px;}
.y110{bottom:635.685000px;}
.yd4{bottom:636.585000px;}
.y42{bottom:643.605000px;}
.y13e{bottom:643.785000px;}
.y16{bottom:647.025000px;}
.y99{bottom:653.685000px;}
.y6b{bottom:655.665000px;}
.yf8{bottom:656.385000px;}
.y156{bottom:659.085000px;}
.y41{bottom:664.305000px;}
.y16e{bottom:664.485000px;}
.y98{bottom:674.385000px;}
.yd3{bottom:675.285000px;}
.y6a{bottom:676.365000px;}
.yf7{bottom:677.085000px;}
.y155{bottom:679.785000px;}
.y13d{bottom:682.485000px;}
.y40{bottom:685.005000px;}
.y16d{bottom:685.185000px;}
.y15{bottom:687.345000px;}
.y97{bottom:695.085000px;}
.yd2{bottom:695.985000px;}
.y69{bottom:697.065000px;}
.yf6{bottom:697.785000px;}
.y154{bottom:700.485000px;}
.y13c{bottom:703.185000px;}
.y96{bottom:715.785000px;}
.yd1{bottom:716.685000px;}
.yf5{bottom:718.485000px;}
.y153{bottom:721.185000px;}
.y3f{bottom:723.705000px;}
.y13b{bottom:723.885000px;}
.y14{bottom:728.385000px;}
.y68{bottom:735.405000px;}
.y95{bottom:736.485000px;}
.yd0{bottom:737.385000px;}
.yf4{bottom:739.185000px;}
.y3e{bottom:744.405000px;}
.y16c{bottom:744.585000px;}
.y13{bottom:750.885000px;}
.y94{bottom:757.185000px;}
.ycf{bottom:758.085000px;}
.yf3{bottom:759.885000px;}
.y13a{bottom:762.585000px;}
.y3d{bottom:765.105000px;}
.y16b{bottom:765.285000px;}
.y12{bottom:773.565000px;}
.y67{bottom:776.085000px;}
.y93{bottom:777.885000px;}
.yce{bottom:778.785000px;}
.yf2{bottom:780.585000px;}
.y139{bottom:783.285000px;}
.y3c{bottom:785.805000px;}
.y66{bottom:796.785000px;}
.y92{bottom:798.585000px;}
.ycd{bottom:799.485000px;}
.yf1{bottom:801.285000px;}
.y138{bottom:803.985000px;}
.y3b{bottom:806.505000px;}
.y11{bottom:815.325000px;}
.y65{bottom:817.485000px;}
.y91{bottom:819.285000px;}
.ycc{bottom:820.185000px;}
.yf0{bottom:821.985000px;}
.y137{bottom:824.685000px;}
.y3a{bottom:827.205000px;}
.yb3{bottom:837.285000px;}
.y10{bottom:837.825000px;}
.y64{bottom:838.185000px;}
.y90{bottom:840.030000px;}
.ycb{bottom:840.930000px;}
.y152{bottom:842.730000px;}
.y16a{bottom:845.430000px;}
.y39{bottom:847.950000px;}
.yb2{bottom:858.030000px;}
.y63{bottom:858.930000px;}
.ye{bottom:860.550000px;}
.y8f{bottom:860.730000px;}
.yca{bottom:861.630000px;}
.y136{bottom:863.430000px;}
.y169{bottom:866.130000px;}
.yf{bottom:868.110000px;}
.y38{bottom:868.650000px;}
.yb1{bottom:878.730000px;}
.y62{bottom:879.630000px;}
.y8e{bottom:881.430000px;}
.yc9{bottom:882.330000px;}
.y135{bottom:884.130000px;}
.y37{bottom:889.350000px;}
.yb0{bottom:899.430000px;}
.y61{bottom:900.330000px;}
.yef{bottom:902.130000px;}
.yc8{bottom:903.030000px;}
.yd{bottom:904.290000px;}
.y134{bottom:904.830000px;}
.y36{bottom:910.050000px;}
.y8d{bottom:920.130000px;}
.y60{bottom:921.030000px;}
.yee{bottom:922.830000px;}
.yc7{bottom:923.730000px;}
.y133{bottom:925.530000px;}
.y35{bottom:930.750000px;}
.yc{bottom:938.670000px;}
.y8c{bottom:940.830000px;}
.y5f{bottom:941.730000px;}
.yed{bottom:943.530000px;}
.yc6{bottom:944.430000px;}
.y168{bottom:946.230000px;}
.y34{bottom:951.450000px;}
.y8b{bottom:961.530000px;}
.y5e{bottom:962.430000px;}
.yec{bottom:964.230000px;}
.yc5{bottom:965.130000px;}
.y33{bottom:972.150000px;}
.yb{bottom:973.230000px;}
.y8a{bottom:982.230000px;}
.y5d{bottom:983.130000px;}
.yeb{bottom:984.930000px;}
.yc4{bottom:985.830000px;}
.y32{bottom:992.850000px;}
.y89{bottom:1002.930000px;}
.y5c{bottom:1003.830000px;}
.yea{bottom:1005.630000px;}
.yc3{bottom:1006.530000px;}
.ya{bottom:1007.790000px;}
.y31{bottom:1013.550000px;}
.y88{bottom:1023.630000px;}
.y5b{bottom:1024.530000px;}
.y10f{bottom:1026.330000px;}
.y9{bottom:1042.170000px;}
.y87{bottom:1044.330000px;}
.yc2{bottom:1045.050000px;}
.y5a{bottom:1045.230000px;}
.y10e{bottom:1047.030000px;}
.y30{bottom:1051.890000px;}
.y86{bottom:1065.030000px;}
.y59{bottom:1065.930000px;}
.y85{bottom:1085.730000px;}
.y2f{bottom:1091.850000px;}
.y8{bottom:1094.730000px;}
.y58{bottom:1104.450000px;}
.y84{bottom:1106.430000px;}
.y2e{bottom:1109.130000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.he{height:26.995781px;}
.ha{height:37.494141px;}
.h6{height:41.756133px;}
.h4{height:45.184219px;}
.h10{height:51.679688px;}
.hf{height:58.621992px;}
.h2{height:58.651172px;}
.h5{height:58.905000px;}
.h3{height:60.226875px;}
.hd{height:70.664062px;}
.h11{height:74.704922px;}
.hb{height:76.317188px;}
.hc{height:78.367500px;}
.h8{height:82.676953px;}
.h7{height:121.179375px;}
.h9{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:136.282500px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:55.777500px;}
.x1{left:127.656000px;}
.x5{left:129.096000px;}
.x10{left:132.516000px;}
.x4{left:138.636000px;}
.x11{left:148.896000px;}
.xa{left:157.710000px;}
.xe{left:159.510000px;}
.x6{left:177.690000px;}
.xd{left:180.750000px;}
.xb{left:261.570000px;}
.xf{left:343.695000px;}
.xc{left:371.775000px;}
.x7{left:394.275000px;}
.x3{left:457.275000px;}
.x8{left:513.262500px;}
.x9{left:520.125000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsa{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:-0.015360pt;}
.ls8{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.015360pt;}
.ls12{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.133333pt;}
.ls1{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.239467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.640000pt;}
.lse{letter-spacing:1.024000pt;}
.lsb{letter-spacing:4.480000pt;}
.ws2{word-spacing:-17.295360pt;}
.ws1{word-spacing:-17.280000pt;}
.ws6{word-spacing:-17.272320pt;}
.ws3{word-spacing:-17.264640pt;}
.wsc{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.384000pt;}
.wsd{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.064000pt;}
.ws7{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.wsa{word-spacing:-10.959467pt;}
.ws4{word-spacing:0.000000pt;}
._1b{margin-left:-2.189227pt;}
._4{margin-left:-1.218133pt;}
._0{width:0.903040pt;}
._1{width:2.267733pt;}
._8{width:4.034133pt;}
._12{width:5.696000pt;}
._f{width:7.296000pt;}
._10{width:8.192000pt;}
._11{width:9.536000pt;}
._b{width:10.432000pt;}
._c{width:11.392000pt;}
._16{width:12.370773pt;}
._d{width:13.504000pt;}
._14{width:14.528000pt;}
._9{width:17.024000pt;}
._13{width:18.432000pt;}
._17{width:20.160000pt;}
._18{width:21.499093pt;}
._6{width:23.296000pt;}
._7{width:24.384000pt;}
._a{width:25.784960pt;}
._e{width:27.086080pt;}
._15{width:28.004480pt;}
._1a{width:29.698133pt;}
._1f{width:30.592000pt;}
._1c{width:32.320000pt;}
._21{width:33.267200pt;}
._20{width:34.176000pt;}
._25{width:35.666987pt;}
._24{width:36.608000pt;}
._1d{width:38.912000pt;}
._1e{width:39.921920pt;}
._26{width:41.400747pt;}
._27{width:43.626667pt;}
._28{width:45.045333pt;}
._22{width:49.580800pt;}
._23{width:50.614187pt;}
._2a{width:74.666667pt;}
._19{width:100.458667pt;}
._5{width:194.994773pt;}
._2{width:1074.240000pt;}
._3{width:1807.620693pt;}
._29{width:1879.360000pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:39.712000pt;}
.y6{bottom:52.032000pt;}
.y2d{bottom:116.512000pt;}
.y2c{bottom:121.152000pt;}
.y124{bottom:124.352000pt;}
.y83{bottom:125.152000pt;}
.y119{bottom:125.792000pt;}
.yaf{bottom:126.752000pt;}
.y132{bottom:132.352000pt;}
.y2b{bottom:132.672000pt;}
.yc1{bottom:141.786667pt;}
.y123{bottom:142.746667pt;}
.y82{bottom:143.546667pt;}
.y118{bottom:144.186667pt;}
.yae{bottom:145.146667pt;}
.y10d{bottom:147.546667pt;}
.y131{bottom:150.746667pt;}
.y57{bottom:151.866667pt;}
.y151{bottom:158.586667pt;}
.yc0{bottom:160.186667pt;}
.y122{bottom:161.146667pt;}
.y81{bottom:161.946667pt;}
.y117{bottom:162.586667pt;}
.y2a{bottom:163.226667pt;}
.ye9{bottom:163.546667pt;}
.y10c{bottom:165.946667pt;}
.y130{bottom:169.146667pt;}
.y167{bottom:174.586667pt;}
.y150{bottom:176.986667pt;}
.y29{bottom:178.586667pt;}
.yad{bottom:179.226667pt;}
.y121{bottom:179.546667pt;}
.y80{bottom:180.346667pt;}
.y116{bottom:180.986667pt;}
.ye8{bottom:181.946667pt;}
.y10b{bottom:184.346667pt;}
.y56{bottom:188.026667pt;}
.y166{bottom:192.986667pt;}
.y14f{bottom:195.386667pt;}
.ybf{bottom:196.986667pt;}
.y120{bottom:197.946667pt;}
.y7f{bottom:198.746667pt;}
.y115{bottom:199.386667pt;}
.ye7{bottom:200.346667pt;}
.y10a{bottom:202.746667pt;}
.y12f{bottom:203.546667pt;}
.y55{bottom:206.426667pt;}
.y28{bottom:210.586667pt;}
.y165{bottom:211.386667pt;}
.y14e{bottom:213.786667pt;}
.yac{bottom:215.386667pt;}
.y11f{bottom:216.346667pt;}
.y7e{bottom:217.146667pt;}
.y114{bottom:217.786667pt;}
.ye6{bottom:218.746667pt;}
.y109{bottom:221.146667pt;}
.y12e{bottom:221.946667pt;}
.y54{bottom:224.826667pt;}
.y27{bottom:228.826667pt;}
.y164{bottom:229.786667pt;}
.y178{bottom:232.186667pt;}
.yab{bottom:233.786667pt;}
.y11e{bottom:234.746667pt;}
.y7d{bottom:235.546667pt;}
.ye5{bottom:237.146667pt;}
.y108{bottom:239.546667pt;}
.y12d{bottom:240.346667pt;}
.y53{bottom:243.266667pt;}
.y14d{bottom:248.226667pt;}
.y177{bottom:250.626667pt;}
.yaa{bottom:252.226667pt;}
.y11d{bottom:253.186667pt;}
.y7c{bottom:253.986667pt;}
.ye4{bottom:255.586667pt;}
.y107{bottom:257.986667pt;}
.y52{bottom:261.666667pt;}
.y163{bottom:264.226667pt;}
.y26{bottom:264.866667pt;}
.y14c{bottom:266.626667pt;}
.y176{bottom:269.026667pt;}
.ya9{bottom:270.626667pt;}
.y11c{bottom:271.586667pt;}
.y7b{bottom:272.386667pt;}
.ye3{bottom:273.986667pt;}
.y12c{bottom:274.786667pt;}
.y106{bottom:276.386667pt;}
.y51{bottom:280.066667pt;}
.y162{bottom:282.626667pt;}
.y25{bottom:283.266667pt;}
.y14b{bottom:285.026667pt;}
.ya8{bottom:289.026667pt;}
.y11b{bottom:289.986667pt;}
.y7a{bottom:290.786667pt;}
.ye2{bottom:292.386667pt;}
.y12b{bottom:293.186667pt;}
.y50{bottom:298.466667pt;}
.y161{bottom:301.026667pt;}
.y24{bottom:301.666667pt;}
.y14a{bottom:303.426667pt;}
.ya7{bottom:307.426667pt;}
.y79{bottom:309.186667pt;}
.y105{bottom:310.466667pt;}
.ye1{bottom:310.786667pt;}
.y4f{bottom:316.866667pt;}
.y23{bottom:320.066667pt;}
.y175{bottom:321.826667pt;}
.ybe{bottom:323.426667pt;}
.y11a{bottom:324.066667pt;}
.ya6{bottom:325.826667pt;}
.y12a{bottom:327.426667pt;}
.y128{bottom:329.186667pt;}
.y4e{bottom:335.266667pt;}
.y160{bottom:335.426667pt;}
.y149{bottom:337.826667pt;}
.y22{bottom:338.466667pt;}
.y174{bottom:340.226667pt;}
.ybd{bottom:341.826667pt;}
.y78{bottom:343.586667pt;}
.ya5{bottom:344.226667pt;}
.ye0{bottom:345.186667pt;}
.y104{bottom:346.626667pt;}
.y127{bottom:347.586667pt;}
.y15f{bottom:353.826667pt;}
.y148{bottom:356.226667pt;}
.y21{bottom:356.866667pt;}
.ybc{bottom:360.226667pt;}
.y77{bottom:361.986667pt;}
.ya4{bottom:362.626667pt;}
.ydf{bottom:363.586667pt;}
.y103{bottom:365.026667pt;}
.y126{bottom:365.986667pt;}
.y4d{bottom:369.666667pt;}
.y15e{bottom:372.226667pt;}
.y147{bottom:374.626667pt;}
.y20{bottom:375.266667pt;}
.ybb{bottom:378.626667pt;}
.y76{bottom:380.386667pt;}
.ya3{bottom:381.026667pt;}
.yde{bottom:381.986667pt;}
.y102{bottom:383.426667pt;}
.y4c{bottom:388.066667pt;}
.y15d{bottom:390.626667pt;}
.y146{bottom:393.026667pt;}
.y1f{bottom:393.666667pt;}
.yba{bottom:397.026667pt;}
.y75{bottom:398.786667pt;}
.ya2{bottom:399.426667pt;}
.y125{bottom:400.066667pt;}
.ydd{bottom:400.386667pt;}
.y101{bottom:401.826667pt;}
.y4b{bottom:406.466667pt;}
.y173{bottom:411.426667pt;}
.y1e{bottom:412.066667pt;}
.yb9{bottom:415.426667pt;}
.y74{bottom:417.186667pt;}
.ya1{bottom:417.826667pt;}
.ydc{bottom:418.786667pt;}
.y100{bottom:420.226667pt;}
.y4a{bottom:424.866667pt;}
.y15c{bottom:425.026667pt;}
.y145{bottom:427.426667pt;}
.y172{bottom:429.826667pt;}
.y1d{bottom:430.466667pt;}
.yb8{bottom:433.826667pt;}
.y73{bottom:435.586667pt;}
.ya0{bottom:436.226667pt;}
.ydb{bottom:437.186667pt;}
.yff{bottom:438.626667pt;}
.y49{bottom:443.266667pt;}
.y15b{bottom:443.426667pt;}
.y144{bottom:445.826667pt;}
.y1c{bottom:448.866667pt;}
.yb7{bottom:452.226667pt;}
.y72{bottom:453.986667pt;}
.y9f{bottom:454.626667pt;}
.yda{bottom:455.586667pt;}
.yfe{bottom:457.026667pt;}
.y48{bottom:461.666667pt;}
.y15a{bottom:461.826667pt;}
.y143{bottom:464.226667pt;}
.y1b{bottom:467.266667pt;}
.yb6{bottom:470.626667pt;}
.y71{bottom:472.386667pt;}
.y9e{bottom:473.026667pt;}
.yd9{bottom:473.986667pt;}
.yfd{bottom:475.426667pt;}
.y47{bottom:480.066667pt;}
.y159{bottom:480.226667pt;}
.y171{bottom:482.626667pt;}
.y1a{bottom:485.666667pt;}
.yb5{bottom:489.026667pt;}
.y70{bottom:490.786667pt;}
.y9d{bottom:491.426667pt;}
.yd8{bottom:492.386667pt;}
.yfc{bottom:493.853333pt;}
.y46{bottom:498.493333pt;}
.y142{bottom:498.653333pt;}
.y170{bottom:501.053333pt;}
.y19{bottom:504.093333pt;}
.yb4{bottom:507.453333pt;}
.y6f{bottom:509.213333pt;}
.y113{bottom:509.853333pt;}
.yd7{bottom:510.813333pt;}
.yfb{bottom:512.253333pt;}
.y45{bottom:516.893333pt;}
.y141{bottom:517.053333pt;}
.y16f{bottom:519.453333pt;}
.y18{bottom:522.493333pt;}
.y9c{bottom:525.853333pt;}
.y6e{bottom:527.613333pt;}
.y112{bottom:528.253333pt;}
.yd6{bottom:529.213333pt;}
.yfa{bottom:530.653333pt;}
.y158{bottom:533.053333pt;}
.y44{bottom:535.293333pt;}
.y140{bottom:535.453333pt;}
.y17{bottom:540.893333pt;}
.y9b{bottom:544.253333pt;}
.y6d{bottom:546.013333pt;}
.y111{bottom:546.653333pt;}
.yd5{bottom:547.453333pt;}
.yf9{bottom:549.053333pt;}
.y157{bottom:551.453333pt;}
.y43{bottom:553.693333pt;}
.y13f{bottom:553.853333pt;}
.y9a{bottom:562.653333pt;}
.y129{bottom:563.293333pt;}
.y6c{bottom:564.413333pt;}
.y110{bottom:565.053333pt;}
.yd4{bottom:565.853333pt;}
.y42{bottom:572.093333pt;}
.y13e{bottom:572.253333pt;}
.y16{bottom:575.133333pt;}
.y99{bottom:581.053333pt;}
.y6b{bottom:582.813333pt;}
.yf8{bottom:583.453333pt;}
.y156{bottom:585.853333pt;}
.y41{bottom:590.493333pt;}
.y16e{bottom:590.653333pt;}
.y98{bottom:599.453333pt;}
.yd3{bottom:600.253333pt;}
.y6a{bottom:601.213333pt;}
.yf7{bottom:601.853333pt;}
.y155{bottom:604.253333pt;}
.y13d{bottom:606.653333pt;}
.y40{bottom:608.893333pt;}
.y16d{bottom:609.053333pt;}
.y15{bottom:610.973333pt;}
.y97{bottom:617.853333pt;}
.yd2{bottom:618.653333pt;}
.y69{bottom:619.613333pt;}
.yf6{bottom:620.253333pt;}
.y154{bottom:622.653333pt;}
.y13c{bottom:625.053333pt;}
.y96{bottom:636.253333pt;}
.yd1{bottom:637.053333pt;}
.yf5{bottom:638.653333pt;}
.y153{bottom:641.053333pt;}
.y3f{bottom:643.293333pt;}
.y13b{bottom:643.453333pt;}
.y14{bottom:647.453333pt;}
.y68{bottom:653.693333pt;}
.y95{bottom:654.653333pt;}
.yd0{bottom:655.453333pt;}
.yf4{bottom:657.053333pt;}
.y3e{bottom:661.693333pt;}
.y16c{bottom:661.853333pt;}
.y13{bottom:667.453333pt;}
.y94{bottom:673.053333pt;}
.ycf{bottom:673.853333pt;}
.yf3{bottom:675.453333pt;}
.y13a{bottom:677.853333pt;}
.y3d{bottom:680.093333pt;}
.y16b{bottom:680.253333pt;}
.y12{bottom:687.613333pt;}
.y67{bottom:689.853333pt;}
.y93{bottom:691.453333pt;}
.yce{bottom:692.253333pt;}
.yf2{bottom:693.853333pt;}
.y139{bottom:696.253333pt;}
.y3c{bottom:698.493333pt;}
.y66{bottom:708.253333pt;}
.y92{bottom:709.853333pt;}
.ycd{bottom:710.653333pt;}
.yf1{bottom:712.253333pt;}
.y138{bottom:714.653333pt;}
.y3b{bottom:716.893333pt;}
.y11{bottom:724.733333pt;}
.y65{bottom:726.653333pt;}
.y91{bottom:728.253333pt;}
.ycc{bottom:729.053333pt;}
.yf0{bottom:730.653333pt;}
.y137{bottom:733.053333pt;}
.y3a{bottom:735.293333pt;}
.yb3{bottom:744.253333pt;}
.y10{bottom:744.733333pt;}
.y64{bottom:745.053333pt;}
.y90{bottom:746.693333pt;}
.ycb{bottom:747.493333pt;}
.y152{bottom:749.093333pt;}
.y16a{bottom:751.493333pt;}
.y39{bottom:753.733333pt;}
.yb2{bottom:762.693333pt;}
.y63{bottom:763.493333pt;}
.ye{bottom:764.933333pt;}
.y8f{bottom:765.093333pt;}
.yca{bottom:765.893333pt;}
.y136{bottom:767.493333pt;}
.y169{bottom:769.893333pt;}
.yf{bottom:771.653333pt;}
.y38{bottom:772.133333pt;}
.yb1{bottom:781.093333pt;}
.y62{bottom:781.893333pt;}
.y8e{bottom:783.493333pt;}
.yc9{bottom:784.293333pt;}
.y135{bottom:785.893333pt;}
.y37{bottom:790.533333pt;}
.yb0{bottom:799.493333pt;}
.y61{bottom:800.293333pt;}
.yef{bottom:801.893333pt;}
.yc8{bottom:802.693333pt;}
.yd{bottom:803.813333pt;}
.y134{bottom:804.293333pt;}
.y36{bottom:808.933333pt;}
.y8d{bottom:817.893333pt;}
.y60{bottom:818.693333pt;}
.yee{bottom:820.293333pt;}
.yc7{bottom:821.093333pt;}
.y133{bottom:822.693333pt;}
.y35{bottom:827.333333pt;}
.yc{bottom:834.373333pt;}
.y8c{bottom:836.293333pt;}
.y5f{bottom:837.093333pt;}
.yed{bottom:838.693333pt;}
.yc6{bottom:839.493333pt;}
.y168{bottom:841.093333pt;}
.y34{bottom:845.733333pt;}
.y8b{bottom:854.693333pt;}
.y5e{bottom:855.493333pt;}
.yec{bottom:857.093333pt;}
.yc5{bottom:857.893333pt;}
.y33{bottom:864.133333pt;}
.yb{bottom:865.093333pt;}
.y8a{bottom:873.093333pt;}
.y5d{bottom:873.893333pt;}
.yeb{bottom:875.493333pt;}
.yc4{bottom:876.293333pt;}
.y32{bottom:882.533333pt;}
.y89{bottom:891.493333pt;}
.y5c{bottom:892.293333pt;}
.yea{bottom:893.893333pt;}
.yc3{bottom:894.693333pt;}
.ya{bottom:895.813333pt;}
.y31{bottom:900.933333pt;}
.y88{bottom:909.893333pt;}
.y5b{bottom:910.693333pt;}
.y10f{bottom:912.293333pt;}
.y9{bottom:926.373333pt;}
.y87{bottom:928.293333pt;}
.yc2{bottom:928.933333pt;}
.y5a{bottom:929.093333pt;}
.y10e{bottom:930.693333pt;}
.y30{bottom:935.013333pt;}
.y86{bottom:946.693333pt;}
.y59{bottom:947.493333pt;}
.y85{bottom:965.093333pt;}
.y2f{bottom:970.533333pt;}
.y8{bottom:973.093333pt;}
.y58{bottom:981.733333pt;}
.y84{bottom:983.493333pt;}
.y2e{bottom:985.893333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.he{height:23.996250pt;}
.ha{height:33.328125pt;}
.h6{height:37.116563pt;}
.h4{height:40.163750pt;}
.h10{height:45.937500pt;}
.hf{height:52.108438pt;}
.h2{height:52.134375pt;}
.h5{height:52.360000pt;}
.h3{height:53.535000pt;}
.hd{height:62.812500pt;}
.h11{height:66.404375pt;}
.hb{height:67.837500pt;}
.hc{height:69.660000pt;}
.h8{height:73.490625pt;}
.h7{height:107.715000pt;}
.h9{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:121.140000pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:49.580000pt;}
.x1{left:113.472000pt;}
.x5{left:114.752000pt;}
.x10{left:117.792000pt;}
.x4{left:123.232000pt;}
.x11{left:132.352000pt;}
.xa{left:140.186667pt;}
.xe{left:141.786667pt;}
.x6{left:157.946667pt;}
.xd{left:160.666667pt;}
.xb{left:232.506667pt;}
.xf{left:305.506667pt;}
.xc{left:330.466667pt;}
.x7{left:350.466667pt;}
.x3{left:406.466667pt;}
.x8{left:456.233333pt;}
.x9{left:462.333333pt;}
}




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