
    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_04d422ba7d22b3728c62805c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.097168;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_ba1e53c47ed922c00659c808.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.163086;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_73d8e01eaf688444e20fbc6c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_b126f7f7a7b175fb58fc541f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.968262;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_4b63be4a09aaa0bb01f5295f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_5533f098c9c186d72e2f0dfe.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:32.615251px;}
.ls7{letter-spacing:34.055251px;}
.ls6{letter-spacing:37.810786px;}
.ls4{letter-spacing:162.719477px;}
.ls1{letter-spacing:290.879319px;}
.ls2{letter-spacing:350.639315px;}
.ls3{letter-spacing:452.159373px;}
.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:-18.000676px;}
.ws3{word-spacing:-14.970850px;}
.ws0{word-spacing:-10.902647px;}
.ws2{word-spacing:0.000000px;}
._39{margin-left:-5.174632px;}
._d{margin-left:-3.750328px;}
._e{margin-left:-2.668789px;}
._1{margin-left:-1.498229px;}
._0{width:1.151997px;}
._15{width:2.583378px;}
._6{width:3.612229px;}
._c{width:5.113880px;}
._1b{width:6.519947px;}
._21{width:8.200173px;}
._2{width:9.345099px;}
._3{width:10.791469px;}
._7{width:11.852739px;}
._5{width:13.064788px;}
._4{width:14.293380px;}
._f{width:15.397047px;}
._22{width:16.849195px;}
._10{width:19.380259px;}
._19{width:20.401516px;}
._25{width:21.541465px;}
._18{width:22.597880px;}
._17{width:23.702671px;}
._1a{width:25.387515px;}
._26{width:26.942793px;}
._37{width:28.366862px;}
._38{width:29.421778px;}
._3b{width:30.773092px;}
._35{width:32.485314px;}
._16{width:34.476639px;}
._52{width:35.492833px;}
._1c{width:36.561724px;}
._3e{width:37.812944px;}
._11{width:39.002402px;}
._12{width:40.072083px;}
._4d{width:41.205705px;}
._b{width:42.554161px;}
._a{width:43.573168px;}
._20{width:45.144054px;}
._1f{width:46.229111px;}
._23{width:48.665109px;}
._24{width:49.902421px;}
._3f{width:51.542124px;}
._1d{width:54.869436px;}
._1e{width:55.928219px;}
._54{width:57.039319px;}
._53{width:58.190044px;}
._33{width:59.925095px;}
._34{width:61.080513px;}
._13{width:63.780614px;}
._14{width:64.852826px;}
._3d{width:71.633926px;}
._3c{width:72.828204px;}
._4c{width:74.742699px;}
._4f{width:79.333761px;}
._29{width:86.744133px;}
._32{width:94.708307px;}
._8{width:99.416439px;}
._9{width:101.015183px;}
._45{width:118.208190px;}
._50{width:148.487577px;}
._4e{width:160.115452px;}
._51{width:166.579945px;}
._44{width:174.136291px;}
._43{width:187.482948px;}
._3a{width:194.407302px;}
._28{width:227.894185px;}
._49{width:238.341046px;}
._46{width:242.000527px;}
._2b{width:251.938025px;}
._42{width:262.317947px;}
._31{width:265.320122px;}
._41{width:267.154222px;}
._40{width:315.699796px;}
._30{width:319.838263px;}
._47{width:399.400127px;}
._4a{width:434.681452px;}
._2c{width:462.725662px;}
._48{width:541.245455px;}
._4b{width:577.966834px;}
._2e{width:580.366549px;}
._2f{width:589.322362px;}
._2a{width:620.051055px;}
._2d{width:655.224611px;}
._27{width:682.718675px;}
._36{width:849.519083px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.241800px;}
.fs3{font-size:59.762250px;}
.fs4{font-size:66.242700px;}
.fs2{font-size:71.999814px;}
.fs0{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.900055px;}
.y5{bottom:3.240005px;}
.ye1{bottom:3.959953px;}
.yda{bottom:3.959954px;}
.yc3{bottom:3.960006px;}
.yb3{bottom:3.960022px;}
.ydf{bottom:4.319962px;}
.yc6{bottom:4.319996px;}
.yaf{bottom:4.320030px;}
.y8{bottom:24.120072px;}
.y7{bottom:39.240005px;}
.y6{bottom:53.820099px;}
.y3{bottom:57.780121px;}
.y4{bottom:65.340088px;}
.y2{bottom:78.480011px;}
.ybe{bottom:102.960022px;}
.yab{bottom:109.080093px;}
.y3d{bottom:109.440033px;}
.y99{bottom:116.280052px;}
.ybd{bottom:123.660049px;}
.y9c{bottom:126.720085px;}
.y3c{bottom:130.140060px;}
.y98{bottom:136.980079px;}
.yfa{bottom:139.860077px;}
.ybc{bottom:144.360077px;}
.y6f{bottom:147.420043px;}
.y3b{bottom:150.840088px;}
.y97{bottom:157.680039px;}
.yf9{bottom:160.560036px;}
.ybb{bottom:165.060036px;}
.y6e{bottom:168.120072px;}
.y3a{bottom:171.540047px;}
.y96{bottom:178.380066px;}
.yf8{bottom:181.260064px;}
.yba{bottom:185.760064px;}
.y6d{bottom:188.820099px;}
.y39{bottom:192.240074px;}
.y95{bottom:199.800041px;}
.yf7{bottom:201.960091px;}
.yb9{bottom:206.460091px;}
.yfb{bottom:209.160049px;}
.y6c{bottom:209.520058px;}
.y38{bottom:212.940033px;}
.y94{bottom:220.500068px;}
.yf6{bottom:222.660049px;}
.yb8{bottom:227.160049px;}
.y6b{bottom:230.220085px;}
.y37{bottom:233.640060px;}
.y93{bottom:241.200096px;}
.yf5{bottom:243.360077px;}
.yb7{bottom:247.860077px;}
.y6a{bottom:250.920043px;}
.y36{bottom:254.340088px;}
.y92{bottom:261.900055px;}
.yf4{bottom:264.060036px;}
.yb6{bottom:268.560036px;}
.y69{bottom:271.620072px;}
.y35{bottom:275.040047px;}
.y91{bottom:283.320099px;}
.yf3{bottom:284.760064px;}
.yb5{bottom:289.260064px;}
.y68{bottom:292.320099px;}
.y34{bottom:295.740074px;}
.y90{bottom:304.020058px;}
.yf2{bottom:305.460091px;}
.yb4{bottom:309.960091px;}
.y67{bottom:313.020058px;}
.y33{bottom:316.440033px;}
.y8f{bottom:324.720085px;}
.yf1{bottom:326.160049px;}
.yb1{bottom:327.060036px;}
.yb2{bottom:327.420043px;}
.yb0{bottom:331.380066px;}
.y66{bottom:333.720085px;}
.yaa{bottom:336.780052px;}
.y32{bottom:337.140060px;}
.y8e{bottom:346.140060px;}
.yf0{bottom:346.860077px;}
.yae{bottom:348.660049px;}
.yad{bottom:352.980079px;}
.y65{bottom:354.420043px;}
.y31{bottom:357.840088px;}
.y8d{bottom:367.560036px;}
.yac{bottom:374.040047px;}
.y64{bottom:375.120072px;}
.y30{bottom:378.180039px;}
.ya9{bottom:378.540047px;}
.yef{bottom:388.260064px;}
.y8c{bottom:388.980079px;}
.y9b{bottom:395.460091px;}
.y63{bottom:395.820099px;}
.y2f{bottom:399.240074px;}
.yee{bottom:408.960091px;}
.y8b{bottom:410.580093px;}
.y9a{bottom:416.160049px;}
.y62{bottom:416.520058px;}
.y2e{bottom:419.940033px;}
.yed{bottom:429.660049px;}
.y8a{bottom:431.280052px;}
.y61{bottom:437.220085px;}
.y2d{bottom:440.640060px;}
.yec{bottom:450.360077px;}
.y89{bottom:451.800041px;}
.y60{bottom:457.920043px;}
.y2c{bottom:461.340088px;}
.yeb{bottom:471.060036px;}
.y88{bottom:472.500068px;}
.y5f{bottom:478.620072px;}
.y2b{bottom:482.040047px;}
.yea{bottom:491.760064px;}
.y87{bottom:494.100083px;}
.y5e{bottom:499.320099px;}
.y2a{bottom:502.380066px;}
.ya8{bottom:502.740074px;}
.ye9{bottom:512.460091px;}
.y86{bottom:514.800041px;}
.y5d{bottom:520.020058px;}
.y29{bottom:523.440033px;}
.ye8{bottom:533.160049px;}
.y85{bottom:536.220085px;}
.y7f{bottom:538.380066px;}
.y5c{bottom:540.720085px;}
.y28{bottom:544.140060px;}
.ye7{bottom:553.860077px;}
.y84{bottom:556.920043px;}
.y7e{bottom:559.080093px;}
.y5b{bottom:561.420043px;}
.y27{bottom:564.840088px;}
.ye6{bottom:570.960091px;}
.ye5{bottom:575.280052px;}
.y83{bottom:578.340088px;}
.y7d{bottom:579.780052px;}
.y5a{bottom:582.120072px;}
.ya7{bottom:585.180039px;}
.y26{bottom:585.540047px;}
.ye3{bottom:592.380066px;}
.ye4{bottom:592.740074px;}
.ye2{bottom:596.700096px;}
.y82{bottom:599.040047px;}
.y7c{bottom:600.480079px;}
.y59{bottom:602.820099px;}
.y25{bottom:606.240074px;}
.yde{bottom:613.980079px;}
.ye0{bottom:614.340088px;}
.ydd{bottom:618.300041px;}
.y81{bottom:620.460091px;}
.y7b{bottom:621.180039px;}
.y58{bottom:623.520058px;}
.y24{bottom:626.940033px;}
.ydc{bottom:635.400055px;}
.ydb{bottom:639.720085px;}
.y80{bottom:641.160049px;}
.y7a{bottom:641.880066px;}
.y57{bottom:644.220085px;}
.y23{bottom:647.640060px;}
.yd9{bottom:656.820099px;}
.yd8{bottom:660.780052px;}
.y79{bottom:662.580093px;}
.y56{bottom:664.920043px;}
.y22{bottom:667.980079px;}
.ya6{bottom:668.340088px;}
.yd7{bottom:682.200096px;}
.y78{bottom:683.280052px;}
.y55{bottom:685.620072px;}
.y21{bottom:689.040081px;}
.yd6{bottom:702.900055px;}
.y77{bottom:703.980079px;}
.y54{bottom:706.320065px;}
.y20{bottom:709.740074px;}
.yd5{bottom:723.960056px;}
.y76{bottom:724.680073px;}
.y53{bottom:727.020058px;}
.y1f{bottom:730.440067px;}
.yd4{bottom:744.660049px;}
.y75{bottom:746.100083px;}
.y52{bottom:747.720051px;}
.y1e{bottom:751.140060px;}
.yd3{bottom:765.360077px;}
.y74{bottom:767.700061px;}
.y51{bottom:768.420078px;}
.y1d{bottom:771.840054px;}
.yd2{bottom:786.060070px;}
.y73{bottom:788.400055px;}
.y50{bottom:789.120072px;}
.y1c{bottom:792.540081px;}
.yd1{bottom:806.760064px;}
.y72{bottom:808.920078px;}
.y4f{bottom:809.820065px;}
.y1b{bottom:812.880066px;}
.ya5{bottom:813.240074px;}
.yd0{bottom:827.460056px;}
.y71{bottom:830.160049px;}
.y4e{bottom:830.520058px;}
.y1a{bottom:833.220051px;}
.ya4{bottom:833.580059px;}
.ycf{bottom:848.160049px;}
.y19{bottom:850.500068px;}
.y70{bottom:850.860077px;}
.y4d{bottom:851.220051px;}
.ya3{bottom:853.920078px;}
.y18{bottom:867.780052px;}
.yce{bottom:868.860077px;}
.ya2{bottom:871.200061px;}
.y4c{bottom:871.920078px;}
.y17{bottom:885.420078px;}
.ya1{bottom:888.480079px;}
.ycd{bottom:889.560070px;}
.y4b{bottom:892.620072px;}
.ya0{bottom:906.120072px;}
.y16{bottom:906.480079px;}
.ycc{bottom:910.260064px;}
.y4a{bottom:913.320065px;}
.y15{bottom:927.180073px;}
.ycb{bottom:930.960056px;}
.y49{bottom:934.020058px;}
.y14{bottom:947.520058px;}
.y9f{bottom:947.880066px;}
.yca{bottom:951.660049px;}
.y48{bottom:954.720051px;}
.y9e{bottom:968.220051px;}
.y13{bottom:968.580059px;}
.yc9{bottom:972.360077px;}
.y47{bottom:975.420061px;}
.y12{bottom:988.920061px;}
.y9d{bottom:989.280069px;}
.yc8{bottom:989.460074px;}
.yc7{bottom:993.780069px;}
.y46{bottom:996.120072px;}
.y11{bottom:1009.620072px;}
.yc5{bottom:1010.880066px;}
.yc4{bottom:1015.200061px;}
.y45{bottom:1016.820065px;}
.y10{bottom:1030.320065px;}
.yc2{bottom:1032.300058px;}
.yc1{bottom:1036.260064px;}
.y44{bottom:1037.520058px;}
.yf{bottom:1051.020058px;}
.yc0{bottom:1057.860060px;}
.y43{bottom:1058.220068px;}
.ye{bottom:1071.720068px;}
.ybf{bottom:1078.560070px;}
.y42{bottom:1078.920061px;}
.yd{bottom:1092.240074px;}
.y41{bottom:1099.620072px;}
.yc{bottom:1112.940067px;}
.y40{bottom:1120.320065px;}
.yb{bottom:1136.159694px;}
.y3f{bottom:1141.020066px;}
.ya{bottom:1160.461384px;}
.y3e{bottom:1161.720068px;}
.y1{bottom:1193.580068px;}
.h5{height:11.700027px;}
.h3{height:14.579955px;}
.h13{height:20.159980px;}
.h14{height:20.159981px;}
.hf{height:20.160049px;}
.h12{height:20.519989px;}
.hd{height:20.519990px;}
.h11{height:20.520006px;}
.h10{height:20.520007px;}
.he{height:20.520057px;}
.h6{height:42.517797px;}
.h4{height:47.982689px;}
.h9{height:51.998047px;}
.hb{height:52.671319px;}
.ha{height:59.345979px;}
.h7{height:62.261558px;}
.h8{height:62.264057px;}
.h2{height:63.459415px;}
.hc{height:65.886904px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:5.399987px;}
.w3{width:7.019989px;}
.wc{width:7.739937px;}
.w8{width:7.739988px;}
.wb{width:7.740005px;}
.w5{width:7.740006px;}
.wa{width:7.919975px;}
.w6{width:7.920009px;}
.wd{width:7.920010px;}
.w9{width:8.819997px;}
.w7{width:40.500000px;}
.w2{width:53.100015px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x33{left:86.035912px;}
.xd{left:87.299998px;}
.x8{left:89.103285px;}
.x21{left:104.219999px;}
.x32{left:111.780001px;}
.x19{left:114.299998px;}
.x36{left:121.140000px;}
.x14{left:125.459997px;}
.x3a{left:127.439999px;}
.x15{left:138.060001px;}
.x47{left:147.240006px;}
.x45{left:148.860008px;}
.x18{left:157.319996px;}
.x4e{left:167.219999px;}
.x2e{left:180.360008px;}
.xb{left:201.599997px;}
.x4f{left:204.840002px;}
.x3c{left:207.719999px;}
.x3d{left:213.120002px;}
.x46{left:217.800007px;}
.x17{left:219.599997px;}
.x48{left:224.280001px;}
.x9{left:263.337212px;}
.x22{left:272.520006px;}
.x1c{left:292.500000px;}
.x1a{left:298.620002px;}
.x37{left:301.860008px;}
.x1b{left:324.000000px;}
.x57{left:327.060001px;}
.xe{left:340.560001px;}
.x31{left:342.360008px;}
.x58{left:344.339985px;}
.x42{left:356.759994px;}
.x34{left:366.300810px;}
.x20{left:368.279983px;}
.x35{left:374.040012px;}
.x59{left:398.160015px;}
.x49{left:402.120002px;}
.x4a{left:418.500000px;}
.x50{left:425.160015px;}
.x54{left:426.240006px;}
.x2{left:437.399987px;}
.x51{left:442.439999px;}
.xc{left:446.399987px;}
.x3e{left:453.959988px;}
.x1d{left:460.980011px;}
.x2d{left:462.600014px;}
.xa{left:466.560001px;}
.x13{left:473.939999px;}
.x1e{left:491.220017px;}
.x23{left:492.839985px;}
.x2b{left:497.339985px;}
.x2c{left:503.100014px;}
.x39{left:520.379998px;}
.x12{left:522.360008px;}
.x52{left:524.160015px;}
.x38{left:534.959988px;}
.x53{left:540.540012px;}
.x3f{left:551.160015px;}
.x10{left:601.919975px;}
.x40{left:614.159981px;}
.x24{left:620.460023px;}
.x55{left:622.440033px;}
.x25{left:627.840019px;}
.x41{left:630.360008px;}
.x4b{left:632.159981px;}
.x30{left:633.240006px;}
.x1f{left:635.759994px;}
.x2a{left:639.000000px;}
.x28{left:644.399987px;}
.x4c{left:648.360008px;}
.x11{left:650.879998px;}
.x29{left:653.039978px;}
.x27{left:654.299973px;}
.x26{left:657.720017px;}
.x2f{left:660.600014px;}
.x43{left:670.860008px;}
.x44{left:679.860008px;}
.x56{left:688.139992px;}
.x4d{left:696.059967px;}
.x3b{left:720.000000px;}
.x16{left:743.940033px;}
.x6{left:746.279983px;}
.x5{left:751.139992px;}
.x3{left:759.779983px;}
.x7{left:786.240006px;}
.xf{left:807.840019px;}
.x4{left:812.879998px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:28.991334pt;}
.ls7{letter-spacing:30.271334pt;}
.ls6{letter-spacing:33.609587pt;}
.ls4{letter-spacing:144.639535pt;}
.ls1{letter-spacing:258.559395pt;}
.ls2{letter-spacing:311.679391pt;}
.ls3{letter-spacing:401.919443pt;}
.ws1{word-spacing:-16.000601pt;}
.ws3{word-spacing:-13.307422pt;}
.ws0{word-spacing:-9.691242pt;}
.ws2{word-spacing:0.000000pt;}
._39{margin-left:-4.599673pt;}
._d{margin-left:-3.333625pt;}
._e{margin-left:-2.372257pt;}
._1{margin-left:-1.331759pt;}
._0{width:1.023997pt;}
._15{width:2.296336pt;}
._6{width:3.210871pt;}
._c{width:4.545671pt;}
._1b{width:5.795509pt;}
._21{width:7.289043pt;}
._2{width:8.306755pt;}
._3{width:9.592417pt;}
._7{width:10.535768pt;}
._5{width:11.613145pt;}
._4{width:12.705227pt;}
._f{width:13.686264pt;}
._22{width:14.977063pt;}
._10{width:17.226897pt;}
._19{width:18.134681pt;}
._25{width:19.147969pt;}
._18{width:20.087004pt;}
._17{width:21.069041pt;}
._1a{width:22.566680pt;}
._26{width:23.949149pt;}
._37{width:25.214988pt;}
._38{width:26.152691pt;}
._3b{width:27.353860pt;}
._35{width:28.875835pt;}
._16{width:30.645901pt;}
._52{width:31.549185pt;}
._1c{width:32.499310pt;}
._3e{width:33.611506pt;}
._11{width:34.668802pt;}
._12{width:35.619629pt;}
._4d{width:36.627294pt;}
._b{width:37.825921pt;}
._a{width:38.731705pt;}
._20{width:40.128048pt;}
._1f{width:41.092543pt;}
._23{width:43.257875pt;}
._24{width:44.357707pt;}
._3f{width:45.815221pt;}
._1d{width:48.772832pt;}
._1e{width:49.713973pt;}
._54{width:50.701617pt;}
._53{width:51.724484pt;}
._33{width:53.266751pt;}
._34{width:54.293789pt;}
._13{width:56.693879pt;}
._14{width:57.646957pt;}
._3d{width:63.674601pt;}
._3c{width:64.736182pt;}
._4c{width:66.437955pt;}
._4f{width:70.518899pt;}
._29{width:77.105896pt;}
._32{width:84.185162pt;}
._8{width:88.370168pt;}
._9{width:89.791274pt;}
._45{width:105.073947pt;}
._50{width:131.988958pt;}
._4e{width:142.324846pt;}
._51{width:148.071062pt;}
._44{width:154.787814pt;}
._43{width:166.651510pt;}
._3a{width:172.806491pt;}
._28{width:202.572609pt;}
._49{width:211.858708pt;}
._46{width:215.111580pt;}
._2b{width:223.944912pt;}
._42{width:233.171508pt;}
._31{width:235.840108pt;}
._41{width:237.470420pt;}
._40{width:280.622041pt;}
._30{width:284.300679pt;}
._47{width:355.022335pt;}
._4a{width:386.383513pt;}
._2c{width:411.311699pt;}
._48{width:481.107071pt;}
._4b{width:513.748297pt;}
._2e{width:515.881377pt;}
._2f{width:523.842099pt;}
._2a{width:551.156493pt;}
._2d{width:582.421876pt;}
._27{width:606.861044pt;}
._36{width:755.128074pt;}
.fs1{font-size:42.881600pt;}
.fs3{font-size:53.122000pt;}
.fs4{font-size:58.882400pt;}
.fs2{font-size:63.999835pt;}
.fs0{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.800049pt;}
.y5{bottom:2.880004pt;}
.ye1{bottom:3.519958pt;}
.yda{bottom:3.519959pt;}
.yc3{bottom:3.520005pt;}
.yb3{bottom:3.520020pt;}
.ydf{bottom:3.839966pt;}
.yc6{bottom:3.839996pt;}
.yaf{bottom:3.840027pt;}
.y8{bottom:21.440064pt;}
.y7{bottom:34.880005pt;}
.y6{bottom:47.840088pt;}
.y3{bottom:51.360108pt;}
.y4{bottom:58.080079pt;}
.y2{bottom:69.760010pt;}
.ybe{bottom:91.520020pt;}
.yab{bottom:96.960083pt;}
.y3d{bottom:97.280030pt;}
.y99{bottom:103.360047pt;}
.ybd{bottom:109.920044pt;}
.y9c{bottom:112.640076pt;}
.y3c{bottom:115.680054pt;}
.y98{bottom:121.760071pt;}
.yfa{bottom:124.320069pt;}
.ybc{bottom:128.320069pt;}
.y6f{bottom:131.040039pt;}
.y3b{bottom:134.080079pt;}
.y97{bottom:140.160035pt;}
.yf9{bottom:142.720032pt;}
.ybb{bottom:146.720032pt;}
.y6e{bottom:149.440064pt;}
.y3a{bottom:152.480042pt;}
.y96{bottom:158.560059pt;}
.yf8{bottom:161.120057pt;}
.yba{bottom:165.120057pt;}
.y6d{bottom:167.840088pt;}
.y39{bottom:170.880066pt;}
.y95{bottom:177.600037pt;}
.yf7{bottom:179.520081pt;}
.yb9{bottom:183.520081pt;}
.yfb{bottom:185.920044pt;}
.y6c{bottom:186.240052pt;}
.y38{bottom:189.280030pt;}
.y94{bottom:196.000061pt;}
.yf6{bottom:197.920044pt;}
.yb8{bottom:201.920044pt;}
.y6b{bottom:204.640076pt;}
.y37{bottom:207.680054pt;}
.y93{bottom:214.400086pt;}
.yf5{bottom:216.320069pt;}
.yb7{bottom:220.320069pt;}
.y6a{bottom:223.040039pt;}
.y36{bottom:226.080079pt;}
.y92{bottom:232.800049pt;}
.yf4{bottom:234.720032pt;}
.yb6{bottom:238.720032pt;}
.y69{bottom:241.440064pt;}
.y35{bottom:244.480042pt;}
.y91{bottom:251.840088pt;}
.yf3{bottom:253.120057pt;}
.yb5{bottom:257.120057pt;}
.y68{bottom:259.840088pt;}
.y34{bottom:262.880066pt;}
.y90{bottom:270.240052pt;}
.yf2{bottom:271.520081pt;}
.yb4{bottom:275.520081pt;}
.y67{bottom:278.240052pt;}
.y33{bottom:281.280030pt;}
.y8f{bottom:288.640076pt;}
.yf1{bottom:289.920044pt;}
.yb1{bottom:290.720032pt;}
.yb2{bottom:291.040039pt;}
.yb0{bottom:294.560059pt;}
.y66{bottom:296.640076pt;}
.yaa{bottom:299.360047pt;}
.y32{bottom:299.680054pt;}
.y8e{bottom:307.680054pt;}
.yf0{bottom:308.320069pt;}
.yae{bottom:309.920044pt;}
.yad{bottom:313.760071pt;}
.y65{bottom:315.040039pt;}
.y31{bottom:318.080079pt;}
.y8d{bottom:326.720032pt;}
.yac{bottom:332.480042pt;}
.y64{bottom:333.440064pt;}
.y30{bottom:336.160035pt;}
.ya9{bottom:336.480042pt;}
.yef{bottom:345.120057pt;}
.y8c{bottom:345.760071pt;}
.y9b{bottom:351.520081pt;}
.y63{bottom:351.840088pt;}
.y2f{bottom:354.880066pt;}
.yee{bottom:363.520081pt;}
.y8b{bottom:364.960083pt;}
.y9a{bottom:369.920044pt;}
.y62{bottom:370.240052pt;}
.y2e{bottom:373.280030pt;}
.yed{bottom:381.920044pt;}
.y8a{bottom:383.360047pt;}
.y61{bottom:388.640076pt;}
.y2d{bottom:391.680054pt;}
.yec{bottom:400.320069pt;}
.y89{bottom:401.600037pt;}
.y60{bottom:407.040039pt;}
.y2c{bottom:410.080079pt;}
.yeb{bottom:418.720032pt;}
.y88{bottom:420.000061pt;}
.y5f{bottom:425.440064pt;}
.y2b{bottom:428.480042pt;}
.yea{bottom:437.120057pt;}
.y87{bottom:439.200074pt;}
.y5e{bottom:443.840088pt;}
.y2a{bottom:446.560059pt;}
.ya8{bottom:446.880066pt;}
.ye9{bottom:455.520081pt;}
.y86{bottom:457.600037pt;}
.y5d{bottom:462.240052pt;}
.y29{bottom:465.280030pt;}
.ye8{bottom:473.920044pt;}
.y85{bottom:476.640076pt;}
.y7f{bottom:478.560059pt;}
.y5c{bottom:480.640076pt;}
.y28{bottom:483.680054pt;}
.ye7{bottom:492.320069pt;}
.y84{bottom:495.040039pt;}
.y7e{bottom:496.960083pt;}
.y5b{bottom:499.040039pt;}
.y27{bottom:502.080079pt;}
.ye6{bottom:507.520081pt;}
.ye5{bottom:511.360047pt;}
.y83{bottom:514.080079pt;}
.y7d{bottom:515.360047pt;}
.y5a{bottom:517.440064pt;}
.ya7{bottom:520.160035pt;}
.y26{bottom:520.480042pt;}
.ye3{bottom:526.560059pt;}
.ye4{bottom:526.880066pt;}
.ye2{bottom:530.400086pt;}
.y82{bottom:532.480042pt;}
.y7c{bottom:533.760071pt;}
.y59{bottom:535.840088pt;}
.y25{bottom:538.880066pt;}
.yde{bottom:545.760071pt;}
.ye0{bottom:546.080079pt;}
.ydd{bottom:549.600037pt;}
.y81{bottom:551.520081pt;}
.y7b{bottom:552.160035pt;}
.y58{bottom:554.240052pt;}
.y24{bottom:557.280030pt;}
.ydc{bottom:564.800049pt;}
.ydb{bottom:568.640076pt;}
.y80{bottom:569.920044pt;}
.y7a{bottom:570.560059pt;}
.y57{bottom:572.640076pt;}
.y23{bottom:575.680054pt;}
.yd9{bottom:583.840088pt;}
.yd8{bottom:587.360047pt;}
.y79{bottom:588.960083pt;}
.y56{bottom:591.040039pt;}
.y22{bottom:593.760071pt;}
.ya6{bottom:594.080079pt;}
.yd7{bottom:606.400086pt;}
.y78{bottom:607.360047pt;}
.y55{bottom:609.440064pt;}
.y21{bottom:612.480072pt;}
.yd6{bottom:624.800049pt;}
.y77{bottom:625.760071pt;}
.y54{bottom:627.840058pt;}
.y20{bottom:630.880066pt;}
.yd5{bottom:643.520050pt;}
.y76{bottom:644.160065pt;}
.y53{bottom:646.240052pt;}
.y1f{bottom:649.280060pt;}
.yd4{bottom:661.920044pt;}
.y75{bottom:663.200074pt;}
.y52{bottom:664.640046pt;}
.y1e{bottom:667.680054pt;}
.yd3{bottom:680.320069pt;}
.y74{bottom:682.400055pt;}
.y51{bottom:683.040070pt;}
.y1d{bottom:686.080048pt;}
.yd2{bottom:698.720063pt;}
.y73{bottom:700.800049pt;}
.y50{bottom:701.440064pt;}
.y1c{bottom:704.480072pt;}
.yd1{bottom:717.120057pt;}
.y72{bottom:719.040070pt;}
.y4f{bottom:719.840058pt;}
.y1b{bottom:722.560059pt;}
.ya5{bottom:722.880066pt;}
.yd0{bottom:735.520050pt;}
.y71{bottom:737.920044pt;}
.y4e{bottom:738.240052pt;}
.y1a{bottom:740.640046pt;}
.ya4{bottom:740.960053pt;}
.ycf{bottom:753.920044pt;}
.y19{bottom:756.000061pt;}
.y70{bottom:756.320069pt;}
.y4d{bottom:756.640046pt;}
.ya3{bottom:759.040070pt;}
.y18{bottom:771.360047pt;}
.yce{bottom:772.320069pt;}
.ya2{bottom:774.400055pt;}
.y4c{bottom:775.040070pt;}
.y17{bottom:787.040070pt;}
.ya1{bottom:789.760071pt;}
.ycd{bottom:790.720063pt;}
.y4b{bottom:793.440064pt;}
.ya0{bottom:805.440064pt;}
.y16{bottom:805.760071pt;}
.ycc{bottom:809.120057pt;}
.y4a{bottom:811.840058pt;}
.y15{bottom:824.160065pt;}
.ycb{bottom:827.520050pt;}
.y49{bottom:830.240052pt;}
.y14{bottom:842.240052pt;}
.y9f{bottom:842.560059pt;}
.yca{bottom:845.920044pt;}
.y48{bottom:848.640046pt;}
.y9e{bottom:860.640046pt;}
.y13{bottom:860.960053pt;}
.yc9{bottom:864.320069pt;}
.y47{bottom:867.040055pt;}
.y12{bottom:879.040055pt;}
.y9d{bottom:879.360062pt;}
.yc8{bottom:879.520066pt;}
.yc7{bottom:883.360062pt;}
.y46{bottom:885.440064pt;}
.y11{bottom:897.440064pt;}
.yc5{bottom:898.560059pt;}
.yc4{bottom:902.400055pt;}
.y45{bottom:903.840058pt;}
.y10{bottom:915.840058pt;}
.yc2{bottom:917.600052pt;}
.yc1{bottom:921.120057pt;}
.y44{bottom:922.240052pt;}
.yf{bottom:934.240052pt;}
.yc0{bottom:940.320054pt;}
.y43{bottom:940.640061pt;}
.ye{bottom:952.640061pt;}
.ybf{bottom:958.720063pt;}
.y42{bottom:959.040055pt;}
.yd{bottom:970.880066pt;}
.y41{bottom:977.440064pt;}
.yc{bottom:989.280060pt;}
.y40{bottom:995.840058pt;}
.yb{bottom:1009.919728pt;}
.y3f{bottom:1014.240059pt;}
.ya{bottom:1031.521230pt;}
.y3e{bottom:1032.640061pt;}
.y1{bottom:1060.960061pt;}
.h5{height:10.400024pt;}
.h3{height:12.959960pt;}
.h13{height:17.919982pt;}
.h14{height:17.919983pt;}
.hf{height:17.920044pt;}
.h12{height:18.239990pt;}
.hd{height:18.239991pt;}
.h11{height:18.240005pt;}
.h10{height:18.240006pt;}
.he{height:18.240051pt;}
.h6{height:37.793598pt;}
.h4{height:42.651279pt;}
.h9{height:46.220486pt;}
.hb{height:46.818950pt;}
.ha{height:52.751981pt;}
.h7{height:55.343607pt;}
.h8{height:55.345829pt;}
.h2{height:56.408369pt;}
.hc{height:58.566137pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.799988pt;}
.w3{width:6.239990pt;}
.wc{width:6.879944pt;}
.w8{width:6.879989pt;}
.wb{width:6.880004pt;}
.w5{width:6.880005pt;}
.wa{width:7.039978pt;}
.w6{width:7.040008pt;}
.wd{width:7.040009pt;}
.w9{width:7.839997pt;}
.w7{width:36.000000pt;}
.w2{width:47.200013pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x33{left:76.476366pt;}
.xd{left:77.599998pt;}
.x8{left:79.202920pt;}
.x21{left:92.639999pt;}
.x32{left:99.360001pt;}
.x19{left:101.599998pt;}
.x36{left:107.680000pt;}
.x14{left:111.519997pt;}
.x3a{left:113.279999pt;}
.x15{left:122.720001pt;}
.x47{left:130.880005pt;}
.x45{left:132.320007pt;}
.x18{left:139.839996pt;}
.x4e{left:148.639999pt;}
.x2e{left:160.320007pt;}
.xb{left:179.199997pt;}
.x4f{left:182.080002pt;}
.x3c{left:184.639999pt;}
.x3d{left:189.440002pt;}
.x46{left:193.600006pt;}
.x17{left:195.199997pt;}
.x48{left:199.360001pt;}
.x9{left:234.077522pt;}
.x22{left:242.240005pt;}
.x1c{left:260.000000pt;}
.x1a{left:265.440002pt;}
.x37{left:268.320007pt;}
.x1b{left:288.000000pt;}
.x57{left:290.720001pt;}
.xe{left:302.720001pt;}
.x31{left:304.320007pt;}
.x58{left:306.079987pt;}
.x42{left:317.119995pt;}
.x34{left:325.600720pt;}
.x20{left:327.359985pt;}
.x35{left:332.480011pt;}
.x59{left:353.920013pt;}
.x49{left:357.440002pt;}
.x4a{left:372.000000pt;}
.x50{left:377.920013pt;}
.x54{left:378.880005pt;}
.x2{left:388.799988pt;}
.x51{left:393.279999pt;}
.xc{left:396.799988pt;}
.x3e{left:403.519989pt;}
.x1d{left:409.760010pt;}
.x2d{left:411.200012pt;}
.xa{left:414.720001pt;}
.x13{left:421.279999pt;}
.x1e{left:436.640015pt;}
.x23{left:438.079987pt;}
.x2b{left:442.079987pt;}
.x2c{left:447.200012pt;}
.x39{left:462.559998pt;}
.x12{left:464.320007pt;}
.x52{left:465.920013pt;}
.x38{left:475.519989pt;}
.x53{left:480.480011pt;}
.x3f{left:489.920013pt;}
.x10{left:535.039978pt;}
.x40{left:545.919983pt;}
.x24{left:551.520020pt;}
.x55{left:553.280029pt;}
.x25{left:558.080017pt;}
.x41{left:560.320007pt;}
.x4b{left:561.919983pt;}
.x30{left:562.880005pt;}
.x1f{left:565.119995pt;}
.x2a{left:568.000000pt;}
.x28{left:572.799988pt;}
.x4c{left:576.320007pt;}
.x11{left:578.559998pt;}
.x29{left:580.479980pt;}
.x27{left:581.599976pt;}
.x26{left:584.640015pt;}
.x2f{left:587.200012pt;}
.x43{left:596.320007pt;}
.x44{left:604.320007pt;}
.x56{left:611.679993pt;}
.x4d{left:618.719971pt;}
.x3b{left:640.000000pt;}
.x16{left:661.280029pt;}
.x6{left:663.359985pt;}
.x5{left:667.679993pt;}
.x3{left:675.359985pt;}
.x7{left:698.880005pt;}
.xf{left:718.080017pt;}
.x4{left:722.559998pt;}
}




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