
    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_884406c837b17394a2726207.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_788992cb63b4e5409e7996b2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_0ad081e9c7e79f5208eaac3a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f8d356a8a33c8f9c2cfd186b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_a6ca18c63ce5ffeb15355799.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a94fb71fdc6ab521b87d90b5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ad33a5b2f6b2c4756965cfdd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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_151394870a76eaedf28f005b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_13b0d7d415d0fd9a6c8df5b4.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.238464px;}
.lsa{letter-spacing:-0.198720px;}
.ls8{letter-spacing:-0.158976px;}
.ls7{letter-spacing:-0.125856px;}
.ls6{letter-spacing:-0.119232px;}
.lsc{letter-spacing:-0.086112px;}
.lsb{letter-spacing:-0.079488px;}
.ls5{letter-spacing:-0.059616px;}
.ls4{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.014400px;}
.ls2{letter-spacing:28.007424px;}
.ls3{letter-spacing:33.984000px;}
.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.014400px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.985600px;}
.ws5{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.480512px;}
.wsa{word-spacing:-16.473888px;}
.ws6{word-spacing:-16.440768px;}
.wsb{word-spacing:-16.434144px;}
.ws7{word-spacing:-16.401024px;}
.ws8{word-spacing:-16.361280px;}
.wsc{word-spacing:-16.321536px;}
.ws2{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-14.904576px;}
._0{margin-left:-12.456576px;}
._2{margin-left:-6.912576px;}
._1{margin-left:-4.560480px;}
._7{margin-left:-3.274560px;}
._6{margin-left:-2.016000px;}
._d{margin-left:-1.013904px;}
._8{width:1.872000px;}
._a{width:3.715200px;}
._b{width:6.969600px;}
._c{width:8.006400px;}
._9{width:15.773328px;}
._5{width:26.748000px;}
._4{width:845.999856px;}
.fc2{color:rgb(68,114,196);}
.fc1{color:transparent;}
.fc3{color:rgb(237,125,49);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:5.175000px;}
.y13b{bottom:8.835000px;}
.y12e{bottom:8.895000px;}
.y12d{bottom:9.015000px;}
.y12b{bottom:9.135000px;}
.y127{bottom:9.615000px;}
.y137{bottom:10.035000px;}
.y139{bottom:10.335000px;}
.y134{bottom:10.515000px;}
.y136{bottom:11.595000px;}
.y11a{bottom:12.975000px;}
.y120{bottom:13.095000px;}
.y118{bottom:13.275000px;}
.y11c{bottom:13.395000px;}
.y122{bottom:13.575000px;}
.y11e{bottom:14.175000px;}
.y16a{bottom:15.435000px;}
.y15f{bottom:15.495000px;}
.y145{bottom:15.675000px;}
.y142{bottom:15.735000px;}
.y155{bottom:15.855000px;}
.y14e{bottom:15.915000px;}
.y13e{bottom:15.975000px;}
.y4b{bottom:16.095000px;}
.y140{bottom:16.155000px;}
.y147{bottom:16.215000px;}
.y151{bottom:16.275000px;}
.y43{bottom:16.335000px;}
.y10{bottom:16.395000px;}
.y15d{bottom:16.455000px;}
.y3a{bottom:16.515000px;}
.y35{bottom:16.575000px;}
.y54{bottom:16.635000px;}
.y3f{bottom:16.695000px;}
.y6c{bottom:16.755000px;}
.y153{bottom:16.815000px;}
.y70{bottom:16.875000px;}
.y5b{bottom:16.935000px;}
.y2e{bottom:17.055000px;}
.yba{bottom:17.115000px;}
.y81{bottom:17.295000px;}
.y1b{bottom:17.355000px;}
.ybd{bottom:17.415000px;}
.y76{bottom:17.475000px;}
.yb7{bottom:17.655000px;}
.y8a{bottom:17.775000px;}
.y12a{bottom:35.175000px;}
.y50{bottom:37.035000px;}
.y16c{bottom:38.475000px;}
.y4a{bottom:39.855000px;}
.y132{bottom:39.915000px;}
.y42{bottom:40.095000px;}
.y39{bottom:40.275000px;}
.y34{bottom:40.335000px;}
.y3e{bottom:40.455000px;}
.y79{bottom:40.515000px;}
.y6f{bottom:40.635000px;}
.y53{bottom:40.755000px;}
.yb9{bottom:40.875000px;}
.y7c{bottom:41.055000px;}
.yb6{bottom:41.415000px;}
.y89{bottom:41.535000px;}
.yde{bottom:49.395000px;}
.yc2{bottom:49.815000px;}
.y5a{bottom:50.055000px;}
.y1a{bottom:50.115000px;}
.y129{bottom:57.135000px;}
.y131{bottom:61.515000px;}
.y49{bottom:63.615000px;}
.y41{bottom:63.855000px;}
.y38{bottom:64.035000px;}
.y33{bottom:64.095000px;}
.y78{bottom:64.275000px;}
.y6e{bottom:64.395000px;}
.y3d{bottom:64.575000px;}
.y7b{bottom:64.815000px;}
.yb5{bottom:65.175000px;}
.y88{bottom:65.295000px;}
.y4f{bottom:70.155000px;}
.y59{bottom:73.815000px;}
.y48{bottom:87.735000px;}
.y8f{bottom:87.795000px;}
.y32{bottom:87.855000px;}
.y37{bottom:88.155000px;}
.y3c{bottom:88.335000px;}
.y80{bottom:88.575000px;}
.y87{bottom:89.055000px;}
.y4e{bottom:102.915000px;}
.y47{bottom:111.495000px;}
.y8e{bottom:111.555000px;}
.y51{bottom:111.915000px;}
.y3b{bottom:112.095000px;}
.y7f{bottom:112.335000px;}
.y86{bottom:112.815000px;}
.y183{bottom:121.815000px;}
.y2c{bottom:126.495000px;}
.y171{bottom:127.575000px;}
.y8d{bottom:135.315000px;}
.y4d{bottom:135.675000px;}
.y7e{bottom:136.095000px;}
.yc1{bottom:136.215000px;}
.y85{bottom:136.575000px;}
.y45{bottom:137.563350px;}
.y113{bottom:138.735000px;}
.y30{bottom:139.074000px;}
.y14a{bottom:142.335000px;}
.y9d{bottom:145.575000px;}
.y182{bottom:149.175000px;}
.ydc{bottom:154.575000px;}
.yf8{bottom:157.815000px;}
.y170{bottom:158.535000px;}
.y8c{bottom:159.075000px;}
.y2b{bottom:159.255000px;}
.yc0{bottom:159.975000px;}
.y84{bottom:160.335000px;}
.y17c{bottom:162.135000px;}
.y9c{bottom:169.335000px;}
.y57{bottom:169.695000px;}
.y112{bottom:171.135000px;}
.y149{bottom:173.295000px;}
.y16f{bottom:174.000000px;}
.y77{bottom:178.500000px;}
.yf7{bottom:181.575000px;}
.y83{bottom:184.095000px;}
.ydb{bottom:187.335000px;}
.y148{bottom:187.500000px;}
.y2a{bottom:192.015000px;}
.ybf{bottom:192.735000px;}
.y9b{bottom:193.095000px;}
.y56{bottom:193.455000px;}
.y111{bottom:194.895000px;}
.y16e{bottom:204.000000px;}
.yf6{bottom:205.335000px;}
.ybe{bottom:216.495000px;}
.y9a{bottom:216.855000px;}
.y146{bottom:219.000000px;}
.yda{bottom:220.095000px;}
.y29{bottom:224.775000px;}
.y55{bottom:226.215000px;}
.y110{bottom:227.655000px;}
.ybc{bottom:234.000000px;}
.y16d{bottom:235.500000px;}
.yf5{bottom:238.095000px;}
.y52{bottom:244.500000px;}
.y99{bottom:249.615000px;}
.y144{bottom:250.500000px;}
.yd9{bottom:252.855000px;}
.y28{bottom:257.535000px;}
.y10f{bottom:260.415000px;}
.y16b{bottom:265.500000px;}
.y75{bottom:268.500000px;}
.ybb{bottom:270.000000px;}
.yf4{bottom:270.855000px;}
.y98{bottom:273.375000px;}
.y143{bottom:280.500000px;}
.yd8{bottom:285.615000px;}
.y27{bottom:290.295000px;}
.y10e{bottom:293.175000px;}
.yf3{bottom:294.615000px;}
.yb8{bottom:304.500000px;}
.y97{bottom:306.135000px;}
.y44{bottom:312.000000px;}
.yd7{bottom:318.375000px;}
.y169{bottom:319.500000px;}
.y26{bottom:323.055000px;}
.y10d{bottom:326.295000px;}
.y74{bottom:328.815000px;}
.y96{bottom:339.255000px;}
.y141{bottom:342.000000px;}
.yf2{bottom:342.135000px;}
.y4c{bottom:346.500000px;}
.y168{bottom:349.500000px;}
.yd6{bottom:351.135000px;}
.y25{bottom:355.815000px;}
.y10c{bottom:359.055000px;}
.y73{bottom:361.575000px;}
.yb4{bottom:363.000000px;}
.y95{bottom:363.015000px;}
.y13f{bottom:373.500000px;}
.yf1{bottom:374.895000px;}
.y167{bottom:381.000000px;}
.yd5{bottom:383.895000px;}
.y72{bottom:385.335000px;}
.y24{bottom:388.575000px;}
.y10b{bottom:391.815000px;}
.y94{bottom:395.775000px;}
.y13d{bottom:405.000000px;}
.yf0{bottom:408.015000px;}
.yd4{bottom:417.015000px;}
.y71{bottom:418.095000px;}
.y23{bottom:421.695000px;}
.y10a{bottom:424.575000px;}
.y93{bottom:428.535000px;}
.yef{bottom:431.775000px;}
.y6d{bottom:436.500000px;}
.yd3{bottom:440.775000px;}
.y181{bottom:451.215000px;}
.y92{bottom:452.295000px;}
.y22{bottom:454.455000px;}
.yb3{bottom:454.500000px;}
.yee{bottom:455.535000px;}
.y109{bottom:457.335000px;}
.y166{bottom:459.495000px;}
.yd2{bottom:473.535000px;}
.y91{bottom:476.055000px;}
.y21{bottom:478.215000px;}
.yed{bottom:479.295000px;}
.y108{bottom:481.095000px;}
.y180{bottom:482.175000px;}
.y13c{bottom:482.895000px;}
.y165{bottom:490.455000px;}
.yd1{bottom:497.295000px;}
.y46{bottom:501.000000px;}
.y20{bottom:501.975000px;}
.yec{bottom:503.055000px;}
.y164{bottom:505.500000px;}
.y90{bottom:508.815000px;}
.y17f{bottom:509.535000px;}
.yb2{bottom:513.855000px;}
.y17b{bottom:522.495000px;}
.y8b{bottom:526.500000px;}
.y13a{bottom:529.500000px;}
.yd0{bottom:530.055000px;}
.y1f{bottom:534.735000px;}
.y163{bottom:535.500000px;}
.yeb{bottom:535.815000px;}
.yb1{bottom:546.615000px;}
.y17a{bottom:553.455000px;}
.y138{bottom:555.000000px;}
.ycf{bottom:562.815000px;}
.y162{bottom:567.000000px;}
.y1e{bottom:567.495000px;}
.yea{bottom:568.575000px;}
.yb0{bottom:570.735000px;}
.y6b{bottom:574.500000px;}
.y107{bottom:579.735000px;}
.y130{bottom:580.500000px;}
.y179{bottom:581.175000px;}
.ye9{bottom:592.335000px;}
.yaf{bottom:594.495000px;}
.yce{bottom:595.575000px;}
.y161{bottom:597.000000px;}
.y1d{bottom:600.255000px;}
.y106{bottom:603.495000px;}
.y135{bottom:604.500000px;}
.ye8{bottom:616.455000px;}
.yae{bottom:618.255000px;}
.ycd{bottom:628.335000px;}
.y160{bottom:628.500000px;}
.y133{bottom:631.500000px;}
.y1c{bottom:633.015000px;}
.y6a{bottom:634.455000px;}
.y105{bottom:636.255000px;}
.y40{bottom:639.000000px;}
.ye7{bottom:640.215000px;}
.yad{bottom:642.015000px;}
.y19{bottom:649.500000px;}
.ycc{bottom:652.455000px;}
.y12f{bottom:657.000000px;}
.y69{bottom:658.215000px;}
.y15e{bottom:660.000000px;}
.y104{bottom:669.015000px;}
.ye6{bottom:672.975000px;}
.yac{bottom:674.775000px;}
.ycb{bottom:676.215000px;}
.y128{bottom:681.000000px;}
.y15c{bottom:690.000000px;}
.y68{bottom:690.975000px;}
.y103{bottom:692.775000px;}
.yca{bottom:699.975000px;}
.y82{bottom:702.000000px;}
.y12c{bottom:705.000000px;}
.ye5{bottom:705.735000px;}
.yab{bottom:707.535000px;}
.y15b{bottom:721.500000px;}
.y67{bottom:723.735000px;}
.y102{bottom:725.535000px;}
.y2f{bottom:729.000000px;}
.ye4{bottom:729.495000px;}
.yaa{bottom:740.295000px;}
.y18{bottom:742.455000px;}
.y126{bottom:753.000000px;}
.y66{bottom:756.495000px;}
.y101{bottom:758.295000px;}
.ye3{bottom:762.255000px;}
.ya9{bottom:773.055000px;}
.y17{bottom:775.215000px;}
.y65{bottom:780.255000px;}
.ye2{bottom:786.015000px;}
.y100{bottom:791.055000px;}
.y125{bottom:793.575000px;}
.y178{bottom:796.095000px;}
.y16{bottom:798.975000px;}
.y15a{bottom:800.055000px;}
.y64{bottom:804.015000px;}
.ya8{bottom:805.815000px;}
.ye1{bottom:809.775000px;}
.y17e{bottom:811.575000px;}
.yff{bottom:814.815000px;}
.y15{bottom:822.735000px;}
.y124{bottom:824.535000px;}
.yc9{bottom:827.775000px;}
.y177{bottom:828.495000px;}
.y159{bottom:830.655000px;}
.y63{bottom:836.775000px;}
.ya7{bottom:838.935000px;}
.y17d{bottom:842.535000px;}
.ye0{bottom:842.895000px;}
.y176{bottom:844.500000px;}
.y14{bottom:846.495000px;}
.yfe{bottom:847.935000px;}
.yc8{bottom:851.895000px;}
.y123{bottom:855.135000px;}
.y36{bottom:859.500000px;}
.y158{bottom:861.615000px;}
.y62{bottom:869.895000px;}
.y121{bottom:870.000000px;}
.y13{bottom:870.615000px;}
.ya6{bottom:871.695000px;}
.ydf{bottom:875.655000px;}
.y157{bottom:876.000000px;}
.yfd{bottom:880.695000px;}
.yc7{bottom:884.655000px;}
.ydd{bottom:892.500000px;}
.y61{bottom:893.655000px;}
.y11f{bottom:900.000000px;}
.y12{bottom:903.375000px;}
.ya5{bottom:904.455000px;}
.y156{bottom:907.500000px;}
.y7d{bottom:912.000000px;}
.yfc{bottom:913.455000px;}
.y60{bottom:917.415000px;}
.y11d{bottom:927.000000px;}
.yb{bottom:928.575000px;}
.y11{bottom:936.135000px;}
.ya4{bottom:937.215000px;}
.y175{bottom:937.500000px;}
.y154{bottom:939.000000px;}
.y5f{bottom:950.175000px;}
.y11b{bottom:955.500000px;}
.ya3{bottom:960.975000px;}
.ya{bottom:961.335000px;}
.yf{bottom:961.500000px;}
.y31{bottom:966.000000px;}
.y152{bottom:969.000000px;}
.yfb{bottom:969.975000px;}
.yc6{bottom:973.935000px;}
.y9{bottom:982.215000px;}
.y5e{bottom:982.935000px;}
.y119{bottom:984.000000px;}
.ya2{bottom:984.735000px;}
.yfa{bottom:993.735000px;}
.yc5{bottom:997.695000px;}
.y174{bottom:999.000000px;}
.y150{bottom:1000.500000px;}
.y5d{bottom:1006.695000px;}
.y8{bottom:1012.095000px;}
.y117{bottom:1012.500000px;}
.ya1{bottom:1017.495000px;}
.ye{bottom:1019.655000px;}
.yf9{bottom:1026.495000px;}
.yc4{bottom:1030.455000px;}
.y173{bottom:1030.500000px;}
.y14f{bottom:1032.000000px;}
.y5c{bottom:1039.455000px;}
.y7{bottom:1041.615000px;}
.ya0{bottom:1050.255000px;}
.y58{bottom:1056.000000px;}
.y116{bottom:1057.095000px;}
.yd{bottom:1059.615000px;}
.y172{bottom:1062.000000px;}
.yc3{bottom:1063.215000px;}
.y14d{bottom:1063.500000px;}
.y7a{bottom:1074.000000px;}
.y6{bottom:1074.375000px;}
.y2d{bottom:1080.000000px;}
.y9f{bottom:1083.375000px;}
.y115{bottom:1087.695000px;}
.yc{bottom:1090.935000px;}
.y5{bottom:1107.135000px;}
.y114{bottom:1107.495000px;}
.y14c{bottom:1110.375000px;}
.y9e{bottom:1116.135000px;}
.y4{bottom:1139.895000px;}
.y14b{bottom:1141.335000px;}
.y2{bottom:1188.000000px;}
.y1{bottom:1193.535000px;}
.h3{height:22.500000px;}
.h18{height:25.500000px;}
.h1b{height:27.000000px;}
.h17{height:28.500000px;}
.h16{height:30.000000px;}
.h1c{height:31.500000px;}
.hd{height:33.000000px;}
.h5{height:34.500000px;}
.h14{height:44.893125px;}
.h15{height:45.992813px;}
.h4{height:48.796875px;}
.h13{height:49.992188px;}
.h2{height:50.027344px;}
.h1d{height:54.000000px;}
.he{height:58.500000px;}
.h6{height:67.500000px;}
.h19{height:73.500000px;}
.h1a{height:78.000000px;}
.ha{height:81.000000px;}
.h10{height:82.500000px;}
.hf{height:91.500000px;}
.h8{height:105.000000px;}
.h9{height:129.000000px;}
.hc{height:153.000000px;}
.h12{height:177.000000px;}
.h11{height:201.000000px;}
.hb{height:318.000000px;}
.h7{height:342.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:19.500000px;}
.wc{width:25.500000px;}
.wb{width:28.500000px;}
.w13{width:33.000000px;}
.w33{width:34.500000px;}
.w31{width:42.000000px;}
.w25{width:43.500000px;}
.w28{width:45.000000px;}
.w7{width:49.500000px;}
.w17{width:52.500000px;}
.w16{width:54.000000px;}
.w2a{width:55.500000px;}
.w26{width:63.000000px;}
.w19{width:64.500000px;}
.w1a{width:66.000000px;}
.w2e{width:76.500000px;}
.w34{width:85.500000px;}
.w20{width:87.000000px;}
.w27{width:94.500000px;}
.w2d{width:96.000000px;}
.w22{width:97.500000px;}
.w1e{width:106.500000px;}
.w1f{width:108.000000px;}
.w29{width:127.500000px;}
.w14{width:129.000000px;}
.w21{width:130.500000px;}
.w15{width:141.000000px;}
.w32{width:148.500000px;}
.w2f{width:150.000000px;}
.wd{width:172.500000px;}
.we{width:180.000000px;}
.w9{width:189.000000px;}
.w2c{width:192.000000px;}
.w1d{width:193.500000px;}
.wa{width:201.000000px;}
.w8{width:205.500000px;}
.w1c{width:213.000000px;}
.wf{width:222.000000px;}
.w10{width:223.500000px;}
.w23{width:225.000000px;}
.w30{width:232.500000px;}
.w24{width:234.000000px;}
.w1b{width:247.500000px;}
.w5{width:255.000000px;}
.w18{width:276.000000px;}
.w2b{width:289.500000px;}
.w6{width:372.000000px;}
.w11{width:447.000000px;}
.w12{width:492.000000px;}
.w3{width:621.000000px;}
.w4{width:637.500000px;}
.w0{width:892.935000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:1.320000px;}
.x1c{left:6.210192px;}
.xb{left:8.400144px;}
.x22{left:9.540144px;}
.x24{left:11.581920px;}
.x4d{left:12.892488px;}
.x4c{left:13.912200px;}
.x31{left:15.172476px;}
.x46{left:17.017476px;}
.x4a{left:18.037440px;}
.x2b{left:19.297464px;}
.x32{left:20.580120px;}
.x29{left:22.179204px;}
.x30{left:23.422488px;}
.x11{left:24.900006px;}
.x2f{left:26.767476px;}
.xf{left:28.198608px;}
.x58{left:30.089760px;}
.x56{left:31.467480px;}
.x1d{left:33.210192px;}
.x3e{left:35.114880px;}
.x3c{left:36.492600px;}
.x5d{left:37.756800px;}
.x57{left:39.720000px;}
.x54{left:41.097720px;}
.x5a{left:43.722324px;}
.x3f{left:44.767320px;}
.x3d{left:46.005120px;}
.x39{left:47.382840px;}
.x37{left:48.892560px;}
.x3a{left:50.152200px;}
.x8{left:52.422372px;}
.x26{left:56.205000px;}
.x27{left:60.329880px;}
.x52{left:77.265840px;}
.x50{left:84.102480px;}
.x36{left:87.637920px;}
.x13{left:93.868284px;}
.x33{left:103.110732px;}
.x20{left:120.393660px;}
.x4e{left:124.373268px;}
.x21{left:126.000000px;}
.x4{left:127.260144px;}
.xe{left:129.000000px;}
.x10{left:132.139560px;}
.x7{left:135.000000px;}
.x2d{left:136.567440px;}
.x9{left:154.260144px;}
.x12{left:178.500000px;}
.x15{left:181.260144px;}
.x1f{left:204.601656px;}
.xa{left:207.348240px;}
.x5f{left:220.228272px;}
.x62{left:228.945528px;}
.xc{left:233.460180px;}
.xd{left:235.260144px;}
.x1{left:249.477552px;}
.x40{left:255.000000px;}
.x28{left:265.500000px;}
.x5b{left:276.000000px;}
.x63{left:277.285392px;}
.x64{left:278.667108px;}
.x14{left:280.605000px;}
.x61{left:285.068124px;}
.x47{left:297.000000px;}
.x1a{left:300.000000px;}
.x1e{left:309.000000px;}
.x2a{left:318.000000px;}
.x16{left:319.500000px;}
.x41{left:360.000000px;}
.x44{left:363.000000px;}
.x34{left:372.000000px;}
.x2c{left:373.500000px;}
.x6{left:384.925680px;}
.x5{left:387.426240px;}
.x4f{left:414.000000px;}
.x60{left:445.934880px;}
.x42{left:456.000000px;}
.x59{left:466.500000px;}
.x38{left:477.000000px;}
.x1b{left:480.000000px;}
.x48{left:499.500000px;}
.x53{left:510.000000px;}
.x17{left:520.500000px;}
.x18{left:549.000000px;}
.x43{left:552.000000px;}
.x45{left:553.500000px;}
.x19{left:574.500000px;}
.x35{left:583.500000px;}
.x5e{left:600.554880px;}
.x51{left:604.500000px;}
.x23{left:616.500000px;}
.x25{left:648.000000px;}
.x49{left:679.500000px;}
.x3b{left:690.000000px;}
.x55{left:700.500000px;}
.x2e{left:711.000000px;}
.x4b{left:721.500000px;}
.x5c{left:733.500000px;}
.x2{left:745.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.211968pt;}
.lsa{letter-spacing:-0.176640pt;}
.ls8{letter-spacing:-0.141312pt;}
.ls7{letter-spacing:-0.111872pt;}
.ls6{letter-spacing:-0.105984pt;}
.lsc{letter-spacing:-0.076544pt;}
.lsb{letter-spacing:-0.070656pt;}
.ls5{letter-spacing:-0.052992pt;}
.ls4{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.012800pt;}
.ls2{letter-spacing:24.895488pt;}
.ls3{letter-spacing:30.208000pt;}
.ws4{word-spacing:-16.012800pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.987200pt;}
.ws5{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.649344pt;}
.wsa{word-spacing:-14.643456pt;}
.ws6{word-spacing:-14.614016pt;}
.wsb{word-spacing:-14.608128pt;}
.ws7{word-spacing:-14.578688pt;}
.ws8{word-spacing:-14.543360pt;}
.wsc{word-spacing:-14.508032pt;}
.ws2{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-13.248512pt;}
._0{margin-left:-11.072512pt;}
._2{margin-left:-6.144512pt;}
._1{margin-left:-4.053760pt;}
._7{margin-left:-2.910720pt;}
._6{margin-left:-1.792000pt;}
._d{margin-left:-0.901248pt;}
._8{width:1.664000pt;}
._a{width:3.302400pt;}
._b{width:6.195200pt;}
._c{width:7.116800pt;}
._9{width:14.020736pt;}
._5{width:23.776000pt;}
._4{width:751.999872pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:4.600000pt;}
.y13b{bottom:7.853333pt;}
.y12e{bottom:7.906667pt;}
.y12d{bottom:8.013333pt;}
.y12b{bottom:8.120000pt;}
.y127{bottom:8.546667pt;}
.y137{bottom:8.920000pt;}
.y139{bottom:9.186667pt;}
.y134{bottom:9.346667pt;}
.y136{bottom:10.306667pt;}
.y11a{bottom:11.533333pt;}
.y120{bottom:11.640000pt;}
.y118{bottom:11.800000pt;}
.y11c{bottom:11.906667pt;}
.y122{bottom:12.066667pt;}
.y11e{bottom:12.600000pt;}
.y16a{bottom:13.720000pt;}
.y15f{bottom:13.773333pt;}
.y145{bottom:13.933333pt;}
.y142{bottom:13.986667pt;}
.y155{bottom:14.093333pt;}
.y14e{bottom:14.146667pt;}
.y13e{bottom:14.200000pt;}
.y4b{bottom:14.306667pt;}
.y140{bottom:14.360000pt;}
.y147{bottom:14.413333pt;}
.y151{bottom:14.466667pt;}
.y43{bottom:14.520000pt;}
.y10{bottom:14.573333pt;}
.y15d{bottom:14.626667pt;}
.y3a{bottom:14.680000pt;}
.y35{bottom:14.733333pt;}
.y54{bottom:14.786667pt;}
.y3f{bottom:14.840000pt;}
.y6c{bottom:14.893333pt;}
.y153{bottom:14.946667pt;}
.y70{bottom:15.000000pt;}
.y5b{bottom:15.053333pt;}
.y2e{bottom:15.160000pt;}
.yba{bottom:15.213333pt;}
.y81{bottom:15.373333pt;}
.y1b{bottom:15.426667pt;}
.ybd{bottom:15.480000pt;}
.y76{bottom:15.533333pt;}
.yb7{bottom:15.693333pt;}
.y8a{bottom:15.800000pt;}
.y12a{bottom:31.266667pt;}
.y50{bottom:32.920000pt;}
.y16c{bottom:34.200000pt;}
.y4a{bottom:35.426667pt;}
.y132{bottom:35.480000pt;}
.y42{bottom:35.640000pt;}
.y39{bottom:35.800000pt;}
.y34{bottom:35.853333pt;}
.y3e{bottom:35.960000pt;}
.y79{bottom:36.013333pt;}
.y6f{bottom:36.120000pt;}
.y53{bottom:36.226667pt;}
.yb9{bottom:36.333333pt;}
.y7c{bottom:36.493333pt;}
.yb6{bottom:36.813333pt;}
.y89{bottom:36.920000pt;}
.yde{bottom:43.906667pt;}
.yc2{bottom:44.280000pt;}
.y5a{bottom:44.493333pt;}
.y1a{bottom:44.546667pt;}
.y129{bottom:50.786667pt;}
.y131{bottom:54.680000pt;}
.y49{bottom:56.546667pt;}
.y41{bottom:56.760000pt;}
.y38{bottom:56.920000pt;}
.y33{bottom:56.973333pt;}
.y78{bottom:57.133333pt;}
.y6e{bottom:57.240000pt;}
.y3d{bottom:57.400000pt;}
.y7b{bottom:57.613333pt;}
.yb5{bottom:57.933333pt;}
.y88{bottom:58.040000pt;}
.y4f{bottom:62.360000pt;}
.y59{bottom:65.613333pt;}
.y48{bottom:77.986667pt;}
.y8f{bottom:78.040000pt;}
.y32{bottom:78.093333pt;}
.y37{bottom:78.360000pt;}
.y3c{bottom:78.520000pt;}
.y80{bottom:78.733333pt;}
.y87{bottom:79.160000pt;}
.y4e{bottom:91.480000pt;}
.y47{bottom:99.106667pt;}
.y8e{bottom:99.160000pt;}
.y51{bottom:99.480000pt;}
.y3b{bottom:99.640000pt;}
.y7f{bottom:99.853333pt;}
.y86{bottom:100.280000pt;}
.y183{bottom:108.280000pt;}
.y2c{bottom:112.440000pt;}
.y171{bottom:113.400000pt;}
.y8d{bottom:120.280000pt;}
.y4d{bottom:120.600000pt;}
.y7e{bottom:120.973333pt;}
.yc1{bottom:121.080000pt;}
.y85{bottom:121.400000pt;}
.y45{bottom:122.278533pt;}
.y113{bottom:123.320000pt;}
.y30{bottom:123.621333pt;}
.y14a{bottom:126.520000pt;}
.y9d{bottom:129.400000pt;}
.y182{bottom:132.600000pt;}
.ydc{bottom:137.400000pt;}
.yf8{bottom:140.280000pt;}
.y170{bottom:140.920000pt;}
.y8c{bottom:141.400000pt;}
.y2b{bottom:141.560000pt;}
.yc0{bottom:142.200000pt;}
.y84{bottom:142.520000pt;}
.y17c{bottom:144.120000pt;}
.y9c{bottom:150.520000pt;}
.y57{bottom:150.840000pt;}
.y112{bottom:152.120000pt;}
.y149{bottom:154.040000pt;}
.y16f{bottom:154.666667pt;}
.y77{bottom:158.666667pt;}
.yf7{bottom:161.400000pt;}
.y83{bottom:163.640000pt;}
.ydb{bottom:166.520000pt;}
.y148{bottom:166.666667pt;}
.y2a{bottom:170.680000pt;}
.ybf{bottom:171.320000pt;}
.y9b{bottom:171.640000pt;}
.y56{bottom:171.960000pt;}
.y111{bottom:173.240000pt;}
.y16e{bottom:181.333333pt;}
.yf6{bottom:182.520000pt;}
.ybe{bottom:192.440000pt;}
.y9a{bottom:192.760000pt;}
.y146{bottom:194.666667pt;}
.yda{bottom:195.640000pt;}
.y29{bottom:199.800000pt;}
.y55{bottom:201.080000pt;}
.y110{bottom:202.360000pt;}
.ybc{bottom:208.000000pt;}
.y16d{bottom:209.333333pt;}
.yf5{bottom:211.640000pt;}
.y52{bottom:217.333333pt;}
.y99{bottom:221.880000pt;}
.y144{bottom:222.666667pt;}
.yd9{bottom:224.760000pt;}
.y28{bottom:228.920000pt;}
.y10f{bottom:231.480000pt;}
.y16b{bottom:236.000000pt;}
.y75{bottom:238.666667pt;}
.ybb{bottom:240.000000pt;}
.yf4{bottom:240.760000pt;}
.y98{bottom:243.000000pt;}
.y143{bottom:249.333333pt;}
.yd8{bottom:253.880000pt;}
.y27{bottom:258.040000pt;}
.y10e{bottom:260.600000pt;}
.yf3{bottom:261.880000pt;}
.yb8{bottom:270.666667pt;}
.y97{bottom:272.120000pt;}
.y44{bottom:277.333333pt;}
.yd7{bottom:283.000000pt;}
.y169{bottom:284.000000pt;}
.y26{bottom:287.160000pt;}
.y10d{bottom:290.040000pt;}
.y74{bottom:292.280000pt;}
.y96{bottom:301.560000pt;}
.y141{bottom:304.000000pt;}
.yf2{bottom:304.120000pt;}
.y4c{bottom:308.000000pt;}
.y168{bottom:310.666667pt;}
.yd6{bottom:312.120000pt;}
.y25{bottom:316.280000pt;}
.y10c{bottom:319.160000pt;}
.y73{bottom:321.400000pt;}
.yb4{bottom:322.666667pt;}
.y95{bottom:322.680000pt;}
.y13f{bottom:332.000000pt;}
.yf1{bottom:333.240000pt;}
.y167{bottom:338.666667pt;}
.yd5{bottom:341.240000pt;}
.y72{bottom:342.520000pt;}
.y24{bottom:345.400000pt;}
.y10b{bottom:348.280000pt;}
.y94{bottom:351.800000pt;}
.y13d{bottom:360.000000pt;}
.yf0{bottom:362.680000pt;}
.yd4{bottom:370.680000pt;}
.y71{bottom:371.640000pt;}
.y23{bottom:374.840000pt;}
.y10a{bottom:377.400000pt;}
.y93{bottom:380.920000pt;}
.yef{bottom:383.800000pt;}
.y6d{bottom:388.000000pt;}
.yd3{bottom:391.800000pt;}
.y181{bottom:401.080000pt;}
.y92{bottom:402.040000pt;}
.y22{bottom:403.960000pt;}
.yb3{bottom:404.000000pt;}
.yee{bottom:404.920000pt;}
.y109{bottom:406.520000pt;}
.y166{bottom:408.440000pt;}
.yd2{bottom:420.920000pt;}
.y91{bottom:423.160000pt;}
.y21{bottom:425.080000pt;}
.yed{bottom:426.040000pt;}
.y108{bottom:427.640000pt;}
.y180{bottom:428.600000pt;}
.y13c{bottom:429.240000pt;}
.y165{bottom:435.960000pt;}
.yd1{bottom:442.040000pt;}
.y46{bottom:445.333333pt;}
.y20{bottom:446.200000pt;}
.yec{bottom:447.160000pt;}
.y164{bottom:449.333333pt;}
.y90{bottom:452.280000pt;}
.y17f{bottom:452.920000pt;}
.yb2{bottom:456.760000pt;}
.y17b{bottom:464.440000pt;}
.y8b{bottom:468.000000pt;}
.y13a{bottom:470.666667pt;}
.yd0{bottom:471.160000pt;}
.y1f{bottom:475.320000pt;}
.y163{bottom:476.000000pt;}
.yeb{bottom:476.280000pt;}
.yb1{bottom:485.880000pt;}
.y17a{bottom:491.960000pt;}
.y138{bottom:493.333333pt;}
.ycf{bottom:500.280000pt;}
.y162{bottom:504.000000pt;}
.y1e{bottom:504.440000pt;}
.yea{bottom:505.400000pt;}
.yb0{bottom:507.320000pt;}
.y6b{bottom:510.666667pt;}
.y107{bottom:515.320000pt;}
.y130{bottom:516.000000pt;}
.y179{bottom:516.600000pt;}
.ye9{bottom:526.520000pt;}
.yaf{bottom:528.440000pt;}
.yce{bottom:529.400000pt;}
.y161{bottom:530.666667pt;}
.y1d{bottom:533.560000pt;}
.y106{bottom:536.440000pt;}
.y135{bottom:537.333333pt;}
.ye8{bottom:547.960000pt;}
.yae{bottom:549.560000pt;}
.ycd{bottom:558.520000pt;}
.y160{bottom:558.666667pt;}
.y133{bottom:561.333333pt;}
.y1c{bottom:562.680000pt;}
.y6a{bottom:563.960000pt;}
.y105{bottom:565.560000pt;}
.y40{bottom:568.000000pt;}
.ye7{bottom:569.080000pt;}
.yad{bottom:570.680000pt;}
.y19{bottom:577.333333pt;}
.ycc{bottom:579.960000pt;}
.y12f{bottom:584.000000pt;}
.y69{bottom:585.080000pt;}
.y15e{bottom:586.666667pt;}
.y104{bottom:594.680000pt;}
.ye6{bottom:598.200000pt;}
.yac{bottom:599.800000pt;}
.ycb{bottom:601.080000pt;}
.y128{bottom:605.333333pt;}
.y15c{bottom:613.333333pt;}
.y68{bottom:614.200000pt;}
.y103{bottom:615.800000pt;}
.yca{bottom:622.200000pt;}
.y82{bottom:624.000000pt;}
.y12c{bottom:626.666667pt;}
.ye5{bottom:627.320000pt;}
.yab{bottom:628.920000pt;}
.y15b{bottom:641.333333pt;}
.y67{bottom:643.320000pt;}
.y102{bottom:644.920000pt;}
.y2f{bottom:648.000000pt;}
.ye4{bottom:648.440000pt;}
.yaa{bottom:658.040000pt;}
.y18{bottom:659.960000pt;}
.y126{bottom:669.333333pt;}
.y66{bottom:672.440000pt;}
.y101{bottom:674.040000pt;}
.ye3{bottom:677.560000pt;}
.ya9{bottom:687.160000pt;}
.y17{bottom:689.080000pt;}
.y65{bottom:693.560000pt;}
.ye2{bottom:698.680000pt;}
.y100{bottom:703.160000pt;}
.y125{bottom:705.400000pt;}
.y178{bottom:707.640000pt;}
.y16{bottom:710.200000pt;}
.y15a{bottom:711.160000pt;}
.y64{bottom:714.680000pt;}
.ya8{bottom:716.280000pt;}
.ye1{bottom:719.800000pt;}
.y17e{bottom:721.400000pt;}
.yff{bottom:724.280000pt;}
.y15{bottom:731.320000pt;}
.y124{bottom:732.920000pt;}
.yc9{bottom:735.800000pt;}
.y177{bottom:736.440000pt;}
.y159{bottom:738.360000pt;}
.y63{bottom:743.800000pt;}
.ya7{bottom:745.720000pt;}
.y17d{bottom:748.920000pt;}
.ye0{bottom:749.240000pt;}
.y176{bottom:750.666667pt;}
.y14{bottom:752.440000pt;}
.yfe{bottom:753.720000pt;}
.yc8{bottom:757.240000pt;}
.y123{bottom:760.120000pt;}
.y36{bottom:764.000000pt;}
.y158{bottom:765.880000pt;}
.y62{bottom:773.240000pt;}
.y121{bottom:773.333333pt;}
.y13{bottom:773.880000pt;}
.ya6{bottom:774.840000pt;}
.ydf{bottom:778.360000pt;}
.y157{bottom:778.666667pt;}
.yfd{bottom:782.840000pt;}
.yc7{bottom:786.360000pt;}
.ydd{bottom:793.333333pt;}
.y61{bottom:794.360000pt;}
.y11f{bottom:800.000000pt;}
.y12{bottom:803.000000pt;}
.ya5{bottom:803.960000pt;}
.y156{bottom:806.666667pt;}
.y7d{bottom:810.666667pt;}
.yfc{bottom:811.960000pt;}
.y60{bottom:815.480000pt;}
.y11d{bottom:824.000000pt;}
.yb{bottom:825.400000pt;}
.y11{bottom:832.120000pt;}
.ya4{bottom:833.080000pt;}
.y175{bottom:833.333333pt;}
.y154{bottom:834.666667pt;}
.y5f{bottom:844.600000pt;}
.y11b{bottom:849.333333pt;}
.ya3{bottom:854.200000pt;}
.ya{bottom:854.520000pt;}
.yf{bottom:854.666667pt;}
.y31{bottom:858.666667pt;}
.y152{bottom:861.333333pt;}
.yfb{bottom:862.200000pt;}
.yc6{bottom:865.720000pt;}
.y9{bottom:873.080000pt;}
.y5e{bottom:873.720000pt;}
.y119{bottom:874.666667pt;}
.ya2{bottom:875.320000pt;}
.yfa{bottom:883.320000pt;}
.yc5{bottom:886.840000pt;}
.y174{bottom:888.000000pt;}
.y150{bottom:889.333333pt;}
.y5d{bottom:894.840000pt;}
.y8{bottom:899.640000pt;}
.y117{bottom:900.000000pt;}
.ya1{bottom:904.440000pt;}
.ye{bottom:906.360000pt;}
.yf9{bottom:912.440000pt;}
.yc4{bottom:915.960000pt;}
.y173{bottom:916.000000pt;}
.y14f{bottom:917.333333pt;}
.y5c{bottom:923.960000pt;}
.y7{bottom:925.880000pt;}
.ya0{bottom:933.560000pt;}
.y58{bottom:938.666667pt;}
.y116{bottom:939.640000pt;}
.yd{bottom:941.880000pt;}
.y172{bottom:944.000000pt;}
.yc3{bottom:945.080000pt;}
.y14d{bottom:945.333333pt;}
.y7a{bottom:954.666667pt;}
.y6{bottom:955.000000pt;}
.y2d{bottom:960.000000pt;}
.y9f{bottom:963.000000pt;}
.y115{bottom:966.840000pt;}
.yc{bottom:969.720000pt;}
.y5{bottom:984.120000pt;}
.y114{bottom:984.440000pt;}
.y14c{bottom:987.000000pt;}
.y9e{bottom:992.120000pt;}
.y4{bottom:1013.240000pt;}
.y14b{bottom:1014.520000pt;}
.y2{bottom:1056.000000pt;}
.y1{bottom:1060.920000pt;}
.h3{height:20.000000pt;}
.h18{height:22.666667pt;}
.h1b{height:24.000000pt;}
.h17{height:25.333333pt;}
.h16{height:26.666667pt;}
.h1c{height:28.000000pt;}
.hd{height:29.333333pt;}
.h5{height:30.666667pt;}
.h14{height:39.905000pt;}
.h15{height:40.882500pt;}
.h4{height:43.375000pt;}
.h13{height:44.437500pt;}
.h2{height:44.468750pt;}
.h1d{height:48.000000pt;}
.he{height:52.000000pt;}
.h6{height:60.000000pt;}
.h19{height:65.333333pt;}
.h1a{height:69.333333pt;}
.ha{height:72.000000pt;}
.h10{height:73.333333pt;}
.hf{height:81.333333pt;}
.h8{height:93.333333pt;}
.h9{height:114.666667pt;}
.hc{height:136.000000pt;}
.h12{height:157.333333pt;}
.h11{height:178.666667pt;}
.hb{height:282.666667pt;}
.h7{height:304.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:17.333333pt;}
.wc{width:22.666667pt;}
.wb{width:25.333333pt;}
.w13{width:29.333333pt;}
.w33{width:30.666667pt;}
.w31{width:37.333333pt;}
.w25{width:38.666667pt;}
.w28{width:40.000000pt;}
.w7{width:44.000000pt;}
.w17{width:46.666667pt;}
.w16{width:48.000000pt;}
.w2a{width:49.333333pt;}
.w26{width:56.000000pt;}
.w19{width:57.333333pt;}
.w1a{width:58.666667pt;}
.w2e{width:68.000000pt;}
.w34{width:76.000000pt;}
.w20{width:77.333333pt;}
.w27{width:84.000000pt;}
.w2d{width:85.333333pt;}
.w22{width:86.666667pt;}
.w1e{width:94.666667pt;}
.w1f{width:96.000000pt;}
.w29{width:113.333333pt;}
.w14{width:114.666667pt;}
.w21{width:116.000000pt;}
.w15{width:125.333333pt;}
.w32{width:132.000000pt;}
.w2f{width:133.333333pt;}
.wd{width:153.333333pt;}
.we{width:160.000000pt;}
.w9{width:168.000000pt;}
.w2c{width:170.666667pt;}
.w1d{width:172.000000pt;}
.wa{width:178.666667pt;}
.w8{width:182.666667pt;}
.w1c{width:189.333333pt;}
.wf{width:197.333333pt;}
.w10{width:198.666667pt;}
.w23{width:200.000000pt;}
.w30{width:206.666667pt;}
.w24{width:208.000000pt;}
.w1b{width:220.000000pt;}
.w5{width:226.666667pt;}
.w18{width:245.333333pt;}
.w2b{width:257.333333pt;}
.w6{width:330.666667pt;}
.w11{width:397.333333pt;}
.w12{width:437.333333pt;}
.w3{width:552.000000pt;}
.w4{width:566.666667pt;}
.w0{width:793.720000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.173333pt;}
.x1c{left:5.520171pt;}
.xb{left:7.466795pt;}
.x22{left:8.480128pt;}
.x24{left:10.295040pt;}
.x4d{left:11.459989pt;}
.x4c{left:12.366400pt;}
.x31{left:13.486645pt;}
.x46{left:15.126645pt;}
.x4a{left:16.033280pt;}
.x2b{left:17.153301pt;}
.x32{left:18.293440pt;}
.x29{left:19.714848pt;}
.x30{left:20.819989pt;}
.x11{left:22.133339pt;}
.x2f{left:23.793312pt;}
.xf{left:25.065429pt;}
.x58{left:26.746453pt;}
.x56{left:27.971093pt;}
.x1d{left:29.520171pt;}
.x3e{left:31.213227pt;}
.x3c{left:32.437867pt;}
.x5d{left:33.561600pt;}
.x57{left:35.306667pt;}
.x54{left:36.531307pt;}
.x5a{left:38.864288pt;}
.x3f{left:39.793173pt;}
.x3d{left:40.893440pt;}
.x39{left:42.118080pt;}
.x37{left:43.460053pt;}
.x3a{left:44.579733pt;}
.x8{left:46.597664pt;}
.x26{left:49.960000pt;}
.x27{left:53.626560pt;}
.x52{left:68.680747pt;}
.x50{left:74.757760pt;}
.x36{left:77.900373pt;}
.x13{left:83.438475pt;}
.x33{left:91.653984pt;}
.x20{left:107.016587pt;}
.x4e{left:110.554016pt;}
.x21{left:112.000000pt;}
.x4{left:113.120128pt;}
.xe{left:114.666667pt;}
.x10{left:117.457387pt;}
.x7{left:120.000000pt;}
.x2d{left:121.393280pt;}
.x9{left:137.120128pt;}
.x12{left:158.666667pt;}
.x15{left:161.120128pt;}
.x1f{left:181.868139pt;}
.xa{left:184.309547pt;}
.x5f{left:195.758464pt;}
.x62{left:203.507136pt;}
.xc{left:207.520160pt;}
.xd{left:209.120128pt;}
.x1{left:221.757824pt;}
.x40{left:226.666667pt;}
.x28{left:236.000000pt;}
.x5b{left:245.333333pt;}
.x63{left:246.475904pt;}
.x64{left:247.704096pt;}
.x14{left:249.426667pt;}
.x61{left:253.393888pt;}
.x47{left:264.000000pt;}
.x1a{left:266.666667pt;}
.x1e{left:274.666667pt;}
.x2a{left:282.666667pt;}
.x16{left:284.000000pt;}
.x41{left:320.000000pt;}
.x44{left:322.666667pt;}
.x34{left:330.666667pt;}
.x2c{left:332.000000pt;}
.x6{left:342.156160pt;}
.x5{left:344.378880pt;}
.x4f{left:368.000000pt;}
.x60{left:396.386560pt;}
.x42{left:405.333333pt;}
.x59{left:414.666667pt;}
.x38{left:424.000000pt;}
.x1b{left:426.666667pt;}
.x48{left:444.000000pt;}
.x53{left:453.333333pt;}
.x17{left:462.666667pt;}
.x18{left:488.000000pt;}
.x43{left:490.666667pt;}
.x45{left:492.000000pt;}
.x19{left:510.666667pt;}
.x35{left:518.666667pt;}
.x5e{left:533.826560pt;}
.x51{left:537.333333pt;}
.x23{left:548.000000pt;}
.x25{left:576.000000pt;}
.x49{left:604.000000pt;}
.x3b{left:613.333333pt;}
.x55{left:622.666667pt;}
.x2e{left:632.000000pt;}
.x4b{left:641.333333pt;}
.x5c{left:652.000000pt;}
.x2{left:662.666667pt;}
}




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