
    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_9a8154c06e5f94336f93de00.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_2563580367050cb08a2cec5d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_23395042de4eeea1b2f824cc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_1076414245cd78820d46ca8c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.008789;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_3bedc54435d0cfbcd1471e39.woff')format("woff");}.ff5{font-family:ff5;line-height:0.964844;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_358f4617191613585c6d4b1a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.923340;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_d3e57950107ebe975694f200.woff')format("woff");}.ff7{font-family:ff7;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;}
.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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.760000px;}
.v1{vertical-align:27.360000px;}
.ls5{letter-spacing:-0.457800px;}
.ls11{letter-spacing:-0.450600px;}
.lse{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.045360px;}
.ls2{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.144000px;}
.ls22{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.256200px;}
.ls10{letter-spacing:0.269400px;}
.ls0{letter-spacing:0.341280px;}
.lsb{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.480000px;}
.ls21{letter-spacing:0.504000px;}
.ls1b{letter-spacing:0.720000px;}
.ls1d{letter-spacing:1.440000px;}
.ls1e{letter-spacing:2.880000px;}
.ls1a{letter-spacing:5.040000px;}
.ls8{letter-spacing:7.200000px;}
.ls1c{letter-spacing:7.920000px;}
.ls20{letter-spacing:9.360000px;}
.ls1{letter-spacing:10.800000px;}
.ls14{letter-spacing:11.520000px;}
.ls1f{letter-spacing:12.240000px;}
.ls7{letter-spacing:15.120000px;}
.ls13{letter-spacing:21.060000px;}
.ls16{letter-spacing:23.040000px;}
.ls15{letter-spacing:35.256000px;}
.ls9{letter-spacing:47.496000px;}
.ls12{letter-spacing:53.436000px;}
.ls17{letter-spacing:135.336000px;}
.lsa{letter-spacing:139.680000px;}
.ls18{letter-spacing:142.536000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.060000px;}
.ws5{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws2{word-spacing:-15.226440px;}
.ws8{word-spacing:-12.329400px;}
.wsa{word-spacing:-12.060000px;}
.ws7{word-spacing:-12.014640px;}
.ws9{word-spacing:-11.609400px;}
.ws3{word-spacing:0.000000px;}
._13{margin-left:-4.464000px;}
._14{margin-left:-3.360240px;}
._0{margin-left:-1.578240px;}
._1{width:1.062480px;}
._6{width:2.142000px;}
._5{width:3.548880px;}
._12{width:4.983360px;}
._11{width:6.414000px;}
._7{width:7.992000px;}
._19{width:9.126960px;}
._c{width:10.140480px;}
._8{width:11.592000px;}
._9{width:12.672000px;}
._10{width:14.544000px;}
._d{width:16.200000px;}
._a{width:19.344480px;}
._e{width:21.312000px;}
._f{width:23.112000px;}
._15{width:24.131760px;}
._b{width:25.272000px;}
._1d{width:27.354240px;}
._16{width:28.800000px;}
._17{width:29.897520px;}
._29{width:31.518480px;}
._25{width:32.832000px;}
._3{width:34.217520px;}
._21{width:37.008000px;}
._1a{width:38.520000px;}
._1b{width:39.905520px;}
._4{width:81.220080px;}
._1c{width:89.976000px;}
._18{width:107.976000px;}
._2{width:109.380000px;}
._27{width:119.352000px;}
._28{width:123.960000px;}
._22{width:134.064000px;}
._1e{width:139.031760px;}
._20{width:140.256000px;}
._1f{width:156.863760px;}
._26{width:159.672000px;}
._23{width:402.192000px;}
._24{width:846.156000px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(5,99,193);}
.fc6{color:rgb(85,85,85);}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:81.360000px;}
.fs2{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.ya{bottom:-17.100000px;}
.y0{bottom:0.000000px;}
.ycf{bottom:3.960000px;}
.yc5{bottom:5.220000px;}
.ybf{bottom:5.400000px;}
.y9{bottom:7.920000px;}
.yc1{bottom:16.380000px;}
.y7{bottom:20.160000px;}
.yd2{bottom:24.660000px;}
.yc4{bottom:27.360000px;}
.yc2{bottom:27.540000px;}
.y8{bottom:31.680000px;}
.ye7{bottom:48.420000px;}
.yc9{bottom:49.500000px;}
.ye3{bottom:52.200000px;}
.yf1{bottom:52.230000px;}
.y6{bottom:58.896000px;}
.y102{bottom:76.140000px;}
.y5{bottom:79.956000px;}
.y10a{bottom:100.305000px;}
.ydf{bottom:111.816000px;}
.y12a{bottom:113.976000px;}
.y145{bottom:115.776000px;}
.y61{bottom:116.316000px;}
.ybd{bottom:119.736000px;}
.y66{bottom:125.136000px;}
.y34{bottom:125.676000px;}
.yde{bottom:132.516000px;}
.y129{bottom:134.676000px;}
.y60{bottom:137.016000px;}
.ybc{bottom:140.436000px;}
.y65{bottom:145.836000px;}
.y33{bottom:146.376000px;}
.y144{bottom:148.536000px;}
.ya4{bottom:149.076000px;}
.y158{bottom:152.310000px;}
.ydd{bottom:153.210000px;}
.y128{bottom:155.370000px;}
.y5f{bottom:157.710000px;}
.ybb{bottom:161.130000px;}
.y8a{bottom:166.530000px;}
.y32{bottom:167.070000px;}
.y143{bottom:169.230000px;}
.ya3{bottom:169.770000px;}
.y157{bottom:173.010000px;}
.ydc{bottom:173.910000px;}
.y5e{bottom:178.410000px;}
.yba{bottom:181.830000px;}
.y89{bottom:187.230000px;}
.y31{bottom:187.770000px;}
.y127{bottom:187.950000px;}
.y142{bottom:189.930000px;}
.ya2{bottom:190.470000px;}
.y156{bottom:193.710000px;}
.ydb{bottom:194.610000px;}
.y5d{bottom:199.110000px;}
.yb9{bottom:202.530000px;}
.y88{bottom:207.930000px;}
.y30{bottom:208.470000px;}
.y126{bottom:208.650000px;}
.y141{bottom:210.630000px;}
.ya1{bottom:211.170000px;}
.y155{bottom:214.410000px;}
.yda{bottom:215.310000px;}
.y5c{bottom:219.810000px;}
.yb8{bottom:223.230000px;}
.y87{bottom:228.630000px;}
.y2f{bottom:229.170000px;}
.y125{bottom:229.350000px;}
.y140{bottom:231.330000px;}
.ya0{bottom:231.870000px;}
.y154{bottom:235.110000px;}
.yd9{bottom:236.010000px;}
.y5b{bottom:240.510000px;}
.yb7{bottom:243.930000px;}
.y86{bottom:249.330000px;}
.y2e{bottom:249.870000px;}
.y124{bottom:250.050000px;}
.y13f{bottom:252.030000px;}
.y9f{bottom:252.570000px;}
.y153{bottom:255.810000px;}
.yd8{bottom:256.170000px;}
.y5a{bottom:261.210000px;}
.yb6{bottom:264.630000px;}
.y85{bottom:270.030000px;}
.y2d{bottom:270.570000px;}
.y123{bottom:270.750000px;}
.y13e{bottom:272.730000px;}
.y9e{bottom:273.270000px;}
.y152{bottom:276.510000px;}
.yd7{bottom:276.870000px;}
.y59{bottom:281.910000px;}
.yb5{bottom:285.330000px;}
.y84{bottom:290.730000px;}
.y2c{bottom:291.270000px;}
.y122{bottom:291.450000px;}
.y13d{bottom:293.430000px;}
.y9d{bottom:293.970000px;}
.y151{bottom:297.210000px;}
.yd6{bottom:297.570000px;}
.yff{bottom:300.090000px;}
.y58{bottom:302.610000px;}
.yb4{bottom:306.030000px;}
.y83{bottom:311.475000px;}
.y2b{bottom:312.015000px;}
.y121{bottom:312.195000px;}
.y13c{bottom:314.175000px;}
.y9c{bottom:314.715000px;}
.y150{bottom:317.955000px;}
.yd5{bottom:318.315000px;}
.yfe{bottom:320.835000px;}
.y57{bottom:323.355000px;}
.yb3{bottom:326.775000px;}
.y82{bottom:332.175000px;}
.y2a{bottom:332.715000px;}
.y120{bottom:332.895000px;}
.y13b{bottom:334.875000px;}
.y9b{bottom:335.415000px;}
.y14f{bottom:338.655000px;}
.yd4{bottom:339.015000px;}
.yfd{bottom:341.535000px;}
.y56{bottom:344.055000px;}
.yb2{bottom:347.475000px;}
.y81{bottom:352.875000px;}
.y13a{bottom:355.575000px;}
.y9a{bottom:356.115000px;}
.y14e{bottom:359.355000px;}
.yd3{bottom:359.715000px;}
.yfc{bottom:362.235000px;}
.y55{bottom:364.755000px;}
.y29{bottom:365.295000px;}
.y11f{bottom:365.655000px;}
.yb1{bottom:368.175000px;}
.y139{bottom:376.275000px;}
.y99{bottom:376.815000px;}
.y14d{bottom:380.055000px;}
.yfb{bottom:382.935000px;}
.yd0{bottom:383.655000px;}
.y54{bottom:385.455000px;}
.y28{bottom:385.995000px;}
.y11e{bottom:386.355000px;}
.yb0{bottom:388.875000px;}
.y138{bottom:396.975000px;}
.y98{bottom:397.515000px;}
.y14c{bottom:400.755000px;}
.yfa{bottom:403.635000px;}
.y53{bottom:406.155000px;}
.y27{bottom:406.695000px;}
.y11d{bottom:407.055000px;}
.yaf{bottom:409.575000px;}
.y97{bottom:418.215000px;}
.y14b{bottom:421.455000px;}
.yf9{bottom:424.335000px;}
.y52{bottom:426.855000px;}
.y26{bottom:427.395000px;}
.y11c{bottom:427.755000px;}
.yd1{bottom:428.475000px;}
.yae{bottom:430.275000px;}
.y137{bottom:438.555000px;}
.y80{bottom:438.915000px;}
.y14a{bottom:442.155000px;}
.yf8{bottom:445.035000px;}
.y51{bottom:447.555000px;}
.y25{bottom:448.095000px;}
.y11b{bottom:448.455000px;}
.y96{bottom:450.975000px;}
.y136{bottom:459.255000px;}
.y7f{bottom:459.615000px;}
.y149{bottom:462.855000px;}
.yf7{bottom:465.735000px;}
.y50{bottom:468.255000px;}
.y24{bottom:468.795000px;}
.y11a{bottom:469.155000px;}
.y95{bottom:471.675000px;}
.yce{bottom:473.295000px;}
.y135{bottom:479.955000px;}
.y7e{bottom:480.315000px;}
.y148{bottom:483.555000px;}
.y159{bottom:484.635000px;}
.yf6{bottom:486.435000px;}
.y4f{bottom:488.955000px;}
.y23{bottom:489.495000px;}
.y119{bottom:489.855000px;}
.y94{bottom:492.375000px;}
.ycd{bottom:497.955000px;}
.y134{bottom:500.655000px;}
.y7d{bottom:501.015000px;}
.y147{bottom:504.255000px;}
.yf5{bottom:507.135000px;}
.y4e{bottom:509.655000px;}
.y22{bottom:510.195000px;}
.y118{bottom:510.555000px;}
.y93{bottom:513.075000px;}
.ycc{bottom:518.655000px;}
.y133{bottom:521.355000px;}
.y7c{bottom:521.715000px;}
.y146{bottom:524.955000px;}
.yf4{bottom:527.835000px;}
.y21{bottom:530.895000px;}
.y92{bottom:533.775000px;}
.ycb{bottom:539.355000px;}
.y132{bottom:542.055000px;}
.y4d{bottom:542.415000px;}
.y117{bottom:543.135000px;}
.yad{bottom:545.655000px;}
.yf0{bottom:547.815000px;}
.y20{bottom:551.595000px;}
.y91{bottom:554.475000px;}
.yca{bottom:560.055000px;}
.y131{bottom:562.785000px;}
.y4c{bottom:563.145000px;}
.y116{bottom:563.865000px;}
.yac{bottom:566.385000px;}
.yf3{bottom:571.965000px;}
.y1f{bottom:572.325000px;}
.y90{bottom:575.205000px;}
.yc8{bottom:578.265000px;}
.y130{bottom:583.485000px;}
.y4b{bottom:583.845000px;}
.y115{bottom:584.565000px;}
.yab{bottom:587.085000px;}
.y1e{bottom:593.025000px;}
.y7b{bottom:595.905000px;}
.yf2{bottom:596.085000px;}
.y12f{bottom:604.185000px;}
.y4a{bottom:604.545000px;}
.y114{bottom:605.265000px;}
.yaa{bottom:607.785000px;}
.y1d{bottom:613.725000px;}
.y7a{bottom:616.605000px;}
.yed{bottom:618.225000px;}
.y49{bottom:625.245000px;}
.y113{bottom:625.965000px;}
.ya9{bottom:628.485000px;}
.y1c{bottom:634.425000px;}
.y79{bottom:637.305000px;}
.yef{bottom:640.545000px;}
.y48{bottom:645.945000px;}
.yc7{bottom:646.125000px;}
.y112{bottom:646.665000px;}
.ya8{bottom:649.185000px;}
.y1b{bottom:655.125000px;}
.y78{bottom:658.005000px;}
.yee{bottom:662.685000px;}
.y47{bottom:666.645000px;}
.y111{bottom:667.365000px;}
.ya7{bottom:669.885000px;}
.y1a{bottom:675.825000px;}
.y77{bottom:678.705000px;}
.yea{bottom:684.825000px;}
.y46{bottom:687.345000px;}
.y110{bottom:688.065000px;}
.ya6{bottom:690.585000px;}
.yc6{bottom:691.665000px;}
.y19{bottom:696.525000px;}
.y76{bottom:699.405000px;}
.yec{bottom:706.965000px;}
.y45{bottom:708.045000px;}
.y10f{bottom:708.765000px;}
.ya5{bottom:711.285000px;}
.y18{bottom:717.225000px;}
.y8f{bottom:719.925000px;}
.y44{bottom:728.745000px;}
.y109{bottom:728.925000px;}
.yeb{bottom:729.285000px;}
.y75{bottom:731.985000px;}
.yc3{bottom:737.385000px;}
.y17{bottom:737.925000px;}
.y8e{bottom:740.625000px;}
.y43{bottom:749.445000px;}
.ye6{bottom:751.425000px;}
.y74{bottom:752.685000px;}
.y10e{bottom:753.045000px;}
.y16{bottom:758.625000px;}
.y8d{bottom:761.325000px;}
.y42{bottom:770.145000px;}
.y73{bottom:773.385000px;}
.ye9{bottom:773.565000px;}
.y10d{bottom:777.165000px;}
.y15{bottom:779.325000px;}
.y8c{bottom:782.025000px;}
.yc0{bottom:782.925000px;}
.y41{bottom:790.845000px;}
.y72{bottom:794.085000px;}
.ye8{bottom:795.885000px;}
.y14{bottom:800.025000px;}
.y10c{bottom:801.105000px;}
.y8b{bottom:802.725000px;}
.y40{bottom:811.590000px;}
.y71{bottom:814.830000px;}
.ye2{bottom:818.070000px;}
.y13{bottom:820.770000px;}
.y12e{bottom:823.470000px;}
.y10b{bottom:825.270000px;}
.ybe{bottom:828.690000px;}
.y3f{bottom:832.290000px;}
.y70{bottom:835.530000px;}
.y12{bottom:841.470000px;}
.ye5{bottom:842.190000px;}
.y12d{bottom:844.170000px;}
.y107{bottom:849.390000px;}
.y3e{bottom:852.990000px;}
.y6f{bottom:856.230000px;}
.y11{bottom:862.170000px;}
.y12c{bottom:864.870000px;}
.ye4{bottom:866.310000px;}
.y108{bottom:873.510000px;}
.y3d{bottom:873.690000px;}
.y6e{bottom:876.930000px;}
.y10{bottom:882.870000px;}
.y12b{bottom:885.570000px;}
.ye1{bottom:890.250000px;}
.y64{bottom:894.390000px;}
.y6d{bottom:897.630000px;}
.yf{bottom:903.570000px;}
.y3c{bottom:906.270000px;}
.ye0{bottom:914.370000px;}
.y63{bottom:915.090000px;}
.y106{bottom:918.150000px;}
.y6c{bottom:918.330000px;}
.ye{bottom:924.270000px;}
.y3b{bottom:926.970000px;}
.y6b{bottom:939.030000px;}
.y101{bottom:942.270000px;}
.yd{bottom:944.970000px;}
.y3a{bottom:947.670000px;}
.y6a{bottom:959.730000px;}
.yc{bottom:965.670000px;}
.y105{bottom:966.390000px;}
.y39{bottom:968.370000px;}
.y69{bottom:980.430000px;}
.yb{bottom:986.370000px;}
.y38{bottom:989.070000px;}
.y104{bottom:990.510000px;}
.y68{bottom:1001.130000px;}
.y37{bottom:1009.770000px;}
.y103{bottom:1014.450000px;}
.y67{bottom:1021.830000px;}
.y4{bottom:1027.950000px;}
.y36{bottom:1030.470000px;}
.y100{bottom:1038.570000px;}
.y62{bottom:1042.530000px;}
.y35{bottom:1063.260000px;}
.y3{bottom:1070.460000px;}
.y2{bottom:1094.040000px;}
.y1{bottom:1115.100000px;}
.hf{height:20.700000px;}
.h12{height:20.736000px;}
.hb{height:22.140000px;}
.h11{height:41.400000px;}
.hd{height:44.100000px;}
.hc{height:44.316000px;}
.h7{height:49.500000px;}
.h2{height:50.800781px;}
.h1a{height:50.941406px;}
.h6{height:54.000000px;}
.h9{height:54.316406px;}
.h8{height:58.320000px;}
.h1{height:59.436914px;}
.h4{height:64.546875px;}
.h15{height:65.160000px;}
.h14{height:65.196000px;}
.h18{height:65.520000px;}
.h5{height:65.884219px;}
.he{height:66.240000px;}
.h13{height:68.940000px;}
.h16{height:68.976000px;}
.ha{height:70.606406px;}
.h3{height:75.519844px;}
.h10{height:86.220000px;}
.h17{height:92.880000px;}
.h19{height:117.036000px;}
.h0{height:1188.000000px;}
.w2{width:47.520000px;}
.w15{width:53.280000px;}
.w14{width:74.520000px;}
.w11{width:74.556000px;}
.w7{width:74.916000px;}
.w12{width:75.420000px;}
.w13{width:75.456000px;}
.wd{width:75.816000px;}
.we{width:78.480000px;}
.w8{width:79.200000px;}
.wa{width:80.496000px;}
.w9{width:81.720000px;}
.w23{width:86.940000px;}
.w22{width:88.200000px;}
.w18{width:89.100000px;}
.w6{width:104.580000px;}
.w20{width:104.760000px;}
.w21{width:104.796000px;}
.w1e{width:105.660000px;}
.w1f{width:105.696000px;}
.wb{width:107.100000px;}
.wc{width:155.730000px;}
.w1c{width:175.140000px;}
.w1d{width:211.935000px;}
.w3{width:220.890000px;}
.w1a{width:233.130000px;}
.w16{width:274.170000px;}
.w10{width:327.450000px;}
.w19{width:373.755000px;}
.w4{width:449.535000px;}
.w5{width:697.605000px;}
.w17{width:702.465000px;}
.w1b{width:714.525000px;}
.wf{width:715.605000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:4.500000px;}
.x12{left:7.380000px;}
.x6{left:10.799986px;}
.x7{left:23.219986px;}
.x5{left:108.035986px;}
.x16{left:109.656000px;}
.x11{left:117.576000px;}
.x9{left:162.749986px;}
.x13{left:166.530000px;}
.x1{left:176.249986px;}
.x23{left:198.750000px;}
.x17{left:217.650000px;}
.xc{left:231.509986px;}
.x3{left:236.549986px;}
.xb{left:239.969986px;}
.xf{left:255.449986px;}
.xa{left:258.509986px;}
.x10{left:270.389986px;}
.x2{left:284.249986px;}
.x25{left:288.210000px;}
.x18{left:294.015000px;}
.xe{left:329.474986px;}
.x19{left:374.655000px;}
.x14{left:388.875000px;}
.xd{left:395.354986px;}
.x1e{left:440.535000px;}
.x1a{left:457.815000px;}
.x8{left:459.074986px;}
.x26{left:501.765000px;}
.x1f{left:516.525000px;}
.x1b{left:539.745000px;}
.x24{left:575.745000px;}
.x20{left:593.565000px;}
.x27{left:608.865000px;}
.x1c{left:648.285000px;}
.x21{left:670.425000px;}
.x28{left:716.190000px;}
.x1d{left:725.550000px;}
.x22{left:747.510000px;}
.x4{left:793.409986px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls5{letter-spacing:-0.406933pt;}
.ls11{letter-spacing:-0.400533pt;}
.lse{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.040320pt;}
.ls2{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls22{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.227733pt;}
.ls10{letter-spacing:0.239467pt;}
.ls0{letter-spacing:0.303360pt;}
.lsb{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.426667pt;}
.ls21{letter-spacing:0.448000pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:1.280000pt;}
.ls1e{letter-spacing:2.560000pt;}
.ls1a{letter-spacing:4.480000pt;}
.ls8{letter-spacing:6.400000pt;}
.ls1c{letter-spacing:7.040000pt;}
.ls20{letter-spacing:8.320000pt;}
.ls1{letter-spacing:9.600000pt;}
.ls14{letter-spacing:10.240000pt;}
.ls1f{letter-spacing:10.880000pt;}
.ls7{letter-spacing:13.440000pt;}
.ls13{letter-spacing:18.720000pt;}
.ls16{letter-spacing:20.480000pt;}
.ls15{letter-spacing:31.338667pt;}
.ls9{letter-spacing:42.218667pt;}
.ls12{letter-spacing:47.498667pt;}
.ls17{letter-spacing:120.298667pt;}
.lsa{letter-spacing:124.160000pt;}
.ls18{letter-spacing:126.698667pt;}
.ws1{word-spacing:-18.720000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws2{word-spacing:-13.534613pt;}
.ws8{word-spacing:-10.959467pt;}
.wsa{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.679680pt;}
.ws9{word-spacing:-10.319467pt;}
.ws3{word-spacing:0.000000pt;}
._13{margin-left:-3.968000pt;}
._14{margin-left:-2.986880pt;}
._0{margin-left:-1.402880pt;}
._1{width:0.944427pt;}
._6{width:1.904000pt;}
._5{width:3.154560pt;}
._12{width:4.429653pt;}
._11{width:5.701333pt;}
._7{width:7.104000pt;}
._19{width:8.112853pt;}
._c{width:9.013760pt;}
._8{width:10.304000pt;}
._9{width:11.264000pt;}
._10{width:12.928000pt;}
._d{width:14.400000pt;}
._a{width:17.195093pt;}
._e{width:18.944000pt;}
._f{width:20.544000pt;}
._15{width:21.450453pt;}
._b{width:22.464000pt;}
._1d{width:24.314880pt;}
._16{width:25.600000pt;}
._17{width:26.575573pt;}
._29{width:28.016427pt;}
._25{width:29.184000pt;}
._3{width:30.415573pt;}
._21{width:32.896000pt;}
._1a{width:34.240000pt;}
._1b{width:35.471573pt;}
._4{width:72.195627pt;}
._1c{width:79.978667pt;}
._18{width:95.978667pt;}
._2{width:97.226667pt;}
._27{width:106.090667pt;}
._28{width:110.186667pt;}
._22{width:119.168000pt;}
._1e{width:123.583787pt;}
._20{width:124.672000pt;}
._1f{width:139.434453pt;}
._26{width:141.930667pt;}
._23{width:357.504000pt;}
._24{width:752.138667pt;}
.fs6{font-size:42.880000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:72.320000pt;}
.fs2{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.ya{bottom:-15.200000pt;}
.y0{bottom:0.000000pt;}
.ycf{bottom:3.520000pt;}
.yc5{bottom:4.640000pt;}
.ybf{bottom:4.800000pt;}
.y9{bottom:7.040000pt;}
.yc1{bottom:14.560000pt;}
.y7{bottom:17.920000pt;}
.yd2{bottom:21.920000pt;}
.yc4{bottom:24.320000pt;}
.yc2{bottom:24.480000pt;}
.y8{bottom:28.160000pt;}
.ye7{bottom:43.040000pt;}
.yc9{bottom:44.000000pt;}
.ye3{bottom:46.400000pt;}
.yf1{bottom:46.426667pt;}
.y6{bottom:52.352000pt;}
.y102{bottom:67.680000pt;}
.y5{bottom:71.072000pt;}
.y10a{bottom:89.160000pt;}
.ydf{bottom:99.392000pt;}
.y12a{bottom:101.312000pt;}
.y145{bottom:102.912000pt;}
.y61{bottom:103.392000pt;}
.ybd{bottom:106.432000pt;}
.y66{bottom:111.232000pt;}
.y34{bottom:111.712000pt;}
.yde{bottom:117.792000pt;}
.y129{bottom:119.712000pt;}
.y60{bottom:121.792000pt;}
.ybc{bottom:124.832000pt;}
.y65{bottom:129.632000pt;}
.y33{bottom:130.112000pt;}
.y144{bottom:132.032000pt;}
.ya4{bottom:132.512000pt;}
.y158{bottom:135.386667pt;}
.ydd{bottom:136.186667pt;}
.y128{bottom:138.106667pt;}
.y5f{bottom:140.186667pt;}
.ybb{bottom:143.226667pt;}
.y8a{bottom:148.026667pt;}
.y32{bottom:148.506667pt;}
.y143{bottom:150.426667pt;}
.ya3{bottom:150.906667pt;}
.y157{bottom:153.786667pt;}
.ydc{bottom:154.586667pt;}
.y5e{bottom:158.586667pt;}
.yba{bottom:161.626667pt;}
.y89{bottom:166.426667pt;}
.y31{bottom:166.906667pt;}
.y127{bottom:167.066667pt;}
.y142{bottom:168.826667pt;}
.ya2{bottom:169.306667pt;}
.y156{bottom:172.186667pt;}
.ydb{bottom:172.986667pt;}
.y5d{bottom:176.986667pt;}
.yb9{bottom:180.026667pt;}
.y88{bottom:184.826667pt;}
.y30{bottom:185.306667pt;}
.y126{bottom:185.466667pt;}
.y141{bottom:187.226667pt;}
.ya1{bottom:187.706667pt;}
.y155{bottom:190.586667pt;}
.yda{bottom:191.386667pt;}
.y5c{bottom:195.386667pt;}
.yb8{bottom:198.426667pt;}
.y87{bottom:203.226667pt;}
.y2f{bottom:203.706667pt;}
.y125{bottom:203.866667pt;}
.y140{bottom:205.626667pt;}
.ya0{bottom:206.106667pt;}
.y154{bottom:208.986667pt;}
.yd9{bottom:209.786667pt;}
.y5b{bottom:213.786667pt;}
.yb7{bottom:216.826667pt;}
.y86{bottom:221.626667pt;}
.y2e{bottom:222.106667pt;}
.y124{bottom:222.266667pt;}
.y13f{bottom:224.026667pt;}
.y9f{bottom:224.506667pt;}
.y153{bottom:227.386667pt;}
.yd8{bottom:227.706667pt;}
.y5a{bottom:232.186667pt;}
.yb6{bottom:235.226667pt;}
.y85{bottom:240.026667pt;}
.y2d{bottom:240.506667pt;}
.y123{bottom:240.666667pt;}
.y13e{bottom:242.426667pt;}
.y9e{bottom:242.906667pt;}
.y152{bottom:245.786667pt;}
.yd7{bottom:246.106667pt;}
.y59{bottom:250.586667pt;}
.yb5{bottom:253.626667pt;}
.y84{bottom:258.426667pt;}
.y2c{bottom:258.906667pt;}
.y122{bottom:259.066667pt;}
.y13d{bottom:260.826667pt;}
.y9d{bottom:261.306667pt;}
.y151{bottom:264.186667pt;}
.yd6{bottom:264.506667pt;}
.yff{bottom:266.746667pt;}
.y58{bottom:268.986667pt;}
.yb4{bottom:272.026667pt;}
.y83{bottom:276.866667pt;}
.y2b{bottom:277.346667pt;}
.y121{bottom:277.506667pt;}
.y13c{bottom:279.266667pt;}
.y9c{bottom:279.746667pt;}
.y150{bottom:282.626667pt;}
.yd5{bottom:282.946667pt;}
.yfe{bottom:285.186667pt;}
.y57{bottom:287.426667pt;}
.yb3{bottom:290.466667pt;}
.y82{bottom:295.266667pt;}
.y2a{bottom:295.746667pt;}
.y120{bottom:295.906667pt;}
.y13b{bottom:297.666667pt;}
.y9b{bottom:298.146667pt;}
.y14f{bottom:301.026667pt;}
.yd4{bottom:301.346667pt;}
.yfd{bottom:303.586667pt;}
.y56{bottom:305.826667pt;}
.yb2{bottom:308.866667pt;}
.y81{bottom:313.666667pt;}
.y13a{bottom:316.066667pt;}
.y9a{bottom:316.546667pt;}
.y14e{bottom:319.426667pt;}
.yd3{bottom:319.746667pt;}
.yfc{bottom:321.986667pt;}
.y55{bottom:324.226667pt;}
.y29{bottom:324.706667pt;}
.y11f{bottom:325.026667pt;}
.yb1{bottom:327.266667pt;}
.y139{bottom:334.466667pt;}
.y99{bottom:334.946667pt;}
.y14d{bottom:337.826667pt;}
.yfb{bottom:340.386667pt;}
.yd0{bottom:341.026667pt;}
.y54{bottom:342.626667pt;}
.y28{bottom:343.106667pt;}
.y11e{bottom:343.426667pt;}
.yb0{bottom:345.666667pt;}
.y138{bottom:352.866667pt;}
.y98{bottom:353.346667pt;}
.y14c{bottom:356.226667pt;}
.yfa{bottom:358.786667pt;}
.y53{bottom:361.026667pt;}
.y27{bottom:361.506667pt;}
.y11d{bottom:361.826667pt;}
.yaf{bottom:364.066667pt;}
.y97{bottom:371.746667pt;}
.y14b{bottom:374.626667pt;}
.yf9{bottom:377.186667pt;}
.y52{bottom:379.426667pt;}
.y26{bottom:379.906667pt;}
.y11c{bottom:380.226667pt;}
.yd1{bottom:380.866667pt;}
.yae{bottom:382.466667pt;}
.y137{bottom:389.826667pt;}
.y80{bottom:390.146667pt;}
.y14a{bottom:393.026667pt;}
.yf8{bottom:395.586667pt;}
.y51{bottom:397.826667pt;}
.y25{bottom:398.306667pt;}
.y11b{bottom:398.626667pt;}
.y96{bottom:400.866667pt;}
.y136{bottom:408.226667pt;}
.y7f{bottom:408.546667pt;}
.y149{bottom:411.426667pt;}
.yf7{bottom:413.986667pt;}
.y50{bottom:416.226667pt;}
.y24{bottom:416.706667pt;}
.y11a{bottom:417.026667pt;}
.y95{bottom:419.266667pt;}
.yce{bottom:420.706667pt;}
.y135{bottom:426.626667pt;}
.y7e{bottom:426.946667pt;}
.y148{bottom:429.826667pt;}
.y159{bottom:430.786667pt;}
.yf6{bottom:432.386667pt;}
.y4f{bottom:434.626667pt;}
.y23{bottom:435.106667pt;}
.y119{bottom:435.426667pt;}
.y94{bottom:437.666667pt;}
.ycd{bottom:442.626667pt;}
.y134{bottom:445.026667pt;}
.y7d{bottom:445.346667pt;}
.y147{bottom:448.226667pt;}
.yf5{bottom:450.786667pt;}
.y4e{bottom:453.026667pt;}
.y22{bottom:453.506667pt;}
.y118{bottom:453.826667pt;}
.y93{bottom:456.066667pt;}
.ycc{bottom:461.026667pt;}
.y133{bottom:463.426667pt;}
.y7c{bottom:463.746667pt;}
.y146{bottom:466.626667pt;}
.yf4{bottom:469.186667pt;}
.y21{bottom:471.906667pt;}
.y92{bottom:474.466667pt;}
.ycb{bottom:479.426667pt;}
.y132{bottom:481.826667pt;}
.y4d{bottom:482.146667pt;}
.y117{bottom:482.786667pt;}
.yad{bottom:485.026667pt;}
.yf0{bottom:486.946667pt;}
.y20{bottom:490.306667pt;}
.y91{bottom:492.866667pt;}
.yca{bottom:497.826667pt;}
.y131{bottom:500.253333pt;}
.y4c{bottom:500.573333pt;}
.y116{bottom:501.213333pt;}
.yac{bottom:503.453333pt;}
.yf3{bottom:508.413333pt;}
.y1f{bottom:508.733333pt;}
.y90{bottom:511.293333pt;}
.yc8{bottom:514.013333pt;}
.y130{bottom:518.653333pt;}
.y4b{bottom:518.973333pt;}
.y115{bottom:519.613333pt;}
.yab{bottom:521.853333pt;}
.y1e{bottom:527.133333pt;}
.y7b{bottom:529.693333pt;}
.yf2{bottom:529.853333pt;}
.y12f{bottom:537.053333pt;}
.y4a{bottom:537.373333pt;}
.y114{bottom:538.013333pt;}
.yaa{bottom:540.253333pt;}
.y1d{bottom:545.533333pt;}
.y7a{bottom:548.093333pt;}
.yed{bottom:549.533333pt;}
.y49{bottom:555.773333pt;}
.y113{bottom:556.413333pt;}
.ya9{bottom:558.653333pt;}
.y1c{bottom:563.933333pt;}
.y79{bottom:566.493333pt;}
.yef{bottom:569.373333pt;}
.y48{bottom:574.173333pt;}
.yc7{bottom:574.333333pt;}
.y112{bottom:574.813333pt;}
.ya8{bottom:577.053333pt;}
.y1b{bottom:582.333333pt;}
.y78{bottom:584.893333pt;}
.yee{bottom:589.053333pt;}
.y47{bottom:592.573333pt;}
.y111{bottom:593.213333pt;}
.ya7{bottom:595.453333pt;}
.y1a{bottom:600.733333pt;}
.y77{bottom:603.293333pt;}
.yea{bottom:608.733333pt;}
.y46{bottom:610.973333pt;}
.y110{bottom:611.613333pt;}
.ya6{bottom:613.853333pt;}
.yc6{bottom:614.813333pt;}
.y19{bottom:619.133333pt;}
.y76{bottom:621.693333pt;}
.yec{bottom:628.413333pt;}
.y45{bottom:629.373333pt;}
.y10f{bottom:630.013333pt;}
.ya5{bottom:632.253333pt;}
.y18{bottom:637.533333pt;}
.y8f{bottom:639.933333pt;}
.y44{bottom:647.773333pt;}
.y109{bottom:647.933333pt;}
.yeb{bottom:648.253333pt;}
.y75{bottom:650.653333pt;}
.yc3{bottom:655.453333pt;}
.y17{bottom:655.933333pt;}
.y8e{bottom:658.333333pt;}
.y43{bottom:666.173333pt;}
.ye6{bottom:667.933333pt;}
.y74{bottom:669.053333pt;}
.y10e{bottom:669.373333pt;}
.y16{bottom:674.333333pt;}
.y8d{bottom:676.733333pt;}
.y42{bottom:684.573333pt;}
.y73{bottom:687.453333pt;}
.ye9{bottom:687.613333pt;}
.y10d{bottom:690.813333pt;}
.y15{bottom:692.733333pt;}
.y8c{bottom:695.133333pt;}
.yc0{bottom:695.933333pt;}
.y41{bottom:702.973333pt;}
.y72{bottom:705.853333pt;}
.ye8{bottom:707.453333pt;}
.y14{bottom:711.133333pt;}
.y10c{bottom:712.093333pt;}
.y8b{bottom:713.533333pt;}
.y40{bottom:721.413333pt;}
.y71{bottom:724.293333pt;}
.ye2{bottom:727.173333pt;}
.y13{bottom:729.573333pt;}
.y12e{bottom:731.973333pt;}
.y10b{bottom:733.573333pt;}
.ybe{bottom:736.613333pt;}
.y3f{bottom:739.813333pt;}
.y70{bottom:742.693333pt;}
.y12{bottom:747.973333pt;}
.ye5{bottom:748.613333pt;}
.y12d{bottom:750.373333pt;}
.y107{bottom:755.013333pt;}
.y3e{bottom:758.213333pt;}
.y6f{bottom:761.093333pt;}
.y11{bottom:766.373333pt;}
.y12c{bottom:768.773333pt;}
.ye4{bottom:770.053333pt;}
.y108{bottom:776.453333pt;}
.y3d{bottom:776.613333pt;}
.y6e{bottom:779.493333pt;}
.y10{bottom:784.773333pt;}
.y12b{bottom:787.173333pt;}
.ye1{bottom:791.333333pt;}
.y64{bottom:795.013333pt;}
.y6d{bottom:797.893333pt;}
.yf{bottom:803.173333pt;}
.y3c{bottom:805.573333pt;}
.ye0{bottom:812.773333pt;}
.y63{bottom:813.413333pt;}
.y106{bottom:816.133333pt;}
.y6c{bottom:816.293333pt;}
.ye{bottom:821.573333pt;}
.y3b{bottom:823.973333pt;}
.y6b{bottom:834.693333pt;}
.y101{bottom:837.573333pt;}
.yd{bottom:839.973333pt;}
.y3a{bottom:842.373333pt;}
.y6a{bottom:853.093333pt;}
.yc{bottom:858.373333pt;}
.y105{bottom:859.013333pt;}
.y39{bottom:860.773333pt;}
.y69{bottom:871.493333pt;}
.yb{bottom:876.773333pt;}
.y38{bottom:879.173333pt;}
.y104{bottom:880.453333pt;}
.y68{bottom:889.893333pt;}
.y37{bottom:897.573333pt;}
.y103{bottom:901.733333pt;}
.y67{bottom:908.293333pt;}
.y4{bottom:913.733333pt;}
.y36{bottom:915.973333pt;}
.y100{bottom:923.173333pt;}
.y62{bottom:926.693333pt;}
.y35{bottom:945.120000pt;}
.y3{bottom:951.520000pt;}
.y2{bottom:972.480000pt;}
.y1{bottom:991.200000pt;}
.hf{height:18.400000pt;}
.h12{height:18.432000pt;}
.hb{height:19.680000pt;}
.h11{height:36.800000pt;}
.hd{height:39.200000pt;}
.hc{height:39.392000pt;}
.h7{height:44.000000pt;}
.h2{height:45.156250pt;}
.h1a{height:45.281250pt;}
.h6{height:48.000000pt;}
.h9{height:48.281250pt;}
.h8{height:51.840000pt;}
.h1{height:52.832812pt;}
.h4{height:57.375000pt;}
.h15{height:57.920000pt;}
.h14{height:57.952000pt;}
.h18{height:58.240000pt;}
.h5{height:58.563750pt;}
.he{height:58.880000pt;}
.h13{height:61.280000pt;}
.h16{height:61.312000pt;}
.ha{height:62.761250pt;}
.h3{height:67.128750pt;}
.h10{height:76.640000pt;}
.h17{height:82.560000pt;}
.h19{height:104.032000pt;}
.h0{height:1056.000000pt;}
.w2{width:42.240000pt;}
.w15{width:47.360000pt;}
.w14{width:66.240000pt;}
.w11{width:66.272000pt;}
.w7{width:66.592000pt;}
.w12{width:67.040000pt;}
.w13{width:67.072000pt;}
.wd{width:67.392000pt;}
.we{width:69.760000pt;}
.w8{width:70.400000pt;}
.wa{width:71.552000pt;}
.w9{width:72.640000pt;}
.w23{width:77.280000pt;}
.w22{width:78.400000pt;}
.w18{width:79.200000pt;}
.w6{width:92.960000pt;}
.w20{width:93.120000pt;}
.w21{width:93.152000pt;}
.w1e{width:93.920000pt;}
.w1f{width:93.952000pt;}
.wb{width:95.200000pt;}
.wc{width:138.426667pt;}
.w1c{width:155.680000pt;}
.w1d{width:188.386667pt;}
.w3{width:196.346667pt;}
.w1a{width:207.226667pt;}
.w16{width:243.706667pt;}
.w10{width:291.066667pt;}
.w19{width:332.226667pt;}
.w4{width:399.586667pt;}
.w5{width:620.093333pt;}
.w17{width:624.413333pt;}
.w1b{width:635.133333pt;}
.wf{width:636.093333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:4.000000pt;}
.x12{left:6.560000pt;}
.x6{left:9.599988pt;}
.x7{left:20.639988pt;}
.x5{left:96.031988pt;}
.x16{left:97.472000pt;}
.x11{left:104.512000pt;}
.x9{left:144.666655pt;}
.x13{left:148.026667pt;}
.x1{left:156.666655pt;}
.x23{left:176.666667pt;}
.x17{left:193.466667pt;}
.xc{left:205.786655pt;}
.x3{left:210.266655pt;}
.xb{left:213.306655pt;}
.xf{left:227.066655pt;}
.xa{left:229.786655pt;}
.x10{left:240.346655pt;}
.x2{left:252.666655pt;}
.x25{left:256.186667pt;}
.x18{left:261.346667pt;}
.xe{left:292.866655pt;}
.x19{left:333.026667pt;}
.x14{left:345.666667pt;}
.xd{left:351.426655pt;}
.x1e{left:391.586667pt;}
.x1a{left:406.946667pt;}
.x8{left:408.066655pt;}
.x26{left:446.013333pt;}
.x1f{left:459.133333pt;}
.x1b{left:479.773333pt;}
.x24{left:511.773333pt;}
.x20{left:527.613333pt;}
.x27{left:541.213333pt;}
.x1c{left:576.253333pt;}
.x21{left:595.933333pt;}
.x28{left:636.613333pt;}
.x1d{left:644.933333pt;}
.x22{left:664.453333pt;}
.x4{left:705.253321pt;}
}




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