
    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_437ce949d2694207d37603ff.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.052734;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_ba5fa56f40e35cbe886967ec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_c35070207daa8cb787d0c237.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_b009b20438633d814a72eddc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.069336;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_a4e9f6976339fd5ad24cb48e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.053223;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_336dfe531216bab90c8d05ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.051270;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_a99ce04903a4ee485011580a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.052734;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_e828be23addd74c63e952cc2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.981934;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_bf4bc820eb192dadc3edfc32.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.898438;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_64face8fcab19ab3981d0cbe.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.956543;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:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls3{letter-spacing:-0.624000px;}
.ls9{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.272400px;}
.ls4{letter-spacing:-0.240600px;}
.ls11{letter-spacing:-0.112200px;}
.ls10{letter-spacing:-0.078600px;}
.lsc{letter-spacing:-0.058320px;}
.ls1{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.022320px;}
.lsa{letter-spacing:0.066960px;}
.ls15{letter-spacing:0.174240px;}
.ls8{letter-spacing:0.186600px;}
.lse{letter-spacing:0.195120px;}
.ls12{letter-spacing:0.209400px;}
.ls5{letter-spacing:0.288600px;}
.ls7{letter-spacing:0.306000px;}
.ls6{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.433440px;}
.ls13{letter-spacing:0.479520px;}
.lsb{letter-spacing:0.627840px;}
.lsf{letter-spacing:0.948000px;}
.ls14{letter-spacing:1.080000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(46,116,181),0 0.015em rgb(46,116,181),0.015em 0 rgb(46,116,181),0 -0.015em  rgb(46,116,181);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(46,116,181);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-32.808240px;}
.ws1{word-spacing:-16.949760px;}
.ws2{word-spacing:-16.272000px;}
.ws9{word-spacing:-14.095200px;}
.wsd{word-spacing:-13.715160px;}
.ws3{word-spacing:-13.505760px;}
.ws7{word-spacing:-13.447440px;}
.wsb{word-spacing:-13.427160px;}
.wsc{word-spacing:-13.393560px;}
.ws5{word-spacing:-13.265160px;}
.wse{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.wsa{word-spacing:-8.786880px;}
.ws8{word-spacing:-8.514480px;}
.ws4{word-spacing:0.000000px;}
._e{margin-left:-3.488400px;}
._0{margin-left:-1.710720px;}
._1{width:1.434720px;}
._2{width:2.748960px;}
._14{width:3.780480px;}
._3{width:4.922400px;}
._8{width:6.089040px;}
._f{width:7.834560px;}
._4{width:8.964000px;}
._13{width:10.458000px;}
._9{width:12.191040px;}
._5{width:14.641200px;}
._b{width:15.955920px;}
._c{width:17.928000px;}
._d{width:18.943920px;}
._a{width:20.557440px;}
._16{width:21.685920px;}
._7{width:23.073360px;}
._6{width:24.202800px;}
._10{width:25.396560px;}
._15{width:26.892000px;}
._12{width:42.071040px;}
._11{width:46.920000px;}
._17{width:849.185760px;}
.fc3{color:rgb(79,129,189);}
.fc2{color:rgb(31,77,120);}
.fc1{color:rgb(46,116,181);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y103{bottom:3.960000px;}
.ya1{bottom:4.140000px;}
.yfe{bottom:4.155000px;}
.ya5{bottom:6.120000px;}
.ya9{bottom:8.265000px;}
.ya7{bottom:8.310000px;}
.yac{bottom:9.345000px;}
.ya0{bottom:22.320000px;}
.ya3{bottom:22.335000px;}
.yae{bottom:22.485000px;}
.yfc{bottom:22.500000px;}
.y9f{bottom:40.680000px;}
.y1{bottom:56.736000px;}
.y122{bottom:123.876000px;}
.yfa{bottom:126.576000px;}
.y62{bottom:132.156000px;}
.yd1{bottom:133.596000px;}
.y121{bottom:140.256000px;}
.yaf{bottom:141.156000px;}
.y2f{bottom:143.136000px;}
.y83{bottom:146.736000px;}
.yd0{bottom:149.976000px;}
.yf9{bottom:153.750000px;}
.y120{bottom:156.810000px;}
.y159{bottom:158.070000px;}
.y61{bottom:159.330000px;}
.y2e{bottom:161.490000px;}
.y82{bottom:165.090000px;}
.ycf{bottom:171.750000px;}
.y11f{bottom:173.190000px;}
.yad{bottom:173.565000px;}
.y158{bottom:177.330000px;}
.yf8{bottom:181.110000px;}
.y81{bottom:183.450000px;}
.y60{bottom:186.690000px;}
.y2d{bottom:188.670000px;}
.y11e{bottom:189.750000px;}
.y157{bottom:195.690000px;}
.y80{bottom:201.810000px;}
.y5f{bottom:205.050000px;}
.y2c{bottom:207.030000px;}
.yf7{bottom:208.470000px;}
.yab{bottom:211.005000px;}
.y11d{bottom:215.670000px;}
.y7f{bottom:219.990000px;}
.y156{bottom:223.050000px;}
.y5e{bottom:223.410000px;}
.y2b{bottom:225.390000px;}
.yaa{bottom:235.305000px;}
.yf6{bottom:235.830000px;}
.y7e{bottom:238.350000px;}
.y155{bottom:241.230000px;}
.y5d{bottom:241.590000px;}
.y11c{bottom:242.850000px;}
.y2a{bottom:243.570000px;}
.yf5{bottom:254.010000px;}
.y7d{bottom:256.710000px;}
.ya8{bottom:258.705000px;}
.y154{bottom:259.590000px;}
.y5c{bottom:259.950000px;}
.y11b{bottom:270.210000px;}
.y29{bottom:270.930000px;}
.yf4{bottom:272.370000px;}
.y153{bottom:277.950000px;}
.y5b{bottom:278.310000px;}
.ya6{bottom:281.925000px;}
.y7c{bottom:284.070000px;}
.y28{bottom:289.335000px;}
.yf3{bottom:290.775000px;}
.y5a{bottom:296.535000px;}
.y11a{bottom:297.615000px;}
.ya4{bottom:305.175000px;}
.y152{bottom:305.355000px;}
.y27{bottom:307.695000px;}
.y7b{bottom:311.295000px;}
.yf2{bottom:317.955000px;}
.y151{bottom:323.535000px;}
.y59{bottom:323.895000px;}
.y119{bottom:324.795000px;}
.ya2{bottom:326.220000px;}
.y9e{bottom:326.235000px;}
.y26{bottom:334.875000px;}
.y7a{bottom:338.655000px;}
.y58{bottom:342.255000px;}
.yf1{bottom:345.315000px;}
.y150{bottom:351.075000px;}
.y118{bottom:352.155000px;}
.y25{bottom:353.235000px;}
.y79{bottom:357.015000px;}
.y57{bottom:360.615000px;}
.y14f{bottom:370.335000px;}
.y24{bottom:371.595000px;}
.yf0{bottom:372.675000px;}
.y78{bottom:375.195000px;}
.y105{bottom:375.735000px;}
.y56{bottom:378.795000px;}
.y117{bottom:379.515000px;}
.y9d{bottom:385.635000px;}
.y14e{bottom:388.695000px;}
.y23{bottom:389.955000px;}
.y77{bottom:393.555000px;}
.y104{bottom:394.815000px;}
.y55{bottom:397.155000px;}
.yef{bottom:400.035000px;}
.y116{bottom:406.875000px;}
.y22{bottom:408.135000px;}
.y9c{bottom:411.555000px;}
.y76{bottom:411.915000px;}
.y102{bottom:413.895000px;}
.y14d{bottom:415.875000px;}
.y54{bottom:424.515000px;}
.yee{bottom:428.115000px;}
.y9b{bottom:429.735000px;}
.y75{bottom:430.275000px;}
.y101{bottom:432.795000px;}
.y115{bottom:434.055000px;}
.y14c{bottom:434.235000px;}
.y21{bottom:434.775000px;}
.y53{bottom:442.875000px;}
.y9a{bottom:448.095000px;}
.y74{bottom:448.455000px;}
.y100{bottom:451.875000px;}
.y14b{bottom:452.595000px;}
.y52{bottom:461.055000px;}
.y114{bottom:461.415000px;}
.y20{bottom:462.135000px;}
.yed{bottom:464.115000px;}
.y99{bottom:466.455000px;}
.y73{bottom:466.815000px;}
.yff{bottom:470.955000px;}
.y51{bottom:479.415000px;}
.y14a{bottom:479.955000px;}
.y98{bottom:484.815000px;}
.y72{bottom:485.175000px;}
.y113{bottom:488.775000px;}
.y1f{bottom:489.315000px;}
.yfd{bottom:490.020000px;}
.yfb{bottom:490.035000px;}
.y149{bottom:498.135000px;}
.y97{bottom:502.995000px;}
.y71{bottom:503.715000px;}
.y50{bottom:506.775000px;}
.y1e{bottom:507.675000px;}
.yec{bottom:515.415000px;}
.y112{bottom:515.955000px;}
.y148{bottom:516.495000px;}
.y70{bottom:522.975000px;}
.y4f{bottom:524.955000px;}
.y96{bottom:530.355000px;}
.y1d{bottom:535.035000px;}
.y6f{bottom:541.155000px;}
.yeb{bottom:542.415000px;}
.y4e{bottom:543.315000px;}
.y147{bottom:544.035000px;}
.y95{bottom:548.715000px;}
.yce{bottom:551.955000px;}
.y1c{bottom:553.395000px;}
.y6e{bottom:559.515000px;}
.y4d{bottom:561.675000px;}
.y146{bottom:563.295000px;}
.y94{bottom:566.895000px;}
.yea{bottom:568.155000px;}
.y111{bottom:570.705000px;}
.y1b{bottom:571.605000px;}
.ycd{bottom:579.345000px;}
.y4c{bottom:580.065000px;}
.y145{bottom:581.685000px;}
.y93{bottom:585.285000px;}
.ye9{bottom:586.545000px;}
.y6d{bottom:586.905000px;}
.y1a{bottom:589.965000px;}
.ycc{bottom:597.705000px;}
.y110{bottom:598.065000px;}
.y4b{bottom:598.245000px;}
.y92{bottom:604.365000px;}
.ye8{bottom:604.905000px;}
.y6c{bottom:605.085000px;}
.y144{bottom:608.865000px;}
.ycb{bottom:615.885000px;}
.y4a{bottom:616.605000px;}
.y19{bottom:617.325000px;}
.ye7{bottom:623.265000px;}
.y6b{bottom:623.445000px;}
.y10f{bottom:625.245000px;}
.y143{bottom:627.225000px;}
.y91{bottom:631.725000px;}
.yca{bottom:634.245000px;}
.y18{bottom:635.505000px;}
.ye6{bottom:641.445000px;}
.y6a{bottom:641.805000px;}
.y49{bottom:643.965000px;}
.y142{bottom:645.585000px;}
.y90{bottom:650.085000px;}
.yc9{bottom:652.605000px;}
.y17{bottom:653.865000px;}
.y69{bottom:660.165000px;}
.y48{bottom:662.325000px;}
.y8f{bottom:668.445000px;}
.ye5{bottom:668.805000px;}
.yc8{bottom:670.965000px;}
.y141{bottom:672.045000px;}
.y16{bottom:672.225000px;}
.y68{bottom:678.345000px;}
.y47{bottom:680.505000px;}
.yc7{bottom:689.145000px;}
.y10e{bottom:689.325000px;}
.y8e{bottom:695.625000px;}
.ye4{bottom:696.165000px;}
.y67{bottom:696.705000px;}
.y140{bottom:698.145000px;}
.y46{bottom:698.865000px;}
.y15{bottom:699.585000px;}
.yc6{bottom:707.505000px;}
.y45{bottom:717.225000px;}
.y14{bottom:717.765000px;}
.y13f{bottom:722.445000px;}
.y8d{bottom:722.985000px;}
.ye3{bottom:723.525000px;}
.y66{bottom:724.065000px;}
.yc5{bottom:725.865000px;}
.y44{bottom:735.405000px;}
.y13{bottom:736.125000px;}
.y13e{bottom:740.805000px;}
.ye2{bottom:741.705000px;}
.yc4{bottom:744.045000px;}
.y10d{bottom:744.225000px;}
.y8c{bottom:750.345000px;}
.y65{bottom:750.705000px;}
.y43{bottom:753.765000px;}
.y13d{bottom:759.165000px;}
.ye1{bottom:760.065000px;}
.yc3{bottom:762.405000px;}
.y12{bottom:763.485000px;}
.y8b{bottom:768.525000px;}
.y42{bottom:772.125000px;}
.y13c{bottom:777.525000px;}
.y64{bottom:778.425000px;}
.y11{bottom:781.845000px;}
.y8a{bottom:786.885000px;}
.ye0{bottom:787.425000px;}
.yc2{bottom:789.765000px;}
.y41{bottom:790.485000px;}
.y13b{bottom:795.705000px;}
.y63{bottom:797.685000px;}
.y10{bottom:800.025000px;}
.y89{bottom:805.245000px;}
.ydf{bottom:805.605000px;}
.y10c{bottom:808.125000px;}
.y40{bottom:808.665000px;}
.y13a{bottom:814.065000px;}
.yc1{bottom:816.225000px;}
.yf{bottom:818.385000px;}
.y88{bottom:823.605000px;}
.y10b{bottom:826.485000px;}
.y3f{bottom:827.025000px;}
.yc0{bottom:832.425000px;}
.yde{bottom:832.965000px;}
.ye{bottom:836.745000px;}
.y139{bottom:841.425000px;}
.y10a{bottom:844.665000px;}
.y3e{bottom:845.385000px;}
.ybf{bottom:848.445000px;}
.y87{bottom:850.830000px;}
.y138{bottom:859.650000px;}
.ydd{bottom:860.370000px;}
.y109{bottom:863.070000px;}
.yd{bottom:863.250000px;}
.ybe{bottom:864.330000px;}
.y3d{bottom:872.790000px;}
.y137{bottom:878.010000px;}
.ybd{bottom:880.170000px;}
.y86{bottom:880.350000px;}
.y108{bottom:881.430000px;}
.ydc{bottom:887.730000px;}
.yc{bottom:890.610000px;}
.y3c{bottom:890.970000px;}
.ybc{bottom:896.010000px;}
.y107{bottom:899.790000px;}
.y136{bottom:905.370000px;}
.ydb{bottom:905.910000px;}
.y3b{bottom:909.330000px;}
.ybb{bottom:911.850000px;}
.yb{bottom:914.370000px;}
.y12c{bottom:923.730000px;}
.yda{bottom:924.270000px;}
.y3a{bottom:927.690000px;}
.y135{bottom:941.910000px;}
.y12b{bottom:942.810000px;}
.yba{bottom:943.530000px;}
.ya{bottom:944.070000px;}
.y39{bottom:945.870000px;}
.yd9{bottom:951.630000px;}
.yb9{bottom:959.370000px;}
.y134{bottom:960.270000px;}
.y12a{bottom:961.890000px;}
.y38{bottom:964.230000px;}
.y9{bottom:964.950000px;}
.yb8{bottom:975.210000px;}
.y133{bottom:978.630000px;}
.yd8{bottom:978.990000px;}
.y129{bottom:980.790000px;}
.y37{bottom:982.590000px;}
.yb7{bottom:991.770000px;}
.y8{bottom:994.470000px;}
.y132{bottom:996.990000px;}
.y128{bottom:999.870000px;}
.y36{bottom:1000.950000px;}
.yd7{bottom:1006.170000px;}
.yb6{bottom:1012.830000px;}
.y131{bottom:1015.170000px;}
.y7{bottom:1015.350000px;}
.y127{bottom:1018.950000px;}
.yd6{bottom:1024.530000px;}
.y35{bottom:1027.410000px;}
.y15b{bottom:1031.550000px;}
.yb5{bottom:1033.890000px;}
.y126{bottom:1038.030000px;}
.y6{bottom:1038.930000px;}
.y130{bottom:1042.530000px;}
.yd5{bottom:1042.890000px;}
.y34{bottom:1054.050000px;}
.yb4{bottom:1055.130000px;}
.y125{bottom:1057.110000px;}
.y15a{bottom:1060.170000px;}
.y12f{bottom:1060.890000px;}
.yd4{bottom:1061.070000px;}
.y5{bottom:1062.330000px;}
.yb3{bottom:1076.190000px;}
.y33{bottom:1078.350000px;}
.y12e{bottom:1079.070000px;}
.y4{bottom:1083.570000px;}
.y85{bottom:1087.350000px;}
.yd3{bottom:1088.430000px;}
.y124{bottom:1095.270000px;}
.y32{bottom:1096.710000px;}
.yb2{bottom:1097.250000px;}
.y12d{bottom:1097.430000px;}
.y84{bottom:1105.710000px;}
.y3{bottom:1109.310000px;}
.y123{bottom:1114.350000px;}
.yd2{bottom:1115.790000px;}
.yb1{bottom:1118.310000px;}
.y31{bottom:1124.070000px;}
.y2{bottom:1138.140000px;}
.yb0{bottom:1139.580000px;}
.y30{bottom:1142.460000px;}
.y106{bottom:1143.900000px;}
.h21{height:18.165000px;}
.h22{height:18.210000px;}
.h20{height:18.345000px;}
.h12{height:20.325000px;}
.h14{height:22.485000px;}
.h13{height:22.521000px;}
.h15{height:23.565000px;}
.h17{height:33.944063px;}
.h16{height:36.705000px;}
.h1d{height:36.715500px;}
.h1e{height:36.720000px;}
.h6{height:39.783867px;}
.hb{height:42.186445px;}
.h23{height:42.351328px;}
.h19{height:45.509766px;}
.h1a{height:47.144531px;}
.h2{height:47.223633px;}
.h18{height:47.408203px;}
.hd{height:48.029766px;}
.h4{height:50.364141px;}
.hf{height:52.173281px;}
.ha{height:52.260820px;}
.h9{height:52.465078px;}
.h1f{height:54.824062px;}
.he{height:54.885000px;}
.h10{height:54.895500px;}
.h11{height:54.900000px;}
.h1c{height:57.867188px;}
.hc{height:57.927656px;}
.h7{height:59.378906px;}
.h8{height:60.679688px;}
.h1b{height:63.210938px;}
.h5{height:63.543867px;}
.h3{height:64.129219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:65.145000px;}
.wa{width:65.505000px;}
.w8{width:77.421000px;}
.w5{width:77.422500px;}
.w3{width:77.436000px;}
.w19{width:83.511000px;}
.w15{width:84.276000px;}
.wc{width:84.996000px;}
.wd{width:85.005000px;}
.w4{width:89.625000px;}
.w18{width:89.805000px;}
.w11{width:90.171000px;}
.w12{width:90.180000px;}
.w1e{width:91.290000px;}
.w1d{width:91.425000px;}
.w1b{width:91.440000px;}
.w1a{width:91.461000px;}
.w1c{width:91.476000px;}
.w9{width:96.465000px;}
.w6{width:96.471000px;}
.w7{width:96.480000px;}
.w16{width:104.385000px;}
.we{width:105.295500px;}
.wf{width:105.300000px;}
.w17{width:106.941000px;}
.w10{width:107.842500px;}
.w14{width:116.301000px;}
.wb{width:117.022500px;}
.w2{width:219.975000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x30{left:11.865000px;}
.x1f{left:13.140000px;}
.xe{left:14.745000px;}
.x11{left:15.825000px;}
.x1a{left:18.360000px;}
.x16{left:19.440000px;}
.x12{left:21.585000px;}
.x1b{left:22.860000px;}
.xb{left:24.120000px;}
.x14{left:25.380000px;}
.x1d{left:26.805000px;}
.xf{left:27.885000px;}
.x18{left:29.145000px;}
.x15{left:31.155000px;}
.x39{left:32.385000px;}
.x17{left:33.465000px;}
.xd{left:34.725000px;}
.x19{left:36.720000px;}
.x2e{left:38.160000px;}
.x1c{left:40.680000px;}
.x2b{left:45.885000px;}
.x28{left:48.270000px;}
.x2f{left:50.610000px;}
.x1e{left:65.505000px;}
.x9{left:84.225000px;}
.x2{left:127.656000px;}
.x25{left:162.390000px;}
.x8{left:164.565000px;}
.x3{left:170.130000px;}
.x5{left:173.010000px;}
.x26{left:174.465000px;}
.x4{left:180.750000px;}
.x20{left:201.810000px;}
.x33{left:212.625000px;}
.x24{left:218.910000px;}
.x21{left:230.970000px;}
.x27{left:239.985000px;}
.x31{left:260.175000px;}
.x32{left:298.335000px;}
.x34{left:304.815000px;}
.x6{left:333.795000px;}
.x29{left:357.015000px;}
.x7{left:358.995000px;}
.xa{left:385.455000px;}
.x35{left:396.975000px;}
.x1{left:436.245000px;}
.x2a{left:442.005000px;}
.x22{left:446.505000px;}
.xc{left:463.620000px;}
.x36{left:489.180000px;}
.x2c{left:547.320000px;}
.x10{left:553.980000px;}
.x37{left:581.340000px;}
.x13{left:632.130000px;}
.x2d{left:655.170000px;}
.x38{left:673.530000px;}
.x23{left:765.000000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-0.554667pt;}
.ls9{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.242133pt;}
.ls4{letter-spacing:-0.213867pt;}
.ls11{letter-spacing:-0.099733pt;}
.ls10{letter-spacing:-0.069867pt;}
.lsc{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.019840pt;}
.lsa{letter-spacing:0.059520pt;}
.ls15{letter-spacing:0.154880pt;}
.ls8{letter-spacing:0.165867pt;}
.lse{letter-spacing:0.173440pt;}
.ls12{letter-spacing:0.186133pt;}
.ls5{letter-spacing:0.256533pt;}
.ls7{letter-spacing:0.272000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.385280pt;}
.ls13{letter-spacing:0.426240pt;}
.lsb{letter-spacing:0.558080pt;}
.lsf{letter-spacing:0.842667pt;}
.ls14{letter-spacing:0.960000pt;}
.ws6{word-spacing:-29.162880pt;}
.ws1{word-spacing:-15.066453pt;}
.ws2{word-spacing:-14.464000pt;}
.ws9{word-spacing:-12.529067pt;}
.wsd{word-spacing:-12.191253pt;}
.ws3{word-spacing:-12.005120pt;}
.ws7{word-spacing:-11.953280pt;}
.wsb{word-spacing:-11.935253pt;}
.wsc{word-spacing:-11.905387pt;}
.ws5{word-spacing:-11.791253pt;}
.wse{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.wsa{word-spacing:-7.810560pt;}
.ws8{word-spacing:-7.568427pt;}
.ws4{word-spacing:0.000000pt;}
._e{margin-left:-3.100800pt;}
._0{margin-left:-1.520640pt;}
._1{width:1.275307pt;}
._2{width:2.443520pt;}
._14{width:3.360427pt;}
._3{width:4.375467pt;}
._8{width:5.412480pt;}
._f{width:6.964053pt;}
._4{width:7.968000pt;}
._13{width:9.296000pt;}
._9{width:10.836480pt;}
._5{width:13.014400pt;}
._b{width:14.183040pt;}
._c{width:15.936000pt;}
._d{width:16.839040pt;}
._a{width:18.273280pt;}
._16{width:19.276373pt;}
._7{width:20.509653pt;}
._6{width:21.513600pt;}
._10{width:22.574720pt;}
._15{width:23.904000pt;}
._12{width:37.396480pt;}
._11{width:41.706667pt;}
._17{width:754.831787pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y103{bottom:3.520000pt;}
.ya1{bottom:3.680000pt;}
.yfe{bottom:3.693333pt;}
.ya5{bottom:5.440000pt;}
.ya9{bottom:7.346667pt;}
.ya7{bottom:7.386667pt;}
.yac{bottom:8.306667pt;}
.ya0{bottom:19.840000pt;}
.ya3{bottom:19.853333pt;}
.yae{bottom:19.986667pt;}
.yfc{bottom:20.000000pt;}
.y9f{bottom:36.160000pt;}
.y1{bottom:50.432000pt;}
.y122{bottom:110.112000pt;}
.yfa{bottom:112.512000pt;}
.y62{bottom:117.472000pt;}
.yd1{bottom:118.752000pt;}
.y121{bottom:124.672000pt;}
.yaf{bottom:125.472000pt;}
.y2f{bottom:127.232000pt;}
.y83{bottom:130.432000pt;}
.yd0{bottom:133.312000pt;}
.yf9{bottom:136.666667pt;}
.y120{bottom:139.386667pt;}
.y159{bottom:140.506667pt;}
.y61{bottom:141.626667pt;}
.y2e{bottom:143.546667pt;}
.y82{bottom:146.746667pt;}
.ycf{bottom:152.666667pt;}
.y11f{bottom:153.946667pt;}
.yad{bottom:154.280000pt;}
.y158{bottom:157.626667pt;}
.yf8{bottom:160.986667pt;}
.y81{bottom:163.066667pt;}
.y60{bottom:165.946667pt;}
.y2d{bottom:167.706667pt;}
.y11e{bottom:168.666667pt;}
.y157{bottom:173.946667pt;}
.y80{bottom:179.386667pt;}
.y5f{bottom:182.266667pt;}
.y2c{bottom:184.026667pt;}
.yf7{bottom:185.306667pt;}
.yab{bottom:187.560000pt;}
.y11d{bottom:191.706667pt;}
.y7f{bottom:195.546667pt;}
.y156{bottom:198.266667pt;}
.y5e{bottom:198.586667pt;}
.y2b{bottom:200.346667pt;}
.yaa{bottom:209.160000pt;}
.yf6{bottom:209.626667pt;}
.y7e{bottom:211.866667pt;}
.y155{bottom:214.426667pt;}
.y5d{bottom:214.746667pt;}
.y11c{bottom:215.866667pt;}
.y2a{bottom:216.506667pt;}
.yf5{bottom:225.786667pt;}
.y7d{bottom:228.186667pt;}
.ya8{bottom:229.960000pt;}
.y154{bottom:230.746667pt;}
.y5c{bottom:231.066667pt;}
.y11b{bottom:240.186667pt;}
.y29{bottom:240.826667pt;}
.yf4{bottom:242.106667pt;}
.y153{bottom:247.066667pt;}
.y5b{bottom:247.386667pt;}
.ya6{bottom:250.600000pt;}
.y7c{bottom:252.506667pt;}
.y28{bottom:257.186667pt;}
.yf3{bottom:258.466667pt;}
.y5a{bottom:263.586667pt;}
.y11a{bottom:264.546667pt;}
.ya4{bottom:271.266667pt;}
.y152{bottom:271.426667pt;}
.y27{bottom:273.506667pt;}
.y7b{bottom:276.706667pt;}
.yf2{bottom:282.626667pt;}
.y151{bottom:287.586667pt;}
.y59{bottom:287.906667pt;}
.y119{bottom:288.706667pt;}
.ya2{bottom:289.973333pt;}
.y9e{bottom:289.986667pt;}
.y26{bottom:297.666667pt;}
.y7a{bottom:301.026667pt;}
.y58{bottom:304.226667pt;}
.yf1{bottom:306.946667pt;}
.y150{bottom:312.066667pt;}
.y118{bottom:313.026667pt;}
.y25{bottom:313.986667pt;}
.y79{bottom:317.346667pt;}
.y57{bottom:320.546667pt;}
.y14f{bottom:329.186667pt;}
.y24{bottom:330.306667pt;}
.yf0{bottom:331.266667pt;}
.y78{bottom:333.506667pt;}
.y105{bottom:333.986667pt;}
.y56{bottom:336.706667pt;}
.y117{bottom:337.346667pt;}
.y9d{bottom:342.786667pt;}
.y14e{bottom:345.506667pt;}
.y23{bottom:346.626667pt;}
.y77{bottom:349.826667pt;}
.y104{bottom:350.946667pt;}
.y55{bottom:353.026667pt;}
.yef{bottom:355.586667pt;}
.y116{bottom:361.666667pt;}
.y22{bottom:362.786667pt;}
.y9c{bottom:365.826667pt;}
.y76{bottom:366.146667pt;}
.y102{bottom:367.906667pt;}
.y14d{bottom:369.666667pt;}
.y54{bottom:377.346667pt;}
.yee{bottom:380.546667pt;}
.y9b{bottom:381.986667pt;}
.y75{bottom:382.466667pt;}
.y101{bottom:384.706667pt;}
.y115{bottom:385.826667pt;}
.y14c{bottom:385.986667pt;}
.y21{bottom:386.466667pt;}
.y53{bottom:393.666667pt;}
.y9a{bottom:398.306667pt;}
.y74{bottom:398.626667pt;}
.y100{bottom:401.666667pt;}
.y14b{bottom:402.306667pt;}
.y52{bottom:409.826667pt;}
.y114{bottom:410.146667pt;}
.y20{bottom:410.786667pt;}
.yed{bottom:412.546667pt;}
.y99{bottom:414.626667pt;}
.y73{bottom:414.946667pt;}
.yff{bottom:418.626667pt;}
.y51{bottom:426.146667pt;}
.y14a{bottom:426.626667pt;}
.y98{bottom:430.946667pt;}
.y72{bottom:431.266667pt;}
.y113{bottom:434.466667pt;}
.y1f{bottom:434.946667pt;}
.yfd{bottom:435.573333pt;}
.yfb{bottom:435.586667pt;}
.y149{bottom:442.786667pt;}
.y97{bottom:447.106667pt;}
.y71{bottom:447.746667pt;}
.y50{bottom:450.466667pt;}
.y1e{bottom:451.266667pt;}
.yec{bottom:458.146667pt;}
.y112{bottom:458.626667pt;}
.y148{bottom:459.106667pt;}
.y70{bottom:464.866667pt;}
.y4f{bottom:466.626667pt;}
.y96{bottom:471.426667pt;}
.y1d{bottom:475.586667pt;}
.y6f{bottom:481.026667pt;}
.yeb{bottom:482.146667pt;}
.y4e{bottom:482.946667pt;}
.y147{bottom:483.586667pt;}
.y95{bottom:487.746667pt;}
.yce{bottom:490.626667pt;}
.y1c{bottom:491.906667pt;}
.y6e{bottom:497.346667pt;}
.y4d{bottom:499.266667pt;}
.y146{bottom:500.706667pt;}
.y94{bottom:503.906667pt;}
.yea{bottom:505.026667pt;}
.y111{bottom:507.293333pt;}
.y1b{bottom:508.093333pt;}
.ycd{bottom:514.973333pt;}
.y4c{bottom:515.613333pt;}
.y145{bottom:517.053333pt;}
.y93{bottom:520.253333pt;}
.ye9{bottom:521.373333pt;}
.y6d{bottom:521.693333pt;}
.y1a{bottom:524.413333pt;}
.ycc{bottom:531.293333pt;}
.y110{bottom:531.613333pt;}
.y4b{bottom:531.773333pt;}
.y92{bottom:537.213333pt;}
.ye8{bottom:537.693333pt;}
.y6c{bottom:537.853333pt;}
.y144{bottom:541.213333pt;}
.ycb{bottom:547.453333pt;}
.y4a{bottom:548.093333pt;}
.y19{bottom:548.733333pt;}
.ye7{bottom:554.013333pt;}
.y6b{bottom:554.173333pt;}
.y10f{bottom:555.773333pt;}
.y143{bottom:557.533333pt;}
.y91{bottom:561.533333pt;}
.yca{bottom:563.773333pt;}
.y18{bottom:564.893333pt;}
.ye6{bottom:570.173333pt;}
.y6a{bottom:570.493333pt;}
.y49{bottom:572.413333pt;}
.y142{bottom:573.853333pt;}
.y90{bottom:577.853333pt;}
.yc9{bottom:580.093333pt;}
.y17{bottom:581.213333pt;}
.y69{bottom:586.813333pt;}
.y48{bottom:588.733333pt;}
.y8f{bottom:594.173333pt;}
.ye5{bottom:594.493333pt;}
.yc8{bottom:596.413333pt;}
.y141{bottom:597.373333pt;}
.y16{bottom:597.533333pt;}
.y68{bottom:602.973333pt;}
.y47{bottom:604.893333pt;}
.yc7{bottom:612.573333pt;}
.y10e{bottom:612.733333pt;}
.y8e{bottom:618.333333pt;}
.ye4{bottom:618.813333pt;}
.y67{bottom:619.293333pt;}
.y140{bottom:620.573333pt;}
.y46{bottom:621.213333pt;}
.y15{bottom:621.853333pt;}
.yc6{bottom:628.893333pt;}
.y45{bottom:637.533333pt;}
.y14{bottom:638.013333pt;}
.y13f{bottom:642.173333pt;}
.y8d{bottom:642.653333pt;}
.ye3{bottom:643.133333pt;}
.y66{bottom:643.613333pt;}
.yc5{bottom:645.213333pt;}
.y44{bottom:653.693333pt;}
.y13{bottom:654.333333pt;}
.y13e{bottom:658.493333pt;}
.ye2{bottom:659.293333pt;}
.yc4{bottom:661.373333pt;}
.y10d{bottom:661.533333pt;}
.y8c{bottom:666.973333pt;}
.y65{bottom:667.293333pt;}
.y43{bottom:670.013333pt;}
.y13d{bottom:674.813333pt;}
.ye1{bottom:675.613333pt;}
.yc3{bottom:677.693333pt;}
.y12{bottom:678.653333pt;}
.y8b{bottom:683.133333pt;}
.y42{bottom:686.333333pt;}
.y13c{bottom:691.133333pt;}
.y64{bottom:691.933333pt;}
.y11{bottom:694.973333pt;}
.y8a{bottom:699.453333pt;}
.ye0{bottom:699.933333pt;}
.yc2{bottom:702.013333pt;}
.y41{bottom:702.653333pt;}
.y13b{bottom:707.293333pt;}
.y63{bottom:709.053333pt;}
.y10{bottom:711.133333pt;}
.y89{bottom:715.773333pt;}
.ydf{bottom:716.093333pt;}
.y10c{bottom:718.333333pt;}
.y40{bottom:718.813333pt;}
.y13a{bottom:723.613333pt;}
.yc1{bottom:725.533333pt;}
.yf{bottom:727.453333pt;}
.y88{bottom:732.093333pt;}
.y10b{bottom:734.653333pt;}
.y3f{bottom:735.133333pt;}
.yc0{bottom:739.933333pt;}
.yde{bottom:740.413333pt;}
.ye{bottom:743.773333pt;}
.y139{bottom:747.933333pt;}
.y10a{bottom:750.813333pt;}
.y3e{bottom:751.453333pt;}
.ybf{bottom:754.173333pt;}
.y87{bottom:756.293333pt;}
.y138{bottom:764.133333pt;}
.ydd{bottom:764.773333pt;}
.y109{bottom:767.173333pt;}
.yd{bottom:767.333333pt;}
.ybe{bottom:768.293333pt;}
.y3d{bottom:775.813333pt;}
.y137{bottom:780.453333pt;}
.ybd{bottom:782.373333pt;}
.y86{bottom:782.533333pt;}
.y108{bottom:783.493333pt;}
.ydc{bottom:789.093333pt;}
.yc{bottom:791.653333pt;}
.y3c{bottom:791.973333pt;}
.ybc{bottom:796.453333pt;}
.y107{bottom:799.813333pt;}
.y136{bottom:804.773333pt;}
.ydb{bottom:805.253333pt;}
.y3b{bottom:808.293333pt;}
.ybb{bottom:810.533333pt;}
.yb{bottom:812.773333pt;}
.y12c{bottom:821.093333pt;}
.yda{bottom:821.573333pt;}
.y3a{bottom:824.613333pt;}
.y135{bottom:837.253333pt;}
.y12b{bottom:838.053333pt;}
.yba{bottom:838.693333pt;}
.ya{bottom:839.173333pt;}
.y39{bottom:840.773333pt;}
.yd9{bottom:845.893333pt;}
.yb9{bottom:852.773333pt;}
.y134{bottom:853.573333pt;}
.y12a{bottom:855.013333pt;}
.y38{bottom:857.093333pt;}
.y9{bottom:857.733333pt;}
.yb8{bottom:866.853333pt;}
.y133{bottom:869.893333pt;}
.yd8{bottom:870.213333pt;}
.y129{bottom:871.813333pt;}
.y37{bottom:873.413333pt;}
.yb7{bottom:881.573333pt;}
.y8{bottom:883.973333pt;}
.y132{bottom:886.213333pt;}
.y128{bottom:888.773333pt;}
.y36{bottom:889.733333pt;}
.yd7{bottom:894.373333pt;}
.yb6{bottom:900.293333pt;}
.y131{bottom:902.373333pt;}
.y7{bottom:902.533333pt;}
.y127{bottom:905.733333pt;}
.yd6{bottom:910.693333pt;}
.y35{bottom:913.253333pt;}
.y15b{bottom:916.933333pt;}
.yb5{bottom:919.013333pt;}
.y126{bottom:922.693333pt;}
.y6{bottom:923.493333pt;}
.y130{bottom:926.693333pt;}
.yd5{bottom:927.013333pt;}
.y34{bottom:936.933333pt;}
.yb4{bottom:937.893333pt;}
.y125{bottom:939.653333pt;}
.y15a{bottom:942.373333pt;}
.y12f{bottom:943.013333pt;}
.yd4{bottom:943.173333pt;}
.y5{bottom:944.293333pt;}
.yb3{bottom:956.613333pt;}
.y33{bottom:958.533333pt;}
.y12e{bottom:959.173333pt;}
.y4{bottom:963.173333pt;}
.y85{bottom:966.533333pt;}
.yd3{bottom:967.493333pt;}
.y124{bottom:973.573333pt;}
.y32{bottom:974.853333pt;}
.yb2{bottom:975.333333pt;}
.y12d{bottom:975.493333pt;}
.y84{bottom:982.853333pt;}
.y3{bottom:986.053333pt;}
.y123{bottom:990.533333pt;}
.yd2{bottom:991.813333pt;}
.yb1{bottom:994.053333pt;}
.y31{bottom:999.173333pt;}
.y2{bottom:1011.680000pt;}
.yb0{bottom:1012.960000pt;}
.y30{bottom:1015.520000pt;}
.y106{bottom:1016.800000pt;}
.h21{height:16.146667pt;}
.h22{height:16.186667pt;}
.h20{height:16.306667pt;}
.h12{height:18.066667pt;}
.h14{height:19.986667pt;}
.h13{height:20.018667pt;}
.h15{height:20.946667pt;}
.h17{height:30.172500pt;}
.h16{height:32.626667pt;}
.h1d{height:32.636000pt;}
.h1e{height:32.640000pt;}
.h6{height:35.363437pt;}
.hb{height:37.499062pt;}
.h23{height:37.645625pt;}
.h19{height:40.453125pt;}
.h1a{height:41.906250pt;}
.h2{height:41.976562pt;}
.h18{height:42.140625pt;}
.hd{height:42.693125pt;}
.h4{height:44.768125pt;}
.hf{height:46.376250pt;}
.ha{height:46.454062pt;}
.h9{height:46.635625pt;}
.h1f{height:48.732500pt;}
.he{height:48.786667pt;}
.h10{height:48.796000pt;}
.h11{height:48.800000pt;}
.h1c{height:51.437500pt;}
.hc{height:51.491250pt;}
.h7{height:52.781250pt;}
.h8{height:53.937500pt;}
.h1b{height:56.187500pt;}
.h5{height:56.483438pt;}
.h3{height:57.003750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:57.906667pt;}
.wa{width:58.226667pt;}
.w8{width:68.818667pt;}
.w5{width:68.820000pt;}
.w3{width:68.832000pt;}
.w19{width:74.232000pt;}
.w15{width:74.912000pt;}
.wc{width:75.552000pt;}
.wd{width:75.560000pt;}
.w4{width:79.666667pt;}
.w18{width:79.826667pt;}
.w11{width:80.152000pt;}
.w12{width:80.160000pt;}
.w1e{width:81.146667pt;}
.w1d{width:81.266667pt;}
.w1b{width:81.280000pt;}
.w1a{width:81.298667pt;}
.w1c{width:81.312000pt;}
.w9{width:85.746667pt;}
.w6{width:85.752000pt;}
.w7{width:85.760000pt;}
.w16{width:92.786667pt;}
.we{width:93.596000pt;}
.wf{width:93.600000pt;}
.w17{width:95.058667pt;}
.w10{width:95.860000pt;}
.w14{width:103.378667pt;}
.wb{width:104.020000pt;}
.w2{width:195.533333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x30{left:10.546667pt;}
.x1f{left:11.680000pt;}
.xe{left:13.106667pt;}
.x11{left:14.066667pt;}
.x1a{left:16.320000pt;}
.x16{left:17.280000pt;}
.x12{left:19.186667pt;}
.x1b{left:20.320000pt;}
.xb{left:21.440000pt;}
.x14{left:22.560000pt;}
.x1d{left:23.826667pt;}
.xf{left:24.786667pt;}
.x18{left:25.906667pt;}
.x15{left:27.693333pt;}
.x39{left:28.786667pt;}
.x17{left:29.746667pt;}
.xd{left:30.866667pt;}
.x19{left:32.640000pt;}
.x2e{left:33.920000pt;}
.x1c{left:36.160000pt;}
.x2b{left:40.786667pt;}
.x28{left:42.906667pt;}
.x2f{left:44.986667pt;}
.x1e{left:58.226667pt;}
.x9{left:74.866667pt;}
.x2{left:113.472000pt;}
.x25{left:144.346667pt;}
.x8{left:146.280000pt;}
.x3{left:151.226667pt;}
.x5{left:153.786667pt;}
.x26{left:155.080000pt;}
.x4{left:160.666667pt;}
.x20{left:179.386667pt;}
.x33{left:189.000000pt;}
.x24{left:194.586667pt;}
.x21{left:205.306667pt;}
.x27{left:213.320000pt;}
.x31{left:231.266667pt;}
.x32{left:265.186667pt;}
.x34{left:270.946667pt;}
.x6{left:296.706667pt;}
.x29{left:317.346667pt;}
.x7{left:319.106667pt;}
.xa{left:342.626667pt;}
.x35{left:352.866667pt;}
.x1{left:387.773333pt;}
.x2a{left:392.893333pt;}
.x22{left:396.893333pt;}
.xc{left:412.106667pt;}
.x36{left:434.826667pt;}
.x2c{left:486.506667pt;}
.x10{left:492.426667pt;}
.x37{left:516.746667pt;}
.x13{left:561.893333pt;}
.x2d{left:582.373333pt;}
.x38{left:598.693333pt;}
.x23{left:680.000000pt;}
}




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