
    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_de3363e5523b837f41309324.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_6dd841e6ed0fabf36b030458.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.195000;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_f13cb6ea819f30fb91a917d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.725098;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_64071b06b8059a7e261efdf0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946289;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_75bb217f4ea9ee46621b957b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.944824;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_d92368d3acb737445725da79.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959000;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_f5bf3497f38521aa75e2c65c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_b859d55022a8c362b7af71b9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.731445;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m3{transform:matrix(0.257207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257207,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;}
.v3{vertical-align:24.000000px;}
.v2{vertical-align:27.000000px;}
.v1{vertical-align:44.400000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:1.380000px;}
.ls3{letter-spacing:1.564800px;}
.ls5{letter-spacing:1.680000px;}
.ls6{letter-spacing:2.125200px;}
.ls2{letter-spacing:5.052000px;}
.ls7{letter-spacing:13.525200px;}
.ls0{letter-spacing:565.788000px;}
.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:-23.352000px;}
.ws0{word-spacing:-20.016000px;}
.wsd{word-spacing:-19.740000px;}
.ws6{word-spacing:-18.348000px;}
.ws9{word-spacing:-18.060000px;}
.ws3{word-spacing:-16.680000px;}
.ws2{word-spacing:-16.513200px;}
.ws7{word-spacing:-10.675200px;}
.wsc{word-spacing:-1.890000px;}
.ws12{word-spacing:-0.049200px;}
.ws4{word-spacing:0.000000px;}
.wsb{word-spacing:2.334000px;}
.wsa{word-spacing:16.722000px;}
.ws8{word-spacing:31.110000px;}
.ws5{word-spacing:41.560800px;}
.ws13{word-spacing:70.570970px;}
.ws11{word-spacing:82.140000px;}
.ws10{word-spacing:112.164000px;}
.wsf{word-spacing:258.084000px;}
.wse{word-spacing:349.956000px;}
._17{margin-left:-7.243800px;}
._19{margin-left:-2.451600px;}
._2{margin-left:-1.143000px;}
._6{width:1.128600px;}
._7{width:3.024000px;}
._8{width:4.163400px;}
._5{width:5.702400px;}
._4{width:6.890400px;}
._e{width:7.986000px;}
._3{width:9.266400px;}
._d{width:10.929600px;}
._f{width:12.276000px;}
._10{width:13.398000px;}
._12{width:14.685000px;}
._11{width:15.807000px;}
._29{width:19.826400px;}
._2b{width:21.610800px;}
._2d{width:26.928000px;}
._28{width:29.007000px;}
._13{width:30.756000px;}
._2c{width:31.878000px;}
._2a{width:38.227200px;}
._26{width:43.264970px;}
._14{width:51.240000px;}
._25{width:57.790062px;}
._9{width:61.260000px;}
._15{width:64.744800px;}
._21{width:67.152000px;}
._23{width:79.152000px;}
._1e{width:96.222000px;}
._1f{width:98.082000px;}
._24{width:109.194000px;}
._20{width:127.152000px;}
._1c{width:262.350000px;}
._22{width:272.310000px;}
._1d{width:308.496000px;}
._16{width:342.360000px;}
._18{width:344.278800px;}
._1b{width:400.104000px;}
._1{width:420.180000px;}
._27{width:480.180000px;}
._c{width:513.180000px;}
._a{width:557.988000px;}
._1a{width:599.868000px;}
._b{width:615.300000px;}
._0{width:708.300000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,128);}
.fc3{color:rgb(26,26,26);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:34.800000px;}
.fsb{font-size:38.400000px;}
.fs8{font-size:48.000000px;}
.fsd{font-size:49.200000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:62.400000px;}
.fsa{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:76.200000px;}
.fs9{font-size:82.800000px;}
.fs5{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y107{bottom:20.550000px;}
.y108{bottom:58.650000px;}
.y10f{bottom:80.100000px;}
.y109{bottom:98.100000px;}
.y6f{bottom:106.650000px;}
.y136{bottom:107.100000px;}
.y1a{bottom:107.550000px;}
.y103{bottom:110.100000px;}
.y19{bottom:124.950000px;}
.y6e{bottom:126.000000px;}
.y135{bottom:128.400000px;}
.y102{bottom:133.350000px;}
.y10a{bottom:136.200000px;}
.y155{bottom:138.750000px;}
.y96{bottom:140.400000px;}
.y44{bottom:144.600000px;}
.yef{bottom:146.250000px;}
.y134{bottom:149.700000px;}
.y154{bottom:160.050000px;}
.y18{bottom:164.100000px;}
.y43{bottom:165.900000px;}
.yee{bottom:167.550000px;}
.y95{bottom:168.150000px;}
.y133{bottom:171.000000px;}
.y106{bottom:174.150000px;}
.y10b{bottom:174.450000px;}
.yb3{bottom:175.200000px;}
.y178{bottom:178.050000px;}
.y104{bottom:181.650000px;}
.y42{bottom:187.200000px;}
.y6d{bottom:188.250000px;}
.yed{bottom:188.850000px;}
.y94{bottom:189.450000px;}
.y153{bottom:189.750000px;}
.y132{bottom:192.300000px;}
.y177{bottom:199.350000px;}
.y41{bottom:208.500000px;}
.y6c{bottom:209.550000px;}
.yec{bottom:210.150000px;}
.y152{bottom:211.050000px;}
.y10c{bottom:212.700000px;}
.y131{bottom:213.600000px;}
.yb2{bottom:215.100000px;}
.y93{bottom:217.050000px;}
.y176{bottom:220.650000px;}
.y40{bottom:229.800000px;}
.ycb{bottom:230.100000px;}
.y6b{bottom:230.850000px;}
.y151{bottom:232.350000px;}
.y130{bottom:234.900000px;}
.yeb{bottom:242.100000px;}
.y92{bottom:244.800000px;}
.y175{bottom:250.050000px;}
.y3f{bottom:251.100000px;}
.yca{bottom:251.400000px;}
.y10d{bottom:252.000000px;}
.y6a{bottom:252.150000px;}
.y105{bottom:252.750000px;}
.yb1{bottom:255.000000px;}
.y150{bottom:262.200000px;}
.yea{bottom:263.400000px;}
.y174{bottom:269.700000px;}
.y12f{bottom:270.300000px;}
.y3e{bottom:272.400000px;}
.yc9{bottom:272.700000px;}
.y69{bottom:273.450000px;}
.y14f{bottom:283.500000px;}
.ye9{bottom:284.700000px;}
.y10e{bottom:290.250000px;}
.y173{bottom:291.000000px;}
.y3d{bottom:293.700000px;}
.yc8{bottom:294.000000px;}
.y68{bottom:294.750000px;}
.yb0{bottom:294.900000px;}
.ye8{bottom:306.000000px;}
.y14e{bottom:313.200000px;}
.y3c{bottom:315.000000px;}
.yc7{bottom:315.300000px;}
.y67{bottom:316.050000px;}
.y172{bottom:320.250000px;}
.y91{bottom:321.450000px;}
.y12e{bottom:327.600000px;}
.y14d{bottom:334.500000px;}
.yaf{bottom:334.800000px;}
.y3b{bottom:336.300000px;}
.ye7{bottom:337.950000px;}
.y171{bottom:339.900000px;}
.y66{bottom:348.000000px;}
.y12d{bottom:348.900000px;}
.y90{bottom:349.050000px;}
.y3a{bottom:357.600000px;}
.ye6{bottom:359.250000px;}
.y170{bottom:361.200000px;}
.y14c{bottom:364.350000px;}
.y65{bottom:369.300000px;}
.y12c{bottom:370.200000px;}
.y8f{bottom:370.350000px;}
.yae{bottom:374.700000px;}
.y39{bottom:378.900000px;}
.ye5{bottom:380.550000px;}
.y16f{bottom:382.500000px;}
.yc6{bottom:383.400000px;}
.y64{bottom:390.600000px;}
.y12b{bottom:391.500000px;}
.y14b{bottom:394.050000px;}
.y8e{bottom:398.100000px;}
.y38{bottom:400.200000px;}
.ye4{bottom:401.850000px;}
.y16e{bottom:403.800000px;}
.yad{bottom:408.600000px;}
.y63{bottom:411.900000px;}
.y12a{bottom:412.800000px;}
.y14a{bottom:415.350000px;}
.y37{bottom:421.500000px;}
.ye3{bottom:423.150000px;}
.yc5{bottom:423.300000px;}
.y8d{bottom:425.700000px;}
.y62{bottom:433.200000px;}
.y129{bottom:434.100000px;}
.yac{bottom:436.650000px;}
.ye2{bottom:444.450000px;}
.y149{bottom:445.200000px;}
.y17{bottom:445.650000px;}
.y8c{bottom:447.000000px;}
.y16d{bottom:452.850000px;}
.y36{bottom:453.450000px;}
.yab{bottom:454.050000px;}
.y61{bottom:454.500000px;}
.y128{bottom:455.400000px;}
.yc4{bottom:463.200000px;}
.ye1{bottom:465.750000px;}
.y8b{bottom:468.300000px;}
.yaa{bottom:471.450000px;}
.y35{bottom:474.750000px;}
.y148{bottom:474.900000px;}
.y60{bottom:475.800000px;}
.y127{bottom:476.700000px;}
.y16c{bottom:482.550000px;}
.ye0{bottom:487.050000px;}
.y8a{bottom:489.600000px;}
.y34{bottom:496.050000px;}
.y147{bottom:496.200000px;}
.y126{bottom:498.000000px;}
.yc3{bottom:503.100000px;}
.ya9{bottom:503.700000px;}
.y16b{bottom:503.850000px;}
.y5f{bottom:507.750000px;}
.ydf{bottom:508.350000px;}
.y89{bottom:510.900000px;}
.y33{bottom:517.350000px;}
.y146{bottom:525.600000px;}
.y5e{bottom:529.050000px;}
.yde{bottom:529.650000px;}
.y125{bottom:529.950000px;}
.y88{bottom:532.200000px;}
.y16a{bottom:533.700000px;}
.y16{bottom:535.050000px;}
.y32{bottom:538.650000px;}
.yc2{bottom:543.000000px;}
.y145{bottom:545.250000px;}
.y5d{bottom:550.350000px;}
.ydd{bottom:550.950000px;}
.y124{bottom:551.250000px;}
.y87{bottom:553.500000px;}
.y15{bottom:554.250000px;}
.ya8{bottom:556.800000px;}
.y31{bottom:559.950000px;}
.y169{bottom:563.400000px;}
.y144{bottom:566.550000px;}
.y101{bottom:567.000000px;}
.y5c{bottom:571.650000px;}
.ydc{bottom:572.250000px;}
.y123{bottom:572.550000px;}
.y14{bottom:573.450000px;}
.y86{bottom:574.800000px;}
.y30{bottom:581.250000px;}
.yc1{bottom:582.900000px;}
.y168{bottom:584.700000px;}
.ya7{bottom:587.100000px;}
.y13{bottom:592.650000px;}
.y5b{bottom:592.950000px;}
.ydb{bottom:593.550000px;}
.y122{bottom:593.850000px;}
.y100{bottom:595.800000px;}
.y143{bottom:596.250000px;}
.y2f{bottom:602.550000px;}
.ya6{bottom:606.150000px;}
.y85{bottom:606.750000px;}
.y12{bottom:611.850000px;}
.yff{bottom:613.200000px;}
.y5a{bottom:614.250000px;}
.y167{bottom:614.550000px;}
.yda{bottom:614.850000px;}
.y121{bottom:615.150000px;}
.y142{bottom:617.550000px;}
.yc0{bottom:622.800000px;}
.y84{bottom:628.050000px;}
.yfe{bottom:630.600000px;}
.y11{bottom:631.050000px;}
.y2e{bottom:634.500000px;}
.y59{bottom:635.550000px;}
.y166{bottom:635.850000px;}
.yd9{bottom:636.150000px;}
.ya5{bottom:636.450000px;}
.y141{bottom:646.950000px;}
.y120{bottom:647.100000px;}
.y83{bottom:649.350000px;}
.y10{bottom:650.250000px;}
.y2d{bottom:655.800000px;}
.y58{bottom:656.850000px;}
.yd8{bottom:657.450000px;}
.yfd{bottom:659.400000px;}
.y165{bottom:665.100000px;}
.y140{bottom:666.150000px;}
.ya4{bottom:668.400000px;}
.yf{bottom:669.450000px;}
.y82{bottom:670.650000px;}
.yfc{bottom:676.800000px;}
.y2c{bottom:677.100000px;}
.y57{bottom:678.150000px;}
.yd7{bottom:678.750000px;}
.y164{bottom:684.750000px;}
.ybf{bottom:684.900000px;}
.y13f{bottom:685.350000px;}
.y11f{bottom:689.700000px;}
.y81{bottom:691.950000px;}
.yfb{bottom:694.200000px;}
.y2b{bottom:698.400000px;}
.ye{bottom:699.300000px;}
.y56{bottom:699.450000px;}
.yd6{bottom:700.050000px;}
.ybe{bottom:702.300000px;}
.y13e{bottom:704.550000px;}
.y163{bottom:706.050000px;}
.y11e{bottom:711.000000px;}
.y80{bottom:713.250000px;}
.yd{bottom:718.500000px;}
.y2a{bottom:719.700000px;}
.yfa{bottom:723.000000px;}
.y13d{bottom:724.200000px;}
.ya3{bottom:725.700000px;}
.y55{bottom:731.400000px;}
.y11d{bottom:732.300000px;}
.y7f{bottom:734.550000px;}
.yd5{bottom:735.150000px;}
.y162{bottom:735.900000px;}
.yc{bottom:737.700000px;}
.y29{bottom:741.000000px;}
.ya2{bottom:744.750000px;}
.y13c{bottom:745.500000px;}
.y54{bottom:752.700000px;}
.y11c{bottom:753.600000px;}
.y7e{bottom:755.850000px;}
.yb{bottom:756.900000px;}
.y161{bottom:757.200000px;}
.y28{bottom:762.300000px;}
.yf9{bottom:763.350000px;}
.y53{bottom:774.000000px;}
.ya1{bottom:775.050000px;}
.y13b{bottom:775.200000px;}
.ya{bottom:776.100000px;}
.y7d{bottom:777.150000px;}
.yf8{bottom:784.650000px;}
.y160{bottom:786.450000px;}
.ybd{bottom:789.150000px;}
.y11b{bottom:793.200000px;}
.y27{bottom:794.250000px;}
.y9{bottom:795.300000px;}
.y13a{bottom:796.500000px;}
.y7c{bottom:798.450000px;}
.ya0{bottom:805.350000px;}
.yf7{bottom:805.950000px;}
.y15f{bottom:806.100000px;}
.yd4{bottom:806.700000px;}
.y8{bottom:814.500000px;}
.y26{bottom:815.550000px;}
.y52{bottom:816.600000px;}
.y9f{bottom:824.400000px;}
.y139{bottom:826.350000px;}
.yf6{bottom:827.250000px;}
.y15e{bottom:827.400000px;}
.ybc{bottom:830.100000px;}
.y7b{bottom:830.400000px;}
.y11a{bottom:836.250000px;}
.y25{bottom:836.850000px;}
.y51{bottom:837.900000px;}
.y138{bottom:847.650000px;}
.yf5{bottom:848.550000px;}
.y15d{bottom:848.700000px;}
.yd3{bottom:850.050000px;}
.y7{bottom:850.350000px;}
.y7a{bottom:851.700000px;}
.y9e{bottom:854.700000px;}
.y119{bottom:857.550000px;}
.y24{bottom:858.150000px;}
.y50{bottom:859.200000px;}
.ybb{bottom:862.050000px;}
.yf4{bottom:869.850000px;}
.y15c{bottom:870.000000px;}
.yd2{bottom:871.350000px;}
.y9d{bottom:872.100000px;}
.y79{bottom:873.000000px;}
.y118{bottom:878.850000px;}
.y23{bottom:879.450000px;}
.y4f{bottom:880.500000px;}
.y137{bottom:887.100000px;}
.y9c{bottom:889.500000px;}
.yf3{bottom:891.150000px;}
.yba{bottom:892.350000px;}
.yd1{bottom:892.650000px;}
.y78{bottom:894.300000px;}
.y15b{bottom:899.850000px;}
.y117{bottom:900.150000px;}
.y22{bottom:900.750000px;}
.y4e{bottom:901.800000px;}
.y6{bottom:902.100000px;}
.yf2{bottom:912.450000px;}
.yd0{bottom:913.950000px;}
.y77{bottom:915.600000px;}
.y15a{bottom:921.150000px;}
.y116{bottom:921.450000px;}
.y9b{bottom:921.750000px;}
.y21{bottom:922.050000px;}
.y4d{bottom:923.100000px;}
.yb9{bottom:924.300000px;}
.y5{bottom:925.350000px;}
.yf1{bottom:933.750000px;}
.ycf{bottom:935.250000px;}
.y76{bottom:936.900000px;}
.y20{bottom:943.350000px;}
.y4c{bottom:944.400000px;}
.y159{bottom:950.850000px;}
.y115{bottom:953.400000px;}
.yb8{bottom:954.600000px;}
.yf0{bottom:955.050000px;}
.yce{bottom:956.550000px;}
.y1f{bottom:964.650000px;}
.y4b{bottom:965.700000px;}
.y75{bottom:968.850000px;}
.y4{bottom:970.050000px;}
.y114{bottom:974.700000px;}
.y9a{bottom:976.350000px;}
.ycd{bottom:977.850000px;}
.y158{bottom:980.250000px;}
.y1e{bottom:985.950000px;}
.yb7{bottom:986.550000px;}
.y4a{bottom:987.000000px;}
.y74{bottom:990.150000px;}
.y113{bottom:996.000000px;}
.y99{bottom:997.650000px;}
.y157{bottom:999.900000px;}
.y1d{bottom:1007.250000px;}
.y49{bottom:1008.300000px;}
.y73{bottom:1011.450000px;}
.yb6{bottom:1016.850000px;}
.y112{bottom:1017.300000px;}
.ycc{bottom:1017.600000px;}
.y98{bottom:1018.950000px;}
.y156{bottom:1021.200000px;}
.y3{bottom:1027.200000px;}
.y1c{bottom:1028.550000px;}
.y48{bottom:1029.600000px;}
.y72{bottom:1032.750000px;}
.yb5{bottom:1034.250000px;}
.y111{bottom:1038.600000px;}
.y97{bottom:1040.250000px;}
.y47{bottom:1050.900000px;}
.y71{bottom:1054.050000px;}
.y2{bottom:1062.000000px;}
.y1b{bottom:1063.950000px;}
.yb4{bottom:1066.500000px;}
.y46{bottom:1072.200000px;}
.y110{bottom:1078.200000px;}
.y70{bottom:1089.450000px;}
.y45{bottom:1093.500000px;}
.y1{bottom:1141.800000px;}
.h12{height:35.362500px;}
.h9{height:40.014000px;}
.he{height:44.238281px;}
.h1{height:44.460000px;}
.h10{height:45.826172px;}
.hd{height:49.658203px;}
.hf{height:52.758000px;}
.h5{height:53.352000px;}
.h7{height:58.033800px;}
.h8{height:58.620000px;}
.ha{height:61.354800px;}
.h6{height:62.244000px;}
.hb{height:64.482000px;}
.hc{height:64.516800px;}
.h4{height:74.447400px;}
.h2{height:80.028000px;}
.h3{height:90.638400px;}
.h11{height:326.100000px;}
.h0{height:1263.000000px;}
.w1{width:487.050000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1b{left:49.200000px;}
.x18{left:51.600000px;}
.x1a{left:56.100000px;}
.x19{left:63.000000px;}
.x1c{left:88.200000px;}
.x8{left:102.300000px;}
.x1{left:119.250000px;}
.xa{left:123.450000px;}
.xc{left:129.300000px;}
.x2{left:134.700000px;}
.xb{left:136.350000px;}
.xd{left:156.300000px;}
.x1d{left:166.050000px;}
.x3{left:178.050000px;}
.x13{left:182.100000px;}
.x12{left:196.650000px;}
.xe{left:207.900000px;}
.x17{left:214.950000px;}
.x11{left:247.950000px;}
.x16{left:249.900000px;}
.x10{left:255.450000px;}
.x5{left:277.050000px;}
.x9{left:282.300000px;}
.x14{left:320.700000px;}
.xf{left:335.700000px;}
.x4{left:370.200000px;}
.x7{left:404.100000px;}
.x6{left:417.150000px;}
.x15{left:435.450000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.333333pt;}
.v2{vertical-align:24.000000pt;}
.v1{vertical-align:39.466667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:1.226667pt;}
.ls3{letter-spacing:1.390933pt;}
.ls5{letter-spacing:1.493333pt;}
.ls6{letter-spacing:1.889067pt;}
.ls2{letter-spacing:4.490667pt;}
.ls7{letter-spacing:12.022400pt;}
.ls0{letter-spacing:502.922667pt;}
.ws1{word-spacing:-20.757333pt;}
.ws0{word-spacing:-17.792000pt;}
.wsd{word-spacing:-17.546667pt;}
.ws6{word-spacing:-16.309333pt;}
.ws9{word-spacing:-16.053333pt;}
.ws3{word-spacing:-14.826667pt;}
.ws2{word-spacing:-14.678400pt;}
.ws7{word-spacing:-9.489067pt;}
.wsc{word-spacing:-1.680000pt;}
.ws12{word-spacing:-0.043733pt;}
.ws4{word-spacing:0.000000pt;}
.wsb{word-spacing:2.074667pt;}
.wsa{word-spacing:14.864000pt;}
.ws8{word-spacing:27.653333pt;}
.ws5{word-spacing:36.942933pt;}
.ws13{word-spacing:62.729751pt;}
.ws11{word-spacing:73.013333pt;}
.ws10{word-spacing:99.701333pt;}
.wsf{word-spacing:229.408000pt;}
.wse{word-spacing:311.072000pt;}
._17{margin-left:-6.438933pt;}
._19{margin-left:-2.179200pt;}
._2{margin-left:-1.016000pt;}
._6{width:1.003200pt;}
._7{width:2.688000pt;}
._8{width:3.700800pt;}
._5{width:5.068800pt;}
._4{width:6.124800pt;}
._e{width:7.098667pt;}
._3{width:8.236800pt;}
._d{width:9.715200pt;}
._f{width:10.912000pt;}
._10{width:11.909333pt;}
._12{width:13.053333pt;}
._11{width:14.050667pt;}
._29{width:17.623467pt;}
._2b{width:19.209600pt;}
._2d{width:23.936000pt;}
._28{width:25.784000pt;}
._13{width:27.338667pt;}
._2c{width:28.336000pt;}
._2a{width:33.979733pt;}
._26{width:38.457751pt;}
._14{width:45.546667pt;}
._25{width:51.368944pt;}
._9{width:54.453333pt;}
._15{width:57.550933pt;}
._21{width:59.690667pt;}
._23{width:70.357333pt;}
._1e{width:85.530667pt;}
._1f{width:87.184000pt;}
._24{width:97.061333pt;}
._20{width:113.024000pt;}
._1c{width:233.200000pt;}
._22{width:242.053333pt;}
._1d{width:274.218667pt;}
._16{width:304.320000pt;}
._18{width:306.025600pt;}
._1b{width:355.648000pt;}
._1{width:373.493333pt;}
._27{width:426.826667pt;}
._c{width:456.160000pt;}
._a{width:495.989333pt;}
._1a{width:533.216000pt;}
._b{width:546.933333pt;}
._0{width:629.600000pt;}
.fsc{font-size:30.933333pt;}
.fsb{font-size:34.133333pt;}
.fs8{font-size:42.666667pt;}
.fsd{font-size:43.733333pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:52.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:55.466667pt;}
.fsa{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:67.733333pt;}
.fs9{font-size:73.600000pt;}
.fs5{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y107{bottom:18.266667pt;}
.y108{bottom:52.133333pt;}
.y10f{bottom:71.200000pt;}
.y109{bottom:87.200000pt;}
.y6f{bottom:94.800000pt;}
.y136{bottom:95.200000pt;}
.y1a{bottom:95.600000pt;}
.y103{bottom:97.866667pt;}
.y19{bottom:111.066667pt;}
.y6e{bottom:112.000000pt;}
.y135{bottom:114.133333pt;}
.y102{bottom:118.533333pt;}
.y10a{bottom:121.066667pt;}
.y155{bottom:123.333333pt;}
.y96{bottom:124.800000pt;}
.y44{bottom:128.533333pt;}
.yef{bottom:130.000000pt;}
.y134{bottom:133.066667pt;}
.y154{bottom:142.266667pt;}
.y18{bottom:145.866667pt;}
.y43{bottom:147.466667pt;}
.yee{bottom:148.933333pt;}
.y95{bottom:149.466667pt;}
.y133{bottom:152.000000pt;}
.y106{bottom:154.800000pt;}
.y10b{bottom:155.066667pt;}
.yb3{bottom:155.733333pt;}
.y178{bottom:158.266667pt;}
.y104{bottom:161.466667pt;}
.y42{bottom:166.400000pt;}
.y6d{bottom:167.333333pt;}
.yed{bottom:167.866667pt;}
.y94{bottom:168.400000pt;}
.y153{bottom:168.666667pt;}
.y132{bottom:170.933333pt;}
.y177{bottom:177.200000pt;}
.y41{bottom:185.333333pt;}
.y6c{bottom:186.266667pt;}
.yec{bottom:186.800000pt;}
.y152{bottom:187.600000pt;}
.y10c{bottom:189.066667pt;}
.y131{bottom:189.866667pt;}
.yb2{bottom:191.200000pt;}
.y93{bottom:192.933333pt;}
.y176{bottom:196.133333pt;}
.y40{bottom:204.266667pt;}
.ycb{bottom:204.533333pt;}
.y6b{bottom:205.200000pt;}
.y151{bottom:206.533333pt;}
.y130{bottom:208.800000pt;}
.yeb{bottom:215.200000pt;}
.y92{bottom:217.600000pt;}
.y175{bottom:222.266667pt;}
.y3f{bottom:223.200000pt;}
.yca{bottom:223.466667pt;}
.y10d{bottom:224.000000pt;}
.y6a{bottom:224.133333pt;}
.y105{bottom:224.666667pt;}
.yb1{bottom:226.666667pt;}
.y150{bottom:233.066667pt;}
.yea{bottom:234.133333pt;}
.y174{bottom:239.733333pt;}
.y12f{bottom:240.266667pt;}
.y3e{bottom:242.133333pt;}
.yc9{bottom:242.400000pt;}
.y69{bottom:243.066667pt;}
.y14f{bottom:252.000000pt;}
.ye9{bottom:253.066667pt;}
.y10e{bottom:258.000000pt;}
.y173{bottom:258.666667pt;}
.y3d{bottom:261.066667pt;}
.yc8{bottom:261.333333pt;}
.y68{bottom:262.000000pt;}
.yb0{bottom:262.133333pt;}
.ye8{bottom:272.000000pt;}
.y14e{bottom:278.400000pt;}
.y3c{bottom:280.000000pt;}
.yc7{bottom:280.266667pt;}
.y67{bottom:280.933333pt;}
.y172{bottom:284.666667pt;}
.y91{bottom:285.733333pt;}
.y12e{bottom:291.200000pt;}
.y14d{bottom:297.333333pt;}
.yaf{bottom:297.600000pt;}
.y3b{bottom:298.933333pt;}
.ye7{bottom:300.400000pt;}
.y171{bottom:302.133333pt;}
.y66{bottom:309.333333pt;}
.y12d{bottom:310.133333pt;}
.y90{bottom:310.266667pt;}
.y3a{bottom:317.866667pt;}
.ye6{bottom:319.333333pt;}
.y170{bottom:321.066667pt;}
.y14c{bottom:323.866667pt;}
.y65{bottom:328.266667pt;}
.y12c{bottom:329.066667pt;}
.y8f{bottom:329.200000pt;}
.yae{bottom:333.066667pt;}
.y39{bottom:336.800000pt;}
.ye5{bottom:338.266667pt;}
.y16f{bottom:340.000000pt;}
.yc6{bottom:340.800000pt;}
.y64{bottom:347.200000pt;}
.y12b{bottom:348.000000pt;}
.y14b{bottom:350.266667pt;}
.y8e{bottom:353.866667pt;}
.y38{bottom:355.733333pt;}
.ye4{bottom:357.200000pt;}
.y16e{bottom:358.933333pt;}
.yad{bottom:363.200000pt;}
.y63{bottom:366.133333pt;}
.y12a{bottom:366.933333pt;}
.y14a{bottom:369.200000pt;}
.y37{bottom:374.666667pt;}
.ye3{bottom:376.133333pt;}
.yc5{bottom:376.266667pt;}
.y8d{bottom:378.400000pt;}
.y62{bottom:385.066667pt;}
.y129{bottom:385.866667pt;}
.yac{bottom:388.133333pt;}
.ye2{bottom:395.066667pt;}
.y149{bottom:395.733333pt;}
.y17{bottom:396.133333pt;}
.y8c{bottom:397.333333pt;}
.y16d{bottom:402.533333pt;}
.y36{bottom:403.066667pt;}
.yab{bottom:403.600000pt;}
.y61{bottom:404.000000pt;}
.y128{bottom:404.800000pt;}
.yc4{bottom:411.733333pt;}
.ye1{bottom:414.000000pt;}
.y8b{bottom:416.266667pt;}
.yaa{bottom:419.066667pt;}
.y35{bottom:422.000000pt;}
.y148{bottom:422.133333pt;}
.y60{bottom:422.933333pt;}
.y127{bottom:423.733333pt;}
.y16c{bottom:428.933333pt;}
.ye0{bottom:432.933333pt;}
.y8a{bottom:435.200000pt;}
.y34{bottom:440.933333pt;}
.y147{bottom:441.066667pt;}
.y126{bottom:442.666667pt;}
.yc3{bottom:447.200000pt;}
.ya9{bottom:447.733333pt;}
.y16b{bottom:447.866667pt;}
.y5f{bottom:451.333333pt;}
.ydf{bottom:451.866667pt;}
.y89{bottom:454.133333pt;}
.y33{bottom:459.866667pt;}
.y146{bottom:467.200000pt;}
.y5e{bottom:470.266667pt;}
.yde{bottom:470.800000pt;}
.y125{bottom:471.066667pt;}
.y88{bottom:473.066667pt;}
.y16a{bottom:474.400000pt;}
.y16{bottom:475.600000pt;}
.y32{bottom:478.800000pt;}
.yc2{bottom:482.666667pt;}
.y145{bottom:484.666667pt;}
.y5d{bottom:489.200000pt;}
.ydd{bottom:489.733333pt;}
.y124{bottom:490.000000pt;}
.y87{bottom:492.000000pt;}
.y15{bottom:492.666667pt;}
.ya8{bottom:494.933333pt;}
.y31{bottom:497.733333pt;}
.y169{bottom:500.800000pt;}
.y144{bottom:503.600000pt;}
.y101{bottom:504.000000pt;}
.y5c{bottom:508.133333pt;}
.ydc{bottom:508.666667pt;}
.y123{bottom:508.933333pt;}
.y14{bottom:509.733333pt;}
.y86{bottom:510.933333pt;}
.y30{bottom:516.666667pt;}
.yc1{bottom:518.133333pt;}
.y168{bottom:519.733333pt;}
.ya7{bottom:521.866667pt;}
.y13{bottom:526.800000pt;}
.y5b{bottom:527.066667pt;}
.ydb{bottom:527.600000pt;}
.y122{bottom:527.866667pt;}
.y100{bottom:529.600000pt;}
.y143{bottom:530.000000pt;}
.y2f{bottom:535.600000pt;}
.ya6{bottom:538.800000pt;}
.y85{bottom:539.333333pt;}
.y12{bottom:543.866667pt;}
.yff{bottom:545.066667pt;}
.y5a{bottom:546.000000pt;}
.y167{bottom:546.266667pt;}
.yda{bottom:546.533333pt;}
.y121{bottom:546.800000pt;}
.y142{bottom:548.933333pt;}
.yc0{bottom:553.600000pt;}
.y84{bottom:558.266667pt;}
.yfe{bottom:560.533333pt;}
.y11{bottom:560.933333pt;}
.y2e{bottom:564.000000pt;}
.y59{bottom:564.933333pt;}
.y166{bottom:565.200000pt;}
.yd9{bottom:565.466667pt;}
.ya5{bottom:565.733333pt;}
.y141{bottom:575.066667pt;}
.y120{bottom:575.200000pt;}
.y83{bottom:577.200000pt;}
.y10{bottom:578.000000pt;}
.y2d{bottom:582.933333pt;}
.y58{bottom:583.866667pt;}
.yd8{bottom:584.400000pt;}
.yfd{bottom:586.133333pt;}
.y165{bottom:591.200000pt;}
.y140{bottom:592.133333pt;}
.ya4{bottom:594.133333pt;}
.yf{bottom:595.066667pt;}
.y82{bottom:596.133333pt;}
.yfc{bottom:601.600000pt;}
.y2c{bottom:601.866667pt;}
.y57{bottom:602.800000pt;}
.yd7{bottom:603.333333pt;}
.y164{bottom:608.666667pt;}
.ybf{bottom:608.800000pt;}
.y13f{bottom:609.200000pt;}
.y11f{bottom:613.066667pt;}
.y81{bottom:615.066667pt;}
.yfb{bottom:617.066667pt;}
.y2b{bottom:620.800000pt;}
.ye{bottom:621.600000pt;}
.y56{bottom:621.733333pt;}
.yd6{bottom:622.266667pt;}
.ybe{bottom:624.266667pt;}
.y13e{bottom:626.266667pt;}
.y163{bottom:627.600000pt;}
.y11e{bottom:632.000000pt;}
.y80{bottom:634.000000pt;}
.yd{bottom:638.666667pt;}
.y2a{bottom:639.733333pt;}
.yfa{bottom:642.666667pt;}
.y13d{bottom:643.733333pt;}
.ya3{bottom:645.066667pt;}
.y55{bottom:650.133333pt;}
.y11d{bottom:650.933333pt;}
.y7f{bottom:652.933333pt;}
.yd5{bottom:653.466667pt;}
.y162{bottom:654.133333pt;}
.yc{bottom:655.733333pt;}
.y29{bottom:658.666667pt;}
.ya2{bottom:662.000000pt;}
.y13c{bottom:662.666667pt;}
.y54{bottom:669.066667pt;}
.y11c{bottom:669.866667pt;}
.y7e{bottom:671.866667pt;}
.yb{bottom:672.800000pt;}
.y161{bottom:673.066667pt;}
.y28{bottom:677.600000pt;}
.yf9{bottom:678.533333pt;}
.y53{bottom:688.000000pt;}
.ya1{bottom:688.933333pt;}
.y13b{bottom:689.066667pt;}
.ya{bottom:689.866667pt;}
.y7d{bottom:690.800000pt;}
.yf8{bottom:697.466667pt;}
.y160{bottom:699.066667pt;}
.ybd{bottom:701.466667pt;}
.y11b{bottom:705.066667pt;}
.y27{bottom:706.000000pt;}
.y9{bottom:706.933333pt;}
.y13a{bottom:708.000000pt;}
.y7c{bottom:709.733333pt;}
.ya0{bottom:715.866667pt;}
.yf7{bottom:716.400000pt;}
.y15f{bottom:716.533333pt;}
.yd4{bottom:717.066667pt;}
.y8{bottom:724.000000pt;}
.y26{bottom:724.933333pt;}
.y52{bottom:725.866667pt;}
.y9f{bottom:732.800000pt;}
.y139{bottom:734.533333pt;}
.yf6{bottom:735.333333pt;}
.y15e{bottom:735.466667pt;}
.ybc{bottom:737.866667pt;}
.y7b{bottom:738.133333pt;}
.y11a{bottom:743.333333pt;}
.y25{bottom:743.866667pt;}
.y51{bottom:744.800000pt;}
.y138{bottom:753.466667pt;}
.yf5{bottom:754.266667pt;}
.y15d{bottom:754.400000pt;}
.yd3{bottom:755.600000pt;}
.y7{bottom:755.866667pt;}
.y7a{bottom:757.066667pt;}
.y9e{bottom:759.733333pt;}
.y119{bottom:762.266667pt;}
.y24{bottom:762.800000pt;}
.y50{bottom:763.733333pt;}
.ybb{bottom:766.266667pt;}
.yf4{bottom:773.200000pt;}
.y15c{bottom:773.333333pt;}
.yd2{bottom:774.533333pt;}
.y9d{bottom:775.200000pt;}
.y79{bottom:776.000000pt;}
.y118{bottom:781.200000pt;}
.y23{bottom:781.733333pt;}
.y4f{bottom:782.666667pt;}
.y137{bottom:788.533333pt;}
.y9c{bottom:790.666667pt;}
.yf3{bottom:792.133333pt;}
.yba{bottom:793.200000pt;}
.yd1{bottom:793.466667pt;}
.y78{bottom:794.933333pt;}
.y15b{bottom:799.866667pt;}
.y117{bottom:800.133333pt;}
.y22{bottom:800.666667pt;}
.y4e{bottom:801.600000pt;}
.y6{bottom:801.866667pt;}
.yf2{bottom:811.066667pt;}
.yd0{bottom:812.400000pt;}
.y77{bottom:813.866667pt;}
.y15a{bottom:818.800000pt;}
.y116{bottom:819.066667pt;}
.y9b{bottom:819.333333pt;}
.y21{bottom:819.600000pt;}
.y4d{bottom:820.533333pt;}
.yb9{bottom:821.600000pt;}
.y5{bottom:822.533333pt;}
.yf1{bottom:830.000000pt;}
.ycf{bottom:831.333333pt;}
.y76{bottom:832.800000pt;}
.y20{bottom:838.533333pt;}
.y4c{bottom:839.466667pt;}
.y159{bottom:845.200000pt;}
.y115{bottom:847.466667pt;}
.yb8{bottom:848.533333pt;}
.yf0{bottom:848.933333pt;}
.yce{bottom:850.266667pt;}
.y1f{bottom:857.466667pt;}
.y4b{bottom:858.400000pt;}
.y75{bottom:861.200000pt;}
.y4{bottom:862.266667pt;}
.y114{bottom:866.400000pt;}
.y9a{bottom:867.866667pt;}
.ycd{bottom:869.200000pt;}
.y158{bottom:871.333333pt;}
.y1e{bottom:876.400000pt;}
.yb7{bottom:876.933333pt;}
.y4a{bottom:877.333333pt;}
.y74{bottom:880.133333pt;}
.y113{bottom:885.333333pt;}
.y99{bottom:886.800000pt;}
.y157{bottom:888.800000pt;}
.y1d{bottom:895.333333pt;}
.y49{bottom:896.266667pt;}
.y73{bottom:899.066667pt;}
.yb6{bottom:903.866667pt;}
.y112{bottom:904.266667pt;}
.ycc{bottom:904.533333pt;}
.y98{bottom:905.733333pt;}
.y156{bottom:907.733333pt;}
.y3{bottom:913.066667pt;}
.y1c{bottom:914.266667pt;}
.y48{bottom:915.200000pt;}
.y72{bottom:918.000000pt;}
.yb5{bottom:919.333333pt;}
.y111{bottom:923.200000pt;}
.y97{bottom:924.666667pt;}
.y47{bottom:934.133333pt;}
.y71{bottom:936.933333pt;}
.y2{bottom:944.000000pt;}
.y1b{bottom:945.733333pt;}
.yb4{bottom:948.000000pt;}
.y46{bottom:953.066667pt;}
.y110{bottom:958.400000pt;}
.y70{bottom:968.400000pt;}
.y45{bottom:972.000000pt;}
.y1{bottom:1014.933333pt;}
.h12{height:31.433333pt;}
.h9{height:35.568000pt;}
.he{height:39.322917pt;}
.h1{height:39.520000pt;}
.h10{height:40.734375pt;}
.hd{height:44.140625pt;}
.hf{height:46.896000pt;}
.h5{height:47.424000pt;}
.h7{height:51.585600pt;}
.h8{height:52.106667pt;}
.ha{height:54.537600pt;}
.h6{height:55.328000pt;}
.hb{height:57.317333pt;}
.hc{height:57.348267pt;}
.h4{height:66.175467pt;}
.h2{height:71.136000pt;}
.h3{height:80.567467pt;}
.h11{height:289.866667pt;}
.h0{height:1122.666667pt;}
.w1{width:432.933333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1b{left:43.733333pt;}
.x18{left:45.866667pt;}
.x1a{left:49.866667pt;}
.x19{left:56.000000pt;}
.x1c{left:78.400000pt;}
.x8{left:90.933333pt;}
.x1{left:106.000000pt;}
.xa{left:109.733333pt;}
.xc{left:114.933333pt;}
.x2{left:119.733333pt;}
.xb{left:121.200000pt;}
.xd{left:138.933333pt;}
.x1d{left:147.600000pt;}
.x3{left:158.266667pt;}
.x13{left:161.866667pt;}
.x12{left:174.800000pt;}
.xe{left:184.800000pt;}
.x17{left:191.066667pt;}
.x11{left:220.400000pt;}
.x16{left:222.133333pt;}
.x10{left:227.066667pt;}
.x5{left:246.266667pt;}
.x9{left:250.933333pt;}
.x14{left:285.066667pt;}
.xf{left:298.400000pt;}
.x4{left:329.066667pt;}
.x7{left:359.200000pt;}
.x6{left:370.800000pt;}
.x15{left:387.066667pt;}
}




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