
    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_aca1816ffa9646faec6ae411.woff')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_fa9604a51ac95d999251d03d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_30ff3173a5ddcaa2792aad23.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_02d7f842098da6c8ecb78db5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_de952e7abfb835db54e1398f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.107422;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_a9d1ae8ff80e2ef04a64c1b6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_24e240ca88f69a638f06df27.woff')format("woff");}.ff7{font-family:ff7;line-height:1.201172;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_dae3f4db5ddea84dc08b82d2.woff')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.760000px;}
.ls7{letter-spacing:-0.900000px;}
.ls6{letter-spacing:-0.583800px;}
.ls2{letter-spacing:-0.269400px;}
.ls9{letter-spacing:-0.223800px;}
.ls3{letter-spacing:-0.181200px;}
.ls8{letter-spacing:-0.090600px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.136200px;}
.ls5{letter-spacing:0.223800px;}
.ls4{letter-spacing:0.269400px;}
.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;}
}
.ws0{word-spacing:-19.872000px;}
.ws6{word-spacing:-13.680120px;}
.ws7{word-spacing:-13.634520px;}
.ws3{word-spacing:-13.546920px;}
.ws1{word-spacing:-13.410720px;}
.wsa{word-spacing:-13.320120px;}
.ws4{word-spacing:-13.229520px;}
.wsb{word-spacing:-13.186920px;}
.ws2{word-spacing:-13.141320px;}
.ws8{word-spacing:-12.826920px;}
.ws9{word-spacing:-12.510720px;}
.ws5{word-spacing:0.000000px;}
._2{margin-left:-4.861680px;}
._1{margin-left:-1.104240px;}
._0{width:1.940880px;}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc0{color:rgb(19,66,114);}
.fs3{font-size:48.240000px;}
.fs1{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y6d{bottom:2.514000px;}
.y8{bottom:2.520000px;}
.yb9{bottom:6.840000px;}
.yd6{bottom:8.454000px;}
.yc2{bottom:8.460000px;}
.ye3{bottom:8.490000px;}
.y10b{bottom:8.505000px;}
.yc0{bottom:8.640000px;}
.yeb{bottom:8.685000px;}
.y43{bottom:9.354000px;}
.y6{bottom:9.360000px;}
.y4c{bottom:9.405000px;}
.y81{bottom:9.534000px;}
.y11{bottom:9.540000px;}
.ya{bottom:9.585000px;}
.yb7{bottom:13.680000px;}
.yff{bottom:15.300000px;}
.y109{bottom:15.345000px;}
.y107{bottom:15.474000px;}
.yf0{bottom:15.480000px;}
.y44{bottom:16.194000px;}
.y4{bottom:16.200000px;}
.y6c{bottom:16.374000px;}
.ye{bottom:16.380000px;}
.y16{bottom:16.410000px;}
.yb{bottom:16.425000px;}
.yb8{bottom:20.520000px;}
.y106{bottom:22.314000px;}
.yf1{bottom:22.320000px;}
.yfd{bottom:22.350000px;}
.y10a{bottom:22.365000px;}
.y8b{bottom:23.085000px;}
.y21{bottom:23.214000px;}
.y5{bottom:23.220000px;}
.y14{bottom:23.250000px;}
.y1d{bottom:23.265000px;}
.y22{bottom:30.054000px;}
.y7{bottom:30.060000px;}
.y3b{bottom:30.090000px;}
.y35{bottom:30.105000px;}
.y9a{bottom:30.234000px;}
.yd{bottom:30.240000px;}
.y15{bottom:30.270000px;}
.y1e{bottom:30.285000px;}
.y62{bottom:36.900000px;}
.yaa{bottom:36.930000px;}
.y9d{bottom:36.945000px;}
.y90{bottom:37.074000px;}
.y56{bottom:37.080000px;}
.ya1{bottom:37.110000px;}
.y28{bottom:37.125000px;}
.y97{bottom:43.740000px;}
.y8c{bottom:43.785000px;}
.y8f{bottom:43.914000px;}
.yf{bottom:43.920000px;}
.y17{bottom:43.950000px;}
.y27{bottom:43.965000px;}
.y70{bottom:50.760000px;}
.y65{bottom:50.805000px;}
.y88{bottom:50.940000px;}
.y93{bottom:50.970000px;}
.yae{bottom:50.985000px;}
.y71{bottom:57.600000px;}
.yb2{bottom:57.630000px;}
.y98{bottom:57.645000px;}
.y89{bottom:57.780000px;}
.y94{bottom:57.810000px;}
.y66{bottom:57.825000px;}
.y74{bottom:64.620000px;}
.y79{bottom:71.460000px;}
.y69{bottom:71.505000px;}
.y75{bottom:78.300000px;}
.y78{bottom:85.320000px;}
.y68{bottom:85.365000px;}
.y77{bottom:99.000000px;}
.y72{bottom:99.045000px;}
.y67{bottom:99.225000px;}
.y76{bottom:112.860000px;}
.y20{bottom:131.436000px;}
.y84{bottom:132.336000px;}
.y33{bottom:133.056000px;}
.y5c{bottom:133.596000px;}
.ya8{bottom:133.776000px;}
.ybd{bottom:137.016000px;}
.y116{bottom:139.716000px;}
.yfc{bottom:140.796000px;}
.y42{bottom:146.196000px;}
.y4e{bottom:146.916000px;}
.y8e{bottom:147.636000px;}
.yd5{bottom:147.996000px;}
.y6b{bottom:148.356000px;}
.y80{bottom:149.076000px;}
.y99{bottom:149.796000px;}
.y10e{bottom:153.570000px;}
.yee{bottom:154.650000px;}
.y83{bottom:160.590000px;}
.y32{bottom:161.490000px;}
.ya7{bottom:162.210000px;}
.y115{bottom:166.350000px;}
.yfb{bottom:167.430000px;}
.y1f{bottom:173.550000px;}
.y41{bottom:174.450000px;}
.y5b{bottom:175.710000px;}
.y6a{bottom:176.790000px;}
.y7f{bottom:177.510000px;}
.y10d{bottom:180.210000px;}
.yed{bottom:181.110000px;}
.y4d{bottom:189.030000px;}
.y8d{bottom:189.750000px;}
.y96{bottom:192.090000px;}
.y114{bottom:192.810000px;}
.yfa{bottom:193.890000px;}
.yd4{bottom:201.090000px;}
.y40{bottom:202.890000px;}
.y31{bottom:203.610000px;}
.ya6{bottom:204.330000px;}
.y64{bottom:205.050000px;}
.yb3{bottom:205.770000px;}
.y10c{bottom:206.670000px;}
.yec{bottom:207.750000px;}
.y119{bottom:211.530000px;}
.ybc{bottom:211.890000px;}
.y1c{bottom:215.670000px;}
.y8a{bottom:218.190000px;}
.y7e{bottom:219.630000px;}
.yf9{bottom:220.530000px;}
.yd3{bottom:227.550000px;}
.y4b{bottom:231.150000px;}
.y5a{bottom:231.690000px;}
.ya5{bottom:232.590000px;}
.y108{bottom:233.310000px;}
.yea{bottom:234.210000px;}
.y3f{bottom:245.055000px;}
.y30{bottom:245.775000px;}
.yf8{bottom:247.035000px;}
.y118{bottom:249.195000px;}
.ybb{bottom:249.375000px;}
.yd2{bottom:254.235000px;}
.y1b{bottom:257.835000px;}
.y113{bottom:259.815000px;}
.y59{bottom:259.995000px;}
.ye9{bottom:260.895000px;}
.ya4{bottom:261.075000px;}
.y7d{bottom:261.795000px;}
.yba{bottom:267.195000px;}
.y4a{bottom:273.315000px;}
.yf7{bottom:273.675000px;}
.y87{bottom:274.035000px;}
.yd1{bottom:280.695000px;}
.y117{bottom:285.195000px;}
.y112{bottom:286.455000px;}
.y3e{bottom:287.175000px;}
.ye8{bottom:287.355000px;}
.y2f{bottom:287.895000px;}
.y7c{bottom:290.055000px;}
.y1a{bottom:300.135000px;}
.y58{bottom:302.295000px;}
.ya3{bottom:303.195000px;}
.yd0{bottom:307.335000px;}
.y111{bottom:312.915000px;}
.ye7{bottom:313.995000px;}
.yac{bottom:314.715000px;}
.y3d{bottom:315.435000px;}
.y63{bottom:316.155000px;}
.y95{bottom:317.775000px;}
.yf6{bottom:326.775000px;}
.y5f{bottom:329.295000px;}
.y2e{bottom:330.015000px;}
.y7b{bottom:332.355000px;}
.ycf{bottom:333.795000px;}
.yb6{bottom:336.855000px;}
.ye6{bottom:340.455000px;}
.y19{bottom:342.255000px;}
.yab{bottom:343.155000px;}
.y86{bottom:343.875000px;}
.y57{bottom:344.415000px;}
.yf5{bottom:353.235000px;}
.y3c{bottom:357.555000px;}
.ya2{bottom:359.175000px;}
.yce{bottom:360.435000px;}
.ye5{bottom:367.095000px;}
.y5e{bottom:371.415000px;}
.y2d{bottom:372.135000px;}
.yb1{bottom:373.755000px;}
.y7a{bottom:374.475000px;}
.yf4{bottom:379.875000px;}
.y18{bottom:384.375000px;}
.y55{bottom:386.535000px;}
.ycd{bottom:386.895000px;}
.y92{bottom:387.435000px;}
.ye4{bottom:393.555000px;}
.y3a{bottom:399.855000px;}
.y53{bottom:400.575000px;}
.ya0{bottom:401.295000px;}
.yf3{bottom:406.335000px;}
.y13{bottom:412.635000px;}
.ycc{bottom:413.535000px;}
.y2c{bottom:414.255000px;}
.ye2{bottom:420.195000px;}
.y82{bottom:428.145000px;}
.yb5{bottom:429.585000px;}
.y73{bottom:430.485000px;}
.yf2{bottom:433.005000px;}
.ycb{bottom:440.025000px;}
.y39{bottom:442.005000px;}
.y52{bottom:442.725000px;}
.yb0{bottom:443.445000px;}
.ye1{bottom:446.685000px;}
.ya9{bottom:455.685000px;}
.y2b{bottom:456.585000px;}
.y91{bottom:457.305000px;}
.yef{bottom:459.465000px;}
.yca{bottom:466.665000px;}
.y12{bottom:468.645000px;}
.y5d{bottom:470.265000px;}
.ye0{bottom:473.325000px;}
.y38{bottom:484.125000px;}
.y51{bottom:484.845000px;}
.y9f{bottom:485.565000px;}
.y105{bottom:486.105000px;}
.yc9{bottom:493.125000px;}
.y2a{bottom:498.705000px;}
.yaf{bottom:499.425000px;}
.ydf{bottom:499.785000px;}
.y10{bottom:510.765000px;}
.y54{bottom:512.385000px;}
.y104{bottom:512.565000px;}
.yc8{bottom:519.765000px;}
.y37{bottom:526.245000px;}
.yde{bottom:526.425000px;}
.y50{bottom:526.965000px;}
.y103{bottom:539.205000px;}
.y29{bottom:540.825000px;}
.y9e{bottom:541.545000px;}
.yc7{bottom:546.225000px;}
.yc{bottom:552.885000px;}
.y36{bottom:554.685000px;}
.y6f{bottom:555.405000px;}
.y102{bottom:565.665000px;}
.y49{bottom:568.365000px;}
.y85{bottom:569.085000px;}
.yc6{bottom:572.865000px;}
.ydd{bottom:579.525000px;}
.y26{bottom:582.945000px;}
.y101{bottom:592.305000px;}
.y34{bottom:596.805000px;}
.y9c{bottom:597.525000px;}
.yc5{bottom:599.325000px;}
.ydc{bottom:605.985000px;}
.y9{bottom:608.865000px;}
.y48{bottom:610.485000px;}
.yb4{bottom:611.205000px;}
.y100{bottom:618.810000px;}
.y4f{bottom:625.110000px;}
.yc4{bottom:626.010000px;}
.ydb{bottom:632.670000px;}
.y3{bottom:637.350000px;}
.y25{bottom:638.970000px;}
.yfe{bottom:645.450000px;}
.yc3{bottom:652.470000px;}
.y47{bottom:652.650000px;}
.y9b{bottom:653.550000px;}
.yda{bottom:659.130000px;}
.y6e{bottom:666.510000px;}
.y61{bottom:667.230000px;}
.y110{bottom:671.910000px;}
.yc1{bottom:679.110000px;}
.y24{bottom:681.090000px;}
.yd9{bottom:685.770000px;}
.y2{bottom:685.950000px;}
.y46{bottom:694.950000px;}
.y10f{bottom:698.550000px;}
.ybf{bottom:705.570000px;}
.yad{bottom:708.630000px;}
.y60{bottom:709.350000px;}
.yd8{bottom:712.230000px;}
.y23{bottom:723.210000px;}
.y1{bottom:724.110000px;}
.y45{bottom:737.070000px;}
.yd7{bottom:738.870000px;}
.ybe{bottom:751.110000px;}
.h1b{height:25.740000px;}
.h1d{height:25.776000px;}
.h1a{height:25.920000px;}
.h1c{height:25.956000px;}
.h9{height:27.540000px;}
.h10{height:27.576000px;}
.hd{height:27.720000px;}
.h6{height:27.756000px;}
.h17{height:36.000000px;}
.h1e{height:39.600000px;}
.h1f{height:39.636000px;}
.hb{height:41.220000px;}
.hc{height:41.256000px;}
.h4{height:41.400000px;}
.ha{height:41.436000px;}
.h5{height:50.312812px;}
.h3{height:51.706406px;}
.he{height:55.080000px;}
.h13{height:55.116000px;}
.h7{height:55.260000px;}
.h8{height:55.296000px;}
.h20{height:59.439023px;}
.h19{height:61.189805px;}
.h2{height:62.296875px;}
.h15{height:68.940000px;}
.h16{height:68.976000px;}
.h14{height:69.120000px;}
.hf{height:69.156000px;}
.h18{height:71.613281px;}
.h11{height:110.376000px;}
.h12{height:124.200000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w3{width:62.676000px;}
.w4{width:73.620000px;}
.w7{width:73.656000px;}
.w8{width:84.240000px;}
.wa{width:84.276000px;}
.we{width:84.420000px;}
.w6{width:94.896000px;}
.w9{width:95.040000px;}
.w5{width:105.660000px;}
.w11{width:116.316000px;}
.wf{width:137.376000px;}
.w12{width:137.520000px;}
.wd{width:137.556000px;}
.w10{width:148.140000px;}
.wb{width:222.480000px;}
.wc{width:275.250000px;}
.w2{width:1262.879981px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x11{left:8.640000px;}
.x18{left:9.720000px;}
.x1f{left:11.160000px;}
.x17{left:12.420000px;}
.x24{left:14.040000px;}
.xc{left:15.120000px;}
.x4{left:16.380000px;}
.x2{left:18.396000px;}
.x2c{left:19.440000px;}
.x1e{left:20.700000px;}
.x19{left:21.780000px;}
.xf{left:23.580000px;}
.x7{left:24.660000px;}
.x14{left:25.740000px;}
.x1c{left:27.000000px;}
.x16{left:28.440000px;}
.xa{left:29.700000px;}
.x30{left:30.780000px;}
.x27{left:31.860000px;}
.x15{left:33.120000px;}
.x2a{left:34.380000px;}
.x2b{left:35.460000px;}
.x1d{left:36.720000px;}
.x1a{left:37.800000px;}
.x32{left:39.060000px;}
.x22{left:40.140000px;}
.x21{left:41.580000px;}
.x4a{left:42.705000px;}
.x25{left:43.740000px;}
.x26{left:44.820000px;}
.x1b{left:46.080000px;}
.x36{left:47.520000px;}
.x28{left:49.500000px;}
.x2d{left:51.120000px;}
.x40{left:52.740000px;}
.x3c{left:54.030000px;}
.x51{left:55.125000px;}
.x23{left:56.160000px;}
.x45{left:57.270000px;}
.x2e{left:58.500000px;}
.x47{left:59.940000px;}
.x4d{left:61.020000px;}
.x29{left:62.460000px;}
.x46{left:63.570000px;}
.x4c{left:64.650000px;}
.x34{left:66.420000px;}
.x43{left:67.710000px;}
.x39{left:68.760000px;}
.x49{left:70.590000px;}
.x41{left:71.670000px;}
.x4f{left:73.290000px;}
.x55{left:74.370000px;}
.x20{left:76.140000px;}
.x44{left:77.610000px;}
.x13{left:78.840000px;}
.x33{left:80.820000px;}
.x50{left:82.290000px;}
.x57{left:83.370000px;}
.x4b{left:84.630000px;}
.x42{left:85.710000px;}
.x2f{left:88.200000px;}
.x4e{left:90.390000px;}
.x48{left:91.650000px;}
.x38{left:94.860000px;}
.x31{left:96.840000px;}
.x37{left:97.920000px;}
.x53{left:99.570000px;}
.x52{left:101.010000px;}
.x35{left:104.580000px;}
.x1{left:106.199981px;}
.x56{left:107.670000px;}
.x54{left:117.390000px;}
.x3{left:170.490000px;}
.x5{left:244.830000px;}
.x6{left:351.210000px;}
.x3a{left:383.070000px;}
.x8{left:447.015000px;}
.x9{left:521.355000px;}
.xb{left:595.875000px;}
.x3b{left:606.495000px;}
.xd{left:670.245000px;}
.x3d{left:744.585000px;}
.xe{left:755.205000px;}
.x10{left:850.965000px;}
.x3e{left:893.445000px;}
.x12{left:936.150000px;}
.x3f{left:1010.490000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.120000pt;}
.ls7{letter-spacing:-0.800000pt;}
.ls6{letter-spacing:-0.518933pt;}
.ls2{letter-spacing:-0.239467pt;}
.ls9{letter-spacing:-0.198933pt;}
.ls3{letter-spacing:-0.161067pt;}
.ls8{letter-spacing:-0.080533pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.121067pt;}
.ls5{letter-spacing:0.198933pt;}
.ls4{letter-spacing:0.239467pt;}
.ws0{word-spacing:-17.664000pt;}
.ws6{word-spacing:-12.160107pt;}
.ws7{word-spacing:-12.119573pt;}
.ws3{word-spacing:-12.041707pt;}
.ws1{word-spacing:-11.920640pt;}
.wsa{word-spacing:-11.840107pt;}
.ws4{word-spacing:-11.759573pt;}
.wsb{word-spacing:-11.721707pt;}
.ws2{word-spacing:-11.681173pt;}
.ws8{word-spacing:-11.401707pt;}
.ws9{word-spacing:-11.120640pt;}
.ws5{word-spacing:0.000000pt;}
._2{margin-left:-4.321493pt;}
._1{margin-left:-0.981547pt;}
._0{width:1.725227pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:2.234667pt;}
.y8{bottom:2.240000pt;}
.yb9{bottom:6.080000pt;}
.yd6{bottom:7.514667pt;}
.yc2{bottom:7.520000pt;}
.ye3{bottom:7.546667pt;}
.y10b{bottom:7.560000pt;}
.yc0{bottom:7.680000pt;}
.yeb{bottom:7.720000pt;}
.y43{bottom:8.314667pt;}
.y6{bottom:8.320000pt;}
.y4c{bottom:8.360000pt;}
.y81{bottom:8.474667pt;}
.y11{bottom:8.480000pt;}
.ya{bottom:8.520000pt;}
.yb7{bottom:12.160000pt;}
.yff{bottom:13.600000pt;}
.y109{bottom:13.640000pt;}
.y107{bottom:13.754667pt;}
.yf0{bottom:13.760000pt;}
.y44{bottom:14.394667pt;}
.y4{bottom:14.400000pt;}
.y6c{bottom:14.554667pt;}
.ye{bottom:14.560000pt;}
.y16{bottom:14.586667pt;}
.yb{bottom:14.600000pt;}
.yb8{bottom:18.240000pt;}
.y106{bottom:19.834667pt;}
.yf1{bottom:19.840000pt;}
.yfd{bottom:19.866667pt;}
.y10a{bottom:19.880000pt;}
.y8b{bottom:20.520000pt;}
.y21{bottom:20.634667pt;}
.y5{bottom:20.640000pt;}
.y14{bottom:20.666667pt;}
.y1d{bottom:20.680000pt;}
.y22{bottom:26.714667pt;}
.y7{bottom:26.720000pt;}
.y3b{bottom:26.746667pt;}
.y35{bottom:26.760000pt;}
.y9a{bottom:26.874667pt;}
.yd{bottom:26.880000pt;}
.y15{bottom:26.906667pt;}
.y1e{bottom:26.920000pt;}
.y62{bottom:32.800000pt;}
.yaa{bottom:32.826667pt;}
.y9d{bottom:32.840000pt;}
.y90{bottom:32.954667pt;}
.y56{bottom:32.960000pt;}
.ya1{bottom:32.986667pt;}
.y28{bottom:33.000000pt;}
.y97{bottom:38.880000pt;}
.y8c{bottom:38.920000pt;}
.y8f{bottom:39.034667pt;}
.yf{bottom:39.040000pt;}
.y17{bottom:39.066667pt;}
.y27{bottom:39.080000pt;}
.y70{bottom:45.120000pt;}
.y65{bottom:45.160000pt;}
.y88{bottom:45.280000pt;}
.y93{bottom:45.306667pt;}
.yae{bottom:45.320000pt;}
.y71{bottom:51.200000pt;}
.yb2{bottom:51.226667pt;}
.y98{bottom:51.240000pt;}
.y89{bottom:51.360000pt;}
.y94{bottom:51.386667pt;}
.y66{bottom:51.400000pt;}
.y74{bottom:57.440000pt;}
.y79{bottom:63.520000pt;}
.y69{bottom:63.560000pt;}
.y75{bottom:69.600000pt;}
.y78{bottom:75.840000pt;}
.y68{bottom:75.880000pt;}
.y77{bottom:88.000000pt;}
.y72{bottom:88.040000pt;}
.y67{bottom:88.200000pt;}
.y76{bottom:100.320000pt;}
.y20{bottom:116.832000pt;}
.y84{bottom:117.632000pt;}
.y33{bottom:118.272000pt;}
.y5c{bottom:118.752000pt;}
.ya8{bottom:118.912000pt;}
.ybd{bottom:121.792000pt;}
.y116{bottom:124.192000pt;}
.yfc{bottom:125.152000pt;}
.y42{bottom:129.952000pt;}
.y4e{bottom:130.592000pt;}
.y8e{bottom:131.232000pt;}
.yd5{bottom:131.552000pt;}
.y6b{bottom:131.872000pt;}
.y80{bottom:132.512000pt;}
.y99{bottom:133.152000pt;}
.y10e{bottom:136.506667pt;}
.yee{bottom:137.466667pt;}
.y83{bottom:142.746667pt;}
.y32{bottom:143.546667pt;}
.ya7{bottom:144.186667pt;}
.y115{bottom:147.866667pt;}
.yfb{bottom:148.826667pt;}
.y1f{bottom:154.266667pt;}
.y41{bottom:155.066667pt;}
.y5b{bottom:156.186667pt;}
.y6a{bottom:157.146667pt;}
.y7f{bottom:157.786667pt;}
.y10d{bottom:160.186667pt;}
.yed{bottom:160.986667pt;}
.y4d{bottom:168.026667pt;}
.y8d{bottom:168.666667pt;}
.y96{bottom:170.746667pt;}
.y114{bottom:171.386667pt;}
.yfa{bottom:172.346667pt;}
.yd4{bottom:178.746667pt;}
.y40{bottom:180.346667pt;}
.y31{bottom:180.986667pt;}
.ya6{bottom:181.626667pt;}
.y64{bottom:182.266667pt;}
.yb3{bottom:182.906667pt;}
.y10c{bottom:183.706667pt;}
.yec{bottom:184.666667pt;}
.y119{bottom:188.026667pt;}
.ybc{bottom:188.346667pt;}
.y1c{bottom:191.706667pt;}
.y8a{bottom:193.946667pt;}
.y7e{bottom:195.226667pt;}
.yf9{bottom:196.026667pt;}
.yd3{bottom:202.266667pt;}
.y4b{bottom:205.466667pt;}
.y5a{bottom:205.946667pt;}
.ya5{bottom:206.746667pt;}
.y108{bottom:207.386667pt;}
.yea{bottom:208.186667pt;}
.y3f{bottom:217.826667pt;}
.y30{bottom:218.466667pt;}
.yf8{bottom:219.586667pt;}
.y118{bottom:221.506667pt;}
.ybb{bottom:221.666667pt;}
.yd2{bottom:225.986667pt;}
.y1b{bottom:229.186667pt;}
.y113{bottom:230.946667pt;}
.y59{bottom:231.106667pt;}
.ye9{bottom:231.906667pt;}
.ya4{bottom:232.066667pt;}
.y7d{bottom:232.706667pt;}
.yba{bottom:237.506667pt;}
.y4a{bottom:242.946667pt;}
.yf7{bottom:243.266667pt;}
.y87{bottom:243.586667pt;}
.yd1{bottom:249.506667pt;}
.y117{bottom:253.506667pt;}
.y112{bottom:254.626667pt;}
.y3e{bottom:255.266667pt;}
.ye8{bottom:255.426667pt;}
.y2f{bottom:255.906667pt;}
.y7c{bottom:257.826667pt;}
.y1a{bottom:266.786667pt;}
.y58{bottom:268.706667pt;}
.ya3{bottom:269.506667pt;}
.yd0{bottom:273.186667pt;}
.y111{bottom:278.146667pt;}
.ye7{bottom:279.106667pt;}
.yac{bottom:279.746667pt;}
.y3d{bottom:280.386667pt;}
.y63{bottom:281.026667pt;}
.y95{bottom:282.466667pt;}
.yf6{bottom:290.466667pt;}
.y5f{bottom:292.706667pt;}
.y2e{bottom:293.346667pt;}
.y7b{bottom:295.426667pt;}
.ycf{bottom:296.706667pt;}
.yb6{bottom:299.426667pt;}
.ye6{bottom:302.626667pt;}
.y19{bottom:304.226667pt;}
.yab{bottom:305.026667pt;}
.y86{bottom:305.666667pt;}
.y57{bottom:306.146667pt;}
.yf5{bottom:313.986667pt;}
.y3c{bottom:317.826667pt;}
.ya2{bottom:319.266667pt;}
.yce{bottom:320.386667pt;}
.ye5{bottom:326.306667pt;}
.y5e{bottom:330.146667pt;}
.y2d{bottom:330.786667pt;}
.yb1{bottom:332.226667pt;}
.y7a{bottom:332.866667pt;}
.yf4{bottom:337.666667pt;}
.y18{bottom:341.666667pt;}
.y55{bottom:343.586667pt;}
.ycd{bottom:343.906667pt;}
.y92{bottom:344.386667pt;}
.ye4{bottom:349.826667pt;}
.y3a{bottom:355.426667pt;}
.y53{bottom:356.066667pt;}
.ya0{bottom:356.706667pt;}
.yf3{bottom:361.186667pt;}
.y13{bottom:366.786667pt;}
.ycc{bottom:367.586667pt;}
.y2c{bottom:368.226667pt;}
.ye2{bottom:373.506667pt;}
.y82{bottom:380.573333pt;}
.yb5{bottom:381.853333pt;}
.y73{bottom:382.653333pt;}
.yf2{bottom:384.893333pt;}
.ycb{bottom:391.133333pt;}
.y39{bottom:392.893333pt;}
.y52{bottom:393.533333pt;}
.yb0{bottom:394.173333pt;}
.ye1{bottom:397.053333pt;}
.ya9{bottom:405.053333pt;}
.y2b{bottom:405.853333pt;}
.y91{bottom:406.493333pt;}
.yef{bottom:408.413333pt;}
.yca{bottom:414.813333pt;}
.y12{bottom:416.573333pt;}
.y5d{bottom:418.013333pt;}
.ye0{bottom:420.733333pt;}
.y38{bottom:430.333333pt;}
.y51{bottom:430.973333pt;}
.y9f{bottom:431.613333pt;}
.y105{bottom:432.093333pt;}
.yc9{bottom:438.333333pt;}
.y2a{bottom:443.293333pt;}
.yaf{bottom:443.933333pt;}
.ydf{bottom:444.253333pt;}
.y10{bottom:454.013333pt;}
.y54{bottom:455.453333pt;}
.y104{bottom:455.613333pt;}
.yc8{bottom:462.013333pt;}
.y37{bottom:467.773333pt;}
.yde{bottom:467.933333pt;}
.y50{bottom:468.413333pt;}
.y103{bottom:479.293333pt;}
.y29{bottom:480.733333pt;}
.y9e{bottom:481.373333pt;}
.yc7{bottom:485.533333pt;}
.yc{bottom:491.453333pt;}
.y36{bottom:493.053333pt;}
.y6f{bottom:493.693333pt;}
.y102{bottom:502.813333pt;}
.y49{bottom:505.213333pt;}
.y85{bottom:505.853333pt;}
.yc6{bottom:509.213333pt;}
.ydd{bottom:515.133333pt;}
.y26{bottom:518.173333pt;}
.y101{bottom:526.493333pt;}
.y34{bottom:530.493333pt;}
.y9c{bottom:531.133333pt;}
.yc5{bottom:532.733333pt;}
.ydc{bottom:538.653333pt;}
.y9{bottom:541.213333pt;}
.y48{bottom:542.653333pt;}
.yb4{bottom:543.293333pt;}
.y100{bottom:550.053333pt;}
.y4f{bottom:555.653333pt;}
.yc4{bottom:556.453333pt;}
.ydb{bottom:562.373333pt;}
.y3{bottom:566.533333pt;}
.y25{bottom:567.973333pt;}
.yfe{bottom:573.733333pt;}
.yc3{bottom:579.973333pt;}
.y47{bottom:580.133333pt;}
.y9b{bottom:580.933333pt;}
.yda{bottom:585.893333pt;}
.y6e{bottom:592.453333pt;}
.y61{bottom:593.093333pt;}
.y110{bottom:597.253333pt;}
.yc1{bottom:603.653333pt;}
.y24{bottom:605.413333pt;}
.yd9{bottom:609.573333pt;}
.y2{bottom:609.733333pt;}
.y46{bottom:617.733333pt;}
.y10f{bottom:620.933333pt;}
.ybf{bottom:627.173333pt;}
.yad{bottom:629.893333pt;}
.y60{bottom:630.533333pt;}
.yd8{bottom:633.093333pt;}
.y23{bottom:642.853333pt;}
.y1{bottom:643.653333pt;}
.y45{bottom:655.173333pt;}
.yd7{bottom:656.773333pt;}
.ybe{bottom:667.653333pt;}
.h1b{height:22.880000pt;}
.h1d{height:22.912000pt;}
.h1a{height:23.040000pt;}
.h1c{height:23.072000pt;}
.h9{height:24.480000pt;}
.h10{height:24.512000pt;}
.hd{height:24.640000pt;}
.h6{height:24.672000pt;}
.h17{height:32.000000pt;}
.h1e{height:35.200000pt;}
.h1f{height:35.232000pt;}
.hb{height:36.640000pt;}
.hc{height:36.672000pt;}
.h4{height:36.800000pt;}
.ha{height:36.832000pt;}
.h5{height:44.722500pt;}
.h3{height:45.961250pt;}
.he{height:48.960000pt;}
.h13{height:48.992000pt;}
.h7{height:49.120000pt;}
.h8{height:49.152000pt;}
.h20{height:52.834688pt;}
.h19{height:54.390938pt;}
.h2{height:55.375000pt;}
.h15{height:61.280000pt;}
.h16{height:61.312000pt;}
.h14{height:61.440000pt;}
.hf{height:61.472000pt;}
.h18{height:63.656250pt;}
.h11{height:98.112000pt;}
.h12{height:110.400000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w3{width:55.712000pt;}
.w4{width:65.440000pt;}
.w7{width:65.472000pt;}
.w8{width:74.880000pt;}
.wa{width:74.912000pt;}
.we{width:75.040000pt;}
.w6{width:84.352000pt;}
.w9{width:84.480000pt;}
.w5{width:93.920000pt;}
.w11{width:103.392000pt;}
.wf{width:122.112000pt;}
.w12{width:122.240000pt;}
.wd{width:122.272000pt;}
.w10{width:131.680000pt;}
.wb{width:197.760000pt;}
.wc{width:244.666667pt;}
.w2{width:1122.559983pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x11{left:7.680000pt;}
.x18{left:8.640000pt;}
.x1f{left:9.920000pt;}
.x17{left:11.040000pt;}
.x24{left:12.480000pt;}
.xc{left:13.440000pt;}
.x4{left:14.560000pt;}
.x2{left:16.352000pt;}
.x2c{left:17.280000pt;}
.x1e{left:18.400000pt;}
.x19{left:19.360000pt;}
.xf{left:20.960000pt;}
.x7{left:21.920000pt;}
.x14{left:22.880000pt;}
.x1c{left:24.000000pt;}
.x16{left:25.280000pt;}
.xa{left:26.400000pt;}
.x30{left:27.360000pt;}
.x27{left:28.320000pt;}
.x15{left:29.440000pt;}
.x2a{left:30.560000pt;}
.x2b{left:31.520000pt;}
.x1d{left:32.640000pt;}
.x1a{left:33.600000pt;}
.x32{left:34.720000pt;}
.x22{left:35.680000pt;}
.x21{left:36.960000pt;}
.x4a{left:37.960000pt;}
.x25{left:38.880000pt;}
.x26{left:39.840000pt;}
.x1b{left:40.960000pt;}
.x36{left:42.240000pt;}
.x28{left:44.000000pt;}
.x2d{left:45.440000pt;}
.x40{left:46.880000pt;}
.x3c{left:48.026667pt;}
.x51{left:49.000000pt;}
.x23{left:49.920000pt;}
.x45{left:50.906667pt;}
.x2e{left:52.000000pt;}
.x47{left:53.280000pt;}
.x4d{left:54.240000pt;}
.x29{left:55.520000pt;}
.x46{left:56.506667pt;}
.x4c{left:57.466667pt;}
.x34{left:59.040000pt;}
.x43{left:60.186667pt;}
.x39{left:61.120000pt;}
.x49{left:62.746667pt;}
.x41{left:63.706667pt;}
.x4f{left:65.146667pt;}
.x55{left:66.106667pt;}
.x20{left:67.680000pt;}
.x44{left:68.986667pt;}
.x13{left:70.080000pt;}
.x33{left:71.840000pt;}
.x50{left:73.146667pt;}
.x57{left:74.106667pt;}
.x4b{left:75.226667pt;}
.x42{left:76.186667pt;}
.x2f{left:78.400000pt;}
.x4e{left:80.346667pt;}
.x48{left:81.466667pt;}
.x38{left:84.320000pt;}
.x31{left:86.080000pt;}
.x37{left:87.040000pt;}
.x53{left:88.506667pt;}
.x52{left:89.786667pt;}
.x35{left:92.960000pt;}
.x1{left:94.399983pt;}
.x56{left:95.706667pt;}
.x54{left:104.346667pt;}
.x3{left:151.546667pt;}
.x5{left:217.626667pt;}
.x6{left:312.186667pt;}
.x3a{left:340.506667pt;}
.x8{left:397.346667pt;}
.x9{left:463.426667pt;}
.xb{left:529.666667pt;}
.x3b{left:539.106667pt;}
.xd{left:595.773333pt;}
.x3d{left:661.853333pt;}
.xe{left:671.293333pt;}
.x10{left:756.413333pt;}
.x3e{left:794.173333pt;}
.x12{left:832.133333pt;}
.x3f{left:898.213333pt;}
}




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