
    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_ecc06abf877ae3b76991667d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_11937e4bb85911cc31250e33.woff')format("woff");}.ff2{font-family:ff2;line-height:0.682617;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_2ca1dffa98b7dfb219d6e993.woff')format("woff");}.ff3{font-family:ff3;line-height:0.968000;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_f5b32bdf77f7b1b05c16ae29.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_b90978608efb2d90a8e898c2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922852;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_d7094360ea7e18d1afc46c32.woff')format("woff");}.ff6{font-family:ff6;line-height:0.899414;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_e9dd44fa20f3b9d87252b46c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.028000;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_6c95fd132d05eb3c05b37f94.woff')format("woff");}.ff8{font-family:ff8;line-height:0.912000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:38.688000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.lse{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.576000px;}
.lsf{letter-spacing:0.648000px;}
.lsa{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.792000px;}
.lsb{letter-spacing:0.864000px;}
.ls7{letter-spacing:0.936000px;}
.ls12{letter-spacing:1.440000px;}
.ls11{letter-spacing:1.584000px;}
.ls13{letter-spacing:4.752000px;}
.ls10{letter-spacing:5.112000px;}
.ls1{letter-spacing:8.460000px;}
.ls0{letter-spacing:10.740000px;}
.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;}
}
.ws7{word-spacing:-49.392000px;}
.ws5{word-spacing:-49.104000px;}
.ws8{word-spacing:-48.888000px;}
.ws2{word-spacing:-48.600000px;}
.ws1{word-spacing:-48.528000px;}
.ws4{word-spacing:-40.440000px;}
.wsf{word-spacing:-32.352000px;}
.wsd{word-spacing:-20.952000px;}
.ws9{word-spacing:-20.232000px;}
.wse{word-spacing:-12.336000px;}
.wsa{word-spacing:-9.480000px;}
.ws6{word-spacing:-8.640000px;}
.ws0{word-spacing:-8.400000px;}
.wsc{word-spacing:-6.768000px;}
.ws3{word-spacing:0.000000px;}
.wsb{word-spacing:34.740000px;}
._2b{margin-left:-15.624000px;}
._7{margin-left:-11.700000px;}
._c{margin-left:-9.432000px;}
._13{margin-left:-8.400000px;}
._8{margin-left:-7.056000px;}
._0{margin-left:-5.940000px;}
._12{margin-left:-4.536000px;}
._6{margin-left:-2.940000px;}
._2{margin-left:-1.260000px;}
._1{width:1.860000px;}
._d{width:2.952000px;}
._3{width:4.200000px;}
._a{width:5.664000px;}
._b{width:7.056000px;}
._5{width:8.520000px;}
._9{width:10.080000px;}
._11{width:11.388000px;}
._e{width:12.480000px;}
._f{width:13.584000px;}
._14{width:15.660000px;}
._24{width:43.932000px;}
._16{width:73.080000px;}
._15{width:77.280000px;}
._1a{width:133.500000px;}
._1e{width:140.040000px;}
._21{width:154.200000px;}
._26{width:162.444000px;}
._20{width:169.260000px;}
._10{width:201.540000px;}
._4{width:203.820000px;}
._2a{width:204.960000px;}
._1b{width:246.120000px;}
._19{width:247.140000px;}
._17{width:253.440000px;}
._22{width:290.160000px;}
._1d{width:293.340000px;}
._18{width:301.800000px;}
._1f{width:309.300000px;}
._1c{width:313.560000px;}
._27{width:346.032000px;}
._23{width:356.256000px;}
._28{width:367.908000px;}
._25{width:370.296000px;}
._29{width:505.152000px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:48.000000px;}
.fs3{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:93.259200px;}
.y1{bottom:93.259350px;}
.yec{bottom:139.178550px;}
.y57{bottom:139.683600px;}
.y82{bottom:139.812900px;}
.y45{bottom:139.944900px;}
.y104{bottom:140.791800px;}
.y21{bottom:141.118350px;}
.y5f{bottom:141.362100px;}
.y91{bottom:141.677400px;}
.yc9{bottom:142.371750px;}
.ya7{bottom:142.932300px;}
.y127{bottom:144.465300px;}
.y14a{bottom:145.873500px;}
.y16b{bottom:147.573750px;}
.yeb{bottom:161.228550px;}
.y56{bottom:161.733600px;}
.y81{bottom:162.618900px;}
.y44{bottom:162.750900px;}
.y20{bottom:163.168350px;}
.y103{bottom:163.597800px;}
.yc8{bottom:163.827750px;}
.y5e{bottom:163.862100px;}
.y90{bottom:164.483400px;}
.ya6{bottom:165.432300px;}
.y126{bottom:166.965300px;}
.y149{bottom:168.517500px;}
.y16a{bottom:170.667750px;}
.yea{bottom:183.278550px;}
.y55{bottom:183.783600px;}
.y80{bottom:185.118900px;}
.y1f{bottom:185.218350px;}
.y43{bottom:185.556900px;}
.y5d{bottom:186.362100px;}
.y102{bottom:186.403800px;}
.y8f{bottom:187.289400px;}
.ya5{bottom:187.626300px;}
.y125{bottom:189.465300px;}
.y148{bottom:191.161500px;}
.y169{bottom:193.761750px;}
.ye9{bottom:205.328550px;}
.y54{bottom:205.833600px;}
.y7f{bottom:207.618900px;}
.y42{bottom:208.362900px;}
.yc7{bottom:208.664850px;}
.y5c{bottom:208.862100px;}
.y101{bottom:209.209800px;}
.ya4{bottom:209.820300px;}
.y8e{bottom:210.095400px;}
.y124{bottom:211.965300px;}
.y147{bottom:213.805500px;}
.y1e{bottom:215.764350px;}
.y168{bottom:216.855750px;}
.y193{bottom:219.089550px;}
.ye8{bottom:227.378550px;}
.y53{bottom:227.883600px;}
.y7e{bottom:230.118900px;}
.y41{bottom:231.168900px;}
.y5b{bottom:231.362100px;}
.ya3{bottom:232.014300px;}
.y100{bottom:232.015800px;}
.y8d{bottom:232.901400px;}
.yc6{bottom:233.894850px;}
.y123{bottom:234.465300px;}
.y146{bottom:236.449500px;}
.y1d{bottom:237.814350px;}
.y192{bottom:237.839550px;}
.y167{bottom:239.955750px;}
.ye7{bottom:249.428550px;}
.y52{bottom:249.933600px;}
.y7d{bottom:252.618900px;}
.y5a{bottom:253.862100px;}
.y40{bottom:253.974900px;}
.ya2{bottom:254.208300px;}
.yff{bottom:254.821800px;}
.y8c{bottom:255.707400px;}
.y191{bottom:256.589550px;}
.y122{bottom:256.965300px;}
.y145{bottom:259.093500px;}
.yc5{bottom:259.124850px;}
.y1c{bottom:259.864350px;}
.ye6{bottom:271.478550px;}
.y51{bottom:271.983600px;}
.y7c{bottom:275.118900px;}
.y190{bottom:275.339550px;}
.ya1{bottom:276.402300px;}
.y3f{bottom:276.780900px;}
.yfe{bottom:277.627800px;}
.y8b{bottom:278.513400px;}
.y121{bottom:279.465300px;}
.y144{bottom:281.737500px;}
.y1b{bottom:281.914350px;}
.yc4{bottom:284.354850px;}
.y50{bottom:294.033600px;}
.y166{bottom:294.691500px;}
.y7b{bottom:297.618900px;}
.y3e{bottom:299.586900px;}
.yfd{bottom:300.433800px;}
.y8a{bottom:301.319400px;}
.y1a{bottom:303.964350px;}
.yc3{bottom:309.584850px;}
.y120{bottom:310.461300px;}
.y18f{bottom:312.839550px;}
.y143{bottom:312.895500px;}
.ye5{bottom:315.578550px;}
.y4f{bottom:316.083600px;}
.y165{bottom:317.641500px;}
.y7a{bottom:320.118900px;}
.ya0{bottom:320.808300px;}
.y3d{bottom:322.392900px;}
.yfc{bottom:323.239800px;}
.y89{bottom:324.125400px;}
.y19{bottom:326.014350px;}
.y11f{bottom:332.961300px;}
.yc2{bottom:334.814850px;}
.y142{bottom:335.539500px;}
.ye4{bottom:337.628550px;}
.y4e{bottom:338.133600px;}
.y164{bottom:340.591500px;}
.y79{bottom:342.618900px;}
.y9f{bottom:343.002300px;}
.y3c{bottom:345.198900px;}
.yfb{bottom:346.045800px;}
.y88{bottom:346.931400px;}
.y18{bottom:348.064350px;}
.y18e{bottom:354.089550px;}
.y11e{bottom:355.461300px;}
.y141{bottom:358.183500px;}
.ye3{bottom:359.678550px;}
.yc1{bottom:360.044850px;}
.y4d{bottom:360.183600px;}
.y163{bottom:363.541500px;}
.y78{bottom:365.118900px;}
.y9e{bottom:365.196300px;}
.y3b{bottom:368.004900px;}
.yfa{bottom:368.851800px;}
.y87{bottom:369.737400px;}
.y18d{bottom:372.839550px;}
.y11d{bottom:377.961300px;}
.y140{bottom:380.827500px;}
.ye2{bottom:381.728550px;}
.y4c{bottom:382.233600px;}
.yc0{bottom:385.274850px;}
.y162{bottom:386.491500px;}
.y9d{bottom:387.390300px;}
.y77{bottom:387.618900px;}
.y3a{bottom:390.810900px;}
.y18c{bottom:391.589550px;}
.y17{bottom:392.164350px;}
.y86{bottom:392.543400px;}
.y13f{bottom:403.471500px;}
.ye1{bottom:403.778550px;}
.y4b{bottom:404.283600px;}
.y11c{bottom:408.957300px;}
.y9c{bottom:409.584300px;}
.y18b{bottom:410.339550px;}
.ybf{bottom:410.504850px;}
.y39{bottom:413.616900px;}
.y16{bottom:414.214350px;}
.y85{bottom:415.349400px;}
.y161{bottom:417.937500px;}
.y76{bottom:418.614900px;}
.ye0{bottom:425.828550px;}
.y13e{bottom:426.115500px;}
.y4a{bottom:426.333600px;}
.y18a{bottom:429.089550px;}
.y11b{bottom:431.457300px;}
.y9b{bottom:431.778300px;}
.ybe{bottom:435.734850px;}
.y15{bottom:436.264350px;}
.y38{bottom:436.422900px;}
.y160{bottom:440.887500px;}
.y75{bottom:441.258900px;}
.y189{bottom:447.839550px;}
.ydf{bottom:447.878550px;}
.y49{bottom:448.383600px;}
.y11a{bottom:453.957300px;}
.y9a{bottom:453.972300px;}
.y13d{bottom:457.273500px;}
.y14{bottom:458.314350px;}
.y37{bottom:459.228900px;}
.ybd{bottom:459.708150px;}
.y15f{bottom:463.837500px;}
.y74{bottom:463.902900px;}
.y188{bottom:466.589550px;}
.yde{bottom:469.928550px;}
.y48{bottom:470.433600px;}
.y99{bottom:476.166300px;}
.y119{bottom:476.457300px;}
.y13c{bottom:479.917500px;}
.y13{bottom:480.364350px;}
.y36{bottom:482.034900px;}
.y187{bottom:485.489550px;}
.y73{bottom:486.546900px;}
.ybc{bottom:490.113150px;}
.ydd{bottom:491.978550px;}
.y47{bottom:492.483600px;}
.y15e{bottom:495.283500px;}
.y98{bottom:498.360300px;}
.y118{bottom:498.957300px;}
.y12{bottom:502.414350px;}
.y13b{bottom:502.561500px;}
.y186{bottom:504.389550px;}
.y35{bottom:504.840900px;}
.y72{bottom:509.190900px;}
.y15d{bottom:518.233500px;}
.y97{bottom:520.554300px;}
.y117{bottom:521.457300px;}
.ydc{bottom:522.532350px;}
.y11{bottom:524.464350px;}
.y13a{bottom:525.205500px;}
.y34{bottom:527.646900px;}
.y185{bottom:529.805400px;}
.y71{bottom:531.834900px;}
.ybb{bottom:533.835150px;}
.y15c{bottom:541.183500px;}
.y96{bottom:542.748300px;}
.y116{bottom:543.957300px;}
.ydb{bottom:544.582350px;}
.y10{bottom:546.514350px;}
.y139{bottom:547.849500px;}
.y184{bottom:547.949400px;}
.y33{bottom:550.452900px;}
.y70{bottom:554.478900px;}
.yba{bottom:555.741150px;}
.y15b{bottom:564.133500px;}
.y95{bottom:564.942300px;}
.y115{bottom:566.457300px;}
.yda{bottom:566.632350px;}
.y59{bottom:567.357900px;}
.yf{bottom:568.564350px;}
.y138{bottom:570.493500px;}
.y32{bottom:573.258900px;}
.y6f{bottom:577.122900px;}
.yb9{bottom:577.647150px;}
.y15a{bottom:587.083500px;}
.y94{bottom:587.136300px;}
.yd9{bottom:588.682350px;}
.ye{bottom:590.614350px;}
.y137{bottom:593.137500px;}
.y183{bottom:593.249400px;}
.y31{bottom:596.064900px;}
.y114{bottom:597.453300px;}
.yb8{bottom:599.553150px;}
.y6e{bottom:599.766900px;}
.y182{bottom:608.393400px;}
.y93{bottom:609.330300px;}
.y159{bottom:610.033500px;}
.yd8{bottom:610.732350px;}
.yd{bottom:612.664350px;}
.y136{bottom:615.781500px;}
.y30{bottom:618.870900px;}
.y113{bottom:619.953300px;}
.yb7{bottom:621.459150px;}
.y6d{bottom:622.410900px;}
.y181{bottom:623.537400px;}
.y92{bottom:631.524300px;}
.yd7{bottom:632.782350px;}
.y158{bottom:632.983500px;}
.yc{bottom:634.714350px;}
.y135{bottom:638.425500px;}
.y180{bottom:638.681400px;}
.y2f{bottom:641.676900px;}
.yf9{bottom:642.451800px;}
.y112{bottom:642.453300px;}
.yb6{bottom:643.365150px;}
.y6c{bottom:645.054900px;}
.y17f{bottom:653.825400px;}
.yb{bottom:656.764350px;}
.y134{bottom:661.069500px;}
.yd6{bottom:663.336300px;}
.y157{bottom:664.429500px;}
.y2e{bottom:664.482900px;}
.y111{bottom:664.953300px;}
.yb5{bottom:665.271150px;}
.y6b{bottom:667.698900px;}
.y17e{bottom:668.969400px;}
.ya{bottom:678.814350px;}
.y17d{bottom:684.113400px;}
.yb4{bottom:687.177150px;}
.y2d{bottom:687.288900px;}
.y156{bottom:687.379500px;}
.y110{bottom:687.453300px;}
.yf8{bottom:687.993750px;}
.y6a{bottom:690.342900px;}
.y133{bottom:692.227500px;}
.y17c{bottom:699.257400px;}
.y9{bottom:700.864350px;}
.yd5{bottom:707.436300px;}
.yb3{bottom:709.083150px;}
.y10f{bottom:709.953300px;}
.y2c{bottom:710.094900px;}
.y155{bottom:710.329500px;}
.yf7{bottom:710.799750px;}
.y69{bottom:712.986900px;}
.y17b{bottom:714.401400px;}
.y132{bottom:714.871500px;}
.y8{bottom:722.914350px;}
.yd4{bottom:729.486300px;}
.y17a{bottom:729.545400px;}
.yb2{bottom:730.989150px;}
.y2b{bottom:732.900900px;}
.y154{bottom:733.279500px;}
.yf6{bottom:733.605750px;}
.y68{bottom:735.630900px;}
.y131{bottom:737.515500px;}
.y10e{bottom:740.949300px;}
.y179{bottom:744.689400px;}
.yd3{bottom:751.536300px;}
.yb1{bottom:752.895150px;}
.y2a{bottom:755.706900px;}
.yf5{bottom:756.411750px;}
.y67{bottom:758.274900px;}
.y178{bottom:759.833400px;}
.y130{bottom:760.159500px;}
.y10d{bottom:764.043300px;}
.y153{bottom:764.725500px;}
.y7{bottom:768.350250px;}
.yd2{bottom:773.586300px;}
.yb0{bottom:774.801150px;}
.y177{bottom:774.977400px;}
.y29{bottom:778.512900px;}
.y12f{bottom:782.803500px;}
.y10c{bottom:787.137300px;}
.y152{bottom:787.675500px;}
.yf4{bottom:787.713750px;}
.y66{bottom:789.432900px;}
.y176{bottom:790.121400px;}
.y6{bottom:790.850250px;}
.yd1{bottom:795.636300px;}
.yaf{bottom:796.707150px;}
.y175{bottom:805.265400px;}
.y12e{bottom:805.447500px;}
.y10b{bottom:810.231300px;}
.yf3{bottom:810.519750px;}
.y151{bottom:810.625500px;}
.y65{bottom:811.932900px;}
.y5{bottom:813.350250px;}
.yd0{bottom:817.686300px;}
.yae{bottom:818.613150px;}
.y174{bottom:820.409400px;}
.y28{bottom:824.106900px;}
.y12d{bottom:828.091500px;}
.y10a{bottom:833.325300px;}
.yf2{bottom:833.325750px;}
.y150{bottom:833.575500px;}
.y64{bottom:834.432900px;}
.y173{bottom:835.553400px;}
.ycf{bottom:839.736300px;}
.yad{bottom:840.513300px;}
.y27{bottom:846.912900px;}
.y172{bottom:850.697400px;}
.y12c{bottom:850.735500px;}
.yf1{bottom:856.131750px;}
.y109{bottom:856.419300px;}
.y14f{bottom:856.525500px;}
.y63{bottom:856.932900px;}
.yce{bottom:861.786300px;}
.y171{bottom:865.841400px;}
.y12b{bottom:873.379500px;}
.y26{bottom:878.214900px;}
.yf0{bottom:878.937750px;}
.y62{bottom:879.432900px;}
.y14e{bottom:879.475500px;}
.y108{bottom:879.531300px;}
.y4{bottom:880.495950px;}
.y170{bottom:880.985400px;}
.ycd{bottom:883.836300px;}
.yac{bottom:884.295300px;}
.y16f{bottom:896.129400px;}
.y25{bottom:901.020900px;}
.yef{bottom:901.743750px;}
.y61{bottom:901.932900px;}
.y14d{bottom:902.425500px;}
.y107{bottom:902.625300px;}
.y12a{bottom:904.537500px;}
.ycc{bottom:905.886300px;}
.yab{bottom:906.201300px;}
.y3{bottom:910.495950px;}
.y16e{bottom:911.273400px;}
.y24{bottom:923.826900px;}
.y60{bottom:924.432900px;}
.yee{bottom:924.549750px;}
.y14c{bottom:925.375500px;}
.y106{bottom:925.719300px;}
.y84{bottom:925.726200px;}
.y16d{bottom:926.417400px;}
.y129{bottom:927.181500px;}
.ycb{bottom:927.936300px;}
.yaa{bottom:928.107300px;}
.y2{bottom:940.495950px;}
.y23{bottom:946.632900px;}
.y58{bottom:946.932900px;}
.yed{bottom:947.355750px;}
.ya8{bottom:947.889600px;}
.y16c{bottom:947.945400px;}
.y83{bottom:948.226200px;}
.y46{bottom:948.314700px;}
.y14b{bottom:948.325500px;}
.y105{bottom:948.813300px;}
.y128{bottom:949.825500px;}
.yca{bottom:949.986300px;}
.ya9{bottom:950.013300px;}
.h9{height:39.072000px;}
.ha{height:40.757812px;}
.h6{height:47.988281px;}
.h7{height:48.840000px;}
.h4{height:50.580000px;}
.h2{height:50.947266px;}
.h5{height:61.136719px;}
.h8{height:81.483703px;}
.h3{height:101.894531px;}
.h0{height:1059.519000px;}
.h1{height:1059.750000px;}
.w1{width:741.000000px;}
.w0{width:741.259500px;}
.x0{left:0.000000px;}
.x5{left:88.759800px;}
.x6{left:103.641750px;}
.x8{left:105.738750px;}
.x2{left:112.500000px;}
.x7{left:118.527750px;}
.x3{left:127.381950px;}
.x4{left:142.267950px;}
.x9{left:157.153950px;}
.xa{left:172.057950px;}
.x1{left:417.403050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.389333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.512000pt;}
.lsf{letter-spacing:0.576000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.704000pt;}
.lsb{letter-spacing:0.768000pt;}
.ls7{letter-spacing:0.832000pt;}
.ls12{letter-spacing:1.280000pt;}
.ls11{letter-spacing:1.408000pt;}
.ls13{letter-spacing:4.224000pt;}
.ls10{letter-spacing:4.544000pt;}
.ls1{letter-spacing:7.520000pt;}
.ls0{letter-spacing:9.546667pt;}
.ws7{word-spacing:-43.904000pt;}
.ws5{word-spacing:-43.648000pt;}
.ws8{word-spacing:-43.456000pt;}
.ws2{word-spacing:-43.200000pt;}
.ws1{word-spacing:-43.136000pt;}
.ws4{word-spacing:-35.946667pt;}
.wsf{word-spacing:-28.757333pt;}
.wsd{word-spacing:-18.624000pt;}
.ws9{word-spacing:-17.984000pt;}
.wse{word-spacing:-10.965333pt;}
.wsa{word-spacing:-8.426667pt;}
.ws6{word-spacing:-7.680000pt;}
.ws0{word-spacing:-7.466667pt;}
.wsc{word-spacing:-6.016000pt;}
.ws3{word-spacing:0.000000pt;}
.wsb{word-spacing:30.880000pt;}
._2b{margin-left:-13.888000pt;}
._7{margin-left:-10.400000pt;}
._c{margin-left:-8.384000pt;}
._13{margin-left:-7.466667pt;}
._8{margin-left:-6.272000pt;}
._0{margin-left:-5.280000pt;}
._12{margin-left:-4.032000pt;}
._6{margin-left:-2.613333pt;}
._2{margin-left:-1.120000pt;}
._1{width:1.653333pt;}
._d{width:2.624000pt;}
._3{width:3.733333pt;}
._a{width:5.034667pt;}
._b{width:6.272000pt;}
._5{width:7.573333pt;}
._9{width:8.960000pt;}
._11{width:10.122667pt;}
._e{width:11.093333pt;}
._f{width:12.074667pt;}
._14{width:13.920000pt;}
._24{width:39.050667pt;}
._16{width:64.960000pt;}
._15{width:68.693333pt;}
._1a{width:118.666667pt;}
._1e{width:124.480000pt;}
._21{width:137.066667pt;}
._26{width:144.394667pt;}
._20{width:150.453333pt;}
._10{width:179.146667pt;}
._4{width:181.173333pt;}
._2a{width:182.186667pt;}
._1b{width:218.773333pt;}
._19{width:219.680000pt;}
._17{width:225.280000pt;}
._22{width:257.920000pt;}
._1d{width:260.746667pt;}
._18{width:268.266667pt;}
._1f{width:274.933333pt;}
._1c{width:278.720000pt;}
._27{width:307.584000pt;}
._23{width:316.672000pt;}
._28{width:327.029333pt;}
._25{width:329.152000pt;}
._29{width:449.024000pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:82.897067pt;}
.y1{bottom:82.897200pt;}
.yec{bottom:123.714267pt;}
.y57{bottom:124.163200pt;}
.y82{bottom:124.278133pt;}
.y45{bottom:124.395467pt;}
.y104{bottom:125.148267pt;}
.y21{bottom:125.438533pt;}
.y5f{bottom:125.655200pt;}
.y91{bottom:125.935467pt;}
.yc9{bottom:126.552667pt;}
.ya7{bottom:127.050933pt;}
.y127{bottom:128.413600pt;}
.y14a{bottom:129.665333pt;}
.y16b{bottom:131.176667pt;}
.yeb{bottom:143.314267pt;}
.y56{bottom:143.763200pt;}
.y81{bottom:144.550133pt;}
.y44{bottom:144.667467pt;}
.y20{bottom:145.038533pt;}
.y103{bottom:145.420267pt;}
.yc8{bottom:145.624667pt;}
.y5e{bottom:145.655200pt;}
.y90{bottom:146.207467pt;}
.ya6{bottom:147.050933pt;}
.y126{bottom:148.413600pt;}
.y149{bottom:149.793333pt;}
.y16a{bottom:151.704667pt;}
.yea{bottom:162.914267pt;}
.y55{bottom:163.363200pt;}
.y80{bottom:164.550133pt;}
.y1f{bottom:164.638533pt;}
.y43{bottom:164.939467pt;}
.y5d{bottom:165.655200pt;}
.y102{bottom:165.692267pt;}
.y8f{bottom:166.479467pt;}
.ya5{bottom:166.778933pt;}
.y125{bottom:168.413600pt;}
.y148{bottom:169.921333pt;}
.y169{bottom:172.232667pt;}
.ye9{bottom:182.514267pt;}
.y54{bottom:182.963200pt;}
.y7f{bottom:184.550133pt;}
.y42{bottom:185.211467pt;}
.yc7{bottom:185.479867pt;}
.y5c{bottom:185.655200pt;}
.y101{bottom:185.964267pt;}
.ya4{bottom:186.506933pt;}
.y8e{bottom:186.751467pt;}
.y124{bottom:188.413600pt;}
.y147{bottom:190.049333pt;}
.y1e{bottom:191.790533pt;}
.y168{bottom:192.760667pt;}
.y193{bottom:194.746267pt;}
.ye8{bottom:202.114267pt;}
.y53{bottom:202.563200pt;}
.y7e{bottom:204.550133pt;}
.y41{bottom:205.483467pt;}
.y5b{bottom:205.655200pt;}
.ya3{bottom:206.234933pt;}
.y100{bottom:206.236267pt;}
.y8d{bottom:207.023467pt;}
.yc6{bottom:207.906533pt;}
.y123{bottom:208.413600pt;}
.y146{bottom:210.177333pt;}
.y1d{bottom:211.390533pt;}
.y192{bottom:211.412933pt;}
.y167{bottom:213.294000pt;}
.ye7{bottom:221.714267pt;}
.y52{bottom:222.163200pt;}
.y7d{bottom:224.550133pt;}
.y5a{bottom:225.655200pt;}
.y40{bottom:225.755467pt;}
.ya2{bottom:225.962933pt;}
.yff{bottom:226.508267pt;}
.y8c{bottom:227.295467pt;}
.y191{bottom:228.079600pt;}
.y122{bottom:228.413600pt;}
.y145{bottom:230.305333pt;}
.yc5{bottom:230.333200pt;}
.y1c{bottom:230.990533pt;}
.ye6{bottom:241.314267pt;}
.y51{bottom:241.763200pt;}
.y7c{bottom:244.550133pt;}
.y190{bottom:244.746267pt;}
.ya1{bottom:245.690933pt;}
.y3f{bottom:246.027467pt;}
.yfe{bottom:246.780267pt;}
.y8b{bottom:247.567467pt;}
.y121{bottom:248.413600pt;}
.y144{bottom:250.433333pt;}
.y1b{bottom:250.590533pt;}
.yc4{bottom:252.759867pt;}
.y50{bottom:261.363200pt;}
.y166{bottom:261.948000pt;}
.y7b{bottom:264.550133pt;}
.y3e{bottom:266.299467pt;}
.yfd{bottom:267.052267pt;}
.y8a{bottom:267.839467pt;}
.y1a{bottom:270.190533pt;}
.yc3{bottom:275.186533pt;}
.y120{bottom:275.965600pt;}
.y18f{bottom:278.079600pt;}
.y143{bottom:278.129333pt;}
.ye5{bottom:280.514267pt;}
.y4f{bottom:280.963200pt;}
.y165{bottom:282.348000pt;}
.y7a{bottom:284.550133pt;}
.ya0{bottom:285.162933pt;}
.y3d{bottom:286.571467pt;}
.yfc{bottom:287.324267pt;}
.y89{bottom:288.111467pt;}
.y19{bottom:289.790533pt;}
.y11f{bottom:295.965600pt;}
.yc2{bottom:297.613200pt;}
.y142{bottom:298.257333pt;}
.ye4{bottom:300.114267pt;}
.y4e{bottom:300.563200pt;}
.y164{bottom:302.748000pt;}
.y79{bottom:304.550133pt;}
.y9f{bottom:304.890933pt;}
.y3c{bottom:306.843467pt;}
.yfb{bottom:307.596267pt;}
.y88{bottom:308.383467pt;}
.y18{bottom:309.390533pt;}
.y18e{bottom:314.746267pt;}
.y11e{bottom:315.965600pt;}
.y141{bottom:318.385333pt;}
.ye3{bottom:319.714267pt;}
.yc1{bottom:320.039867pt;}
.y4d{bottom:320.163200pt;}
.y163{bottom:323.148000pt;}
.y78{bottom:324.550133pt;}
.y9e{bottom:324.618933pt;}
.y3b{bottom:327.115467pt;}
.yfa{bottom:327.868267pt;}
.y87{bottom:328.655467pt;}
.y18d{bottom:331.412933pt;}
.y11d{bottom:335.965600pt;}
.y140{bottom:338.513333pt;}
.ye2{bottom:339.314267pt;}
.y4c{bottom:339.763200pt;}
.yc0{bottom:342.466533pt;}
.y162{bottom:343.548000pt;}
.y9d{bottom:344.346933pt;}
.y77{bottom:344.550133pt;}
.y3a{bottom:347.387467pt;}
.y18c{bottom:348.079600pt;}
.y17{bottom:348.590533pt;}
.y86{bottom:348.927467pt;}
.y13f{bottom:358.641333pt;}
.ye1{bottom:358.914267pt;}
.y4b{bottom:359.363200pt;}
.y11c{bottom:363.517600pt;}
.y9c{bottom:364.074933pt;}
.y18b{bottom:364.746267pt;}
.ybf{bottom:364.893200pt;}
.y39{bottom:367.659467pt;}
.y16{bottom:368.190533pt;}
.y85{bottom:369.199467pt;}
.y161{bottom:371.500000pt;}
.y76{bottom:372.102133pt;}
.ye0{bottom:378.514267pt;}
.y13e{bottom:378.769333pt;}
.y4a{bottom:378.963200pt;}
.y18a{bottom:381.412933pt;}
.y11b{bottom:383.517600pt;}
.y9b{bottom:383.802933pt;}
.ybe{bottom:387.319867pt;}
.y15{bottom:387.790533pt;}
.y38{bottom:387.931467pt;}
.y160{bottom:391.900000pt;}
.y75{bottom:392.230133pt;}
.y189{bottom:398.079600pt;}
.ydf{bottom:398.114267pt;}
.y49{bottom:398.563200pt;}
.y11a{bottom:403.517600pt;}
.y9a{bottom:403.530933pt;}
.y13d{bottom:406.465333pt;}
.y14{bottom:407.390533pt;}
.y37{bottom:408.203467pt;}
.ybd{bottom:408.629467pt;}
.y15f{bottom:412.300000pt;}
.y74{bottom:412.358133pt;}
.y188{bottom:414.746267pt;}
.yde{bottom:417.714267pt;}
.y48{bottom:418.163200pt;}
.y99{bottom:423.258933pt;}
.y119{bottom:423.517600pt;}
.y13c{bottom:426.593333pt;}
.y13{bottom:426.990533pt;}
.y36{bottom:428.475467pt;}
.y187{bottom:431.546267pt;}
.y73{bottom:432.486133pt;}
.ybc{bottom:435.656133pt;}
.ydd{bottom:437.314267pt;}
.y47{bottom:437.763200pt;}
.y15e{bottom:440.252000pt;}
.y98{bottom:442.986933pt;}
.y118{bottom:443.517600pt;}
.y12{bottom:446.590533pt;}
.y13b{bottom:446.721333pt;}
.y186{bottom:448.346267pt;}
.y35{bottom:448.747467pt;}
.y72{bottom:452.614133pt;}
.y15d{bottom:460.652000pt;}
.y97{bottom:462.714933pt;}
.y117{bottom:463.517600pt;}
.ydc{bottom:464.473200pt;}
.y11{bottom:466.190533pt;}
.y13a{bottom:466.849333pt;}
.y34{bottom:469.019467pt;}
.y185{bottom:470.938133pt;}
.y71{bottom:472.742133pt;}
.ybb{bottom:474.520133pt;}
.y15c{bottom:481.052000pt;}
.y96{bottom:482.442933pt;}
.y116{bottom:483.517600pt;}
.ydb{bottom:484.073200pt;}
.y10{bottom:485.790533pt;}
.y139{bottom:486.977333pt;}
.y184{bottom:487.066133pt;}
.y33{bottom:489.291467pt;}
.y70{bottom:492.870133pt;}
.yba{bottom:493.992133pt;}
.y15b{bottom:501.452000pt;}
.y95{bottom:502.170933pt;}
.y115{bottom:503.517600pt;}
.yda{bottom:503.673200pt;}
.y59{bottom:504.318133pt;}
.yf{bottom:505.390533pt;}
.y138{bottom:507.105333pt;}
.y32{bottom:509.563467pt;}
.y6f{bottom:512.998133pt;}
.yb9{bottom:513.464133pt;}
.y15a{bottom:521.852000pt;}
.y94{bottom:521.898933pt;}
.yd9{bottom:523.273200pt;}
.ye{bottom:524.990533pt;}
.y137{bottom:527.233333pt;}
.y183{bottom:527.332800pt;}
.y31{bottom:529.835467pt;}
.y114{bottom:531.069600pt;}
.yb8{bottom:532.936133pt;}
.y6e{bottom:533.126133pt;}
.y182{bottom:540.794133pt;}
.y93{bottom:541.626933pt;}
.y159{bottom:542.252000pt;}
.yd8{bottom:542.873200pt;}
.yd{bottom:544.590533pt;}
.y136{bottom:547.361333pt;}
.y30{bottom:550.107467pt;}
.y113{bottom:551.069600pt;}
.yb7{bottom:552.408133pt;}
.y6d{bottom:553.254133pt;}
.y181{bottom:554.255467pt;}
.y92{bottom:561.354933pt;}
.yd7{bottom:562.473200pt;}
.y158{bottom:562.652000pt;}
.yc{bottom:564.190533pt;}
.y135{bottom:567.489333pt;}
.y180{bottom:567.716800pt;}
.y2f{bottom:570.379467pt;}
.yf9{bottom:571.068267pt;}
.y112{bottom:571.069600pt;}
.yb6{bottom:571.880133pt;}
.y6c{bottom:573.382133pt;}
.y17f{bottom:581.178133pt;}
.yb{bottom:583.790533pt;}
.y134{bottom:587.617333pt;}
.yd6{bottom:589.632267pt;}
.y157{bottom:590.604000pt;}
.y2e{bottom:590.651467pt;}
.y111{bottom:591.069600pt;}
.yb5{bottom:591.352133pt;}
.y6b{bottom:593.510133pt;}
.y17e{bottom:594.639467pt;}
.ya{bottom:603.390533pt;}
.y17d{bottom:608.100800pt;}
.yb4{bottom:610.824133pt;}
.y2d{bottom:610.923467pt;}
.y156{bottom:611.004000pt;}
.y110{bottom:611.069600pt;}
.yf8{bottom:611.550000pt;}
.y6a{bottom:613.638133pt;}
.y133{bottom:615.313333pt;}
.y17c{bottom:621.562133pt;}
.y9{bottom:622.990533pt;}
.yd5{bottom:628.832267pt;}
.yb3{bottom:630.296133pt;}
.y10f{bottom:631.069600pt;}
.y2c{bottom:631.195467pt;}
.y155{bottom:631.404000pt;}
.yf7{bottom:631.822000pt;}
.y69{bottom:633.766133pt;}
.y17b{bottom:635.023467pt;}
.y132{bottom:635.441333pt;}
.y8{bottom:642.590533pt;}
.yd4{bottom:648.432267pt;}
.y17a{bottom:648.484800pt;}
.yb2{bottom:649.768133pt;}
.y2b{bottom:651.467467pt;}
.y154{bottom:651.804000pt;}
.yf6{bottom:652.094000pt;}
.y68{bottom:653.894133pt;}
.y131{bottom:655.569333pt;}
.y10e{bottom:658.621600pt;}
.y179{bottom:661.946133pt;}
.yd3{bottom:668.032267pt;}
.yb1{bottom:669.240133pt;}
.y2a{bottom:671.739467pt;}
.yf5{bottom:672.366000pt;}
.y67{bottom:674.022133pt;}
.y178{bottom:675.407467pt;}
.y130{bottom:675.697333pt;}
.y10d{bottom:679.149600pt;}
.y153{bottom:679.756000pt;}
.y7{bottom:682.978000pt;}
.yd2{bottom:687.632267pt;}
.yb0{bottom:688.712133pt;}
.y177{bottom:688.868800pt;}
.y29{bottom:692.011467pt;}
.y12f{bottom:695.825333pt;}
.y10c{bottom:699.677600pt;}
.y152{bottom:700.156000pt;}
.yf4{bottom:700.190000pt;}
.y66{bottom:701.718133pt;}
.y176{bottom:702.330133pt;}
.y6{bottom:702.978000pt;}
.yd1{bottom:707.232267pt;}
.yaf{bottom:708.184133pt;}
.y175{bottom:715.791467pt;}
.y12e{bottom:715.953333pt;}
.y10b{bottom:720.205600pt;}
.yf3{bottom:720.462000pt;}
.y151{bottom:720.556000pt;}
.y65{bottom:721.718133pt;}
.y5{bottom:722.978000pt;}
.yd0{bottom:726.832267pt;}
.yae{bottom:727.656133pt;}
.y174{bottom:729.252800pt;}
.y28{bottom:732.539467pt;}
.y12d{bottom:736.081333pt;}
.y10a{bottom:740.733600pt;}
.yf2{bottom:740.734000pt;}
.y150{bottom:740.956000pt;}
.y64{bottom:741.718133pt;}
.y173{bottom:742.714133pt;}
.ycf{bottom:746.432267pt;}
.yad{bottom:747.122933pt;}
.y27{bottom:752.811467pt;}
.y172{bottom:756.175467pt;}
.y12c{bottom:756.209333pt;}
.yf1{bottom:761.006000pt;}
.y109{bottom:761.261600pt;}
.y14f{bottom:761.356000pt;}
.y63{bottom:761.718133pt;}
.yce{bottom:766.032267pt;}
.y171{bottom:769.636800pt;}
.y12b{bottom:776.337333pt;}
.y26{bottom:780.635467pt;}
.yf0{bottom:781.278000pt;}
.y62{bottom:781.718133pt;}
.y14e{bottom:781.756000pt;}
.y108{bottom:781.805600pt;}
.y4{bottom:782.663067pt;}
.y170{bottom:783.098133pt;}
.ycd{bottom:785.632267pt;}
.yac{bottom:786.040267pt;}
.y16f{bottom:796.559467pt;}
.y25{bottom:800.907467pt;}
.yef{bottom:801.550000pt;}
.y61{bottom:801.718133pt;}
.y14d{bottom:802.156000pt;}
.y107{bottom:802.333600pt;}
.y12a{bottom:804.033333pt;}
.ycc{bottom:805.232267pt;}
.yab{bottom:805.512267pt;}
.y3{bottom:809.329733pt;}
.y16e{bottom:810.020800pt;}
.y24{bottom:821.179467pt;}
.y60{bottom:821.718133pt;}
.yee{bottom:821.822000pt;}
.y14c{bottom:822.556000pt;}
.y106{bottom:822.861600pt;}
.y84{bottom:822.867733pt;}
.y16d{bottom:823.482133pt;}
.y129{bottom:824.161333pt;}
.ycb{bottom:824.832267pt;}
.yaa{bottom:824.984267pt;}
.y2{bottom:835.996400pt;}
.y23{bottom:841.451467pt;}
.y58{bottom:841.718133pt;}
.yed{bottom:842.094000pt;}
.ya8{bottom:842.568533pt;}
.y16c{bottom:842.618133pt;}
.y83{bottom:842.867733pt;}
.y46{bottom:842.946400pt;}
.y14b{bottom:842.956000pt;}
.y105{bottom:843.389600pt;}
.y128{bottom:844.289333pt;}
.yca{bottom:844.432267pt;}
.ya9{bottom:844.456267pt;}
.h9{height:34.730667pt;}
.ha{height:36.229167pt;}
.h6{height:42.656250pt;}
.h7{height:43.413333pt;}
.h4{height:44.960000pt;}
.h2{height:45.286458pt;}
.h5{height:54.343750pt;}
.h8{height:72.429958pt;}
.h3{height:90.572917pt;}
.h0{height:941.794667pt;}
.h1{height:942.000000pt;}
.w1{width:658.666667pt;}
.w0{width:658.897333pt;}
.x0{left:0.000000pt;}
.x5{left:78.897600pt;}
.x6{left:92.126000pt;}
.x8{left:93.990000pt;}
.x2{left:100.000000pt;}
.x7{left:105.358000pt;}
.x3{left:113.228400pt;}
.x4{left:126.460400pt;}
.x9{left:139.692400pt;}
.xa{left:152.940400pt;}
.x1{left:371.024933pt;}
}




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