
    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_108ed10ac7dad0d7bf7f813d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_95a994aa4aae2c3c99db5249.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_0e4bfb60ecab32f2adcd5a64.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a2ae792e05b1a5c2e2aa8d69.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_3cd62366590facb3b8f600e3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_ed3776ca298bc1dd404a16d7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.186000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:42.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:0.000000px;}
.ws13{word-spacing:4.536000px;}
.ws8{word-spacing:23.268000px;}
.ws12{word-spacing:62.916000px;}
.ws11{word-spacing:74.592000px;}
.ws19{word-spacing:86.268000px;}
.ws23{word-spacing:97.944000px;}
.wse{word-spacing:111.852000px;}
.wsc{word-spacing:116.514000px;}
.ws3{word-spacing:135.204000px;}
.wsd{word-spacing:139.866000px;}
.ws10{word-spacing:146.880000px;}
.ws0{word-spacing:153.450000px;}
.ws4{word-spacing:158.556000px;}
.ws2{word-spacing:163.218000px;}
.wsf{word-spacing:174.894000px;}
.ws9{word-spacing:181.908000px;}
.ws7{word-spacing:186.570000px;}
.ws6{word-spacing:197.070000px;}
.wsa{word-spacing:205.260000px;}
.ws5{word-spacing:209.922000px;}
.wsb{word-spacing:233.274000px;}
.ws17{word-spacing:242.592000px;}
.ws25{word-spacing:310.302000px;}
.ws26{word-spacing:333.654000px;}
.ws1c{word-spacing:410.592000px;}
.ws1b{word-spacing:555.240000px;}
.ws24{word-spacing:566.916000px;}
.ws16{word-spacing:856.212000px;}
.ws18{word-spacing:914.592000px;}
.ws21{word-spacing:1161.978000px;}
.ws27{word-spacing:1250.592000px;}
.ws1f{word-spacing:1383.564000px;}
.ws22{word-spacing:1754.592000px;}
.ws1d{word-spacing:2423.070000px;}
.ws1e{word-spacing:2447.598000px;}
.ws1a{word-spacing:3028.536000px;}
.ws20{word-spacing:3208.212000px;}
.ws14{word-spacing:3994.626000px;}
.ws15{word-spacing:4017.978000px;}
._28{width:15.138000px;}
._46{width:16.212000px;}
._36{width:26.514000px;}
._7c{width:39.882000px;}
._25{width:49.824000px;}
._21{width:50.916000px;}
._2b{width:52.056000px;}
._6f{width:60.528000px;}
._20{width:62.268000px;}
._19{width:63.312000px;}
._9{width:68.226000px;}
._1c{width:69.972000px;}
._1f{width:73.374000px;}
._1e{width:75.120000px;}
._1d{width:85.014000px;}
._14{width:86.310000px;}
._3{width:93.144000px;}
._2{width:96.222000px;}
._13{width:97.944000px;}
._65{width:100.260000px;}
._55{width:102.570000px;}
._22{width:105.648000px;}
._1b{width:107.874000px;}
._10{width:109.662000px;}
._26{width:112.014000px;}
._d{width:114.324000px;}
._a{width:116.634000px;}
._b{width:118.986000px;}
._1a{width:120.648000px;}
._18{width:121.944000px;}
._e{width:123.690000px;}
._c{width:126.000000px;}
._11{width:128.352000px;}
._15{width:130.662000px;}
._29{width:132.282000px;}
._12{width:133.620000px;}
._27{width:135.156000px;}
._2a{width:137.886000px;}
._23{width:140.070000px;}
._f{width:142.380000px;}
._17{width:144.000000px;}
._16{width:145.296000px;}
._76{width:156.288000px;}
._82{width:158.640000px;}
._73{width:160.950000px;}
._7b{width:163.302000px;}
._60{width:174.978000px;}
._85{width:181.992000px;}
._87{width:185.130000px;}
._1{width:186.240000px;}
._35{width:190.056000px;}
._2c{width:195.978000px;}
._4b{width:206.478000px;}
._4c{width:207.654000px;}
._0{width:216.264000px;}
._32{width:219.330000px;}
._33{width:230.598000px;}
._8b{width:231.774000px;}
._72{width:241.542000px;}
._47{width:243.240000px;}
._24{width:254.058000px;}
._89{width:255.162000px;}
._44{width:265.944000px;}
._2e{width:275.916000px;}
._2f{width:277.578000px;}
._2d{width:289.296000px;}
._8d{width:358.056000px;}
._77{width:375.564000px;}
._7e{width:386.064000px;}
._31{width:397.698000px;}
._5e{width:398.916000px;}
._4f{width:410.592000px;}
._4e{width:422.268000px;}
._34{width:434.238000px;}
._6a{width:445.410000px;}
._86{width:446.520000px;}
._88{width:458.154000px;}
._4d{width:480.648000px;}
._6b{width:542.556000px;}
._6{width:546.708000px;}
._66{width:554.064000px;}
._6d{width:555.360000px;}
._8a{width:566.916000px;}
._57{width:590.880000px;}
._81{width:613.536000px;}
._8{width:627.222000px;}
._68{width:711.036000px;}
._5{width:729.852000px;}
._6c{width:735.336000px;}
._69{width:747.156000px;}
._6e{width:757.656000px;}
._30{width:769.860000px;}
._64{width:781.008000px;}
._63{width:782.262000px;}
._70{width:803.676000px;}
._5c{width:804.936000px;}
._5a{width:828.288000px;}
._7{width:887.436000px;}
._53{width:890.064000px;}
._43{width:914.592000px;}
._4a{width:925.740000px;}
._49{width:960.768000px;}
._4{width:995.202000px;}
._84{width:1059.450000px;}
._5d{width:1070.916000px;}
._71{width:1081.416000px;}
._62{width:1094.268000px;}
._5b{width:1117.620000px;}
._3a{width:1192.212000px;}
._8c{width:1225.458000px;}
._38{width:1227.240000px;}
._80{width:1238.916000px;}
._7f{width:1262.268000px;}
._40{width:1273.944000px;}
._83{width:1297.296000px;}
._5f{width:1382.388000px;}
._3e{width:1574.916000px;}
._67{width:1598.268000px;}
._3c{width:1609.944000px;}
._79{width:1742.916000px;}
._50{width:1907.352000px;}
._51{width:1909.662000px;}
._3b{width:1944.690000px;}
._52{width:1979.676000px;}
._3d{width:1980.894000px;}
._45{width:1987.950000px;}
._78{width:2004.288000px;}
._48{width:2006.640000px;}
._42{width:2034.654000px;}
._37{width:2165.274000px;}
._39{width:2188.626000px;}
._54{width:2206.056000px;}
._3f{width:2207.316000px;}
._41{width:2230.668000px;}
._58{width:2367.036000px;}
._59{width:2368.212000px;}
._7d{width:2536.212000px;}
._7a{width:2548.260000px;}
._75{width:2606.190000px;}
._74{width:2664.570000px;}
._56{width:3039.036000px;}
._61{width:3266.592000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:6.000000px;}
.fs4{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y10e{bottom:1.935000px;}
.y21{bottom:38.715000px;}
.ye9{bottom:88.230000px;}
.y9d{bottom:95.130000px;}
.ye8{bottom:98.730000px;}
.y9c{bottom:105.630000px;}
.ye7{bottom:109.230000px;}
.y9b{bottom:116.130000px;}
.ye6{bottom:123.330000px;}
.y1c{bottom:127.365000px;}
.y20{bottom:127.605000px;}
.y9a{bottom:130.230000px;}
.ye5{bottom:133.830000px;}
.y1f{bottom:136.605000px;}
.y99{bottom:140.730000px;}
.ye4{bottom:144.330000px;}
.y1e{bottom:145.605000px;}
.y98{bottom:151.230000px;}
.y1b{bottom:157.125000px;}
.y1d{bottom:158.355000px;}
.ye3{bottom:158.430000px;}
.y97{bottom:165.330000px;}
.ye2{bottom:168.930000px;}
.y1a{bottom:169.455000px;}
.y96{bottom:175.830000px;}
.ye1{bottom:179.430000px;}
.y95{bottom:186.330000px;}
.ye0{bottom:193.530000px;}
.y94{bottom:200.430000px;}
.ydf{bottom:204.030000px;}
.y93{bottom:210.930000px;}
.yde{bottom:214.530000px;}
.y92{bottom:221.430000px;}
.ydd{bottom:228.630000px;}
.y91{bottom:235.530000px;}
.ydc{bottom:239.130000px;}
.y90{bottom:246.030000px;}
.y19{bottom:246.420000px;}
.ydb{bottom:253.230000px;}
.y8f{bottom:256.530000px;}
.yda{bottom:263.730000px;}
.y8e{bottom:270.630000px;}
.yd9{bottom:277.830000px;}
.y8d{bottom:281.130000px;}
.yd8{bottom:291.930000px;}
.y18{bottom:292.935000px;}
.y8c{bottom:295.230000px;}
.y10c{bottom:298.830000px;}
.y8b{bottom:305.730000px;}
.yd7{bottom:306.030000px;}
.y10b{bottom:312.930000px;}
.y17{bottom:313.935000px;}
.yd6{bottom:316.530000px;}
.y8a{bottom:319.830000px;}
.yd5{bottom:327.030000px;}
.y89{bottom:333.930000px;}
.y16{bottom:334.935000px;}
.yd4{bottom:341.130000px;}
.y88{bottom:348.030000px;}
.yd3{bottom:351.630000px;}
.y10a{bottom:355.230000px;}
.yc2{bottom:356.730000px;}
.y87{bottom:358.530000px;}
.yd2{bottom:362.130000px;}
.y86{bottom:369.030000px;}
.y109{bottom:369.330000px;}
.yc1{bottom:370.830000px;}
.yd1{bottom:376.230000px;}
.y15{bottom:381.450000px;}
.y85{bottom:383.130000px;}
.y108{bottom:383.430000px;}
.yc0{bottom:384.930000px;}
.yd0{bottom:386.730000px;}
.y84{bottom:393.630000px;}
.ycf{bottom:397.230000px;}
.y107{bottom:397.530000px;}
.ybf{bottom:399.030000px;}
.y83{bottom:404.130000px;}
.yce{bottom:411.330000px;}
.y106{bottom:411.630000px;}
.ybe{bottom:413.130000px;}
.y82{bottom:418.230000px;}
.y64{bottom:421.830000px;}
.y105{bottom:422.130000px;}
.ybd{bottom:427.230000px;}
.y81{bottom:428.730000px;}
.y63{bottom:432.330000px;}
.y14{bottom:434.460000px;}
.y104{bottom:436.230000px;}
.y80{bottom:439.230000px;}
.ybc{bottom:441.330000px;}
.y44{bottom:442.830000px;}
.y13{bottom:444.960000px;}
.y62{bottom:446.430000px;}
.y103{bottom:446.730000px;}
.y43{bottom:453.330000px;}
.ybb{bottom:455.430000px;}
.y12{bottom:455.460000px;}
.y61{bottom:456.930000px;}
.y102{bottom:460.830000px;}
.y7f{bottom:463.830000px;}
.y42{bottom:467.430000px;}
.yba{bottom:469.530000px;}
.y60{bottom:471.030000px;}
.y101{bottom:471.330000px;}
.y7e{bottom:474.330000px;}
.y41{bottom:477.930000px;}
.yb9{bottom:480.030000px;}
.y11{bottom:480.975000px;}
.y5f{bottom:481.530000px;}
.y100{bottom:481.830000px;}
.y7d{bottom:488.430000px;}
.y40{bottom:492.030000px;}
.yb8{bottom:494.130000px;}
.y5e{bottom:495.630000px;}
.yff{bottom:495.930000px;}
.y7c{bottom:498.930000px;}
.y3f{bottom:502.530000px;}
.yb7{bottom:504.630000px;}
.y5d{bottom:506.130000px;}
.yfe{bottom:506.430000px;}
.y7b{bottom:509.430000px;}
.ycd{bottom:513.030000px;}
.y3e{bottom:516.630000px;}
.yfd{bottom:516.930000px;}
.yb6{bottom:518.730000px;}
.y10{bottom:519.390000px;}
.y7a{bottom:519.930000px;}
.y5c{bottom:520.230000px;}
.ycc{bottom:523.530000px;}
.y3d{bottom:527.130000px;}
.yb5{bottom:529.230000px;}
.yf{bottom:529.890000px;}
.y5b{bottom:530.730000px;}
.yfc{bottom:531.030000px;}
.y79{bottom:534.030000px;}
.ycb{bottom:537.630000px;}
.yb4{bottom:539.730000px;}
.y3c{bottom:541.230000px;}
.yfb{bottom:541.530000px;}
.y78{bottom:544.530000px;}
.y5a{bottom:544.830000px;}
.ye{bottom:545.190000px;}
.yca{bottom:548.130000px;}
.y3b{bottom:551.730000px;}
.yb3{bottom:553.830000px;}
.y77{bottom:555.030000px;}
.y59{bottom:555.330000px;}
.yfa{bottom:555.630000px;}
.yd{bottom:560.490000px;}
.yc9{bottom:562.230000px;}
.yb2{bottom:564.330000px;}
.y76{bottom:565.530000px;}
.y3a{bottom:565.830000px;}
.yf9{bottom:566.130000px;}
.y58{bottom:569.430000px;}
.yb1{bottom:574.830000px;}
.y39{bottom:576.330000px;}
.y75{bottom:579.630000px;}
.y57{bottom:579.930000px;}
.yf8{bottom:580.230000px;}
.yc{bottom:582.840000px;}
.yc8{bottom:586.830000px;}
.yb0{bottom:588.930000px;}
.y38{bottom:590.430000px;}
.yf7{bottom:590.730000px;}
.y74{bottom:593.730000px;}
.y56{bottom:594.030000px;}
.yaf{bottom:599.430000px;}
.y37{bottom:600.930000px;}
.yf6{bottom:601.230000px;}
.y55{bottom:604.530000px;}
.y73{bottom:607.830000px;}
.yc7{bottom:611.430000px;}
.yae{bottom:613.530000px;}
.y36{bottom:615.030000px;}
.yf5{bottom:615.330000px;}
.y72{bottom:618.330000px;}
.y54{bottom:618.630000px;}
.yad{bottom:624.030000px;}
.y35{bottom:625.530000px;}
.yf4{bottom:625.830000px;}
.y53{bottom:629.130000px;}
.y71{bottom:632.430000px;}
.yc6{bottom:636.030000px;}
.yf3{bottom:636.330000px;}
.yac{bottom:638.130000px;}
.y34{bottom:639.630000px;}
.y70{bottom:642.930000px;}
.y52{bottom:643.230000px;}
.yab{bottom:648.630000px;}
.y33{bottom:650.130000px;}
.yf2{bottom:650.430000px;}
.y51{bottom:653.730000px;}
.y6f{bottom:657.030000px;}
.yaa{bottom:659.130000px;}
.yc5{bottom:660.630000px;}
.yf1{bottom:660.930000px;}
.y32{bottom:664.230000px;}
.y6e{bottom:667.530000px;}
.y50{bottom:667.830000px;}
.yf0{bottom:671.430000px;}
.yb{bottom:672.420000px;}
.ya9{bottom:673.230000px;}
.y31{bottom:674.730000px;}
.y4f{bottom:678.330000px;}
.y6d{bottom:681.630000px;}
.ya8{bottom:683.730000px;}
.yc4{bottom:685.230000px;}
.yef{bottom:685.530000px;}
.y30{bottom:688.830000px;}
.y6c{bottom:692.130000px;}
.y4e{bottom:692.430000px;}
.ya7{bottom:694.230000px;}
.yee{bottom:696.030000px;}
.y2f{bottom:699.330000px;}
.y4d{bottom:702.930000px;}
.y6b{bottom:706.230000px;}
.yed{bottom:706.530000px;}
.ya6{bottom:708.330000px;}
.yc3{bottom:709.830000px;}
.y2e{bottom:713.430000px;}
.y6a{bottom:716.730000px;}
.y4c{bottom:717.030000px;}
.ya{bottom:718.260000px;}
.ya5{bottom:718.830000px;}
.yec{bottom:720.630000px;}
.y2d{bottom:723.930000px;}
.y4b{bottom:727.530000px;}
.ya4{bottom:729.330000px;}
.y69{bottom:730.830000px;}
.yeb{bottom:731.130000px;}
.y10d{bottom:734.430000px;}
.y2c{bottom:738.030000px;}
.y68{bottom:741.330000px;}
.y4a{bottom:741.630000px;}
.ya3{bottom:743.430000px;}
.y2b{bottom:748.530000px;}
.y49{bottom:752.130000px;}
.ya2{bottom:753.930000px;}
.y67{bottom:755.430000px;}
.yea{bottom:755.730000px;}
.y9{bottom:760.785000px;}
.y2a{bottom:762.630000px;}
.ya1{bottom:764.430000px;}
.y48{bottom:766.230000px;}
.y66{bottom:769.530000px;}
.y29{bottom:773.130000px;}
.y47{bottom:776.730000px;}
.ya0{bottom:778.530000px;}
.y8{bottom:782.040000px;}
.y65{bottom:783.630000px;}
.y28{bottom:787.230000px;}
.y9f{bottom:789.030000px;}
.y46{bottom:790.830000px;}
.y27{bottom:797.730000px;}
.y9e{bottom:799.530000px;}
.y45{bottom:801.330000px;}
.y7{bottom:803.310000px;}
.y26{bottom:811.830000px;}
.y6{bottom:824.565000px;}
.y25{bottom:825.930000px;}
.y5{bottom:832.995000px;}
.y24{bottom:840.030000px;}
.y23{bottom:854.130000px;}
.y4{bottom:854.265000px;}
.y3{bottom:875.520000px;}
.y22{bottom:882.615000px;}
.y2{bottom:896.775000px;}
.y1{bottom:1067.490000px;}
.hc{height:6.257812px;}
.h6{height:37.546875px;}
.ha{height:40.572000px;}
.h4{height:43.804688px;}
.h7{height:50.062500px;}
.h2{height:56.320312px;}
.h9{height:62.578125px;}
.h1{height:75.093750px;}
.hb{height:82.572000px;}
.h5{height:85.804688px;}
.h3{height:94.218750px;}
.h8{height:918.000000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.w1{width:1188.000000px;}
.x0{left:0.000000px;}
.x41{left:4.245000px;}
.xf{left:54.945000px;}
.x1{left:68.025000px;}
.x4{left:106.305000px;}
.x5{left:108.705000px;}
.x8{left:131.805000px;}
.x1d{left:144.945000px;}
.x3f{left:149.436000px;}
.x38{left:152.355000px;}
.x3e{left:155.274000px;}
.x36{left:158.193000px;}
.x3d{left:161.112000px;}
.x37{left:164.031000px;}
.x2f{left:166.950000px;}
.x31{left:169.869000px;}
.x1e{left:186.945000px;}
.x3a{left:203.112000px;}
.x39{left:208.950000px;}
.x1f{left:228.945000px;}
.x20{left:270.945000px;}
.x40{left:278.061000px;}
.x3{left:284.865000px;}
.xc{left:286.605000px;}
.xe{left:293.035500px;}
.xb{left:300.735000px;}
.x28{left:308.875500px;}
.x21{left:312.945000px;}
.x3b{left:320.061000px;}
.x35{left:329.112000px;}
.xa{left:336.645000px;}
.x6{left:353.895000px;}
.x22{left:354.945000px;}
.x9{left:370.455000px;}
.x23{left:396.945000px;}
.xd{left:416.955000px;}
.x24{left:438.945000px;}
.x25{left:480.945000px;}
.x26{left:522.945000px;}
.x2{left:535.755000px;}
.x10{left:551.955000px;}
.x27{left:564.945000px;}
.x11{left:606.945000px;}
.x2e{left:623.112000px;}
.x12{left:648.945000px;}
.x2a{left:673.869000px;}
.x7{left:684.570000px;}
.x2c{left:689.304000px;}
.x13{left:690.945000px;}
.x2d{left:692.517000px;}
.x33{left:715.869000px;}
.x14{left:732.945000px;}
.x15{left:774.945000px;}
.x3c{left:799.869000px;}
.x16{left:816.945000px;}
.x17{left:858.945000px;}
.x18{left:900.945000px;}
.x2b{left:920.031000px;}
.x19{left:942.945000px;}
.x30{left:964.950000px;}
.x32{left:967.869000px;}
.x1a{left:984.945000px;}
.x34{left:1004.031000px;}
.x29{left:1009.869000px;}
.x1b{left:1026.945000px;}
.x1c{left:1068.945000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:37.333333pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:0.000000pt;}
.ws13{word-spacing:4.032000pt;}
.ws8{word-spacing:20.682667pt;}
.ws12{word-spacing:55.925333pt;}
.ws11{word-spacing:66.304000pt;}
.ws19{word-spacing:76.682667pt;}
.ws23{word-spacing:87.061333pt;}
.wse{word-spacing:99.424000pt;}
.wsc{word-spacing:103.568000pt;}
.ws3{word-spacing:120.181333pt;}
.wsd{word-spacing:124.325333pt;}
.ws10{word-spacing:130.560000pt;}
.ws0{word-spacing:136.400000pt;}
.ws4{word-spacing:140.938667pt;}
.ws2{word-spacing:145.082667pt;}
.wsf{word-spacing:155.461333pt;}
.ws9{word-spacing:161.696000pt;}
.ws7{word-spacing:165.840000pt;}
.ws6{word-spacing:175.173333pt;}
.wsa{word-spacing:182.453333pt;}
.ws5{word-spacing:186.597333pt;}
.wsb{word-spacing:207.354667pt;}
.ws17{word-spacing:215.637333pt;}
.ws25{word-spacing:275.824000pt;}
.ws26{word-spacing:296.581333pt;}
.ws1c{word-spacing:364.970667pt;}
.ws1b{word-spacing:493.546667pt;}
.ws24{word-spacing:503.925333pt;}
.ws16{word-spacing:761.077333pt;}
.ws18{word-spacing:812.970667pt;}
.ws21{word-spacing:1032.869333pt;}
.ws27{word-spacing:1111.637333pt;}
.ws1f{word-spacing:1229.834667pt;}
.ws22{word-spacing:1559.637333pt;}
.ws1d{word-spacing:2153.840000pt;}
.ws1e{word-spacing:2175.642667pt;}
.ws1a{word-spacing:2692.032000pt;}
.ws20{word-spacing:2851.744000pt;}
.ws14{word-spacing:3550.778667pt;}
.ws15{word-spacing:3571.536000pt;}
._28{width:13.456000pt;}
._46{width:14.410667pt;}
._36{width:23.568000pt;}
._7c{width:35.450667pt;}
._25{width:44.288000pt;}
._21{width:45.258667pt;}
._2b{width:46.272000pt;}
._6f{width:53.802667pt;}
._20{width:55.349333pt;}
._19{width:56.277333pt;}
._9{width:60.645333pt;}
._1c{width:62.197333pt;}
._1f{width:65.221333pt;}
._1e{width:66.773333pt;}
._1d{width:75.568000pt;}
._14{width:76.720000pt;}
._3{width:82.794667pt;}
._2{width:85.530667pt;}
._13{width:87.061333pt;}
._65{width:89.120000pt;}
._55{width:91.173333pt;}
._22{width:93.909333pt;}
._1b{width:95.888000pt;}
._10{width:97.477333pt;}
._26{width:99.568000pt;}
._d{width:101.621333pt;}
._a{width:103.674667pt;}
._b{width:105.765333pt;}
._1a{width:107.242667pt;}
._18{width:108.394667pt;}
._e{width:109.946667pt;}
._c{width:112.000000pt;}
._11{width:114.090667pt;}
._15{width:116.144000pt;}
._29{width:117.584000pt;}
._12{width:118.773333pt;}
._27{width:120.138667pt;}
._2a{width:122.565333pt;}
._23{width:124.506667pt;}
._f{width:126.560000pt;}
._17{width:128.000000pt;}
._16{width:129.152000pt;}
._76{width:138.922667pt;}
._82{width:141.013333pt;}
._73{width:143.066667pt;}
._7b{width:145.157333pt;}
._60{width:155.536000pt;}
._85{width:161.770667pt;}
._87{width:164.560000pt;}
._1{width:165.546667pt;}
._35{width:168.938667pt;}
._2c{width:174.202667pt;}
._4b{width:183.536000pt;}
._4c{width:184.581333pt;}
._0{width:192.234667pt;}
._32{width:194.960000pt;}
._33{width:204.976000pt;}
._8b{width:206.021333pt;}
._72{width:214.704000pt;}
._47{width:216.213333pt;}
._24{width:225.829333pt;}
._89{width:226.810667pt;}
._44{width:236.394667pt;}
._2e{width:245.258667pt;}
._2f{width:246.736000pt;}
._2d{width:257.152000pt;}
._8d{width:318.272000pt;}
._77{width:333.834667pt;}
._7e{width:343.168000pt;}
._31{width:353.509333pt;}
._5e{width:354.592000pt;}
._4f{width:364.970667pt;}
._4e{width:375.349333pt;}
._34{width:385.989333pt;}
._6a{width:395.920000pt;}
._86{width:396.906667pt;}
._88{width:407.248000pt;}
._4d{width:427.242667pt;}
._6b{width:482.272000pt;}
._6{width:485.962667pt;}
._66{width:492.501333pt;}
._6d{width:493.653333pt;}
._8a{width:503.925333pt;}
._57{width:525.226667pt;}
._81{width:545.365333pt;}
._8{width:557.530667pt;}
._68{width:632.032000pt;}
._5{width:648.757333pt;}
._6c{width:653.632000pt;}
._69{width:664.138667pt;}
._6e{width:673.472000pt;}
._30{width:684.320000pt;}
._64{width:694.229333pt;}
._63{width:695.344000pt;}
._70{width:714.378667pt;}
._5c{width:715.498667pt;}
._5a{width:736.256000pt;}
._7{width:788.832000pt;}
._53{width:791.168000pt;}
._43{width:812.970667pt;}
._4a{width:822.880000pt;}
._49{width:854.016000pt;}
._4{width:884.624000pt;}
._84{width:941.733333pt;}
._5d{width:951.925333pt;}
._71{width:961.258667pt;}
._62{width:972.682667pt;}
._5b{width:993.440000pt;}
._3a{width:1059.744000pt;}
._8c{width:1089.296000pt;}
._38{width:1090.880000pt;}
._80{width:1101.258667pt;}
._7f{width:1122.016000pt;}
._40{width:1132.394667pt;}
._83{width:1153.152000pt;}
._5f{width:1228.789333pt;}
._3e{width:1399.925333pt;}
._67{width:1420.682667pt;}
._3c{width:1431.061333pt;}
._79{width:1549.258667pt;}
._50{width:1695.424000pt;}
._51{width:1697.477333pt;}
._3b{width:1728.613333pt;}
._52{width:1759.712000pt;}
._3d{width:1760.794667pt;}
._45{width:1767.066667pt;}
._78{width:1781.589333pt;}
._48{width:1783.680000pt;}
._42{width:1808.581333pt;}
._37{width:1924.688000pt;}
._39{width:1945.445333pt;}
._54{width:1960.938667pt;}
._3f{width:1962.058667pt;}
._41{width:1982.816000pt;}
._58{width:2104.032000pt;}
._59{width:2105.077333pt;}
._7d{width:2254.410667pt;}
._7a{width:2265.120000pt;}
._75{width:2316.613333pt;}
._74{width:2368.506667pt;}
._56{width:2701.365333pt;}
._61{width:2903.637333pt;}
.fs7{font-size:5.333333pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y10e{bottom:1.720000pt;}
.y21{bottom:34.413333pt;}
.ye9{bottom:78.426667pt;}
.y9d{bottom:84.560000pt;}
.ye8{bottom:87.760000pt;}
.y9c{bottom:93.893333pt;}
.ye7{bottom:97.093333pt;}
.y9b{bottom:103.226667pt;}
.ye6{bottom:109.626667pt;}
.y1c{bottom:113.213333pt;}
.y20{bottom:113.426667pt;}
.y9a{bottom:115.760000pt;}
.ye5{bottom:118.960000pt;}
.y1f{bottom:121.426667pt;}
.y99{bottom:125.093333pt;}
.ye4{bottom:128.293333pt;}
.y1e{bottom:129.426667pt;}
.y98{bottom:134.426667pt;}
.y1b{bottom:139.666667pt;}
.y1d{bottom:140.760000pt;}
.ye3{bottom:140.826667pt;}
.y97{bottom:146.960000pt;}
.ye2{bottom:150.160000pt;}
.y1a{bottom:150.626667pt;}
.y96{bottom:156.293333pt;}
.ye1{bottom:159.493333pt;}
.y95{bottom:165.626667pt;}
.ye0{bottom:172.026667pt;}
.y94{bottom:178.160000pt;}
.ydf{bottom:181.360000pt;}
.y93{bottom:187.493333pt;}
.yde{bottom:190.693333pt;}
.y92{bottom:196.826667pt;}
.ydd{bottom:203.226667pt;}
.y91{bottom:209.360000pt;}
.ydc{bottom:212.560000pt;}
.y90{bottom:218.693333pt;}
.y19{bottom:219.040000pt;}
.ydb{bottom:225.093333pt;}
.y8f{bottom:228.026667pt;}
.yda{bottom:234.426667pt;}
.y8e{bottom:240.560000pt;}
.yd9{bottom:246.960000pt;}
.y8d{bottom:249.893333pt;}
.yd8{bottom:259.493333pt;}
.y18{bottom:260.386667pt;}
.y8c{bottom:262.426667pt;}
.y10c{bottom:265.626667pt;}
.y8b{bottom:271.760000pt;}
.yd7{bottom:272.026667pt;}
.y10b{bottom:278.160000pt;}
.y17{bottom:279.053333pt;}
.yd6{bottom:281.360000pt;}
.y8a{bottom:284.293333pt;}
.yd5{bottom:290.693333pt;}
.y89{bottom:296.826667pt;}
.y16{bottom:297.720000pt;}
.yd4{bottom:303.226667pt;}
.y88{bottom:309.360000pt;}
.yd3{bottom:312.560000pt;}
.y10a{bottom:315.760000pt;}
.yc2{bottom:317.093333pt;}
.y87{bottom:318.693333pt;}
.yd2{bottom:321.893333pt;}
.y86{bottom:328.026667pt;}
.y109{bottom:328.293333pt;}
.yc1{bottom:329.626667pt;}
.yd1{bottom:334.426667pt;}
.y15{bottom:339.066667pt;}
.y85{bottom:340.560000pt;}
.y108{bottom:340.826667pt;}
.yc0{bottom:342.160000pt;}
.yd0{bottom:343.760000pt;}
.y84{bottom:349.893333pt;}
.ycf{bottom:353.093333pt;}
.y107{bottom:353.360000pt;}
.ybf{bottom:354.693333pt;}
.y83{bottom:359.226667pt;}
.yce{bottom:365.626667pt;}
.y106{bottom:365.893333pt;}
.ybe{bottom:367.226667pt;}
.y82{bottom:371.760000pt;}
.y64{bottom:374.960000pt;}
.y105{bottom:375.226667pt;}
.ybd{bottom:379.760000pt;}
.y81{bottom:381.093333pt;}
.y63{bottom:384.293333pt;}
.y14{bottom:386.186667pt;}
.y104{bottom:387.760000pt;}
.y80{bottom:390.426667pt;}
.ybc{bottom:392.293333pt;}
.y44{bottom:393.626667pt;}
.y13{bottom:395.520000pt;}
.y62{bottom:396.826667pt;}
.y103{bottom:397.093333pt;}
.y43{bottom:402.960000pt;}
.ybb{bottom:404.826667pt;}
.y12{bottom:404.853333pt;}
.y61{bottom:406.160000pt;}
.y102{bottom:409.626667pt;}
.y7f{bottom:412.293333pt;}
.y42{bottom:415.493333pt;}
.yba{bottom:417.360000pt;}
.y60{bottom:418.693333pt;}
.y101{bottom:418.960000pt;}
.y7e{bottom:421.626667pt;}
.y41{bottom:424.826667pt;}
.yb9{bottom:426.693333pt;}
.y11{bottom:427.533333pt;}
.y5f{bottom:428.026667pt;}
.y100{bottom:428.293333pt;}
.y7d{bottom:434.160000pt;}
.y40{bottom:437.360000pt;}
.yb8{bottom:439.226667pt;}
.y5e{bottom:440.560000pt;}
.yff{bottom:440.826667pt;}
.y7c{bottom:443.493333pt;}
.y3f{bottom:446.693333pt;}
.yb7{bottom:448.560000pt;}
.y5d{bottom:449.893333pt;}
.yfe{bottom:450.160000pt;}
.y7b{bottom:452.826667pt;}
.ycd{bottom:456.026667pt;}
.y3e{bottom:459.226667pt;}
.yfd{bottom:459.493333pt;}
.yb6{bottom:461.093333pt;}
.y10{bottom:461.680000pt;}
.y7a{bottom:462.160000pt;}
.y5c{bottom:462.426667pt;}
.ycc{bottom:465.360000pt;}
.y3d{bottom:468.560000pt;}
.yb5{bottom:470.426667pt;}
.yf{bottom:471.013333pt;}
.y5b{bottom:471.760000pt;}
.yfc{bottom:472.026667pt;}
.y79{bottom:474.693333pt;}
.ycb{bottom:477.893333pt;}
.yb4{bottom:479.760000pt;}
.y3c{bottom:481.093333pt;}
.yfb{bottom:481.360000pt;}
.y78{bottom:484.026667pt;}
.y5a{bottom:484.293333pt;}
.ye{bottom:484.613333pt;}
.yca{bottom:487.226667pt;}
.y3b{bottom:490.426667pt;}
.yb3{bottom:492.293333pt;}
.y77{bottom:493.360000pt;}
.y59{bottom:493.626667pt;}
.yfa{bottom:493.893333pt;}
.yd{bottom:498.213333pt;}
.yc9{bottom:499.760000pt;}
.yb2{bottom:501.626667pt;}
.y76{bottom:502.693333pt;}
.y3a{bottom:502.960000pt;}
.yf9{bottom:503.226667pt;}
.y58{bottom:506.160000pt;}
.yb1{bottom:510.960000pt;}
.y39{bottom:512.293333pt;}
.y75{bottom:515.226667pt;}
.y57{bottom:515.493333pt;}
.yf8{bottom:515.760000pt;}
.yc{bottom:518.080000pt;}
.yc8{bottom:521.626667pt;}
.yb0{bottom:523.493333pt;}
.y38{bottom:524.826667pt;}
.yf7{bottom:525.093333pt;}
.y74{bottom:527.760000pt;}
.y56{bottom:528.026667pt;}
.yaf{bottom:532.826667pt;}
.y37{bottom:534.160000pt;}
.yf6{bottom:534.426667pt;}
.y55{bottom:537.360000pt;}
.y73{bottom:540.293333pt;}
.yc7{bottom:543.493333pt;}
.yae{bottom:545.360000pt;}
.y36{bottom:546.693333pt;}
.yf5{bottom:546.960000pt;}
.y72{bottom:549.626667pt;}
.y54{bottom:549.893333pt;}
.yad{bottom:554.693333pt;}
.y35{bottom:556.026667pt;}
.yf4{bottom:556.293333pt;}
.y53{bottom:559.226667pt;}
.y71{bottom:562.160000pt;}
.yc6{bottom:565.360000pt;}
.yf3{bottom:565.626667pt;}
.yac{bottom:567.226667pt;}
.y34{bottom:568.560000pt;}
.y70{bottom:571.493333pt;}
.y52{bottom:571.760000pt;}
.yab{bottom:576.560000pt;}
.y33{bottom:577.893333pt;}
.yf2{bottom:578.160000pt;}
.y51{bottom:581.093333pt;}
.y6f{bottom:584.026667pt;}
.yaa{bottom:585.893333pt;}
.yc5{bottom:587.226667pt;}
.yf1{bottom:587.493333pt;}
.y32{bottom:590.426667pt;}
.y6e{bottom:593.360000pt;}
.y50{bottom:593.626667pt;}
.yf0{bottom:596.826667pt;}
.yb{bottom:597.706667pt;}
.ya9{bottom:598.426667pt;}
.y31{bottom:599.760000pt;}
.y4f{bottom:602.960000pt;}
.y6d{bottom:605.893333pt;}
.ya8{bottom:607.760000pt;}
.yc4{bottom:609.093333pt;}
.yef{bottom:609.360000pt;}
.y30{bottom:612.293333pt;}
.y6c{bottom:615.226667pt;}
.y4e{bottom:615.493333pt;}
.ya7{bottom:617.093333pt;}
.yee{bottom:618.693333pt;}
.y2f{bottom:621.626667pt;}
.y4d{bottom:624.826667pt;}
.y6b{bottom:627.760000pt;}
.yed{bottom:628.026667pt;}
.ya6{bottom:629.626667pt;}
.yc3{bottom:630.960000pt;}
.y2e{bottom:634.160000pt;}
.y6a{bottom:637.093333pt;}
.y4c{bottom:637.360000pt;}
.ya{bottom:638.453333pt;}
.ya5{bottom:638.960000pt;}
.yec{bottom:640.560000pt;}
.y2d{bottom:643.493333pt;}
.y4b{bottom:646.693333pt;}
.ya4{bottom:648.293333pt;}
.y69{bottom:649.626667pt;}
.yeb{bottom:649.893333pt;}
.y10d{bottom:652.826667pt;}
.y2c{bottom:656.026667pt;}
.y68{bottom:658.960000pt;}
.y4a{bottom:659.226667pt;}
.ya3{bottom:660.826667pt;}
.y2b{bottom:665.360000pt;}
.y49{bottom:668.560000pt;}
.ya2{bottom:670.160000pt;}
.y67{bottom:671.493333pt;}
.yea{bottom:671.760000pt;}
.y9{bottom:676.253333pt;}
.y2a{bottom:677.893333pt;}
.ya1{bottom:679.493333pt;}
.y48{bottom:681.093333pt;}
.y66{bottom:684.026667pt;}
.y29{bottom:687.226667pt;}
.y47{bottom:690.426667pt;}
.ya0{bottom:692.026667pt;}
.y8{bottom:695.146667pt;}
.y65{bottom:696.560000pt;}
.y28{bottom:699.760000pt;}
.y9f{bottom:701.360000pt;}
.y46{bottom:702.960000pt;}
.y27{bottom:709.093333pt;}
.y9e{bottom:710.693333pt;}
.y45{bottom:712.293333pt;}
.y7{bottom:714.053333pt;}
.y26{bottom:721.626667pt;}
.y6{bottom:732.946667pt;}
.y25{bottom:734.160000pt;}
.y5{bottom:740.440000pt;}
.y24{bottom:746.693333pt;}
.y23{bottom:759.226667pt;}
.y4{bottom:759.346667pt;}
.y3{bottom:778.240000pt;}
.y22{bottom:784.546667pt;}
.y2{bottom:797.133333pt;}
.y1{bottom:948.880000pt;}
.hc{height:5.562500pt;}
.h6{height:33.375000pt;}
.ha{height:36.064000pt;}
.h4{height:38.937500pt;}
.h7{height:44.500000pt;}
.h2{height:50.062500pt;}
.h9{height:55.625000pt;}
.h1{height:66.750000pt;}
.hb{height:73.397333pt;}
.h5{height:76.270833pt;}
.h3{height:83.750000pt;}
.h8{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.w1{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x41{left:3.773333pt;}
.xf{left:48.840000pt;}
.x1{left:60.466667pt;}
.x4{left:94.493333pt;}
.x5{left:96.626667pt;}
.x8{left:117.160000pt;}
.x1d{left:128.840000pt;}
.x3f{left:132.832000pt;}
.x38{left:135.426667pt;}
.x3e{left:138.021333pt;}
.x36{left:140.616000pt;}
.x3d{left:143.210667pt;}
.x37{left:145.805333pt;}
.x2f{left:148.400000pt;}
.x31{left:150.994667pt;}
.x1e{left:166.173333pt;}
.x3a{left:180.544000pt;}
.x39{left:185.733333pt;}
.x1f{left:203.506667pt;}
.x20{left:240.840000pt;}
.x40{left:247.165333pt;}
.x3{left:253.213333pt;}
.xc{left:254.760000pt;}
.xe{left:260.476000pt;}
.xb{left:267.320000pt;}
.x28{left:274.556000pt;}
.x21{left:278.173333pt;}
.x3b{left:284.498667pt;}
.x35{left:292.544000pt;}
.xa{left:299.240000pt;}
.x6{left:314.573333pt;}
.x22{left:315.506667pt;}
.x9{left:329.293333pt;}
.x23{left:352.840000pt;}
.xd{left:370.626667pt;}
.x24{left:390.173333pt;}
.x25{left:427.506667pt;}
.x26{left:464.840000pt;}
.x2{left:476.226667pt;}
.x10{left:490.626667pt;}
.x27{left:502.173333pt;}
.x11{left:539.506667pt;}
.x2e{left:553.877333pt;}
.x12{left:576.840000pt;}
.x2a{left:598.994667pt;}
.x7{left:608.506667pt;}
.x2c{left:612.714667pt;}
.x13{left:614.173333pt;}
.x2d{left:615.570667pt;}
.x33{left:636.328000pt;}
.x14{left:651.506667pt;}
.x15{left:688.840000pt;}
.x3c{left:710.994667pt;}
.x16{left:726.173333pt;}
.x17{left:763.506667pt;}
.x18{left:800.840000pt;}
.x2b{left:817.805333pt;}
.x19{left:838.173333pt;}
.x30{left:857.733333pt;}
.x32{left:860.328000pt;}
.x1a{left:875.506667pt;}
.x34{left:892.472000pt;}
.x29{left:897.661333pt;}
.x1b{left:912.840000pt;}
.x1c{left:950.173333pt;}
}




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