
    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_3ed8d9c54823f45ed5558e1c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.951660;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_415231f5ce7639ef7b5ac387.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6a67cb9a1ffa1424b289f90d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.689941;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_4e9fe5c6440b37b13cae1031.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_12849bc08423e9d7b355b624.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_e7367e8f07c0bab6747c7da9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_c38e3d0cfb578786fb25abfb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.078125;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_359d01edf130577d36b3965b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.035156;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_850dc25879cc991d7a56c3cc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.073242;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_e710643f072ad460b8fa96c1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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_49624a08e952b7c24d58a484.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls14{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.262200px;}
.ls12{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.072000px;}
.lsd{letter-spacing:-0.018000px;}
.lsa{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.080640px;}
.lsf{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.149760px;}
.lsb{letter-spacing:0.180000px;}
.lse{letter-spacing:0.198000px;}
.ls13{letter-spacing:0.305400px;}
.ls6{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.864000px;}
.ls9{letter-spacing:0.900000px;}
.ls8{letter-spacing:1.080000px;}
.ls0{letter-spacing:207.900000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(31,56,100),0 0.015em rgb(31,56,100),0.015em 0 rgb(31,56,100),0 -0.015em  rgb(31,56,100);}
.sc1{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(31,56,100);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-18.864000px;}
.wsc{word-spacing:-16.865400px;}
.ws7{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.297800px;}
.ws9{word-spacing:-13.860000px;}
.ws3{word-spacing:-13.505760px;}
.ws5{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.392000px;}
.wsa{word-spacing:-13.140000px;}
.ws2{word-spacing:-12.402000px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.ws6{word-spacing:0.000000px;}
._12{margin-left:-4.347600px;}
._b{margin-left:-3.321840px;}
._6{margin-left:-2.234160px;}
._0{margin-left:-1.179360px;}
._3{width:1.083360px;}
._4{width:2.505120px;}
._5{width:4.374000px;}
._9{width:6.006000px;}
._e{width:7.059120px;}
._8{width:8.640000px;}
._f{width:10.056960px;}
._7{width:11.871360px;}
._d{width:13.579200px;}
._a{width:14.738400px;}
._1a{width:16.682880px;}
._c{width:17.844480px;}
._11{width:18.873600px;}
._10{width:20.468160px;}
._13{width:22.124160px;}
._14{width:23.298480px;}
._17{width:25.189200px;}
._19{width:29.122800px;}
._18{width:30.240000px;}
._1c{width:48.006000px;}
._1b{width:49.032000px;}
._15{width:52.326000px;}
._1d{width:56.592000px;}
._1e{width:73.386000px;}
._16{width:130.572000px;}
._1{width:578.892000px;}
._2{width:1158.540000px;}
.fc5{color:transparent;}
.fc4{color:rgb(31,56,100);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(62,62,62);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,32,96);}
.fs8{font-size:36.000000px;}
.fs7{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs5{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:2.880000px;}
.yb6{bottom:3.060000px;}
.y9e{bottom:3.240000px;}
.y106{bottom:3.270000px;}
.ya1{bottom:3.420000px;}
.yd0{bottom:3.465000px;}
.yb{bottom:8.640000px;}
.y10e{bottom:18.720000px;}
.yaa{bottom:18.900000px;}
.y10d{bottom:34.380000px;}
.ya9{bottom:34.425000px;}
.yec{bottom:35.460000px;}
.y103{bottom:35.490000px;}
.yff{bottom:35.640000px;}
.yb4{bottom:36.540000px;}
.ya8{bottom:49.905000px;}
.ybf{bottom:51.660000px;}
.yba{bottom:51.690000px;}
.yb3{bottom:51.840000px;}
.ycc{bottom:51.885000px;}
.y9{bottom:56.700000px;}
.y40{bottom:71.316000px;}
.y8{bottom:95.256000px;}
.ye2{bottom:100.980000px;}
.y3f{bottom:104.976000px;}
.y7{bottom:111.636000px;}
.yd4{bottom:117.540000px;}
.y3e{bottom:124.236000px;}
.y6{bottom:128.196000px;}
.yd3{bottom:133.020000px;}
.y3d{bottom:140.616000px;}
.y5{bottom:144.576000px;}
.yd2{bottom:154.470000px;}
.y14f{bottom:162.030000px;}
.y11b{bottom:167.610000px;}
.y164{bottom:170.310000px;}
.yd9{bottom:170.670000px;}
.y1aa{bottom:171.210000px;}
.y99{bottom:172.650000px;}
.y94{bottom:179.670000px;}
.y14e{bottom:181.110000px;}
.y6b{bottom:181.650000px;}
.y11a{bottom:186.510000px;}
.y1a9{bottom:186.690000px;}
.ydb{bottom:187.050000px;}
.y3a{bottom:194.790000px;}
.y163{bottom:198.390000px;}
.y93{bottom:198.750000px;}
.y98{bottom:199.650000px;}
.y14d{bottom:200.010000px;}
.y6a{bottom:200.550000px;}
.y18d{bottom:202.350000px;}
.yda{bottom:203.250000px;}
.y119{bottom:205.590000px;}
.y39{bottom:213.690000px;}
.y1a8{bottom:214.230000px;}
.y92{bottom:217.650000px;}
.y69{bottom:219.630000px;}
.y118{bottom:224.490000px;}
.y162{bottom:229.710000px;}
.y14c{bottom:230.970000px;}
.y38{bottom:232.590000px;}
.yd5{bottom:235.830000px;}
.y91{bottom:236.550000px;}
.y68{bottom:238.530000px;}
.y117{bottom:243.390000px;}
.y1a7{bottom:245.190000px;}
.y18c{bottom:245.370000px;}
.y161{bottom:248.610000px;}
.y14b{bottom:250.050000px;}
.y37{bottom:251.670000px;}
.yd8{bottom:252.030000px;}
.y67{bottom:257.610000px;}
.y18b{bottom:260.850000px;}
.y116{bottom:262.470000px;}
.y90{bottom:267.690000px;}
.yd7{bottom:268.410000px;}
.y14a{bottom:268.950000px;}
.y36{bottom:270.570000px;}
.y1a6{bottom:272.910000px;}
.y115{bottom:281.370000px;}
.yd6{bottom:284.610000px;}
.y8f{bottom:286.590000px;}
.y149{bottom:287.850000px;}
.y66{bottom:288.210000px;}
.y18a{bottom:288.390000px;}
.y114{bottom:300.450000px;}
.yd1{bottom:300.990000px;}
.y35{bottom:301.530000px;}
.y1a5{bottom:303.690000px;}
.y189{bottom:303.870000px;}
.y8e{bottom:305.490000px;}
.y148{bottom:306.930000px;}
.ycb{bottom:317.190000px;}
.y113{bottom:319.350000px;}
.y65{bottom:319.530000px;}
.y34{bottom:320.610000px;}
.y8d{bottom:324.570000px;}
.y147{bottom:325.830000px;}
.y1a4{bottom:331.410000px;}
.ycf{bottom:333.390000px;}
.y160{bottom:336.495000px;}
.y64{bottom:338.475000px;}
.y33{bottom:339.555000px;}
.y146{bottom:344.955000px;}
.y1a3{bottom:346.755000px;}
.y188{bottom:347.115000px;}
.yce{bottom:349.815000px;}
.y112{bottom:350.355000px;}
.y8c{bottom:355.575000px;}
.y32{bottom:358.635000px;}
.y187{bottom:362.415000px;}
.y145{bottom:363.855000px;}
.ycd{bottom:366.015000px;}
.y63{bottom:369.435000px;}
.y8b{bottom:374.475000px;}
.y31{bottom:377.535000px;}
.yc7{bottom:382.395000px;}
.y144{bottom:382.755000px;}
.y111{bottom:388.335000px;}
.y62{bottom:388.515000px;}
.y1a2{bottom:389.955000px;}
.y186{bottom:390.135000px;}
.y8a{bottom:393.555000px;}
.y30{bottom:396.435000px;}
.yca{bottom:398.595000px;}
.y143{bottom:401.835000px;}
.y185{bottom:405.435000px;}
.y110{bottom:407.235000px;}
.y61{bottom:407.415000px;}
.y89{bottom:412.455000px;}
.yc9{bottom:414.795000px;}
.y2f{bottom:415.515000px;}
.y184{bottom:420.915000px;}
.y10f{bottom:426.315000px;}
.yc8{bottom:431.175000px;}
.y88{bottom:431.355000px;}
.y142{bottom:432.795000px;}
.y1a1{bottom:433.155000px;}
.y2e{bottom:434.415000px;}
.y60{bottom:438.375000px;}
.y10c{bottom:441.975000px;}
.yc3{bottom:447.375000px;}
.y1a0{bottom:448.455000px;}
.y183{bottom:448.635000px;}
.y87{bottom:450.435000px;}
.y141{bottom:451.695000px;}
.yea{bottom:459.435000px;}
.y15f{bottom:462.135000px;}
.yc6{bottom:463.755000px;}
.y19f{bottom:463.935000px;}
.y182{bottom:464.115000px;}
.y2d{bottom:465.375000px;}
.y5f{bottom:469.335000px;}
.y140{bottom:470.775000px;}
.ye9{bottom:474.915000px;}
.yc5{bottom:479.955000px;}
.y2c{bottom:484.455000px;}
.y5e{bottom:488.415000px;}
.ye8{bottom:489.315000px;}
.y13f{bottom:489.675000px;}
.y19e{bottom:491.655000px;}
.y181{bottom:491.835000px;}
.y15e{bottom:493.455000px;}
.yc4{bottom:496.335000px;}
.y86{bottom:500.295000px;}
.y2b{bottom:503.355000px;}
.y10b{bottom:505.515000px;}
.y19d{bottom:506.955000px;}
.y180{bottom:507.135000px;}
.y13e{bottom:508.755000px;}
.y15d{bottom:512.355000px;}
.ybe{bottom:512.535000px;}
.y5d{bottom:519.375000px;}
.y10a{bottom:521.895000px;}
.y2a{bottom:522.255000px;}
.y19c{bottom:522.615000px;}
.y13d{bottom:527.655000px;}
.yc2{bottom:528.735000px;}
.y15c{bottom:531.255000px;}
.y17f{bottom:534.855000px;}
.y107{bottom:538.095000px;}
.y5c{bottom:538.275000px;}
.y29{bottom:541.335000px;}
.yc1{bottom:545.115000px;}
.y17e{bottom:550.155000px;}
.y15b{bottom:550.335000px;}
.y109{bottom:554.295000px;}
.y85{bottom:557.355000px;}
.y13c{bottom:558.615000px;}
.yc0{bottom:561.315000px;}
.y17d{bottom:565.635000px;}
.y5b{bottom:569.235000px;}
.y108{bottom:570.675000px;}
.y28{bottom:571.935000px;}
.y84{bottom:576.255000px;}
.y13b{bottom:577.515000px;}
.yb9{bottom:577.695000px;}
.y102{bottom:586.875000px;}
.y5a{bottom:588.315000px;}
.y17c{bottom:593.355000px;}
.ybd{bottom:593.895000px;}
.y83{bottom:595.155000px;}
.y13a{bottom:596.595000px;}
.y27{bottom:602.715000px;}
.y105{bottom:603.255000px;}
.y59{bottom:607.245000px;}
.y17b{bottom:608.685000px;}
.ybc{bottom:610.125000px;}
.y139{bottom:615.525000px;}
.y15a{bottom:619.305000px;}
.y104{bottom:619.485000px;}
.y19b{bottom:624.165000px;}
.y17a{bottom:624.345000px;}
.y82{bottom:626.145000px;}
.ybb{bottom:626.505000px;}
.y26{bottom:630.285000px;}
.y138{bottom:634.605000px;}
.yfe{bottom:635.685000px;}
.y58{bottom:637.845000px;}
.y159{bottom:638.205000px;}
.yb2{bottom:642.705000px;}
.y81{bottom:645.225000px;}
.y19a{bottom:651.885000px;}
.y101{bottom:652.065000px;}
.y137{bottom:653.505000px;}
.y158{bottom:657.285000px;}
.y25{bottom:657.825000px;}
.yb8{bottom:659.085000px;}
.y80{bottom:664.125000px;}
.y199{bottom:667.185000px;}
.y179{bottom:667.365000px;}
.y100{bottom:668.265000px;}
.y57{bottom:669.165000px;}
.y136{bottom:672.585000px;}
.y24{bottom:673.125000px;}
.yb7{bottom:675.285000px;}
.y157{bottom:676.185000px;}
.y7f{bottom:683.205000px;}
.yfb{bottom:684.645000px;}
.y56{bottom:688.245000px;}
.y23{bottom:688.605000px;}
.yb5{bottom:691.485000px;}
.y198{bottom:694.905000px;}
.y156{bottom:695.085000px;}
.yfd{bottom:700.845000px;}
.y135{bottom:703.185000px;}
.y22{bottom:704.085000px;}
.y55{bottom:707.145000px;}
.yb1{bottom:707.865000px;}
.y197{bottom:710.205000px;}
.y178{bottom:710.385000px;}
.y7e{bottom:714.165000px;}
.yfc{bottom:717.225000px;}
.y21{bottom:719.745000px;}
.y177{bottom:725.865000px;}
.y54{bottom:726.045000px;}
.yb0{bottom:727.485000px;}
.y7d{bottom:733.065000px;}
.yf8{bottom:733.425000px;}
.y20{bottom:735.225000px;}
.y134{bottom:739.725000px;}
.y53{bottom:745.125000px;}
.yfa{bottom:749.625000px;}
.y1f{bottom:750.705000px;}
.y7c{bottom:752.145000px;}
.y176{bottom:753.585000px;}
.y133{bottom:755.205000px;}
.yaf{bottom:755.745000px;}
.y52{bottom:764.025000px;}
.yf9{bottom:766.005000px;}
.y1e{bottom:766.185000px;}
.y175{bottom:768.885000px;}
.y132{bottom:770.685000px;}
.y7b{bottom:771.045000px;}
.yae{bottom:774.645000px;}
.y1d{bottom:781.845000px;}
.yf5{bottom:782.205000px;}
.y51{bottom:783.105000px;}
.y131{bottom:783.825000px;}
.y7a{bottom:789.945000px;}
.yad{bottom:793.545000px;}
.y174{bottom:796.605000px;}
.y1c{bottom:797.325000px;}
.yf7{bottom:798.585000px;}
.y130{bottom:800.025000px;}
.y50{bottom:802.005000px;}
.y79{bottom:809.025000px;}
.y173{bottom:811.905000px;}
.yac{bottom:812.625000px;}
.y1b{bottom:812.805000px;}
.yf6{bottom:814.785000px;}
.y12f{bottom:816.225000px;}
.y4f{bottom:820.905000px;}
.y196{bottom:827.385000px;}
.y78{bottom:827.925000px;}
.y1a{bottom:828.285000px;}
.yab{bottom:830.805000px;}
.yf2{bottom:830.985000px;}
.y12e{bottom:832.605000px;}
.y172{bottom:839.625000px;}
.y97{bottom:839.985000px;}
.ya7{bottom:843.765000px;}
.y19{bottom:843.945000px;}
.y77{bottom:847.005000px;}
.yf4{bottom:847.365000px;}
.y12d{bottom:848.805000px;}
.y4e{bottom:851.685000px;}
.y171{bottom:855.105000px;}
.y96{bottom:858.885000px;}
.y18{bottom:859.425000px;}
.yf3{bottom:863.565000px;}
.y12c{bottom:865.185000px;}
.y76{bottom:865.905000px;}
.y195{bottom:870.405000px;}
.y155{bottom:870.990000px;}
.y17{bottom:874.950000px;}
.yef{bottom:879.990000px;}
.y12b{bottom:881.430000px;}
.y170{bottom:882.870000px;}
.y4d{bottom:883.050000px;}
.y75{bottom:884.850000px;}
.y95{bottom:889.530000px;}
.y154{bottom:889.890000px;}
.y16{bottom:890.430000px;}
.yf1{bottom:896.190000px;}
.y12a{bottom:897.630000px;}
.y16f{bottom:898.170000px;}
.y4c{bottom:901.950000px;}
.y15{bottom:906.090000px;}
.ya6{bottom:906.630000px;}
.y153{bottom:908.970000px;}
.yf0{bottom:912.390000px;}
.y16e{bottom:913.650000px;}
.y129{bottom:914.010000px;}
.y74{bottom:915.990000px;}
.y4b{bottom:920.850000px;}
.y14{bottom:921.570000px;}
.ya5{bottom:923.010000px;}
.y152{bottom:927.870000px;}
.yeb{bottom:928.770000px;}
.y128{bottom:930.210000px;}
.y73{bottom:934.890000px;}
.ya4{bottom:939.210000px;}
.y4a{bottom:939.930000px;}
.y194{bottom:941.190000px;}
.y16d{bottom:941.370000px;}
.yee{bottom:944.970000px;}
.y127{bottom:946.590000px;}
.y151{bottom:946.950000px;}
.y13{bottom:948.930000px;}
.y72{bottom:953.790000px;}
.ya3{bottom:955.590000px;}
.y16c{bottom:956.670000px;}
.y49{bottom:958.830000px;}
.yed{bottom:961.350000px;}
.y126{bottom:962.790000px;}
.y12{bottom:964.590000px;}
.y150{bottom:965.850000px;}
.ya2{bottom:971.790000px;}
.ye1{bottom:977.550000px;}
.y48{bottom:977.910000px;}
.y125{bottom:978.990000px;}
.y16b{bottom:984.390000px;}
.y11{bottom:984.570000px;}
.y71{bottom:984.750000px;}
.ya0{bottom:987.990000px;}
.ye7{bottom:993.750000px;}
.y124{bottom:995.370000px;}
.y47{bottom:996.810000px;}
.y16a{bottom:999.690000px;}
.y10{bottom:1000.050000px;}
.y70{bottom:1003.830000px;}
.y9f{bottom:1004.370000px;}
.ye6{bottom:1010.130000px;}
.y123{bottom:1011.570000px;}
.y193{bottom:1015.170000px;}
.yf{bottom:1015.710000px;}
.y9d{bottom:1020.570000px;}
.ye5{bottom:1026.330000px;}
.y169{bottom:1027.410000px;}
.y122{bottom:1027.950000px;}
.y6f{bottom:1034.430000px;}
.y46{bottom:1034.790000px;}
.y9b{bottom:1036.950000px;}
.ye{bottom:1039.470000px;}
.ye0{bottom:1042.710000px;}
.y192{bottom:1042.890000px;}
.y121{bottom:1044.150000px;}
.y45{bottom:1053.690000px;}
.y9a{bottom:1056.390000px;}
.y191{bottom:1058.190000px;}
.y168{bottom:1058.370000px;}
.ye4{bottom:1058.910000px;}
.y120{bottom:1060.350000px;}
.y6e{bottom:1065.750000px;}
.y44{bottom:1072.770000px;}
.yd{bottom:1072.950000px;}
.ye3{bottom:1075.290000px;}
.y11f{bottom:1076.730000px;}
.y6d{bottom:1084.650000px;}
.y190{bottom:1085.910000px;}
.y167{bottom:1086.270000px;}
.ydf{bottom:1091.490000px;}
.y43{bottom:1091.670000px;}
.y11e{bottom:1092.930000px;}
.yc{bottom:1096.890000px;}
.y6c{bottom:1103.730000px;}
.yde{bottom:1107.690000px;}
.y18f{bottom:1113.450000px;}
.y166{bottom:1116.690000px;}
.y4{bottom:1119.750000px;}
.y42{bottom:1122.630000px;}
.ydd{bottom:1124.070000px;}
.y11d{bottom:1124.790000px;}
.y18e{bottom:1128.750000px;}
.y3{bottom:1135.230000px;}
.ydc{bottom:1140.300000px;}
.y41{bottom:1141.740000px;}
.y165{bottom:1144.260000px;}
.y11c{bottom:1144.440000px;}
.y2{bottom:1151.640000px;}
.ya{bottom:1174.860000px;}
.y3c{bottom:1182.060000px;}
.y1{bottom:1186.740000px;}
.y3b{bottom:1197.540000px;}
.h11{height:15.480000px;}
.h16{height:15.516000px;}
.h12{height:15.660000px;}
.h19{height:15.696000px;}
.h9{height:22.860000px;}
.h21{height:31.140000px;}
.hc{height:35.332031px;}
.h20{height:46.620000px;}
.h1d{height:48.060000px;}
.h1e{height:48.096000px;}
.h1f{height:48.240000px;}
.h22{height:48.410156px;}
.h5{height:52.998047px;}
.h6{height:53.709961px;}
.hd{height:54.421875px;}
.h4{height:58.651172px;}
.h10{height:59.383125px;}
.ha{height:61.189805px;}
.h13{height:62.136000px;}
.h8{height:63.019687px;}
.h17{height:64.260000px;}
.h15{height:64.296000px;}
.h14{height:64.440000px;}
.h18{height:64.476000px;}
.hf{height:65.010937px;}
.h7{height:65.884219px;}
.he{height:66.757500px;}
.h3{height:72.562500px;}
.hb{height:84.898125px;}
.h2{height:85.271484px;}
.h1b{height:113.220000px;}
.h1a{height:145.620000px;}
.h1c{height:487.515000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:82.980000px;}
.w11{width:83.016000px;}
.w14{width:93.600000px;}
.w15{width:101.160000px;}
.wd{width:103.140000px;}
.w13{width:104.076000px;}
.w9{width:105.660000px;}
.w7{width:120.276000px;}
.w8{width:131.436000px;}
.wa{width:152.640000px;}
.wb{width:164.370000px;}
.we{width:166.710000px;}
.w3{width:176.250000px;}
.wf{width:198.390000px;}
.w10{width:205.950000px;}
.w5{width:242.490000px;}
.w6{width:317.730000px;}
.w4{width:436.575000px;}
.wc{width:677.625000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x31{left:10.260000px;}
.x2f{left:11.880000px;}
.x2c{left:13.500000px;}
.x2d{left:15.840000px;}
.x25{left:19.620000px;}
.x2e{left:21.240000px;}
.x30{left:22.680000px;}
.x16{left:24.300000px;}
.x20{left:25.740000px;}
.x17{left:28.080000px;}
.x18{left:29.160000px;}
.x27{left:30.420000px;}
.x13{left:31.500000px;}
.x4{left:33.345000px;}
.x19{left:34.740000px;}
.x1f{left:35.820000px;}
.x2a{left:37.080000px;}
.x2b{left:38.160000px;}
.x1a{left:39.240000px;}
.x1b{left:42.660000px;}
.x23{left:48.600000px;}
.x1e{left:52.740000px;}
.xf{left:55.260000px;}
.x10{left:56.880000px;}
.x1d{left:65.520000px;}
.xa{left:88.920000px;}
.xc{left:90.540000px;}
.xb{left:93.780000px;}
.xd{left:97.200000px;}
.xe{left:104.580000px;}
.x1{left:106.235987px;}
.x11{left:121.185000px;}
.x2{left:207.389987px;}
.x21{left:211.170000px;}
.x1c{left:260.490000px;}
.x26{left:294.915000px;}
.x6{left:337.934987px;}
.x22{left:378.615000px;}
.x12{left:425.775000px;}
.x32{left:436.214987px;}
.x5{left:439.634987px;}
.x28{left:483.405000px;}
.x9{left:544.425000px;}
.x14{left:546.945000px;}
.x24{left:577.725000px;}
.x3{left:642.345000px;}
.x7{left:671.549987px;}
.x15{left:679.110000px;}
.x29{left:682.530000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.233067pt;}
.ls12{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.071680pt;}
.lsf{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.133120pt;}
.lsb{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.176000pt;}
.ls13{letter-spacing:0.271467pt;}
.ls6{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.768000pt;}
.ls9{letter-spacing:0.800000pt;}
.ls8{letter-spacing:0.960000pt;}
.ls0{letter-spacing:184.800000pt;}
.ws4{word-spacing:-16.768000pt;}
.wsc{word-spacing:-14.991467pt;}
.ws7{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.486933pt;}
.ws9{word-spacing:-12.320000pt;}
.ws3{word-spacing:-12.005120pt;}
.ws5{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.904000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws2{word-spacing:-11.024000pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.ws6{word-spacing:0.000000pt;}
._12{margin-left:-3.864533pt;}
._b{margin-left:-2.952747pt;}
._6{margin-left:-1.985920pt;}
._0{margin-left:-1.048320pt;}
._3{width:0.962987pt;}
._4{width:2.226773pt;}
._5{width:3.888000pt;}
._9{width:5.338667pt;}
._e{width:6.274773pt;}
._8{width:7.680000pt;}
._f{width:8.939520pt;}
._7{width:10.552320pt;}
._d{width:12.070400pt;}
._a{width:13.100800pt;}
._1a{width:14.829227pt;}
._c{width:15.861760pt;}
._11{width:16.776533pt;}
._10{width:18.193920pt;}
._13{width:19.665920pt;}
._14{width:20.709760pt;}
._17{width:22.390400pt;}
._19{width:25.886933pt;}
._18{width:26.880000pt;}
._1c{width:42.672000pt;}
._1b{width:43.584000pt;}
._15{width:46.512000pt;}
._1d{width:50.304000pt;}
._1e{width:65.232000pt;}
._16{width:116.064000pt;}
._1{width:514.570667pt;}
._2{width:1029.813333pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs5{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:2.560000pt;}
.yb6{bottom:2.720000pt;}
.y9e{bottom:2.880000pt;}
.y106{bottom:2.906667pt;}
.ya1{bottom:3.040000pt;}
.yd0{bottom:3.080000pt;}
.yb{bottom:7.680000pt;}
.y10e{bottom:16.640000pt;}
.yaa{bottom:16.800000pt;}
.y10d{bottom:30.560000pt;}
.ya9{bottom:30.600000pt;}
.yec{bottom:31.520000pt;}
.y103{bottom:31.546667pt;}
.yff{bottom:31.680000pt;}
.yb4{bottom:32.480000pt;}
.ya8{bottom:44.360000pt;}
.ybf{bottom:45.920000pt;}
.yba{bottom:45.946667pt;}
.yb3{bottom:46.080000pt;}
.ycc{bottom:46.120000pt;}
.y9{bottom:50.400000pt;}
.y40{bottom:63.392000pt;}
.y8{bottom:84.672000pt;}
.ye2{bottom:89.760000pt;}
.y3f{bottom:93.312000pt;}
.y7{bottom:99.232000pt;}
.yd4{bottom:104.480000pt;}
.y3e{bottom:110.432000pt;}
.y6{bottom:113.952000pt;}
.yd3{bottom:118.240000pt;}
.y3d{bottom:124.992000pt;}
.y5{bottom:128.512000pt;}
.yd2{bottom:137.306667pt;}
.y14f{bottom:144.026667pt;}
.y11b{bottom:148.986667pt;}
.y164{bottom:151.386667pt;}
.yd9{bottom:151.706667pt;}
.y1aa{bottom:152.186667pt;}
.y99{bottom:153.466667pt;}
.y94{bottom:159.706667pt;}
.y14e{bottom:160.986667pt;}
.y6b{bottom:161.466667pt;}
.y11a{bottom:165.786667pt;}
.y1a9{bottom:165.946667pt;}
.ydb{bottom:166.266667pt;}
.y3a{bottom:173.146667pt;}
.y163{bottom:176.346667pt;}
.y93{bottom:176.666667pt;}
.y98{bottom:177.466667pt;}
.y14d{bottom:177.786667pt;}
.y6a{bottom:178.266667pt;}
.y18d{bottom:179.866667pt;}
.yda{bottom:180.666667pt;}
.y119{bottom:182.746667pt;}
.y39{bottom:189.946667pt;}
.y1a8{bottom:190.426667pt;}
.y92{bottom:193.466667pt;}
.y69{bottom:195.226667pt;}
.y118{bottom:199.546667pt;}
.y162{bottom:204.186667pt;}
.y14c{bottom:205.306667pt;}
.y38{bottom:206.746667pt;}
.yd5{bottom:209.626667pt;}
.y91{bottom:210.266667pt;}
.y68{bottom:212.026667pt;}
.y117{bottom:216.346667pt;}
.y1a7{bottom:217.946667pt;}
.y18c{bottom:218.106667pt;}
.y161{bottom:220.986667pt;}
.y14b{bottom:222.266667pt;}
.y37{bottom:223.706667pt;}
.yd8{bottom:224.026667pt;}
.y67{bottom:228.986667pt;}
.y18b{bottom:231.866667pt;}
.y116{bottom:233.306667pt;}
.y90{bottom:237.946667pt;}
.yd7{bottom:238.586667pt;}
.y14a{bottom:239.066667pt;}
.y36{bottom:240.506667pt;}
.y1a6{bottom:242.586667pt;}
.y115{bottom:250.106667pt;}
.yd6{bottom:252.986667pt;}
.y8f{bottom:254.746667pt;}
.y149{bottom:255.866667pt;}
.y66{bottom:256.186667pt;}
.y18a{bottom:256.346667pt;}
.y114{bottom:267.066667pt;}
.yd1{bottom:267.546667pt;}
.y35{bottom:268.026667pt;}
.y1a5{bottom:269.946667pt;}
.y189{bottom:270.106667pt;}
.y8e{bottom:271.546667pt;}
.y148{bottom:272.826667pt;}
.ycb{bottom:281.946667pt;}
.y113{bottom:283.866667pt;}
.y65{bottom:284.026667pt;}
.y34{bottom:284.986667pt;}
.y8d{bottom:288.506667pt;}
.y147{bottom:289.626667pt;}
.y1a4{bottom:294.586667pt;}
.ycf{bottom:296.346667pt;}
.y160{bottom:299.106667pt;}
.y64{bottom:300.866667pt;}
.y33{bottom:301.826667pt;}
.y146{bottom:306.626667pt;}
.y1a3{bottom:308.226667pt;}
.y188{bottom:308.546667pt;}
.yce{bottom:310.946667pt;}
.y112{bottom:311.426667pt;}
.y8c{bottom:316.066667pt;}
.y32{bottom:318.786667pt;}
.y187{bottom:322.146667pt;}
.y145{bottom:323.426667pt;}
.ycd{bottom:325.346667pt;}
.y63{bottom:328.386667pt;}
.y8b{bottom:332.866667pt;}
.y31{bottom:335.586667pt;}
.yc7{bottom:339.906667pt;}
.y144{bottom:340.226667pt;}
.y111{bottom:345.186667pt;}
.y62{bottom:345.346667pt;}
.y1a2{bottom:346.626667pt;}
.y186{bottom:346.786667pt;}
.y8a{bottom:349.826667pt;}
.y30{bottom:352.386667pt;}
.yca{bottom:354.306667pt;}
.y143{bottom:357.186667pt;}
.y185{bottom:360.386667pt;}
.y110{bottom:361.986667pt;}
.y61{bottom:362.146667pt;}
.y89{bottom:366.626667pt;}
.yc9{bottom:368.706667pt;}
.y2f{bottom:369.346667pt;}
.y184{bottom:374.146667pt;}
.y10f{bottom:378.946667pt;}
.yc8{bottom:383.266667pt;}
.y88{bottom:383.426667pt;}
.y142{bottom:384.706667pt;}
.y1a1{bottom:385.026667pt;}
.y2e{bottom:386.146667pt;}
.y60{bottom:389.666667pt;}
.y10c{bottom:392.866667pt;}
.yc3{bottom:397.666667pt;}
.y1a0{bottom:398.626667pt;}
.y183{bottom:398.786667pt;}
.y87{bottom:400.386667pt;}
.y141{bottom:401.506667pt;}
.yea{bottom:408.386667pt;}
.y15f{bottom:410.786667pt;}
.yc6{bottom:412.226667pt;}
.y19f{bottom:412.386667pt;}
.y182{bottom:412.546667pt;}
.y2d{bottom:413.666667pt;}
.y5f{bottom:417.186667pt;}
.y140{bottom:418.466667pt;}
.ye9{bottom:422.146667pt;}
.yc5{bottom:426.626667pt;}
.y2c{bottom:430.626667pt;}
.y5e{bottom:434.146667pt;}
.ye8{bottom:434.946667pt;}
.y13f{bottom:435.266667pt;}
.y19e{bottom:437.026667pt;}
.y181{bottom:437.186667pt;}
.y15e{bottom:438.626667pt;}
.yc4{bottom:441.186667pt;}
.y86{bottom:444.706667pt;}
.y2b{bottom:447.426667pt;}
.y10b{bottom:449.346667pt;}
.y19d{bottom:450.626667pt;}
.y180{bottom:450.786667pt;}
.y13e{bottom:452.226667pt;}
.y15d{bottom:455.426667pt;}
.ybe{bottom:455.586667pt;}
.y5d{bottom:461.666667pt;}
.y10a{bottom:463.906667pt;}
.y2a{bottom:464.226667pt;}
.y19c{bottom:464.546667pt;}
.y13d{bottom:469.026667pt;}
.yc2{bottom:469.986667pt;}
.y15c{bottom:472.226667pt;}
.y17f{bottom:475.426667pt;}
.y107{bottom:478.306667pt;}
.y5c{bottom:478.466667pt;}
.y29{bottom:481.186667pt;}
.yc1{bottom:484.546667pt;}
.y17e{bottom:489.026667pt;}
.y15b{bottom:489.186667pt;}
.y109{bottom:492.706667pt;}
.y85{bottom:495.426667pt;}
.y13c{bottom:496.546667pt;}
.yc0{bottom:498.946667pt;}
.y17d{bottom:502.786667pt;}
.y5b{bottom:505.986667pt;}
.y108{bottom:507.266667pt;}
.y28{bottom:508.386667pt;}
.y84{bottom:512.226667pt;}
.y13b{bottom:513.346667pt;}
.yb9{bottom:513.506667pt;}
.y102{bottom:521.666667pt;}
.y5a{bottom:522.946667pt;}
.y17c{bottom:527.426667pt;}
.ybd{bottom:527.906667pt;}
.y83{bottom:529.026667pt;}
.y13a{bottom:530.306667pt;}
.y27{bottom:535.746667pt;}
.y105{bottom:536.226667pt;}
.y59{bottom:539.773333pt;}
.y17b{bottom:541.053333pt;}
.ybc{bottom:542.333333pt;}
.y139{bottom:547.133333pt;}
.y15a{bottom:550.493333pt;}
.y104{bottom:550.653333pt;}
.y19b{bottom:554.813333pt;}
.y17a{bottom:554.973333pt;}
.y82{bottom:556.573333pt;}
.ybb{bottom:556.893333pt;}
.y26{bottom:560.253333pt;}
.y138{bottom:564.093333pt;}
.yfe{bottom:565.053333pt;}
.y58{bottom:566.973333pt;}
.y159{bottom:567.293333pt;}
.yb2{bottom:571.293333pt;}
.y81{bottom:573.533333pt;}
.y19a{bottom:579.453333pt;}
.y101{bottom:579.613333pt;}
.y137{bottom:580.893333pt;}
.y158{bottom:584.253333pt;}
.y25{bottom:584.733333pt;}
.yb8{bottom:585.853333pt;}
.y80{bottom:590.333333pt;}
.y199{bottom:593.053333pt;}
.y179{bottom:593.213333pt;}
.y100{bottom:594.013333pt;}
.y57{bottom:594.813333pt;}
.y136{bottom:597.853333pt;}
.y24{bottom:598.333333pt;}
.yb7{bottom:600.253333pt;}
.y157{bottom:601.053333pt;}
.y7f{bottom:607.293333pt;}
.yfb{bottom:608.573333pt;}
.y56{bottom:611.773333pt;}
.y23{bottom:612.093333pt;}
.yb5{bottom:614.653333pt;}
.y198{bottom:617.693333pt;}
.y156{bottom:617.853333pt;}
.yfd{bottom:622.973333pt;}
.y135{bottom:625.053333pt;}
.y22{bottom:625.853333pt;}
.y55{bottom:628.573333pt;}
.yb1{bottom:629.213333pt;}
.y197{bottom:631.293333pt;}
.y178{bottom:631.453333pt;}
.y7e{bottom:634.813333pt;}
.yfc{bottom:637.533333pt;}
.y21{bottom:639.773333pt;}
.y177{bottom:645.213333pt;}
.y54{bottom:645.373333pt;}
.yb0{bottom:646.653333pt;}
.y7d{bottom:651.613333pt;}
.yf8{bottom:651.933333pt;}
.y20{bottom:653.533333pt;}
.y134{bottom:657.533333pt;}
.y53{bottom:662.333333pt;}
.yfa{bottom:666.333333pt;}
.y1f{bottom:667.293333pt;}
.y7c{bottom:668.573333pt;}
.y176{bottom:669.853333pt;}
.y133{bottom:671.293333pt;}
.yaf{bottom:671.773333pt;}
.y52{bottom:679.133333pt;}
.yf9{bottom:680.893333pt;}
.y1e{bottom:681.053333pt;}
.y175{bottom:683.453333pt;}
.y132{bottom:685.053333pt;}
.y7b{bottom:685.373333pt;}
.yae{bottom:688.573333pt;}
.y1d{bottom:694.973333pt;}
.yf5{bottom:695.293333pt;}
.y51{bottom:696.093333pt;}
.y131{bottom:696.733333pt;}
.y7a{bottom:702.173333pt;}
.yad{bottom:705.373333pt;}
.y174{bottom:708.093333pt;}
.y1c{bottom:708.733333pt;}
.yf7{bottom:709.853333pt;}
.y130{bottom:711.133333pt;}
.y50{bottom:712.893333pt;}
.y79{bottom:719.133333pt;}
.y173{bottom:721.693333pt;}
.yac{bottom:722.333333pt;}
.y1b{bottom:722.493333pt;}
.yf6{bottom:724.253333pt;}
.y12f{bottom:725.533333pt;}
.y4f{bottom:729.693333pt;}
.y196{bottom:735.453333pt;}
.y78{bottom:735.933333pt;}
.y1a{bottom:736.253333pt;}
.yab{bottom:738.493333pt;}
.yf2{bottom:738.653333pt;}
.y12e{bottom:740.093333pt;}
.y172{bottom:746.333333pt;}
.y97{bottom:746.653333pt;}
.ya7{bottom:750.013333pt;}
.y19{bottom:750.173333pt;}
.y77{bottom:752.893333pt;}
.yf4{bottom:753.213333pt;}
.y12d{bottom:754.493333pt;}
.y4e{bottom:757.053333pt;}
.y171{bottom:760.093333pt;}
.y96{bottom:763.453333pt;}
.y18{bottom:763.933333pt;}
.yf3{bottom:767.613333pt;}
.y12c{bottom:769.053333pt;}
.y76{bottom:769.693333pt;}
.y195{bottom:773.693333pt;}
.y155{bottom:774.213333pt;}
.y17{bottom:777.733333pt;}
.yef{bottom:782.213333pt;}
.y12b{bottom:783.493333pt;}
.y170{bottom:784.773333pt;}
.y4d{bottom:784.933333pt;}
.y75{bottom:786.533333pt;}
.y95{bottom:790.693333pt;}
.y154{bottom:791.013333pt;}
.y16{bottom:791.493333pt;}
.yf1{bottom:796.613333pt;}
.y12a{bottom:797.893333pt;}
.y16f{bottom:798.373333pt;}
.y4c{bottom:801.733333pt;}
.y15{bottom:805.413333pt;}
.ya6{bottom:805.893333pt;}
.y153{bottom:807.973333pt;}
.yf0{bottom:811.013333pt;}
.y16e{bottom:812.133333pt;}
.y129{bottom:812.453333pt;}
.y74{bottom:814.213333pt;}
.y4b{bottom:818.533333pt;}
.y14{bottom:819.173333pt;}
.ya5{bottom:820.453333pt;}
.y152{bottom:824.773333pt;}
.yeb{bottom:825.573333pt;}
.y128{bottom:826.853333pt;}
.y73{bottom:831.013333pt;}
.ya4{bottom:834.853333pt;}
.y4a{bottom:835.493333pt;}
.y194{bottom:836.613333pt;}
.y16d{bottom:836.773333pt;}
.yee{bottom:839.973333pt;}
.y127{bottom:841.413333pt;}
.y151{bottom:841.733333pt;}
.y13{bottom:843.493333pt;}
.y72{bottom:847.813333pt;}
.ya3{bottom:849.413333pt;}
.y16c{bottom:850.373333pt;}
.y49{bottom:852.293333pt;}
.yed{bottom:854.533333pt;}
.y126{bottom:855.813333pt;}
.y12{bottom:857.413333pt;}
.y150{bottom:858.533333pt;}
.ya2{bottom:863.813333pt;}
.ye1{bottom:868.933333pt;}
.y48{bottom:869.253333pt;}
.y125{bottom:870.213333pt;}
.y16b{bottom:875.013333pt;}
.y11{bottom:875.173333pt;}
.y71{bottom:875.333333pt;}
.ya0{bottom:878.213333pt;}
.ye7{bottom:883.333333pt;}
.y124{bottom:884.773333pt;}
.y47{bottom:886.053333pt;}
.y16a{bottom:888.613333pt;}
.y10{bottom:888.933333pt;}
.y70{bottom:892.293333pt;}
.y9f{bottom:892.773333pt;}
.ye6{bottom:897.893333pt;}
.y123{bottom:899.173333pt;}
.y193{bottom:902.373333pt;}
.yf{bottom:902.853333pt;}
.y9d{bottom:907.173333pt;}
.ye5{bottom:912.293333pt;}
.y169{bottom:913.253333pt;}
.y122{bottom:913.733333pt;}
.y6f{bottom:919.493333pt;}
.y46{bottom:919.813333pt;}
.y9b{bottom:921.733333pt;}
.ye{bottom:923.973333pt;}
.ye0{bottom:926.853333pt;}
.y192{bottom:927.013333pt;}
.y121{bottom:928.133333pt;}
.y45{bottom:936.613333pt;}
.y9a{bottom:939.013333pt;}
.y191{bottom:940.613333pt;}
.y168{bottom:940.773333pt;}
.ye4{bottom:941.253333pt;}
.y120{bottom:942.533333pt;}
.y6e{bottom:947.333333pt;}
.y44{bottom:953.573333pt;}
.yd{bottom:953.733333pt;}
.ye3{bottom:955.813333pt;}
.y11f{bottom:957.093333pt;}
.y6d{bottom:964.133333pt;}
.y190{bottom:965.253333pt;}
.y167{bottom:965.573333pt;}
.ydf{bottom:970.213333pt;}
.y43{bottom:970.373333pt;}
.y11e{bottom:971.493333pt;}
.yc{bottom:975.013333pt;}
.y6c{bottom:981.093333pt;}
.yde{bottom:984.613333pt;}
.y18f{bottom:989.733333pt;}
.y166{bottom:992.613333pt;}
.y4{bottom:995.333333pt;}
.y42{bottom:997.893333pt;}
.ydd{bottom:999.173333pt;}
.y11d{bottom:999.813333pt;}
.y18e{bottom:1003.333333pt;}
.y3{bottom:1009.093333pt;}
.ydc{bottom:1013.600000pt;}
.y41{bottom:1014.880000pt;}
.y165{bottom:1017.120000pt;}
.y11c{bottom:1017.280000pt;}
.y2{bottom:1023.680000pt;}
.ya{bottom:1044.320000pt;}
.y3c{bottom:1050.720000pt;}
.y1{bottom:1054.880000pt;}
.y3b{bottom:1064.480000pt;}
.h11{height:13.760000pt;}
.h16{height:13.792000pt;}
.h12{height:13.920000pt;}
.h19{height:13.952000pt;}
.h9{height:20.320000pt;}
.h21{height:27.680000pt;}
.hc{height:31.406250pt;}
.h20{height:41.440000pt;}
.h1d{height:42.720000pt;}
.h1e{height:42.752000pt;}
.h1f{height:42.880000pt;}
.h22{height:43.031250pt;}
.h5{height:47.109375pt;}
.h6{height:47.742188pt;}
.hd{height:48.375000pt;}
.h4{height:52.134375pt;}
.h10{height:52.785000pt;}
.ha{height:54.390938pt;}
.h13{height:55.232000pt;}
.h8{height:56.017500pt;}
.h17{height:57.120000pt;}
.h15{height:57.152000pt;}
.h14{height:57.280000pt;}
.h18{height:57.312000pt;}
.hf{height:57.787500pt;}
.h7{height:58.563750pt;}
.he{height:59.340000pt;}
.h3{height:64.500000pt;}
.hb{height:75.465000pt;}
.h2{height:75.796875pt;}
.h1b{height:100.640000pt;}
.h1a{height:129.440000pt;}
.h1c{height:433.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:73.760000pt;}
.w11{width:73.792000pt;}
.w14{width:83.200000pt;}
.w15{width:89.920000pt;}
.wd{width:91.680000pt;}
.w13{width:92.512000pt;}
.w9{width:93.920000pt;}
.w7{width:106.912000pt;}
.w8{width:116.832000pt;}
.wa{width:135.680000pt;}
.wb{width:146.106667pt;}
.we{width:148.186667pt;}
.w3{width:156.666667pt;}
.wf{width:176.346667pt;}
.w10{width:183.066667pt;}
.w5{width:215.546667pt;}
.w6{width:282.426667pt;}
.w4{width:388.066667pt;}
.wc{width:602.333333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x31{left:9.120000pt;}
.x2f{left:10.560000pt;}
.x2c{left:12.000000pt;}
.x2d{left:14.080000pt;}
.x25{left:17.440000pt;}
.x2e{left:18.880000pt;}
.x30{left:20.160000pt;}
.x16{left:21.600000pt;}
.x20{left:22.880000pt;}
.x17{left:24.960000pt;}
.x18{left:25.920000pt;}
.x27{left:27.040000pt;}
.x13{left:28.000000pt;}
.x4{left:29.640000pt;}
.x19{left:30.880000pt;}
.x1f{left:31.840000pt;}
.x2a{left:32.960000pt;}
.x2b{left:33.920000pt;}
.x1a{left:34.880000pt;}
.x1b{left:37.920000pt;}
.x23{left:43.200000pt;}
.x1e{left:46.880000pt;}
.xf{left:49.120000pt;}
.x10{left:50.560000pt;}
.x1d{left:58.240000pt;}
.xa{left:79.040000pt;}
.xc{left:80.480000pt;}
.xb{left:83.360000pt;}
.xd{left:86.400000pt;}
.xe{left:92.960000pt;}
.x1{left:94.431988pt;}
.x11{left:107.720000pt;}
.x2{left:184.346655pt;}
.x21{left:187.706667pt;}
.x1c{left:231.546667pt;}
.x26{left:262.146667pt;}
.x6{left:300.386655pt;}
.x22{left:336.546667pt;}
.x12{left:378.466667pt;}
.x32{left:387.746655pt;}
.x5{left:390.786655pt;}
.x28{left:429.693333pt;}
.x9{left:483.933333pt;}
.x14{left:486.173333pt;}
.x24{left:513.533333pt;}
.x3{left:570.973333pt;}
.x7{left:596.933322pt;}
.x15{left:603.653333pt;}
.x29{left:606.693333pt;}
}




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