
    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_bbd10fa360fb3f7119e75924.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_e8fe38857dc1a8395d0f631d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165039;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_9ff6aa0fbed1f17ee2445192.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.107910;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_38aa503f929c02386f0f3ab5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.230000;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_2ad9696746b25ba78ae81f32.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.188000;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_1eaed879e377e3f0ddc5fca3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.109863;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_35cdaaca92944fd3cd94b47c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.475000;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_c141f451af9725d2feb1f895.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;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_c02c6ce2281a7cb7e347081f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.107910;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_c4d83f51bb547968d5a503c0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.481000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9e5af046215b78732ee9006d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.692383;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);}
.m2{transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,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;}
.v1{vertical-align:2.379486px;}
.v2{vertical-align:9.862242px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:1.478295px;}
.ls3{letter-spacing:1.617677px;}
.ls0{letter-spacing:1.778178px;}
.ls1{letter-spacing:1.782401px;}
.ls7{letter-spacing:5.489650px;}
.ls6{letter-spacing:10.118839px;}
.ls4{letter-spacing:19.038201px;}
.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;}
}
.ws1{word-spacing:-24.230394px;}
.ws4{word-spacing:-14.011436px;}
.ws7{word-spacing:-13.437589px;}
.ws2{word-spacing:-12.375441px;}
.ws5{word-spacing:-11.955150px;}
.ws0{word-spacing:-11.620260px;}
.wsb{word-spacing:-11.208832px;}
.wsa{word-spacing:-10.759500px;}
.ws9{word-spacing:-10.061328px;}
.ws3{word-spacing:-9.563850px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:1.588102px;}
.wsd{word-spacing:12.670188px;}
.wse{word-spacing:12.674014px;}
.wsc{word-spacing:12.781129px;}
._4{margin-left:-17.343592px;}
._c{margin-left:-5.126368px;}
._b{margin-left:-3.796956px;}
._9{margin-left:-2.758736px;}
._8{margin-left:-1.497722px;}
._3{width:1.174801px;}
._2{width:2.356352px;}
._1{width:3.461901px;}
._7{width:5.006331px;}
._6{width:6.701017px;}
._5{width:7.742536px;}
._a{width:9.106841px;}
._d{width:10.265856px;}
._f{width:11.453034px;}
._e{width:12.533779px;}
._14{width:15.116092px;}
._0{width:16.784820px;}
._11{width:18.033148px;}
._15{width:19.264337px;}
._10{width:20.318240px;}
._13{width:21.988250px;}
._19{width:23.264045px;}
._12{width:26.153086px;}
._16{width:28.113731px;}
._1a{width:29.132310px;}
._17{width:30.184363px;}
._18{width:31.202941px;}
.fc2{color:rgb(33,150,209);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(46,116,163);}
.fs4{font-size:26.761800px;}
.fs5{font-size:38.255400px;}
.fs9{font-size:38.256000px;}
.fs6{font-size:41.842200px;}
.fs3{font-size:42.237000px;}
.fs0{font-size:43.038000px;}
.fs7{font-size:47.820600px;}
.fs2{font-size:63.362400px;}
.fs1{font-size:80.697000px;}
.fs8{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000732px;}
.y41{bottom:47.430000px;}
.y63{bottom:78.491250px;}
.yd4{bottom:78.491386px;}
.y93{bottom:83.855437px;}
.ya4{bottom:86.144850px;}
.yfb{bottom:89.723592px;}
.y4{bottom:91.200000px;}
.yd3{bottom:92.777850px;}
.y17d{bottom:96.696022px;}
.y92{bottom:99.503532px;}
.y128{bottom:102.648563px;}
.yfa{bottom:105.455374px;}
.y3{bottom:105.630000px;}
.y17c{bottom:108.601103px;}
.y127{bottom:114.638761px;}
.y91{bottom:115.235314px;}
.y3f{bottom:119.905636px;}
.y17b{bottom:120.591301px;}
.yf9{bottom:121.102275px;}
.y126{bottom:126.543842px;}
.y90{bottom:130.882215px;}
.y17a{bottom:132.582457px;}
.y3e{bottom:134.192100px;}
.yf8{bottom:136.834057px;}
.y125{bottom:138.534997px;}
.y179{bottom:144.487537px;}
.y8f{bottom:146.613997px;}
.y124{bottom:150.440077px;}
.yf7{bottom:152.480957px;}
.y178{bottom:156.477736px;}
.y3a{bottom:159.703536px;}
.y8e{bottom:162.262092px;}
.y123{bottom:162.430276px;}
.yf6{bottom:168.213934px;}
.y177{bottom:168.382816px;}
.y39{bottom:174.075000px;}
.y122{bottom:174.421431px;}
.y8d{bottom:177.993874px;}
.y176{bottom:180.373971px;}
.yf5{bottom:183.860835px;}
.y121{bottom:186.326512px;}
.y175{bottom:192.279052px;}
.y8c{bottom:193.640775px;}
.y120{bottom:198.316710px;}
.yf4{bottom:199.592616px;}
.y174{bottom:204.269251px;}
.y8b{bottom:209.372557px;}
.y11f{bottom:210.221791px;}
.yf3{bottom:215.239517px;}
.y173{bottom:216.259449px;}
.y37{bottom:217.533956px;}
.y11e{bottom:222.212946px;}
.y8a{bottom:225.019457px;}
.y172{bottom:228.165486px;}
.yf2{bottom:230.972494px;}
.y36{bottom:233.180856px;}
.y11d{bottom:234.118027px;}
.y171{bottom:240.155685px;}
.y89{bottom:240.752434px;}
.y11c{bottom:246.108225px;}
.yf1{bottom:246.619394px;}
.y35{bottom:248.912638px;}
.y170{bottom:252.060766px;}
.y88{bottom:256.399335px;}
.y11b{bottom:258.098424px;}
.yf0{bottom:262.351176px;}
.y16f{bottom:264.051921px;}
.y34{bottom:264.559538px;}
.y11a{bottom:270.004461px;}
.y87{bottom:272.131116px;}
.y16e{bottom:276.042119px;}
.yef{bottom:277.998077px;}
.y33{bottom:280.292516px;}
.y119{bottom:281.994660px;}
.y86{bottom:287.778017px;}
.y16d{bottom:287.947200px;}
.yee{bottom:293.731054px;}
.y118{bottom:293.899740px;}
.y32{bottom:295.939416px;}
.y16c{bottom:299.937399px;}
.y85{bottom:303.510994px;}
.y117{bottom:305.890895px;}
.yed{bottom:309.377954px;}
.y31{bottom:311.671198px;}
.y16b{bottom:311.843435px;}
.y116{bottom:317.881094px;}
.y84{bottom:319.157894px;}
.y16a{bottom:323.833634px;}
.yec{bottom:325.109736px;}
.y30{bottom:327.318098px;}
.y115{bottom:329.786174px;}
.y83{bottom:334.889676px;}
.y169{bottom:335.738715px;}
.yeb{bottom:340.756637px;}
.y114{bottom:341.776373px;}
.y2f{bottom:343.051076px;}
.y168{bottom:347.728913px;}
.y82{bottom:350.536577px;}
.y113{bottom:353.682410px;}
.yea{bottom:356.489614px;}
.y2e{bottom:358.697976px;}
.y167{bottom:359.720069px;}
.y112{bottom:365.672609px;}
.y81{bottom:366.269554px;}
.y166{bottom:371.625149px;}
.ye9{bottom:372.136514px;}
.y2d{bottom:374.429758px;}
.y111{bottom:377.577689px;}
.y80{bottom:381.916454px;}
.y165{bottom:383.615348px;}
.ye8{bottom:387.868296px;}
.y110{bottom:389.567888px;}
.y2c{bottom:390.161540px;}
.y164{bottom:395.521385px;}
.y7f{bottom:397.648236px;}
.y10f{bottom:401.559043px;}
.ye7{bottom:403.515197px;}
.y2b{bottom:405.809636px;}
.y163{bottom:407.511583px;}
.y7e{bottom:413.295137px;}
.y10e{bottom:413.464124px;}
.ye6{bottom:419.246978px;}
.y162{bottom:419.501782px;}
.y2a{bottom:421.541417px;}
.y10d{bottom:425.454322px;}
.y7d{bottom:429.028114px;}
.y161{bottom:431.406863px;}
.ye5{bottom:434.895074px;}
.y29{bottom:437.188318px;}
.y10c{bottom:437.359403px;}
.y160{bottom:443.398018px;}
.y7c{bottom:444.675014px;}
.y10b{bottom:449.350558px;}
.ye4{bottom:450.626856px;}
.y38{bottom:452.920100px;}
.yc5{bottom:453.181441px;}
.y15f{bottom:455.303098px;}
.yd2{bottom:455.987314px;}
.y7b{bottom:460.406796px;}
.y10a{bottom:461.340757px;}
.ye3{bottom:466.273756px;}
.y15e{bottom:467.293297px;}
.y28{bottom:468.567000px;}
.yc4{bottom:468.828341px;}
.yd1{bottom:471.634215px;}
.y109{bottom:473.245837px;}
.y7a{bottom:476.053697px;}
.y15d{bottom:479.283496px;}
.ye2{bottom:482.005538px;}
.yc3{bottom:484.560123px;}
.y108{bottom:485.236992px;}
.yd0{bottom:487.365997px;}
.ya2{bottom:489.318038px;}
.y15c{bottom:491.189533px;}
.y79{bottom:491.785478px;}
.y107{bottom:497.142073px;}
.ye1{bottom:497.738516px;}
.yc2{bottom:500.207023px;}
.ycf{bottom:503.014092px;}
.y15b{bottom:503.179731px;}
.ya1{bottom:505.051016px;}
.y78{bottom:507.433574px;}
.y106{bottom:509.132272px;}
.ye0{bottom:513.385416px;}
.y15a{bottom:515.084812px;}
.yc1{bottom:515.938805px;}
.yce{bottom:518.745874px;}
.ya0{bottom:520.697916px;}
.y105{bottom:521.037352px;}
.y77{bottom:523.165356px;}
.y159{bottom:527.075011px;}
.y27{bottom:528.095930px;}
.ydf{bottom:529.117198px;}
.yc0{bottom:531.586901px;}
.y104{bottom:533.028507px;}
.ycd{bottom:534.392775px;}
.y9f{bottom:536.429698px;}
.y76{bottom:538.812256px;}
.y158{bottom:538.981047px;}
.y26{bottom:542.467395px;}
.yde{bottom:544.764098px;}
.y103{bottom:545.018706px;}
.ybf{bottom:547.318683px;}
.ycc{bottom:550.124557px;}
.y157{bottom:550.971246px;}
.y9e{bottom:552.076598px;}
.y75{bottom:554.544038px;}
.y25{bottom:556.753859px;}
.y102{bottom:556.923786px;}
.ydd{bottom:560.497076px;}
.y156{bottom:562.961445px;}
.ybe{bottom:562.965583px;}
.ycb{bottom:565.771457px;}
.y9d{bottom:567.809576px;}
.y101{bottom:568.913985px;}
.y74{bottom:570.277016px;}
.y24{bottom:571.125323px;}
.y155{bottom:574.867482px;}
.ydc{bottom:576.143976px;}
.ybd{bottom:578.697365px;}
.y100{bottom:580.820022px;}
.yca{bottom:581.504434px;}
.y9c{bottom:583.456476px;}
.y23{bottom:585.496787px;}
.y73{bottom:585.923916px;}
.y154{bottom:586.857681px;}
.ydb{bottom:591.875758px;}
.yff{bottom:592.810221px;}
.ybc{bottom:594.345461px;}
.y62{bottom:596.301323px;}
.yc9{bottom:597.151335px;}
.y153{bottom:598.762761px;}
.y9b{bottom:599.188258px;}
.y22{bottom:599.783251px;}
.y72{bottom:601.655698px;}
.yfe{bottom:604.800420px;}
.yda{bottom:607.522658px;}
.ybb{bottom:610.077243px;}
.y152{bottom:610.752960px;}
.y61{bottom:611.948224px;}
.yc8{bottom:612.883116px;}
.y21{bottom:614.154715px;}
.y9a{bottom:614.835158px;}
.yfd{bottom:616.705500px;}
.y71{bottom:617.302598px;}
.y151{bottom:622.743159px;}
.yd9{bottom:623.255636px;}
.yba{bottom:625.724143px;}
.y60{bottom:627.680006px;}
.y20{bottom:628.526179px;}
.yc7{bottom:628.530017px;}
.y99{bottom:630.568136px;}
.y70{bottom:633.035576px;}
.y150{bottom:634.648239px;}
.y1a{bottom:637.456800px;}
.yd8{bottom:638.902536px;}
.yb9{bottom:641.455925px;}
.y1f{bottom:642.812643px;}
.yc6{bottom:644.262994px;}
.y98{bottom:646.215036px;}
.y14f{bottom:646.638438px;}
.y6f{bottom:648.682476px;}
.y19{bottom:650.297225px;}
.yd7{bottom:654.634318px;}
.yb8{bottom:657.104021px;}
.y1e{bottom:657.184108px;}
.y14e{bottom:658.543518px;}
.y5f{bottom:659.059883px;}
.y5e{bottom:659.909894px;}
.y97{bottom:661.946818px;}
.y18{bottom:663.137650px;}
.y6e{bottom:664.414258px;}
.yd6{bottom:670.281218px;}
.y14d{bottom:670.534673px;}
.y1d{bottom:671.555572px;}
.yb7{bottom:672.835803px;}
.y5d{bottom:675.641676px;}
.y17{bottom:676.064150px;}
.y96{bottom:677.678600px;}
.y6d{bottom:680.061158px;}
.y14c{bottom:682.439754px;}
.y1c{bottom:685.927036px;}
.yd5{bottom:686.013000px;}
.yb6{bottom:688.482703px;}
.y16{bottom:688.904575px;}
.y5c{bottom:691.288577px;}
.y95{bottom:693.325500px;}
.y14b{bottom:694.429953px;}
.y6c{bottom:695.794136px;}
.y1b{bottom:700.213500px;}
.y15{bottom:701.745000px;}
.yb5{bottom:704.214485px;}
.y14a{bottom:706.420151px;}
.y5b{bottom:707.021554px;}
.y6b{bottom:711.441036px;}
.y149{bottom:718.326188px;}
.yfc{bottom:719.602500px;}
.yb4{bottom:719.861385px;}
.y5a{bottom:722.753336px;}
.ya3{bottom:727.002000px;}
.y6a{bottom:727.172818px;}
.y14{bottom:729.552000px;}
.y148{bottom:730.316387px;}
.yb3{bottom:735.594363px;}
.y59{bottom:738.400236px;}
.y147{bottom:742.221467px;}
.y69{bottom:742.819718px;}
.yb2{bottom:751.241263px;}
.y58{bottom:754.132018px;}
.y146{bottom:754.212623px;}
.y68{bottom:758.551500px;}
.y145{bottom:766.202821px;}
.yb1{bottom:766.973045px;}
.y57{bottom:769.780114px;}
.y144{bottom:778.107902px;}
.y13{bottom:778.960500px;}
.yb0{bottom:782.619945px;}
.y12{bottom:783.213000px;}
.y56{bottom:785.511896px;}
.y143{bottom:790.098100px;}
.y11{bottom:791.802000px;}
.y94{bottom:792.141000px;}
.y10{bottom:796.053000px;}
.yaf{bottom:798.352923px;}
.y55{bottom:801.158796px;}
.y142{bottom:802.004137px;}
.yf{bottom:804.727500px;}
.ye{bottom:808.980000px;}
.y141{bottom:813.994336px;}
.yae{bottom:814.084704px;}
.y54{bottom:816.890578px;}
.yd{bottom:817.569000px;}
.yc{bottom:821.820000px;}
.y140{bottom:825.899417px;}
.yad{bottom:829.731605px;}
.y53{bottom:832.537478px;}
.y13f{bottom:837.889615px;}
.yb{bottom:842.230500px;}
.y9{bottom:842.232190px;}
.yac{bottom:845.463387px;}
.y52{bottom:848.270456px;}
.ya{bottom:849.202500px;}
.y13e{bottom:849.880770px;}
.yab{bottom:861.111482px;}
.y7{bottom:861.619500px;}
.y13d{bottom:861.785851px;}
.y51{bottom:863.917356px;}
.y8{bottom:868.677000px;}
.y13c{bottom:873.776050px;}
.yaa{bottom:876.843264px;}
.y50{bottom:879.649138px;}
.y13b{bottom:885.682087px;}
.ya9{bottom:892.490165px;}
.y4f{bottom:895.296038px;}
.y13a{bottom:897.672285px;}
.y6{bottom:899.122216px;}
.ya8{bottom:908.221947px;}
.y139{bottom:909.662484px;}
.y4e{bottom:911.029016px;}
.y138{bottom:921.567565px;}
.ya7{bottom:923.870042px;}
.y5{bottom:924.973500px;}
.y4d{bottom:926.675916px;}
.y67{bottom:929.907393px;}
.y137{bottom:933.558720px;}
.ya6{bottom:939.601824px;}
.y4c{bottom:942.407698px;}
.y136{bottom:945.463800px;}
.y66{bottom:945.639175px;}
.y135{bottom:957.453999px;}
.y4b{bottom:958.054598px;}
.y134{bottom:969.359079px;}
.ya5{bottom:970.980506px;}
.y4a{bottom:973.787576px;}
.y65{bottom:977.019053px;}
.y133{bottom:981.350234px;}
.y18a{bottom:981.355573px;}
.y49{bottom:989.434476px;}
.y132{bottom:993.340433px;}
.y189{bottom:993.345772px;}
.y3d{bottom:1003.719000px;}
.y48{bottom:1005.166258px;}
.y131{bottom:1005.245514px;}
.y188{bottom:1005.250852px;}
.y130{bottom:1017.235712px;}
.y187{bottom:1017.242007px;}
.y47{bottom:1020.813158px;}
.y12f{bottom:1029.141749px;}
.y186{bottom:1029.147088px;}
.y46{bottom:1036.546136px;}
.y12e{bottom:1041.131948px;}
.y185{bottom:1041.137286px;}
.y3c{bottom:1045.474500px;}
.y45{bottom:1052.193036px;}
.y12d{bottom:1053.122147px;}
.y184{bottom:1053.127485px;}
.y12c{bottom:1065.028184px;}
.y183{bottom:1065.033522px;}
.y44{bottom:1067.924818px;}
.y12b{bottom:1077.018382px;}
.y182{bottom:1077.023721px;}
.y43{bottom:1083.571718px;}
.y3b{bottom:1087.312500px;}
.y12a{bottom:1088.923463px;}
.y181{bottom:1088.928801px;}
.y42{bottom:1099.303500px;}
.y180{bottom:1100.749720px;}
.y129{bottom:1100.913662px;}
.y17f{bottom:1100.919000px;}
.y2{bottom:1127.505000px;}
.y40{bottom:1128.630000px;}
.y17e{bottom:1128.636394px;}
.y18b{bottom:1128.640776px;}
.y64{bottom:1128.642000px;}
.h7{height:23.847795px;}
.h8{height:33.622910px;}
.h10{height:33.623438px;}
.ha{height:34.089895px;}
.hf{height:34.478653px;}
.h13{height:34.767016px;}
.h12{height:35.883565px;}
.h11{height:36.564511px;}
.h9{height:37.286140px;}
.h6{height:37.637952px;}
.h3{height:37.826367px;}
.hb{height:38.351733px;}
.hc{height:42.029824px;}
.hd{height:42.613572px;}
.h5{height:56.463076px;}
.h4{height:71.910168px;}
.he{height:74.572815px;}
.h1{height:1190.250000px;}
.h2{height:1190.550000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:56.276979px;}
.x24{left:61.483350px;}
.x12{left:62.758950px;}
.x17{left:63.949500px;}
.x15{left:74.323389px;}
.x20{left:80.957400px;}
.x25{left:101.876270px;}
.x1f{left:124.582650px;}
.xb{left:159.789000px;}
.x21{left:166.507500px;}
.x2d{left:173.053375px;}
.xc{left:176.286000px;}
.x3{left:181.303500px;}
.x2b{left:202.987269px;}
.x4{left:211.152000px;}
.x1a{left:229.861500px;}
.x2c{left:244.230416px;}
.x14{left:302.995500px;}
.x19{left:304.356000px;}
.xd{left:305.802000px;}
.x5{left:309.628500px;}
.x6{left:315.666000px;}
.xe{left:322.384500px;}
.x1{left:327.266979px;}
.x1e{left:339.391500px;}
.x18{left:342.624000px;}
.x23{left:356.230500px;}
.x22{left:375.618000px;}
.x1c{left:444.311979px;}
.xf{left:448.242000px;}
.x7{left:459.552000px;}
.x10{left:465.165000px;}
.x16{left:477.831221px;}
.x26{left:484.719099px;}
.x8{left:489.402000px;}
.x28{left:505.383709px;}
.x27{left:515.503219px;}
.x13{left:518.565073px;}
.x2a{left:539.994326px;}
.x2e{left:542.035316px;}
.x29{left:563.209616px;}
.x11{left:591.448500px;}
.x9{left:603.609000px;}
.xa{left:620.107500px;}
.x1b{left:635.096979px;}
.x1d{left:820.792195px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.115099pt;}
.v2{vertical-align:8.766437pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1.314040pt;}
.ls3{letter-spacing:1.437935pt;}
.ls0{letter-spacing:1.580602pt;}
.ls1{letter-spacing:1.584357pt;}
.ls7{letter-spacing:4.879689pt;}
.ls6{letter-spacing:8.994524pt;}
.ls4{letter-spacing:16.922845pt;}
.ws1{word-spacing:-21.538128pt;}
.ws4{word-spacing:-12.454610pt;}
.ws7{word-spacing:-11.944523pt;}
.ws2{word-spacing:-11.000392pt;}
.ws5{word-spacing:-10.626800pt;}
.ws0{word-spacing:-10.329120pt;}
.wsb{word-spacing:-9.963406pt;}
.wsa{word-spacing:-9.564000pt;}
.ws9{word-spacing:-8.943403pt;}
.ws3{word-spacing:-8.501200pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:1.411646pt;}
.wsd{word-spacing:11.262390pt;}
.wse{word-spacing:11.265790pt;}
.wsc{word-spacing:11.361004pt;}
._4{margin-left:-15.416526pt;}
._c{margin-left:-4.556772pt;}
._b{margin-left:-3.375072pt;}
._9{margin-left:-2.452210pt;}
._8{margin-left:-1.331309pt;}
._3{width:1.044268pt;}
._2{width:2.094535pt;}
._1{width:3.077246pt;}
._7{width:4.450072pt;}
._6{width:5.956459pt;}
._5{width:6.882254pt;}
._a{width:8.094970pt;}
._d{width:9.125205pt;}
._f{width:10.180474pt;}
._e{width:11.141137pt;}
._14{width:13.436526pt;}
._0{width:14.919840pt;}
._11{width:16.029465pt;}
._15{width:17.123855pt;}
._10{width:18.060658pt;}
._13{width:19.545111pt;}
._19{width:20.679151pt;}
._12{width:23.247188pt;}
._16{width:24.989983pt;}
._1a{width:25.895386pt;}
._17{width:26.830545pt;}
._18{width:27.735948pt;}
.fs4{font-size:23.788267pt;}
.fs5{font-size:34.004800pt;}
.fs9{font-size:34.005333pt;}
.fs6{font-size:37.193067pt;}
.fs3{font-size:37.544000pt;}
.fs0{font-size:38.256000pt;}
.fs7{font-size:42.507200pt;}
.fs2{font-size:56.322133pt;}
.fs1{font-size:71.730667pt;}
.fs8{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000651pt;}
.y41{bottom:42.160000pt;}
.y63{bottom:69.770000pt;}
.yd4{bottom:69.770121pt;}
.y93{bottom:74.538166pt;}
.ya4{bottom:76.573200pt;}
.yfb{bottom:79.754304pt;}
.y4{bottom:81.066667pt;}
.yd3{bottom:82.469200pt;}
.y17d{bottom:85.952020pt;}
.y92{bottom:88.447584pt;}
.y128{bottom:91.243167pt;}
.yfa{bottom:93.738110pt;}
.y3{bottom:93.893333pt;}
.y17c{bottom:96.534314pt;}
.y127{bottom:101.901121pt;}
.y91{bottom:102.431391pt;}
.y3f{bottom:106.582787pt;}
.y17b{bottom:107.192268pt;}
.yf9{bottom:107.646466pt;}
.y126{bottom:112.483415pt;}
.y90{bottom:116.339746pt;}
.y17a{bottom:117.851073pt;}
.y3e{bottom:119.281867pt;}
.yf8{bottom:121.630272pt;}
.y125{bottom:123.142219pt;}
.y179{bottom:128.433366pt;}
.y8f{bottom:130.323553pt;}
.y124{bottom:133.724513pt;}
.yf7{bottom:135.538628pt;}
.y178{bottom:139.091321pt;}
.y3a{bottom:141.958699pt;}
.y8e{bottom:144.232971pt;}
.y123{bottom:144.382468pt;}
.yf6{bottom:149.523497pt;}
.y177{bottom:149.673615pt;}
.y39{bottom:154.733333pt;}
.y122{bottom:155.041272pt;}
.y8d{bottom:158.216777pt;}
.y176{bottom:160.332419pt;}
.yf5{bottom:163.431853pt;}
.y121{bottom:165.623566pt;}
.y175{bottom:170.914713pt;}
.y8c{bottom:172.125133pt;}
.y120{bottom:176.281520pt;}
.yf4{bottom:177.415659pt;}
.y174{bottom:181.572667pt;}
.y8b{bottom:186.108939pt;}
.y11f{bottom:186.863814pt;}
.yf3{bottom:191.324015pt;}
.y173{bottom:192.230622pt;}
.y37{bottom:193.363516pt;}
.y11e{bottom:197.522619pt;}
.y8a{bottom:200.017295pt;}
.y172{bottom:202.813766pt;}
.yf2{bottom:205.308884pt;}
.y36{bottom:207.271872pt;}
.y11d{bottom:208.104912pt;}
.y171{bottom:213.471720pt;}
.y89{bottom:214.002164pt;}
.y11c{bottom:218.762867pt;}
.yf1{bottom:219.217240pt;}
.y35{bottom:221.255678pt;}
.y170{bottom:224.054014pt;}
.y88{bottom:227.910520pt;}
.y11b{bottom:229.420821pt;}
.yf0{bottom:233.201046pt;}
.y16f{bottom:234.712818pt;}
.y34{bottom:235.164034pt;}
.y11a{bottom:240.003965pt;}
.y87{bottom:241.894326pt;}
.y16e{bottom:245.370773pt;}
.yef{bottom:247.109401pt;}
.y33{bottom:249.148903pt;}
.y119{bottom:250.661920pt;}
.y86{bottom:255.802682pt;}
.y16d{bottom:255.953067pt;}
.yee{bottom:261.094270pt;}
.y118{bottom:261.244213pt;}
.y32{bottom:263.057259pt;}
.y16c{bottom:266.611021pt;}
.y85{bottom:269.787550pt;}
.y117{bottom:271.903018pt;}
.yed{bottom:275.002626pt;}
.y31{bottom:277.041065pt;}
.y16b{bottom:277.194165pt;}
.y116{bottom:282.560972pt;}
.y84{bottom:283.695906pt;}
.y16a{bottom:287.852119pt;}
.yec{bottom:288.986432pt;}
.y30{bottom:290.949421pt;}
.y115{bottom:293.143266pt;}
.y83{bottom:297.679712pt;}
.y169{bottom:298.434413pt;}
.yeb{bottom:302.894788pt;}
.y114{bottom:303.801221pt;}
.y2f{bottom:304.934289pt;}
.y168{bottom:309.092368pt;}
.y82{bottom:311.588068pt;}
.y113{bottom:314.384365pt;}
.yea{bottom:316.879657pt;}
.y2e{bottom:318.842645pt;}
.y167{bottom:319.751172pt;}
.y112{bottom:325.042319pt;}
.y81{bottom:325.572937pt;}
.y166{bottom:330.333466pt;}
.ye9{bottom:330.788013pt;}
.y2d{bottom:332.826451pt;}
.y111{bottom:335.624613pt;}
.y80{bottom:339.481293pt;}
.y165{bottom:340.991420pt;}
.ye8{bottom:344.771819pt;}
.y110{bottom:346.282567pt;}
.y2c{bottom:346.810258pt;}
.y164{bottom:351.574564pt;}
.y7f{bottom:353.465099pt;}
.y10f{bottom:356.941372pt;}
.ye7{bottom:358.680175pt;}
.y2b{bottom:360.719676pt;}
.y163{bottom:362.232519pt;}
.y7e{bottom:367.373455pt;}
.y10e{bottom:367.523665pt;}
.ye6{bottom:372.663981pt;}
.y162{bottom:372.890473pt;}
.y2a{bottom:374.703482pt;}
.y10d{bottom:378.181620pt;}
.y7d{bottom:381.358324pt;}
.y161{bottom:383.472767pt;}
.ye5{bottom:386.573399pt;}
.y29{bottom:388.611838pt;}
.y10c{bottom:388.763914pt;}
.y160{bottom:394.131571pt;}
.y7c{bottom:395.266679pt;}
.y10b{bottom:399.422718pt;}
.ye4{bottom:400.557205pt;}
.y38{bottom:402.595644pt;}
.yc5{bottom:402.827947pt;}
.y15f{bottom:404.713865pt;}
.yd2{bottom:405.322057pt;}
.y7b{bottom:409.250486pt;}
.y10a{bottom:410.080673pt;}
.ye3{bottom:414.465561pt;}
.y15e{bottom:415.371820pt;}
.y28{bottom:416.504000pt;}
.yc4{bottom:416.736303pt;}
.yd1{bottom:419.230413pt;}
.y109{bottom:420.662966pt;}
.y7a{bottom:423.158841pt;}
.y15d{bottom:426.029774pt;}
.ye2{bottom:428.449367pt;}
.yc3{bottom:430.720109pt;}
.y108{bottom:431.321771pt;}
.yd0{bottom:433.214219pt;}
.ya2{bottom:434.949367pt;}
.y15c{bottom:436.612918pt;}
.y79{bottom:437.142647pt;}
.y107{bottom:441.904065pt;}
.ye1{bottom:442.434236pt;}
.yc2{bottom:444.628465pt;}
.ycf{bottom:447.123638pt;}
.y15b{bottom:447.270872pt;}
.ya1{bottom:448.934236pt;}
.y78{bottom:451.052066pt;}
.y106{bottom:452.562019pt;}
.ye0{bottom:456.342592pt;}
.y15a{bottom:457.853166pt;}
.yc1{bottom:458.612271pt;}
.yce{bottom:461.107444pt;}
.ya0{bottom:462.842592pt;}
.y105{bottom:463.144313pt;}
.y77{bottom:465.035872pt;}
.y159{bottom:468.511121pt;}
.y27{bottom:469.418605pt;}
.ydf{bottom:470.326398pt;}
.yc0{bottom:472.521690pt;}
.y104{bottom:473.803118pt;}
.ycd{bottom:475.015800pt;}
.y9f{bottom:476.826398pt;}
.y76{bottom:478.944228pt;}
.y158{bottom:479.094264pt;}
.y26{bottom:482.193240pt;}
.yde{bottom:484.234754pt;}
.y103{bottom:484.461072pt;}
.ybf{bottom:486.505496pt;}
.ycc{bottom:488.999606pt;}
.y157{bottom:489.752219pt;}
.y9e{bottom:490.734754pt;}
.y75{bottom:492.928034pt;}
.y25{bottom:494.892319pt;}
.y102{bottom:495.043366pt;}
.ydd{bottom:498.219623pt;}
.y156{bottom:500.410173pt;}
.ybe{bottom:500.413852pt;}
.ycb{bottom:502.907962pt;}
.y9d{bottom:504.719623pt;}
.y101{bottom:505.701320pt;}
.y74{bottom:506.912903pt;}
.y24{bottom:507.666954pt;}
.y155{bottom:510.993317pt;}
.ydc{bottom:512.127979pt;}
.ybd{bottom:514.397658pt;}
.y100{bottom:516.284464pt;}
.yca{bottom:516.892830pt;}
.y9c{bottom:518.627979pt;}
.y23{bottom:520.441588pt;}
.y73{bottom:520.821259pt;}
.y154{bottom:521.651272pt;}
.ydb{bottom:526.111785pt;}
.yff{bottom:526.942418pt;}
.ybc{bottom:528.307076pt;}
.y62{bottom:530.045621pt;}
.yc9{bottom:530.801186pt;}
.y153{bottom:532.233565pt;}
.y9b{bottom:532.611785pt;}
.y22{bottom:533.140668pt;}
.y72{bottom:534.805065pt;}
.yfe{bottom:537.600373pt;}
.yda{bottom:540.020141pt;}
.ybb{bottom:542.290882pt;}
.y152{bottom:542.891520pt;}
.y61{bottom:543.953977pt;}
.yc8{bottom:544.784992pt;}
.y21{bottom:545.915302pt;}
.y9a{bottom:546.520141pt;}
.yfd{bottom:548.182667pt;}
.y71{bottom:548.713421pt;}
.y151{bottom:553.549474pt;}
.yd9{bottom:554.005009pt;}
.yba{bottom:556.199238pt;}
.y60{bottom:557.937783pt;}
.y20{bottom:558.689937pt;}
.yc7{bottom:558.693348pt;}
.y99{bottom:560.505009pt;}
.y70{bottom:562.698289pt;}
.y150{bottom:564.131768pt;}
.y1a{bottom:566.628267pt;}
.yd8{bottom:567.913365pt;}
.yb9{bottom:570.183044pt;}
.y1f{bottom:571.389016pt;}
.yc6{bottom:572.678217pt;}
.y98{bottom:574.413365pt;}
.y14f{bottom:574.789722pt;}
.y6f{bottom:576.606645pt;}
.y19{bottom:578.041978pt;}
.yd7{bottom:581.897171pt;}
.yb8{bottom:584.092463pt;}
.y1e{bottom:584.163651pt;}
.y14e{bottom:585.372016pt;}
.y5f{bottom:585.831007pt;}
.y5e{bottom:586.586573pt;}
.y97{bottom:588.397171pt;}
.y18{bottom:589.455689pt;}
.y6e{bottom:590.590451pt;}
.yd6{bottom:595.805527pt;}
.y14d{bottom:596.030821pt;}
.y1d{bottom:596.938286pt;}
.yb7{bottom:598.076269pt;}
.y5d{bottom:600.570379pt;}
.y17{bottom:600.945911pt;}
.y96{bottom:602.380977pt;}
.y6d{bottom:604.498807pt;}
.y14c{bottom:606.613115pt;}
.y1c{bottom:609.712921pt;}
.yd5{bottom:609.789333pt;}
.yb6{bottom:611.984625pt;}
.y16{bottom:612.359622pt;}
.y5c{bottom:614.478735pt;}
.y95{bottom:616.289333pt;}
.y14b{bottom:617.271069pt;}
.y6c{bottom:618.483676pt;}
.y1b{bottom:622.412000pt;}
.y15{bottom:623.773333pt;}
.yb5{bottom:625.968431pt;}
.y14a{bottom:627.929023pt;}
.y5b{bottom:628.463604pt;}
.y6b{bottom:632.392032pt;}
.y149{bottom:638.512167pt;}
.yfc{bottom:639.646667pt;}
.yb4{bottom:639.876787pt;}
.y5a{bottom:642.447410pt;}
.ya3{bottom:646.224000pt;}
.y6a{bottom:646.375838pt;}
.y14{bottom:648.490667pt;}
.y148{bottom:649.170122pt;}
.yb3{bottom:653.861656pt;}
.y59{bottom:656.355766pt;}
.y147{bottom:659.752415pt;}
.y69{bottom:660.284194pt;}
.yb2{bottom:667.770011pt;}
.y58{bottom:670.339572pt;}
.y146{bottom:670.411220pt;}
.y68{bottom:674.268000pt;}
.y145{bottom:681.069174pt;}
.yb1{bottom:681.753818pt;}
.y57{bottom:684.248990pt;}
.y144{bottom:691.651468pt;}
.y13{bottom:692.409333pt;}
.yb0{bottom:695.662173pt;}
.y12{bottom:696.189333pt;}
.y56{bottom:698.232796pt;}
.y143{bottom:702.309423pt;}
.y11{bottom:703.824000pt;}
.y94{bottom:704.125333pt;}
.y10{bottom:707.602667pt;}
.yaf{bottom:709.647042pt;}
.y55{bottom:712.141152pt;}
.y142{bottom:712.892567pt;}
.yf{bottom:715.313333pt;}
.ye{bottom:719.093333pt;}
.y141{bottom:723.550521pt;}
.yae{bottom:723.630848pt;}
.y54{bottom:726.124958pt;}
.yd{bottom:726.728000pt;}
.yc{bottom:730.506667pt;}
.y140{bottom:734.132815pt;}
.yad{bottom:737.539204pt;}
.y53{bottom:740.033314pt;}
.y13f{bottom:744.790769pt;}
.yb{bottom:748.649333pt;}
.y9{bottom:748.650835pt;}
.yac{bottom:751.523010pt;}
.y52{bottom:754.018183pt;}
.ya{bottom:754.846667pt;}
.y13e{bottom:755.449574pt;}
.yab{bottom:765.432429pt;}
.y7{bottom:765.884000pt;}
.y13d{bottom:766.031868pt;}
.y51{bottom:767.926539pt;}
.y8{bottom:772.157333pt;}
.y13c{bottom:776.689822pt;}
.yaa{bottom:779.416235pt;}
.y50{bottom:781.910345pt;}
.y13b{bottom:787.272966pt;}
.ya9{bottom:793.324591pt;}
.y4f{bottom:795.818701pt;}
.y13a{bottom:797.930920pt;}
.y6{bottom:799.219748pt;}
.ya8{bottom:807.308397pt;}
.y139{bottom:808.588875pt;}
.y4e{bottom:809.803570pt;}
.y138{bottom:819.171168pt;}
.ya7{bottom:821.217815pt;}
.y5{bottom:822.198667pt;}
.y4d{bottom:823.711925pt;}
.y67{bottom:826.584349pt;}
.y137{bottom:829.829973pt;}
.ya6{bottom:835.201622pt;}
.y4c{bottom:837.695732pt;}
.y136{bottom:840.412267pt;}
.y66{bottom:840.568156pt;}
.y135{bottom:851.070221pt;}
.y4b{bottom:851.604087pt;}
.y134{bottom:861.652515pt;}
.ya5{bottom:863.093784pt;}
.y4a{bottom:865.588956pt;}
.y65{bottom:868.461380pt;}
.y133{bottom:872.311320pt;}
.y18a{bottom:872.316065pt;}
.y49{bottom:879.497312pt;}
.y132{bottom:882.969274pt;}
.y189{bottom:882.974019pt;}
.y3d{bottom:892.194667pt;}
.y48{bottom:893.481118pt;}
.y131{bottom:893.551568pt;}
.y188{bottom:893.556313pt;}
.y130{bottom:904.209522pt;}
.y187{bottom:904.215118pt;}
.y47{bottom:907.389474pt;}
.y12f{bottom:914.792666pt;}
.y186{bottom:914.797411pt;}
.y46{bottom:921.374343pt;}
.y12e{bottom:925.450621pt;}
.y185{bottom:925.455366pt;}
.y3c{bottom:929.310667pt;}
.y45{bottom:935.282699pt;}
.y12d{bottom:936.108575pt;}
.y184{bottom:936.113320pt;}
.y12c{bottom:946.691719pt;}
.y183{bottom:946.696464pt;}
.y44{bottom:949.266505pt;}
.y12b{bottom:957.349673pt;}
.y182{bottom:957.354418pt;}
.y43{bottom:963.174861pt;}
.y3b{bottom:966.500000pt;}
.y12a{bottom:967.931967pt;}
.y181{bottom:967.936712pt;}
.y42{bottom:977.158667pt;}
.y180{bottom:978.444195pt;}
.y129{bottom:978.589921pt;}
.y17f{bottom:978.594667pt;}
.y2{bottom:1002.226667pt;}
.y40{bottom:1003.226667pt;}
.y17e{bottom:1003.232350pt;}
.y18b{bottom:1003.236245pt;}
.y64{bottom:1003.237333pt;}
.h7{height:21.198040pt;}
.h8{height:29.887031pt;}
.h10{height:29.887500pt;}
.ha{height:30.302129pt;}
.hf{height:30.647691pt;}
.h13{height:30.904014pt;}
.h12{height:31.896502pt;}
.h11{height:32.501788pt;}
.h9{height:33.143236pt;}
.h6{height:33.455957pt;}
.h3{height:33.623437pt;}
.hb{height:34.090430pt;}
.hc{height:37.359844pt;}
.hd{height:37.878730pt;}
.h5{height:50.189401pt;}
.h4{height:63.920150pt;}
.he{height:66.286947pt;}
.h1{height:1058.000000pt;}
.h2{height:1058.266667pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:50.023981pt;}
.x24{left:54.651867pt;}
.x12{left:55.785733pt;}
.x17{left:56.844000pt;}
.x15{left:66.065235pt;}
.x20{left:71.962133pt;}
.x25{left:90.556685pt;}
.x1f{left:110.740133pt;}
.xb{left:142.034667pt;}
.x21{left:148.006667pt;}
.x2d{left:153.825222pt;}
.xc{left:156.698667pt;}
.x3{left:161.158667pt;}
.x2b{left:180.433128pt;}
.x4{left:187.690667pt;}
.x1a{left:204.321333pt;}
.x2c{left:217.093703pt;}
.x14{left:269.329333pt;}
.x19{left:270.538667pt;}
.xd{left:271.824000pt;}
.x5{left:275.225333pt;}
.x6{left:280.592000pt;}
.xe{left:286.564000pt;}
.x1{left:290.903981pt;}
.x1e{left:301.681333pt;}
.x18{left:304.554667pt;}
.x23{left:316.649333pt;}
.x22{left:333.882667pt;}
.x1c{left:394.943981pt;}
.xf{left:398.437333pt;}
.x7{left:408.490667pt;}
.x10{left:413.480000pt;}
.x16{left:424.738863pt;}
.x26{left:430.861421pt;}
.x8{left:435.024000pt;}
.x28{left:449.229964pt;}
.x27{left:458.225084pt;}
.x13{left:460.946732pt;}
.x2a{left:479.994957pt;}
.x2e{left:481.809170pt;}
.x29{left:500.630770pt;}
.x11{left:525.732000pt;}
.x9{left:536.541333pt;}
.xa{left:551.206667pt;}
.x1b{left:564.530648pt;}
.x1d{left:729.593063pt;}
}




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