
    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_abf57631b481f72e55580b16.woff')format("woff");}.ff1{font-family:ff1;line-height:1.087891;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_2455e3d8491ae94ad2e0ce08.woff')format("woff");}.ff2{font-family:ff2;line-height:1.087891;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_96b378b6ca177f6f97457e07.woff')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_445d99e684d3cbb58ae9702b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.027000;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_6cf577c0b96e4aa0ed4c773a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.027000;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_751e42621adcab805f328372.woff')format("woff");}.ff6{font-family:ff6;line-height:1.076000;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_34e7e500d6ebf97989e9e5a2.woff')format("woff");}.ff7{font-family:ff7;line-height:1.076000;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_546909654fc90c281ac572b1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_51d7697c73b3f292a1678398.woff')format("woff");}.ff9{font-family:ff9;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_71686edd750b90b9aec28ac1.woff')format("woff");}.ffa{font-family:ffa;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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(0.275043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275043,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-24.480000px;}
.v2{vertical-align:-4.020000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.860000px;}
.v4{vertical-align:45.660000px;}
.v1{vertical-align:54.120000px;}
.ls7{letter-spacing:-1.343235px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.086400px;}
.lsa{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.298800px;}
.ls5{letter-spacing:38.088000px;}
.ls1{letter-spacing:72.720000px;}
.ls2{letter-spacing:115.257600px;}
.ls3{letter-spacing:115.344000px;}
.ls8{letter-spacing:145.509600px;}
.ls9{letter-spacing:145.560000px;}
.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;}
}
.ws2b{word-spacing:-147.486528px;}
.ws2a{word-spacing:-147.448080px;}
.ws0{word-spacing:-87.140592px;}
.wsa{word-spacing:-67.284000px;}
.wsb{word-spacing:-44.791920px;}
.ws1{word-spacing:-43.848000px;}
.ws5{word-spacing:-42.479712px;}
.ws28{word-spacing:-42.014880px;}
.wsc{word-spacing:-41.716080px;}
.ws27{word-spacing:-39.565152px;}
.ws26{word-spacing:-39.528720px;}
.ws2d{word-spacing:-38.486448px;}
.ws2c{word-spacing:-38.448000px;}
.ws18{word-spacing:-36.432000px;}
.ws10{word-spacing:-34.218720px;}
.ws7{word-spacing:-32.911488px;}
.ws6{word-spacing:-32.873040px;}
.ws9{word-spacing:-31.527360px;}
.ws8{word-spacing:-27.874800px;}
.wse{word-spacing:-27.336528px;}
.wsd{word-spacing:-27.298080px;}
.ws1a{word-spacing:-25.567920px;}
.ws1b{word-spacing:-21.677040px;}
.ws17{word-spacing:-20.802672px;}
.ws15{word-spacing:-20.766240px;}
.ws1c{word-spacing:-16.758720px;}
.ws20{word-spacing:-16.724880px;}
.ws23{word-spacing:-15.567087px;}
.ws19{word-spacing:-9.959040px;}
.ws1e{word-spacing:-6.777360px;}
.ws13{word-spacing:-5.342400px;}
.ws14{word-spacing:-5.189760px;}
.ws12{word-spacing:-5.040000px;}
.ws2{word-spacing:-0.126000px;}
.ws3{word-spacing:0.000000px;}
.ws29{word-spacing:0.997200px;}
.ws1f{word-spacing:16.817760px;}
.ws1d{word-spacing:20.773440px;}
.ws22{word-spacing:63.032342px;}
.ws21{word-spacing:155.236320px;}
.ws16{word-spacing:274.211040px;}
.ws25{word-spacing:422.935129px;}
.ws24{word-spacing:468.258772px;}
.ws11{word-spacing:3354.161760px;}
.ws4{word-spacing:3386.946240px;}
.wsf{word-spacing:3397.061760px;}
._1d{margin-left:-1378.453680px;}
._24{margin-left:-20.638368px;}
._23{margin-left:-19.612080px;}
._d{margin-left:-17.620992px;}
._c{margin-left:-14.364000px;}
._a{margin-left:-12.642528px;}
._8{margin-left:-10.584000px;}
._f{margin-left:-9.531648px;}
._b{margin-left:-8.455248px;}
._3{margin-left:-7.295040px;}
._2{margin-left:-5.580432px;}
._e{margin-left:-4.519008px;}
._1{margin-left:-3.434112px;}
._0{margin-left:-2.146320px;}
._6{margin-left:-1.015920px;}
._9{width:1.390320px;}
._5{width:2.592000px;}
._7{width:3.884400px;}
._4{width:6.436800px;}
._19{width:7.612560px;}
._15{width:9.469440px;}
._14{width:10.608480px;}
._16{width:11.665440px;}
._11{width:12.672000px;}
._10{width:14.472000px;}
._12{width:15.480000px;}
._13{width:17.609760px;}
._18{width:19.728000px;}
._17{width:21.096000px;}
._1f{width:27.266400px;}
._1e{width:30.080064px;}
._1b{width:32.448240px;}
._1c{width:34.619760px;}
._22{width:167.941660px;}
._20{width:666.839866px;}
._1a{width:686.516400px;}
._21{width:1186.979318px;}
.fce{color:rgb(0,132,255);}
.fcd{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc2{color:rgb(64,64,64);}
.fcc{color:rgb(153,153,153);}
.fc3{color:rgb(0,79,159);}
.fc4{color:rgb(7,42,84);}
.fc5{color:rgb(19,41,75);}
.fc6{color:rgb(21,43,76);}
.fc7{color:rgb(0,135,255);}
.fc8{color:rgb(24,45,78);}
.fc9{color:rgb(30,45,79);}
.fcb{color:rgb(46,64,93);}
.fca{color:rgb(4,50,87);}
.fs5{font-size:59.760000px;}
.fs21{font-size:62.640000px;}
.fs20{font-size:66.240000px;}
.fs22{font-size:68.880916px;}
.fs18{font-size:72.000000px;}
.fs6{font-size:72.144000px;}
.fs19{font-size:76.320000px;}
.fs1a{font-size:82.080000px;}
.fs1b{font-size:82.224000px;}
.fs1f{font-size:85.680000px;}
.fs1d{font-size:95.760000px;}
.fse{font-size:100.080000px;}
.fsf{font-size:100.224000px;}
.fs13{font-size:102.240000px;}
.fs15{font-size:102.384000px;}
.fsb{font-size:104.400000px;}
.fs1e{font-size:108.000000px;}
.fs16{font-size:108.144000px;}
.fsd{font-size:118.080000px;}
.fsa{font-size:123.120000px;}
.fsc{font-size:123.264000px;}
.fs4{font-size:126.000000px;}
.fs17{font-size:128.160000px;}
.fs14{font-size:138.240000px;}
.fs1c{font-size:144.000000px;}
.fs27{font-size:144.144000px;}
.fs11{font-size:156.240000px;}
.fs23{font-size:156.384000px;}
.fs8{font-size:167.760000px;}
.fs9{font-size:167.904000px;}
.fs10{font-size:201.600000px;}
.fs24{font-size:201.744000px;}
.fs2{font-size:216.000000px;}
.fs7{font-size:252.000000px;}
.fs12{font-size:255.600000px;}
.fs0{font-size:429.120000px;}
.fs1{font-size:429.264000px;}
.fs3{font-size:540.144000px;}
.fs25{font-size:552.240000px;}
.fs26{font-size:552.384000px;}
.y0{bottom:0.000000px;}
.y65{bottom:4.297894px;}
.y78{bottom:4.326524px;}
.y73{bottom:5.186103px;}
.y96{bottom:25.416000px;}
.y64{bottom:26.669866px;}
.y72{bottom:26.680180px;}
.y6f{bottom:26.704249px;}
.y77{bottom:26.704684px;}
.y9{bottom:43.668000px;}
.y5f{bottom:44.640000px;}
.y68{bottom:49.076220px;}
.y76{bottom:49.082386px;}
.y3b{bottom:59.112000px;}
.y6c{bottom:71.425269px;}
.y75{bottom:71.460088px;}
.y51{bottom:74.124000px;}
.y6b{bottom:93.808702px;}
.y8e{bottom:100.980000px;}
.y70{bottom:111.917598px;}
.y97{bottom:111.996000px;}
.y8f{bottom:117.144000px;}
.y36{bottom:125.280000px;}
.y50{bottom:145.764000px;}
.y25{bottom:150.150000px;}
.y1f{bottom:163.155000px;}
.y8d{bottom:163.980000px;}
.y4f{bottom:172.770000px;}
.y7{bottom:173.310000px;}
.y35{bottom:173.340000px;}
.y24{bottom:184.530000px;}
.y6d{bottom:188.510655px;}
.y4e{bottom:191.850000px;}
.y84{bottom:192.495000px;}
.y1e{bottom:197.565000px;}
.y23{bottom:219.090000px;}
.y60{bottom:224.292172px;}
.y74{bottom:225.151750px;}
.y4d{bottom:230.910000px;}
.y1d{bottom:232.125000px;}
.y95{bottom:235.410000px;}
.y9a{bottom:235.950000px;}
.y83{bottom:238.680000px;}
.y5b{bottom:249.915000px;}
.y5e{bottom:252.750000px;}
.y22{bottom:253.650000px;}
.y69{bottom:265.127781px;}
.y1c{bottom:266.685000px;}
.y58{bottom:276.585000px;}
.y5d{bottom:282.495000px;}
.y82{bottom:284.790000px;}
.y21{bottom:288.030000px;}
.y2d{bottom:289.155000px;}
.y8c{bottom:290.010000px;}
.y6{bottom:290.340000px;}
.y1b{bottom:301.065000px;}
.y94{bottom:301.290000px;}
.y99{bottom:301.830000px;}
.y5a{bottom:311.505000px;}
.y81{bottom:326.520000px;}
.y71{bottom:331.911876px;}
.y57{bottom:340.665000px;}
.y4c{bottom:345.315000px;}
.y49{bottom:346.065000px;}
.y5{bottom:348.840000px;}
.y2c{bottom:352.155000px;}
.y8b{bottom:353.010000px;}
.y93{bottom:367.380000px;}
.y98{bottom:367.920000px;}
.y3a{bottom:369.570000px;}
.y39{bottom:369.615000px;}
.y80{bottom:381.960000px;}
.y20{bottom:388.770000px;}
.y66{bottom:395.096099px;}
.y1a{bottom:398.370000px;}
.y38{bottom:405.615000px;}
.y6e{bottom:408.504933px;}
.y56{bottom:408.630000px;}
.y31{bottom:431.130000px;}
.y7f{bottom:437.400000px;}
.y37{bottom:441.615000px;}
.y59{bottom:442.650000px;}
.y55{bottom:471.135000px;}
.y2b{bottom:478.185000px;}
.y62{bottom:478.589855px;}
.y92{bottom:478.800000px;}
.y8a{bottom:479.055000px;}
.y4{bottom:482.835000px;}
.y6a{bottom:485.122058px;}
.y30{bottom:486.615000px;}
.y7e{bottom:493.020000px;}
.y54{bottom:503.790000px;}
.y3d{bottom:523.050000px;}
.y7d{bottom:536.145000px;}
.y2a{bottom:541.185000px;}
.y89{bottom:542.055000px;}
.y2f{bottom:542.235000px;}
.y61{bottom:562.083611px;}
.y7c{bottom:591.630000px;}
.y13{bottom:595.695000px;}
.y3{bottom:598.215000px;}
.y5c{bottom:603.975000px;}
.y19{bottom:606.060000px;}
.y47{bottom:614.085000px;}
.y67{bottom:615.090376px;}
.y12{bottom:631.695000px;}
.y53{bottom:636.120000px;}
.y8{bottom:640.230000px;}
.y46{bottom:641.130000px;}
.y18{bottom:642.060000px;}
.y91{bottom:643.890000px;}
.y7b{bottom:647.250000px;}
.y40{bottom:651.750000px;}
.y29{bottom:667.230000px;}
.y11{bottom:667.695000px;}
.y88{bottom:668.085000px;}
.y3f{bottom:677.310000px;}
.y17{bottom:678.060000px;}
.y45{bottom:681.330000px;}
.y7a{bottom:693.435000px;}
.y52{bottom:698.010000px;}
.y63{bottom:698.584132px;}
.y3e{bottom:702.870000px;}
.y10{bottom:703.695000px;}
.y2{bottom:713.805000px;}
.y16{bottom:714.060000px;}
.y44{bottom:721.545000px;}
.y87{bottom:731.085000px;}
.y79{bottom:739.620000px;}
.y34{bottom:752.655000px;}
.y48{bottom:761.760000px;}
.y28{bottom:779.730000px;}
.y33{bottom:788.655000px;}
.y15{bottom:801.255000px;}
.yf{bottom:802.545000px;}
.y43{bottom:804.780000px;}
.y90{bottom:808.950000px;}
.y1{bottom:829.365000px;}
.y42{bottom:831.780000px;}
.y27{bottom:842.730000px;}
.y14{bottom:844.815000px;}
.ye{bottom:846.105000px;}
.y86{bottom:857.085000px;}
.y41{bottom:858.810000px;}
.y4b{bottom:866.805000px;}
.y3c{bottom:870.300000px;}
.y4a{bottom:889.350000px;}
.yd{bottom:902.235000px;}
.y85{bottom:920.130000px;}
.y26{bottom:993.390000px;}
.y2e{bottom:1048.500000px;}
.y32{bottom:1051.170000px;}
.yc{bottom:1053.330000px;}
.ya{bottom:1059.270000px;}
.yb{bottom:1145.880000px;}
.h6{height:48.226320px;}
.h25{height:50.550480px;}
.h24{height:56.701440px;}
.h1b{height:58.104000px;}
.h7{height:58.220208px;}
.h1c{height:61.590240px;}
.h27{height:68.510950px;}
.h1d{height:70.260480px;}
.h1e{height:70.383744px;}
.h23{height:73.342080px;}
.h2b{height:75.728894px;}
.h2a{height:75.757547px;}
.h21{height:77.278320px;}
.he{height:80.764560px;}
.hf{height:80.880768px;}
.h15{height:82.507680px;}
.h17{height:82.623888px;}
.h28{height:82.634177px;}
.hb{height:84.250800px;}
.h22{height:87.156000px;}
.h18{height:87.272208px;}
.hd{height:95.290560px;}
.ha{height:99.357840px;}
.hc{height:99.474048px;}
.h19{height:103.425120px;}
.h2c{height:105.900111px;}
.h1a{height:108.285120px;}
.h1f{height:116.043744px;}
.h33{height:116.208000px;}
.h32{height:116.324208px;}
.h16{height:118.333440px;}
.h20{height:123.264000px;}
.h13{height:126.085680px;}
.h29{height:129.108739px;}
.h5{height:132.300000px;}
.h2d{height:133.741440px;}
.h2e{height:133.864704px;}
.h11{height:135.382320px;}
.h12{height:135.498528px;}
.h10{height:146.770313px;}
.h2f{height:146.875148px;}
.h3{height:186.679688px;}
.h9{height:197.845824px;}
.h8{height:203.364000px;}
.h14{height:206.269200px;}
.h1{height:370.870313px;}
.h2{height:370.994766px;}
.h30{height:445.657680px;}
.h31{height:445.773888px;}
.h4{height:466.823672px;}
.h26{height:615.458436px;}
.h0{height:1215.000000px;}
.w3{width:403.277875px;}
.w2{width:926.771223px;}
.w1{width:2159.999968px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x44{left:2.837056px;}
.x35{left:78.227968px;}
.x55{left:99.395968px;}
.x43{left:135.765675px;}
.x1c{left:168.734968px;}
.x16{left:197.744968px;}
.x7{left:198.794968px;}
.xb{left:200.594968px;}
.x54{left:216.209968px;}
.x3{left:227.954968px;}
.x32{left:255.059968px;}
.x19{left:259.664968px;}
.x17{left:264.344968px;}
.x33{left:282.239968px;}
.x18{left:284.909968px;}
.x53{left:288.074968px;}
.xf{left:300.089968px;}
.x8{left:305.354968px;}
.x25{left:356.114968px;}
.x45{left:360.119964px;}
.xa{left:366.149968px;}
.x9{left:385.409968px;}
.x29{left:394.709968px;}
.x27{left:416.669968px;}
.x42{left:438.944968px;}
.x28{left:462.569968px;}
.x23{left:479.849968px;}
.x1d{left:514.049968px;}
.x1e{left:521.249968px;}
.x22{left:539.969968px;}
.x1{left:570.809968px;}
.x2{left:581.609968px;}
.x24{left:588.419968px;}
.x52{left:604.004968px;}
.x26{left:605.264968px;}
.x37{left:625.289968px;}
.x36{left:626.729968px;}
.x46{left:631.402295px;}
.x38{left:654.989968px;}
.x39{left:657.689968px;}
.x3c{left:661.169968px;}
.x3b{left:668.729968px;}
.x3a{left:680.249968px;}
.x3d{left:692.669968px;}
.x50{left:722.624968px;}
.x2a{left:747.644968px;}
.x2c{left:754.814968px;}
.x2b{left:756.464968px;}
.x2d{left:771.014968px;}
.x3e{left:847.799968px;}
.x3f{left:861.224968px;}
.x51{left:888.089968px;}
.x4c{left:919.229968px;}
.x12{left:921.419968px;}
.x13{left:957.239968px;}
.x4d{left:973.259968px;}
.x4e{left:978.839968px;}
.x14{left:980.999968px;}
.x4{left:991.079968px;}
.x4f{left:1032.839968px;}
.x15{left:1034.999968px;}
.x40{left:1083.779968px;}
.x41{left:1094.429968px;}
.x34{left:1130.789968px;}
.x47{left:1296.254968px;}
.x48{left:1331.924968px;}
.x49{left:1360.229968px;}
.x4a{left:1403.129968px;}
.x20{left:1409.009968px;}
.x1f{left:1418.189968px;}
.x5a{left:1445.939968px;}
.x4b{left:1452.809968px;}
.x21{left:1456.349968px;}
.x1a{left:1464.449968px;}
.x57{left:1479.524968px;}
.x6{left:1483.559968px;}
.x1b{left:1485.149968px;}
.x59{left:1511.849968px;}
.xe{left:1517.114968px;}
.x11{left:1527.374968px;}
.x30{left:1533.989968px;}
.x2e{left:1536.269968px;}
.x2f{left:1550.909968px;}
.x58{left:1584.389968px;}
.xc{left:1652.219968px;}
.x10{left:1654.844968px;}
.xd{left:1745.099968px;}
.x31{left:1777.679968px;}
.x56{left:1779.374968px;}
.x5{left:1783.364968px;}
@media print{
.v5{vertical-align:-21.760000pt;}
.v2{vertical-align:-3.573333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.320000pt;}
.v4{vertical-align:40.586667pt;}
.v1{vertical-align:48.106667pt;}
.ls7{letter-spacing:-1.193987pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.076800pt;}
.lsa{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.265600pt;}
.ls5{letter-spacing:33.856000pt;}
.ls1{letter-spacing:64.640000pt;}
.ls2{letter-spacing:102.451200pt;}
.ls3{letter-spacing:102.528000pt;}
.ls8{letter-spacing:129.341867pt;}
.ls9{letter-spacing:129.386667pt;}
.ws2b{word-spacing:-131.099136pt;}
.ws2a{word-spacing:-131.064960pt;}
.ws0{word-spacing:-77.458304pt;}
.wsa{word-spacing:-59.808000pt;}
.wsb{word-spacing:-39.815040pt;}
.ws1{word-spacing:-38.976000pt;}
.ws5{word-spacing:-37.759744pt;}
.ws28{word-spacing:-37.346560pt;}
.wsc{word-spacing:-37.080960pt;}
.ws27{word-spacing:-35.169024pt;}
.ws26{word-spacing:-35.136640pt;}
.ws2d{word-spacing:-34.210176pt;}
.ws2c{word-spacing:-34.176000pt;}
.ws18{word-spacing:-32.384000pt;}
.ws10{word-spacing:-30.416640pt;}
.ws7{word-spacing:-29.254656pt;}
.ws6{word-spacing:-29.220480pt;}
.ws9{word-spacing:-28.024320pt;}
.ws8{word-spacing:-24.777600pt;}
.wse{word-spacing:-24.299136pt;}
.wsd{word-spacing:-24.264960pt;}
.ws1a{word-spacing:-22.727040pt;}
.ws1b{word-spacing:-19.268480pt;}
.ws17{word-spacing:-18.491264pt;}
.ws15{word-spacing:-18.458880pt;}
.ws1c{word-spacing:-14.896640pt;}
.ws20{word-spacing:-14.866560pt;}
.ws23{word-spacing:-13.837411pt;}
.ws19{word-spacing:-8.852480pt;}
.ws1e{word-spacing:-6.024320pt;}
.ws13{word-spacing:-4.748800pt;}
.ws14{word-spacing:-4.613120pt;}
.ws12{word-spacing:-4.480000pt;}
.ws2{word-spacing:-0.112000pt;}
.ws3{word-spacing:0.000000pt;}
.ws29{word-spacing:0.886400pt;}
.ws1f{word-spacing:14.949120pt;}
.ws1d{word-spacing:18.465280pt;}
.ws22{word-spacing:56.028748pt;}
.ws21{word-spacing:137.987840pt;}
.ws16{word-spacing:243.743147pt;}
.ws25{word-spacing:375.942337pt;}
.ws24{word-spacing:416.230019pt;}
.ws11{word-spacing:2981.477120pt;}
.ws4{word-spacing:3010.618880pt;}
.wsf{word-spacing:3019.610453pt;}
._1d{margin-left:-1225.292160pt;}
._24{margin-left:-18.345216pt;}
._23{margin-left:-17.432960pt;}
._d{margin-left:-15.663104pt;}
._c{margin-left:-12.768000pt;}
._a{margin-left:-11.237803pt;}
._8{margin-left:-9.408000pt;}
._f{margin-left:-8.472576pt;}
._b{margin-left:-7.515776pt;}
._3{margin-left:-6.484480pt;}
._2{margin-left:-4.960384pt;}
._e{margin-left:-4.016896pt;}
._1{margin-left:-3.052544pt;}
._0{margin-left:-1.907840pt;}
._6{margin-left:-0.903040pt;}
._9{width:1.235840pt;}
._5{width:2.304000pt;}
._7{width:3.452800pt;}
._4{width:5.721600pt;}
._19{width:6.766720pt;}
._15{width:8.417280pt;}
._14{width:9.429760pt;}
._16{width:10.369280pt;}
._11{width:11.264000pt;}
._10{width:12.864000pt;}
._12{width:13.760000pt;}
._13{width:15.653120pt;}
._18{width:17.536000pt;}
._17{width:18.752000pt;}
._1f{width:24.236800pt;}
._1e{width:26.737835pt;}
._1b{width:28.842880pt;}
._1c{width:30.773120pt;}
._22{width:149.281475pt;}
._20{width:592.746548pt;}
._1a{width:610.236800pt;}
._21{width:1055.092727pt;}
.fs5{font-size:53.120000pt;}
.fs21{font-size:55.680000pt;}
.fs20{font-size:58.880000pt;}
.fs22{font-size:61.227481pt;}
.fs18{font-size:64.000000pt;}
.fs6{font-size:64.128000pt;}
.fs19{font-size:67.840000pt;}
.fs1a{font-size:72.960000pt;}
.fs1b{font-size:73.088000pt;}
.fs1f{font-size:76.160000pt;}
.fs1d{font-size:85.120000pt;}
.fse{font-size:88.960000pt;}
.fsf{font-size:89.088000pt;}
.fs13{font-size:90.880000pt;}
.fs15{font-size:91.008000pt;}
.fsb{font-size:92.800000pt;}
.fs1e{font-size:96.000000pt;}
.fs16{font-size:96.128000pt;}
.fsd{font-size:104.960000pt;}
.fsa{font-size:109.440000pt;}
.fsc{font-size:109.568000pt;}
.fs4{font-size:112.000000pt;}
.fs17{font-size:113.920000pt;}
.fs14{font-size:122.880000pt;}
.fs1c{font-size:128.000000pt;}
.fs27{font-size:128.128000pt;}
.fs11{font-size:138.880000pt;}
.fs23{font-size:139.008000pt;}
.fs8{font-size:149.120000pt;}
.fs9{font-size:149.248000pt;}
.fs10{font-size:179.200000pt;}
.fs24{font-size:179.328000pt;}
.fs2{font-size:192.000000pt;}
.fs7{font-size:224.000000pt;}
.fs12{font-size:227.200000pt;}
.fs0{font-size:381.440000pt;}
.fs1{font-size:381.568000pt;}
.fs3{font-size:480.128000pt;}
.fs25{font-size:490.880000pt;}
.fs26{font-size:491.008000pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:3.820350pt;}
.y78{bottom:3.845799pt;}
.y73{bottom:4.609869pt;}
.y96{bottom:22.592000pt;}
.y64{bottom:23.706547pt;}
.y72{bottom:23.715716pt;}
.y6f{bottom:23.737110pt;}
.y77{bottom:23.737497pt;}
.y9{bottom:38.816000pt;}
.y5f{bottom:39.680000pt;}
.y68{bottom:43.623307pt;}
.y76{bottom:43.628788pt;}
.y3b{bottom:52.544000pt;}
.y6c{bottom:63.489128pt;}
.y75{bottom:63.520078pt;}
.y51{bottom:65.888000pt;}
.y6b{bottom:83.385513pt;}
.y8e{bottom:89.760000pt;}
.y70{bottom:99.482309pt;}
.y97{bottom:99.552000pt;}
.y8f{bottom:104.128000pt;}
.y36{bottom:111.360000pt;}
.y50{bottom:129.568000pt;}
.y25{bottom:133.466667pt;}
.y1f{bottom:145.026667pt;}
.y8d{bottom:145.760000pt;}
.y4f{bottom:153.573333pt;}
.y7{bottom:154.053333pt;}
.y35{bottom:154.080000pt;}
.y24{bottom:164.026667pt;}
.y6d{bottom:167.565027pt;}
.y4e{bottom:170.533333pt;}
.y84{bottom:171.106667pt;}
.y1e{bottom:175.613333pt;}
.y23{bottom:194.746667pt;}
.y60{bottom:199.370819pt;}
.y74{bottom:200.134889pt;}
.y4d{bottom:205.253333pt;}
.y1d{bottom:206.333333pt;}
.y95{bottom:209.253333pt;}
.y9a{bottom:209.733333pt;}
.y83{bottom:212.160000pt;}
.y5b{bottom:222.146667pt;}
.y5e{bottom:224.666667pt;}
.y22{bottom:225.466667pt;}
.y69{bottom:235.669139pt;}
.y1c{bottom:237.053333pt;}
.y58{bottom:245.853333pt;}
.y5d{bottom:251.106667pt;}
.y82{bottom:253.146667pt;}
.y21{bottom:256.026667pt;}
.y2d{bottom:257.026667pt;}
.y8c{bottom:257.786667pt;}
.y6{bottom:258.080000pt;}
.y1b{bottom:267.613333pt;}
.y94{bottom:267.813333pt;}
.y99{bottom:268.293333pt;}
.y5a{bottom:276.893333pt;}
.y81{bottom:290.240000pt;}
.y71{bottom:295.032778pt;}
.y57{bottom:302.813333pt;}
.y4c{bottom:306.946667pt;}
.y49{bottom:307.613333pt;}
.y5{bottom:310.080000pt;}
.y2c{bottom:313.026667pt;}
.y8b{bottom:313.786667pt;}
.y93{bottom:326.560000pt;}
.y98{bottom:327.040000pt;}
.y3a{bottom:328.506667pt;}
.y39{bottom:328.546667pt;}
.y80{bottom:339.520000pt;}
.y20{bottom:345.573333pt;}
.y66{bottom:351.196532pt;}
.y1a{bottom:354.106667pt;}
.y38{bottom:360.546667pt;}
.y6e{bottom:363.115496pt;}
.y56{bottom:363.226667pt;}
.y31{bottom:383.226667pt;}
.y7f{bottom:388.800000pt;}
.y37{bottom:392.546667pt;}
.y59{bottom:393.466667pt;}
.y55{bottom:418.786667pt;}
.y2b{bottom:425.053333pt;}
.y62{bottom:425.413204pt;}
.y92{bottom:425.600000pt;}
.y8a{bottom:425.826667pt;}
.y4{bottom:429.186667pt;}
.y6a{bottom:431.219608pt;}
.y30{bottom:432.546667pt;}
.y7e{bottom:438.240000pt;}
.y54{bottom:447.813333pt;}
.y3d{bottom:464.933333pt;}
.y7d{bottom:476.573333pt;}
.y2a{bottom:481.053333pt;}
.y89{bottom:481.826667pt;}
.y2f{bottom:481.986667pt;}
.y61{bottom:499.629876pt;}
.y7c{bottom:525.893333pt;}
.y13{bottom:529.506667pt;}
.y3{bottom:531.746667pt;}
.y5c{bottom:536.866667pt;}
.y19{bottom:538.720000pt;}
.y47{bottom:545.853333pt;}
.y67{bottom:546.747001pt;}
.y12{bottom:561.506667pt;}
.y53{bottom:565.440000pt;}
.y8{bottom:569.093333pt;}
.y46{bottom:569.893333pt;}
.y18{bottom:570.720000pt;}
.y91{bottom:572.346667pt;}
.y7b{bottom:575.333333pt;}
.y40{bottom:579.333333pt;}
.y29{bottom:593.093333pt;}
.y11{bottom:593.506667pt;}
.y88{bottom:593.853333pt;}
.y3f{bottom:602.053333pt;}
.y17{bottom:602.720000pt;}
.y45{bottom:605.626667pt;}
.y7a{bottom:616.386667pt;}
.y52{bottom:620.453333pt;}
.y63{bottom:620.963673pt;}
.y3e{bottom:624.773333pt;}
.y10{bottom:625.506667pt;}
.y2{bottom:634.493333pt;}
.y16{bottom:634.720000pt;}
.y44{bottom:641.373333pt;}
.y87{bottom:649.853333pt;}
.y79{bottom:657.440000pt;}
.y34{bottom:669.026667pt;}
.y48{bottom:677.120000pt;}
.y28{bottom:693.093333pt;}
.y33{bottom:701.026667pt;}
.y15{bottom:712.226667pt;}
.yf{bottom:713.373333pt;}
.y43{bottom:715.360000pt;}
.y90{bottom:719.066667pt;}
.y1{bottom:737.213333pt;}
.y42{bottom:739.360000pt;}
.y27{bottom:749.093333pt;}
.y14{bottom:750.946667pt;}
.ye{bottom:752.093333pt;}
.y86{bottom:761.853333pt;}
.y41{bottom:763.386667pt;}
.y4b{bottom:770.493333pt;}
.y3c{bottom:773.600000pt;}
.y4a{bottom:790.533333pt;}
.yd{bottom:801.986667pt;}
.y85{bottom:817.893333pt;}
.y26{bottom:883.013333pt;}
.y2e{bottom:932.000000pt;}
.y32{bottom:934.373333pt;}
.yc{bottom:936.293333pt;}
.ya{bottom:941.573333pt;}
.yb{bottom:1018.560000pt;}
.h6{height:42.867840pt;}
.h25{height:44.933760pt;}
.h24{height:50.401280pt;}
.h1b{height:51.648000pt;}
.h7{height:51.751296pt;}
.h1c{height:54.746880pt;}
.h27{height:60.898623pt;}
.h1d{height:62.453760pt;}
.h1e{height:62.563328pt;}
.h23{height:65.192960pt;}
.h2b{height:67.314573pt;}
.h2a{height:67.340042pt;}
.h21{height:68.691840pt;}
.he{height:71.790720pt;}
.hf{height:71.894016pt;}
.h15{height:73.340160pt;}
.h17{height:73.443456pt;}
.h28{height:73.452602pt;}
.hb{height:74.889600pt;}
.h22{height:77.472000pt;}
.h18{height:77.575296pt;}
.hd{height:84.702720pt;}
.ha{height:88.318080pt;}
.hc{height:88.421376pt;}
.h19{height:91.933440pt;}
.h2c{height:94.133432pt;}
.h1a{height:96.253440pt;}
.h1f{height:103.149995pt;}
.h33{height:103.296000pt;}
.h32{height:103.399296pt;}
.h16{height:105.185280pt;}
.h20{height:109.568000pt;}
.h13{height:112.076160pt;}
.h29{height:114.763323pt;}
.h5{height:117.600000pt;}
.h2d{height:118.881280pt;}
.h2e{height:118.990848pt;}
.h11{height:120.339840pt;}
.h12{height:120.443136pt;}
.h10{height:130.462500pt;}
.h2f{height:130.555688pt;}
.h3{height:165.937500pt;}
.h9{height:175.862955pt;}
.h8{height:180.768000pt;}
.h14{height:183.350400pt;}
.h1{height:329.662500pt;}
.h2{height:329.773125pt;}
.h30{height:396.140160pt;}
.h31{height:396.243456pt;}
.h4{height:414.954375pt;}
.h26{height:547.074165pt;}
.h0{height:1080.000000pt;}
.w3{width:358.469222pt;}
.w2{width:823.796643pt;}
.w1{width:1919.999971pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x44{left:2.521827pt;}
.x35{left:69.535971pt;}
.x55{left:88.351971pt;}
.x43{left:120.680600pt;}
.x1c{left:149.986638pt;}
.x16{left:175.773305pt;}
.x7{left:176.706638pt;}
.xb{left:178.306638pt;}
.x54{left:192.186638pt;}
.x3{left:202.626638pt;}
.x32{left:226.719971pt;}
.x19{left:230.813305pt;}
.x17{left:234.973305pt;}
.x33{left:250.879971pt;}
.x18{left:253.253305pt;}
.x53{left:256.066638pt;}
.xf{left:266.746638pt;}
.x8{left:271.426638pt;}
.x25{left:316.546638pt;}
.x45{left:320.106635pt;}
.xa{left:325.466638pt;}
.x9{left:342.586638pt;}
.x29{left:350.853305pt;}
.x27{left:370.373305pt;}
.x42{left:390.173305pt;}
.x28{left:411.173305pt;}
.x23{left:426.533305pt;}
.x1d{left:456.933305pt;}
.x1e{left:463.333305pt;}
.x22{left:479.973305pt;}
.x1{left:507.386638pt;}
.x2{left:516.986638pt;}
.x24{left:523.039971pt;}
.x52{left:536.893305pt;}
.x26{left:538.013305pt;}
.x37{left:555.813305pt;}
.x36{left:557.093305pt;}
.x46{left:561.246484pt;}
.x38{left:582.213305pt;}
.x39{left:584.613305pt;}
.x3c{left:587.706638pt;}
.x3b{left:594.426638pt;}
.x3a{left:604.666638pt;}
.x3d{left:615.706638pt;}
.x50{left:642.333305pt;}
.x2a{left:664.573305pt;}
.x2c{left:670.946638pt;}
.x2b{left:672.413305pt;}
.x2d{left:685.346638pt;}
.x3e{left:753.599971pt;}
.x3f{left:765.533305pt;}
.x51{left:789.413305pt;}
.x4c{left:817.093305pt;}
.x12{left:819.039971pt;}
.x13{left:850.879971pt;}
.x4d{left:865.119971pt;}
.x4e{left:870.079971pt;}
.x14{left:871.999971pt;}
.x4{left:880.959971pt;}
.x4f{left:918.079971pt;}
.x15{left:919.999971pt;}
.x40{left:963.359971pt;}
.x41{left:972.826638pt;}
.x34{left:1005.146638pt;}
.x47{left:1152.226638pt;}
.x48{left:1183.933305pt;}
.x49{left:1209.093305pt;}
.x4a{left:1247.226638pt;}
.x20{left:1252.453305pt;}
.x1f{left:1260.613305pt;}
.x5a{left:1285.279971pt;}
.x4b{left:1291.386638pt;}
.x21{left:1294.533305pt;}
.x1a{left:1301.733305pt;}
.x57{left:1315.133305pt;}
.x6{left:1318.719971pt;}
.x1b{left:1320.133305pt;}
.x59{left:1343.866638pt;}
.xe{left:1348.546638pt;}
.x11{left:1357.666638pt;}
.x30{left:1363.546638pt;}
.x2e{left:1365.573305pt;}
.x2f{left:1378.586638pt;}
.x58{left:1408.346638pt;}
.xc{left:1468.639971pt;}
.x10{left:1470.973305pt;}
.xd{left:1551.199971pt;}
.x31{left:1580.159971pt;}
.x56{left:1581.666638pt;}
.x5{left:1585.213305pt;}
}




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