
    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_74f6f12014fa3982d1e8f77f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_d07c4bf34fe269394ace67b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_1b62bc4057152e3ca1d192c7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_705d06f3a025b334b0049b1c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_87ba0293a4b319b242acbee1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_8b64b4926f47d03e568b19ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f84dea115deae7656acdf60b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_3262e0b725ef37d3e40cbedc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_895e869612b2cfc5c9150d1a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_97354201fd8760d7c0ce95fb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.120000px;}
.v3{vertical-align:34.560000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012098px;}
.ls0{letter-spacing:0.724033px;}
.ls2{letter-spacing:21.430370px;}
.ls7{letter-spacing:27.674665px;}
.ls6{letter-spacing:60.801290px;}
.ls4{letter-spacing:199.483359px;}
.ls5{letter-spacing:287.340492px;}
.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;}
}
.ws2{word-spacing:-60.492098px;}
.ws3{word-spacing:-20.880000px;}
.ws1{word-spacing:-16.559850px;}
.ws0{word-spacing:-15.120000px;}
.ws4{word-spacing:0.000000px;}
._3{margin-left:-2518.455265px;}
._4{margin-left:-1087.180934px;}
._7{margin-left:-715.654620px;}
._3e{margin-left:-199.880795px;}
._5{margin-left:-7.620480px;}
._74{margin-left:-3.965225px;}
._2{margin-left:-2.744632px;}
._0{margin-left:-1.344449px;}
._6{width:1.202831px;}
._1{width:2.254038px;}
._12{width:3.689265px;}
._c{width:4.798577px;}
._22{width:6.312404px;}
._23{width:7.414714px;}
._1e{width:8.971118px;}
._1f{width:10.329247px;}
._20{width:11.662766px;}
._18{width:12.738992px;}
._17{width:14.411905px;}
._21{width:15.489989px;}
._16{width:16.887809px;}
._1c{width:18.708327px;}
._1d{width:20.391728px;}
._1b{width:22.229520px;}
._1a{width:23.439592px;}
._24{width:25.058154px;}
._25{width:26.206174px;}
._3c{width:27.322371px;}
._19{width:28.393061px;}
._8{width:30.347141px;}
._9{width:31.569681px;}
._30{width:32.618179px;}
._3b{width:33.968790px;}
._10{width:35.287617px;}
._f{width:36.422358px;}
._6d{width:37.507693px;}
._15{width:38.531650px;}
._2f{width:40.311485px;}
._2a{width:42.147919px;}
._2b{width:43.386807px;}
._71{width:44.420342px;}
._11{width:45.608674px;}
._27{width:46.784677px;}
._26{width:48.746165px;}
._3f{width:50.219387px;}
._32{width:51.335535px;}
._31{width:52.699644px;}
._a{width:53.901569px;}
._b{width:56.064960px;}
._42{width:57.912896px;}
._41{width:59.373394px;}
._2e{width:60.398462px;}
._2d{width:61.584863px;}
._3d{width:63.362822px;}
._d{width:64.471680px;}
._e{width:66.404138px;}
._40{width:67.886762px;}
._36{width:69.241200px;}
._34{width:70.364537px;}
._35{width:72.248057px;}
._62{width:74.057548px;}
._6e{width:75.532577px;}
._29{width:76.663205px;}
._28{width:78.750023px;}
._3a{width:80.489512px;}
._39{width:81.589162px;}
._69{width:82.923088px;}
._13{width:84.732480px;}
._63{width:85.913356px;}
._14{width:86.923649px;}
._2c{width:88.609172px;}
._78{width:89.750875px;}
._4e{width:90.774443px;}
._4b{width:92.208682px;}
._4d{width:93.655019px;}
._46{width:95.158084px;}
._45{width:96.841286px;}
._38{width:98.478842px;}
._37{width:99.709958px;}
._5e{width:104.100035px;}
._5f{width:106.636811px;}
._4f{width:108.057900px;}
._72{width:110.916584px;}
._6a{width:111.982541px;}
._4c{width:113.200621px;}
._49{width:116.699628px;}
._66{width:118.142788px;}
._65{width:120.228493px;}
._4a{width:122.460780px;}
._6b{width:123.497149px;}
._5b{width:125.521930px;}
._73{width:126.869495px;}
._67{width:128.276067px;}
._6c{width:129.961703px;}
._76{width:131.087773px;}
._75{width:132.346321px;}
._47{width:133.628044px;}
._68{width:135.779397px;}
._59{width:137.742466px;}
._60{width:140.847416px;}
._55{width:141.895591px;}
._5c{width:144.059052px;}
._52{width:146.939628px;}
._53{width:152.700780px;}
._51{width:156.920557px;}
._5a{width:164.223085px;}
._6f{width:166.565173px;}
._33{width:171.020124px;}
._56{width:173.486097px;}
._50{width:178.806539px;}
._5d{width:181.506541px;}
._48{width:182.543403px;}
._54{width:186.357898px;}
._79{width:190.910169px;}
._57{width:197.343661px;}
._43{width:198.483347px;}
._64{width:205.906299px;}
._61{width:212.246787px;}
._58{width:221.111434px;}
._77{width:245.237920px;}
._70{width:289.908827px;}
._44{width:357.817619px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:24.480000px;}
.fs8{font-size:30.240000px;}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:47.520000px;}
.fs7{font-size:54.719400px;}
.fs1{font-size:60.480000px;}
.fs0{font-size:66.239400px;}
.fs5{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y58{bottom:56.520000px;}
.yd1{bottom:112.680000px;}
.y55{bottom:113.760000px;}
.y7f{bottom:114.479850px;}
.ydb{bottom:118.439850px;}
.y94{bottom:122.400000px;}
.ye8{bottom:122.760000px;}
.yf3{bottom:125.640000px;}
.y103{bottom:130.320000px;}
.y4c{bottom:131.400000px;}
.yd0{bottom:134.640000px;}
.y54{bottom:135.720000px;}
.y7e{bottom:136.439850px;}
.yda{bottom:140.400000px;}
.y93{bottom:144.000000px;}
.ye7{bottom:144.720000px;}
.yf2{bottom:147.240000px;}
.y102{bottom:152.280000px;}
.y4b{bottom:153.000000px;}
.ycf{bottom:156.600000px;}
.y53{bottom:157.320000px;}
.y7d{bottom:158.400000px;}
.yd9{bottom:162.000000px;}
.y92{bottom:165.960000px;}
.ye6{bottom:166.320000px;}
.yf1{bottom:168.840000px;}
.y101{bottom:173.880000px;}
.y4a{bottom:174.960000px;}
.yce{bottom:178.200000px;}
.y52{bottom:179.280000px;}
.y7c{bottom:180.000000px;}
.yd8{bottom:183.960000px;}
.y91{bottom:187.560000px;}
.ye5{bottom:188.280000px;}
.y100{bottom:195.120000px;}
.y49{bottom:196.920000px;}
.ycd{bottom:200.160000px;}
.y51{bottom:200.880000px;}
.y7b{bottom:201.960000px;}
.yd7{bottom:205.560000px;}
.yf0{bottom:208.080000px;}
.y90{bottom:209.520000px;}
.ye4{bottom:209.880000px;}
.y48{bottom:218.520000px;}
.ycc{bottom:222.120000px;}
.y50{bottom:222.840000px;}
.y7a{bottom:223.560000px;}
.yd6{bottom:227.520000px;}
.yef{bottom:227.880000px;}
.y8f{bottom:231.480000px;}
.ye3{bottom:231.840000px;}
.y47{bottom:240.480000px;}
.ycb{bottom:243.720000px;}
.y4f{bottom:244.800000px;}
.y79{bottom:245.520000px;}
.yee{bottom:247.680000px;}
.yd5{bottom:249.480000px;}
.yb6{bottom:253.080000px;}
.ye2{bottom:253.800000px;}
.y46{bottom:262.440000px;}
.yca{bottom:265.680000px;}
.y4e{bottom:266.400000px;}
.y78{bottom:267.480000px;}
.y8e{bottom:271.080000px;}
.yb5{bottom:275.040000px;}
.ye1{bottom:275.400000px;}
.yed{bottom:276.480000px;}
.y45{bottom:283.680000px;}
.yc9{bottom:287.280000px;}
.y4d{bottom:288.360000px;}
.y77{bottom:289.080000px;}
.y8d{bottom:293.040000px;}
.yb4{bottom:296.640000px;}
.yff{bottom:298.080000px;}
.yc8{bottom:309.240000px;}
.y2c{bottom:309.600000px;}
.y76{bottom:311.040000px;}
.y8c{bottom:314.640000px;}
.yde{bottom:318.240000px;}
.y44{bottom:318.600000px;}
.yfe{bottom:325.440000px;}
.y2b{bottom:330.480000px;}
.yc7{bottom:331.200000px;}
.y75{bottom:332.640000px;}
.y8b{bottom:336.600000px;}
.ydd{bottom:340.200000px;}
.yb3{bottom:340.560000px;}
.y2a{bottom:350.280000px;}
.yc6{bottom:352.800000px;}
.yfd{bottom:354.240000px;}
.y74{bottom:354.600000px;}
.y43{bottom:358.560000px;}
.yb2{bottom:362.160000px;}
.y29{bottom:370.080000px;}
.yc5{bottom:374.760000px;}
.y73{bottom:376.560000px;}
.y8a{bottom:380.160000px;}
.y42{bottom:380.520000px;}
.yfc{bottom:381.600000px;}
.yb1{bottom:384.120000px;}
.y28{bottom:389.880000px;}
.yc4{bottom:396.360000px;}
.y72{bottom:398.160000px;}
.y41{bottom:402.120000px;}
.yb0{bottom:405.720000px;}
.yfb{bottom:408.600000px;}
.y27{bottom:409.680000px;}
.yc3{bottom:418.320000px;}
.y71{bottom:420.120000px;}
.y89{bottom:423.720000px;}
.yaf{bottom:427.680000px;}
.y26{bottom:429.480000px;}
.yfa{bottom:435.960000px;}
.yc2{bottom:439.920000px;}
.y70{bottom:441.720000px;}
.y40{bottom:442.080000px;}
.y88{bottom:445.680000px;}
.y25{bottom:449.280000px;}
.yae{bottom:449.640000px;}
.yf9{bottom:463.320000px;}
.y6f{bottom:463.680000px;}
.y3f{bottom:464.040000px;}
.y87{bottom:467.640000px;}
.y24{bottom:469.080000px;}
.yad{bottom:471.240000px;}
.yc1{bottom:479.880000px;}
.y3e{bottom:485.640000px;}
.y23{bottom:488.520000px;}
.y86{bottom:489.240000px;}
.yf8{bottom:490.680000px;}
.yac{bottom:493.200000px;}
.yc0{bottom:501.840000px;}
.y6e{bottom:507.240000px;}
.y3d{bottom:507.600000px;}
.y22{bottom:509.040000px;}
.y85{bottom:511.200000px;}
.yab{bottom:515.160000px;}
.yf6{bottom:522.000000px;}
.ybf{bottom:523.440000px;}
.y21{bottom:528.840000px;}
.y3c{bottom:529.200000px;}
.yf5{bottom:531.000000px;}
.y84{bottom:533.160000px;}
.yaa{bottom:536.760000px;}
.yf7{bottom:539.280000px;}
.ybe{bottom:545.400000px;}
.y20{bottom:548.640000px;}
.y3b{bottom:551.160000px;}
.y83{bottom:554.760000px;}
.ya9{bottom:558.720000px;}
.ybd{bottom:567.360000px;}
.y1f{bottom:568.440000px;}
.yf4{bottom:570.600000px;}
.y6d{bottom:572.760000px;}
.y3a{bottom:573.120000px;}
.y82{bottom:576.720000px;}
.ya8{bottom:580.320000px;}
.y1e{bottom:588.240000px;}
.ybc{bottom:588.960000px;}
.y39{bottom:594.720000px;}
.y81{bottom:597.960000px;}
.yd4{bottom:598.320000px;}
.y1d{bottom:608.040000px;}
.ybb{bottom:610.920000px;}
.y6c{bottom:616.320000px;}
.y38{bottom:616.680000px;}
.y80{bottom:619.920000px;}
.ya7{bottom:620.280000px;}
.yec{bottom:624.240000px;}
.y1c{bottom:627.840000px;}
.yba{bottom:632.880000px;}
.y37{bottom:638.280000px;}
.ya6{bottom:642.240000px;}
.yeb{bottom:645.840000px;}
.y1b{bottom:647.280000px;}
.yb9{bottom:654.480000px;}
.y36{bottom:660.240000px;}
.ya5{bottom:663.840000px;}
.y1a{bottom:667.440000px;}
.y6b{bottom:681.840000px;}
.y35{bottom:682.200000px;}
.ya4{bottom:685.800000px;}
.y19{bottom:687.240000px;}
.yb8{bottom:694.440000px;}
.y34{bottom:703.800000px;}
.y18{bottom:707.400000px;}
.y6a{bottom:725.400000px;}
.y33{bottom:725.760000px;}
.yb7{bottom:726.120000px;}
.y17{bottom:727.200000px;}
.ye0{bottom:729.000000px;}
.ya3{bottom:729.360000px;}
.y69{bottom:747.360000px;}
.y16{bottom:747.720000px;}
.ydf{bottom:750.960000px;}
.ya2{bottom:751.320000px;}
.y15{bottom:768.600000px;}
.y32{bottom:769.320000px;}
.ya1{bottom:772.920000px;}
.y68{bottom:790.920000px;}
.y31{bottom:791.280000px;}
.ya0{bottom:794.880000px;}
.y14{bottom:795.240000px;}
.y13{bottom:808.560000px;}
.y30{bottom:812.880000px;}
.y9f{bottom:816.480000px;}
.y12{bottom:828.360000px;}
.y67{bottom:834.480000px;}
.y2f{bottom:834.840000px;}
.y9e{bottom:838.440000px;}
.y11{bottom:848.160000px;}
.y66{bottom:856.440000px;}
.y2e{bottom:856.800000px;}
.y9d{bottom:860.400000px;}
.y10{bottom:867.960000px;}
.y65{bottom:878.400000px;}
.y9c{bottom:882.000000px;}
.yf{bottom:888.120000px;}
.y2d{bottom:890.280000px;}
.y64{bottom:900.000000px;}
.y9b{bottom:903.960000px;}
.ye{bottom:909.360000px;}
.y63{bottom:921.960000px;}
.y9a{bottom:925.920000px;}
.yd{bottom:929.880000px;}
.y62{bottom:943.920000px;}
.y99{bottom:947.520000px;}
.y61{bottom:965.520000px;}
.yea{bottom:969.120000px;}
.y98{bottom:969.480000px;}
.yc{bottom:975.960000px;}
.y60{bottom:987.480000px;}
.ye9{bottom:990.720000px;}
.y97{bottom:991.080000px;}
.yb{bottom:1004.400000px;}
.y5f{bottom:1009.080000px;}
.y96{bottom:1013.040000px;}
.y5e{bottom:1031.040000px;}
.ydc{bottom:1034.640000px;}
.y95{bottom:1035.000000px;}
.ya{bottom:1037.160000px;}
.y5d{bottom:1053.000000px;}
.yd3{bottom:1056.600000px;}
.y9{bottom:1070.640000px;}
.y5c{bottom:1074.600000px;}
.yd2{bottom:1078.200000px;}
.y8{bottom:1078.920000px;}
.y7{bottom:1095.120000px;}
.y5b{bottom:1096.560000px;}
.y6{bottom:1111.680000px;}
.y5a{bottom:1118.160000px;}
.y5{bottom:1122.840000px;}
.y4{bottom:1139.760000px;}
.y59{bottom:1140.120000px;}
.y3{bottom:1154.520000px;}
.y57{bottom:1173.960000px;}
.y2{bottom:1174.320000px;}
.y1{bottom:1194.840000px;}
.y56{bottom:1198.080000px;}
.h6{height:16.316016px;}
.h4{height:16.590937px;}
.h11{height:21.011484px;}
.h3{height:24.398438px;}
.h9{height:26.350313px;}
.h5{height:33.018047px;}
.hd{height:36.470694px;}
.hc{height:38.020364px;}
.h8{height:40.989375px;}
.he{height:41.993438px;}
.h2{height:42.022969px;}
.h1{height:44.892718px;}
.hb{height:45.992396px;}
.ha{height:46.024739px;}
.h7{height:56.604375px;}
.hf{height:74.109375px;}
.h10{height:110.109375px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:108.000000px;}
.xf{left:110.160000px;}
.x1f{left:122.400000px;}
.xd{left:126.360000px;}
.x1d{left:129.960000px;}
.x1e{left:131.760000px;}
.x1c{left:132.840000px;}
.x20{left:140.040000px;}
.x10{left:141.120000px;}
.x1{left:163.440000px;}
.x7{left:172.440000px;}
.x11{left:195.480000px;}
.x13{left:270.000000px;}
.xc{left:279.360000px;}
.x12{left:288.360000px;}
.xa{left:332.280000px;}
.x15{left:342.000000px;}
.x14{left:357.480000px;}
.x9{left:394.920000px;}
.x8{left:446.400000px;}
.xb{left:465.480000px;}
.x16{left:473.400000px;}
.x21{left:497.520000px;}
.x2{left:520.200000px;}
.x17{left:541.800000px;}
.x5{left:589.320000px;}
.x18{left:608.040000px;}
.x3{left:613.080000px;}
.x1a{left:663.480000px;}
.x19{left:678.600000px;}
.xe{left:784.800000px;}
.x4{left:786.240000px;}
.x1b{left:807.840000px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.v3{vertical-align:30.720000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010754pt;}
.ls0{letter-spacing:0.643585pt;}
.ls2{letter-spacing:19.049218pt;}
.ls7{letter-spacing:24.599702pt;}
.ls6{letter-spacing:54.045591pt;}
.ls4{letter-spacing:177.318541pt;}
.ls5{letter-spacing:255.413771pt;}
.ws2{word-spacing:-53.770754pt;}
.ws3{word-spacing:-18.560000pt;}
.ws1{word-spacing:-14.719867pt;}
.ws0{word-spacing:-13.440000pt;}
.ws4{word-spacing:0.000000pt;}
._3{margin-left:-2238.626903pt;}
._4{margin-left:-966.383052pt;}
._7{margin-left:-636.137440pt;}
._3e{margin-left:-177.671818pt;}
._5{margin-left:-6.773760pt;}
._74{margin-left:-3.524645pt;}
._2{margin-left:-2.439673pt;}
._0{margin-left:-1.195066pt;}
._6{width:1.069183pt;}
._1{width:2.003590pt;}
._12{width:3.279347pt;}
._c{width:4.265402pt;}
._22{width:5.611026pt;}
._23{width:6.590857pt;}
._1e{width:7.974327pt;}
._1f{width:9.181553pt;}
._20{width:10.366903pt;}
._18{width:11.323548pt;}
._17{width:12.810582pt;}
._21{width:13.768879pt;}
._16{width:15.011386pt;}
._1c{width:16.629624pt;}
._1d{width:18.125981pt;}
._1b{width:19.759574pt;}
._1a{width:20.835193pt;}
._24{width:22.273915pt;}
._25{width:23.294377pt;}
._3c{width:24.286552pt;}
._19{width:25.238277pt;}
._8{width:26.975236pt;}
._9{width:28.061939pt;}
._30{width:28.993937pt;}
._3b{width:30.194480pt;}
._10{width:31.366771pt;}
._f{width:32.375429pt;}
._6d{width:33.340172pt;}
._15{width:34.250356pt;}
._2f{width:35.832431pt;}
._2a{width:37.464817pt;}
._2b{width:38.566051pt;}
._71{width:39.484748pt;}
._11{width:40.541043pt;}
._27{width:41.586380pt;}
._26{width:43.329925pt;}
._3f{width:44.639455pt;}
._32{width:45.631587pt;}
._31{width:46.844128pt;}
._a{width:47.912506pt;}
._b{width:49.835520pt;}
._42{width:51.478130pt;}
._41{width:52.776350pt;}
._2e{width:53.687521pt;}
._2d{width:54.742100pt;}
._3d{width:56.322508pt;}
._d{width:57.308160pt;}
._e{width:59.025901pt;}
._40{width:60.343788pt;}
._36{width:61.547733pt;}
._34{width:62.546255pt;}
._35{width:64.220495pt;}
._62{width:65.828931pt;}
._6e{width:67.140068pt;}
._29{width:68.145071pt;}
._28{width:70.000021pt;}
._3a{width:71.546233pt;}
._39{width:72.523699pt;}
._69{width:73.709412pt;}
._13{width:75.317760pt;}
._63{width:76.367428pt;}
._14{width:77.265466pt;}
._2c{width:78.763708pt;}
._78{width:79.778556pt;}
._4e{width:80.688394pt;}
._4b{width:81.963273pt;}
._4d{width:83.248906pt;}
._46{width:84.584964pt;}
._45{width:86.081143pt;}
._38{width:87.536749pt;}
._37{width:88.631074pt;}
._5e{width:92.533365pt;}
._5f{width:94.788276pt;}
._4f{width:96.051466pt;}
._72{width:98.592519pt;}
._6a{width:99.540037pt;}
._4c{width:100.622774pt;}
._49{width:103.733003pt;}
._66{width:105.015812pt;}
._65{width:106.869772pt;}
._4a{width:108.854027pt;}
._6b{width:109.775244pt;}
._5b{width:111.575049pt;}
._73{width:112.772885pt;}
._67{width:114.023171pt;}
._6c{width:115.521514pt;}
._76{width:116.522465pt;}
._75{width:117.641174pt;}
._47{width:118.780484pt;}
._68{width:120.692797pt;}
._59{width:122.437748pt;}
._60{width:125.197703pt;}
._55{width:126.129414pt;}
._5c{width:128.052490pt;}
._52{width:130.613003pt;}
._53{width:135.734027pt;}
._51{width:139.484939pt;}
._5a{width:145.976075pt;}
._6f{width:148.057932pt;}
._33{width:152.017888pt;}
._56{width:154.209864pt;}
._50{width:158.939146pt;}
._5d{width:161.339148pt;}
._48{width:162.260803pt;}
._54{width:165.651465pt;}
._79{width:169.697928pt;}
._57{width:175.416587pt;}
._43{width:176.429642pt;}
._64{width:183.027822pt;}
._61{width:188.663811pt;}
._58{width:196.543497pt;}
._77{width:217.989262pt;}
._70{width:257.696735pt;}
._44{width:318.060106pt;}
.fs3{font-size:21.760000pt;}
.fs8{font-size:26.880000pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:42.240000pt;}
.fs7{font-size:48.639467pt;}
.fs1{font-size:53.760000pt;}
.fs0{font-size:58.879467pt;}
.fs5{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:50.240000pt;}
.yd1{bottom:100.160000pt;}
.y55{bottom:101.120000pt;}
.y7f{bottom:101.759867pt;}
.ydb{bottom:105.279867pt;}
.y94{bottom:108.800000pt;}
.ye8{bottom:109.120000pt;}
.yf3{bottom:111.680000pt;}
.y103{bottom:115.840000pt;}
.y4c{bottom:116.800000pt;}
.yd0{bottom:119.680000pt;}
.y54{bottom:120.640000pt;}
.y7e{bottom:121.279867pt;}
.yda{bottom:124.800000pt;}
.y93{bottom:128.000000pt;}
.ye7{bottom:128.640000pt;}
.yf2{bottom:130.880000pt;}
.y102{bottom:135.360000pt;}
.y4b{bottom:136.000000pt;}
.ycf{bottom:139.200000pt;}
.y53{bottom:139.840000pt;}
.y7d{bottom:140.800000pt;}
.yd9{bottom:144.000000pt;}
.y92{bottom:147.520000pt;}
.ye6{bottom:147.840000pt;}
.yf1{bottom:150.080000pt;}
.y101{bottom:154.560000pt;}
.y4a{bottom:155.520000pt;}
.yce{bottom:158.400000pt;}
.y52{bottom:159.360000pt;}
.y7c{bottom:160.000000pt;}
.yd8{bottom:163.520000pt;}
.y91{bottom:166.720000pt;}
.ye5{bottom:167.360000pt;}
.y100{bottom:173.440000pt;}
.y49{bottom:175.040000pt;}
.ycd{bottom:177.920000pt;}
.y51{bottom:178.560000pt;}
.y7b{bottom:179.520000pt;}
.yd7{bottom:182.720000pt;}
.yf0{bottom:184.960000pt;}
.y90{bottom:186.240000pt;}
.ye4{bottom:186.560000pt;}
.y48{bottom:194.240000pt;}
.ycc{bottom:197.440000pt;}
.y50{bottom:198.080000pt;}
.y7a{bottom:198.720000pt;}
.yd6{bottom:202.240000pt;}
.yef{bottom:202.560000pt;}
.y8f{bottom:205.760000pt;}
.ye3{bottom:206.080000pt;}
.y47{bottom:213.760000pt;}
.ycb{bottom:216.640000pt;}
.y4f{bottom:217.600000pt;}
.y79{bottom:218.240000pt;}
.yee{bottom:220.160000pt;}
.yd5{bottom:221.760000pt;}
.yb6{bottom:224.960000pt;}
.ye2{bottom:225.600000pt;}
.y46{bottom:233.280000pt;}
.yca{bottom:236.160000pt;}
.y4e{bottom:236.800000pt;}
.y78{bottom:237.760000pt;}
.y8e{bottom:240.960000pt;}
.yb5{bottom:244.480000pt;}
.ye1{bottom:244.800000pt;}
.yed{bottom:245.760000pt;}
.y45{bottom:252.160000pt;}
.yc9{bottom:255.360000pt;}
.y4d{bottom:256.320000pt;}
.y77{bottom:256.960000pt;}
.y8d{bottom:260.480000pt;}
.yb4{bottom:263.680000pt;}
.yff{bottom:264.960000pt;}
.yc8{bottom:274.880000pt;}
.y2c{bottom:275.200000pt;}
.y76{bottom:276.480000pt;}
.y8c{bottom:279.680000pt;}
.yde{bottom:282.880000pt;}
.y44{bottom:283.200000pt;}
.yfe{bottom:289.280000pt;}
.y2b{bottom:293.760000pt;}
.yc7{bottom:294.400000pt;}
.y75{bottom:295.680000pt;}
.y8b{bottom:299.200000pt;}
.ydd{bottom:302.400000pt;}
.yb3{bottom:302.720000pt;}
.y2a{bottom:311.360000pt;}
.yc6{bottom:313.600000pt;}
.yfd{bottom:314.880000pt;}
.y74{bottom:315.200000pt;}
.y43{bottom:318.720000pt;}
.yb2{bottom:321.920000pt;}
.y29{bottom:328.960000pt;}
.yc5{bottom:333.120000pt;}
.y73{bottom:334.720000pt;}
.y8a{bottom:337.920000pt;}
.y42{bottom:338.240000pt;}
.yfc{bottom:339.200000pt;}
.yb1{bottom:341.440000pt;}
.y28{bottom:346.560000pt;}
.yc4{bottom:352.320000pt;}
.y72{bottom:353.920000pt;}
.y41{bottom:357.440000pt;}
.yb0{bottom:360.640000pt;}
.yfb{bottom:363.200000pt;}
.y27{bottom:364.160000pt;}
.yc3{bottom:371.840000pt;}
.y71{bottom:373.440000pt;}
.y89{bottom:376.640000pt;}
.yaf{bottom:380.160000pt;}
.y26{bottom:381.760000pt;}
.yfa{bottom:387.520000pt;}
.yc2{bottom:391.040000pt;}
.y70{bottom:392.640000pt;}
.y40{bottom:392.960000pt;}
.y88{bottom:396.160000pt;}
.y25{bottom:399.360000pt;}
.yae{bottom:399.680000pt;}
.yf9{bottom:411.840000pt;}
.y6f{bottom:412.160000pt;}
.y3f{bottom:412.480000pt;}
.y87{bottom:415.680000pt;}
.y24{bottom:416.960000pt;}
.yad{bottom:418.880000pt;}
.yc1{bottom:426.560000pt;}
.y3e{bottom:431.680000pt;}
.y23{bottom:434.240000pt;}
.y86{bottom:434.880000pt;}
.yf8{bottom:436.160000pt;}
.yac{bottom:438.400000pt;}
.yc0{bottom:446.080000pt;}
.y6e{bottom:450.880000pt;}
.y3d{bottom:451.200000pt;}
.y22{bottom:452.480000pt;}
.y85{bottom:454.400000pt;}
.yab{bottom:457.920000pt;}
.yf6{bottom:464.000000pt;}
.ybf{bottom:465.280000pt;}
.y21{bottom:470.080000pt;}
.y3c{bottom:470.400000pt;}
.yf5{bottom:472.000000pt;}
.y84{bottom:473.920000pt;}
.yaa{bottom:477.120000pt;}
.yf7{bottom:479.360000pt;}
.ybe{bottom:484.800000pt;}
.y20{bottom:487.680000pt;}
.y3b{bottom:489.920000pt;}
.y83{bottom:493.120000pt;}
.ya9{bottom:496.640000pt;}
.ybd{bottom:504.320000pt;}
.y1f{bottom:505.280000pt;}
.yf4{bottom:507.200000pt;}
.y6d{bottom:509.120000pt;}
.y3a{bottom:509.440000pt;}
.y82{bottom:512.640000pt;}
.ya8{bottom:515.840000pt;}
.y1e{bottom:522.880000pt;}
.ybc{bottom:523.520000pt;}
.y39{bottom:528.640000pt;}
.y81{bottom:531.520000pt;}
.yd4{bottom:531.840000pt;}
.y1d{bottom:540.480000pt;}
.ybb{bottom:543.040000pt;}
.y6c{bottom:547.840000pt;}
.y38{bottom:548.160000pt;}
.y80{bottom:551.040000pt;}
.ya7{bottom:551.360000pt;}
.yec{bottom:554.880000pt;}
.y1c{bottom:558.080000pt;}
.yba{bottom:562.560000pt;}
.y37{bottom:567.360000pt;}
.ya6{bottom:570.880000pt;}
.yeb{bottom:574.080000pt;}
.y1b{bottom:575.360000pt;}
.yb9{bottom:581.760000pt;}
.y36{bottom:586.880000pt;}
.ya5{bottom:590.080000pt;}
.y1a{bottom:593.280000pt;}
.y6b{bottom:606.080000pt;}
.y35{bottom:606.400000pt;}
.ya4{bottom:609.600000pt;}
.y19{bottom:610.880000pt;}
.yb8{bottom:617.280000pt;}
.y34{bottom:625.600000pt;}
.y18{bottom:628.800000pt;}
.y6a{bottom:644.800000pt;}
.y33{bottom:645.120000pt;}
.yb7{bottom:645.440000pt;}
.y17{bottom:646.400000pt;}
.ye0{bottom:648.000000pt;}
.ya3{bottom:648.320000pt;}
.y69{bottom:664.320000pt;}
.y16{bottom:664.640000pt;}
.ydf{bottom:667.520000pt;}
.ya2{bottom:667.840000pt;}
.y15{bottom:683.200000pt;}
.y32{bottom:683.840000pt;}
.ya1{bottom:687.040000pt;}
.y68{bottom:703.040000pt;}
.y31{bottom:703.360000pt;}
.ya0{bottom:706.560000pt;}
.y14{bottom:706.880000pt;}
.y13{bottom:718.720000pt;}
.y30{bottom:722.560000pt;}
.y9f{bottom:725.760000pt;}
.y12{bottom:736.320000pt;}
.y67{bottom:741.760000pt;}
.y2f{bottom:742.080000pt;}
.y9e{bottom:745.280000pt;}
.y11{bottom:753.920000pt;}
.y66{bottom:761.280000pt;}
.y2e{bottom:761.600000pt;}
.y9d{bottom:764.800000pt;}
.y10{bottom:771.520000pt;}
.y65{bottom:780.800000pt;}
.y9c{bottom:784.000000pt;}
.yf{bottom:789.440000pt;}
.y2d{bottom:791.360000pt;}
.y64{bottom:800.000000pt;}
.y9b{bottom:803.520000pt;}
.ye{bottom:808.320000pt;}
.y63{bottom:819.520000pt;}
.y9a{bottom:823.040000pt;}
.yd{bottom:826.560000pt;}
.y62{bottom:839.040000pt;}
.y99{bottom:842.240000pt;}
.y61{bottom:858.240000pt;}
.yea{bottom:861.440000pt;}
.y98{bottom:861.760000pt;}
.yc{bottom:867.520000pt;}
.y60{bottom:877.760000pt;}
.ye9{bottom:880.640000pt;}
.y97{bottom:880.960000pt;}
.yb{bottom:892.800000pt;}
.y5f{bottom:896.960000pt;}
.y96{bottom:900.480000pt;}
.y5e{bottom:916.480000pt;}
.ydc{bottom:919.680000pt;}
.y95{bottom:920.000000pt;}
.ya{bottom:921.920000pt;}
.y5d{bottom:936.000000pt;}
.yd3{bottom:939.200000pt;}
.y9{bottom:951.680000pt;}
.y5c{bottom:955.200000pt;}
.yd2{bottom:958.400000pt;}
.y8{bottom:959.040000pt;}
.y7{bottom:973.440000pt;}
.y5b{bottom:974.720000pt;}
.y6{bottom:988.160000pt;}
.y5a{bottom:993.920000pt;}
.y5{bottom:998.080000pt;}
.y4{bottom:1013.120000pt;}
.y59{bottom:1013.440000pt;}
.y3{bottom:1026.240000pt;}
.y57{bottom:1043.520000pt;}
.y2{bottom:1043.840000pt;}
.y1{bottom:1062.080000pt;}
.y56{bottom:1064.960000pt;}
.h6{height:14.503125pt;}
.h4{height:14.747500pt;}
.h11{height:18.676875pt;}
.h3{height:21.687500pt;}
.h9{height:23.422500pt;}
.h5{height:29.349375pt;}
.hd{height:32.418395pt;}
.hc{height:33.795879pt;}
.h8{height:36.435000pt;}
.he{height:37.327500pt;}
.h2{height:37.353750pt;}
.h1{height:39.904639pt;}
.hb{height:40.882130pt;}
.ha{height:40.910879pt;}
.h7{height:50.315000pt;}
.hf{height:65.875000pt;}
.h10{height:97.875000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:96.000000pt;}
.xf{left:97.920000pt;}
.x1f{left:108.800000pt;}
.xd{left:112.320000pt;}
.x1d{left:115.520000pt;}
.x1e{left:117.120000pt;}
.x1c{left:118.080000pt;}
.x20{left:124.480000pt;}
.x10{left:125.440000pt;}
.x1{left:145.280000pt;}
.x7{left:153.280000pt;}
.x11{left:173.760000pt;}
.x13{left:240.000000pt;}
.xc{left:248.320000pt;}
.x12{left:256.320000pt;}
.xa{left:295.360000pt;}
.x15{left:304.000000pt;}
.x14{left:317.760000pt;}
.x9{left:351.040000pt;}
.x8{left:396.800000pt;}
.xb{left:413.760000pt;}
.x16{left:420.800000pt;}
.x21{left:442.240000pt;}
.x2{left:462.400000pt;}
.x17{left:481.600000pt;}
.x5{left:523.840000pt;}
.x18{left:540.480000pt;}
.x3{left:544.960000pt;}
.x1a{left:589.760000pt;}
.x19{left:603.200000pt;}
.xe{left:697.600000pt;}
.x4{left:698.880000pt;}
.x1b{left:718.080000pt;}
}




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